1. Next we need to initialize `op-geth` with the genesis file we generated and copied earlier:
1. Next we need to initialize `op-geth` with the genesis file we generated and copied earlier:
```bash
```bash
...
@@ -344,7 +326,6 @@ Set these environment variables for the configuration
...
@@ -344,7 +326,6 @@ Set these environment variables for the configuration
| Variable | Value |
| Variable | Value |
| -------------- | -
| -------------- | -
| `SEQ_ADDR` | Address of the `Sequencer` account
| `SEQ_KEY` | Private key of the `Sequencer` account
| `SEQ_KEY` | Private key of the `Sequencer` account
| `BATCHER_KEY` | Private key of the `Batcher` accounts, which should have at least 1 ETH
| `BATCHER_KEY` | Private key of the `Batcher` accounts, which should have at least 1 ETH
| `PROPOSER_KEY` | Private key of the `Proposer` account
| `PROPOSER_KEY` | Private key of the `Proposer` account
...
@@ -380,12 +361,7 @@ cd ~/op-geth
...
@@ -380,12 +361,7 @@ cd ~/op-geth
--authrpc.addr=0.0.0.0 \
--authrpc.addr=0.0.0.0 \
--authrpc.port=8551 \
--authrpc.port=8551 \
--authrpc.jwtsecret=./jwt.txt \
--authrpc.jwtsecret=./jwt.txt \
--rollup.disabletxpoolgossip=true\
--rollup.disabletxpoolgossip=true
--password=./datadir/password \
--allow-insecure-unlock\
--mine\
--miner.etherbase=$SEQ_ADDR\
--unlock=$SEQ_ADDR
```
```
And `op-geth` should be running! You should see some output, but you won’t see any blocks being created yet because `op-geth` is driven by the `op-node`. We’ll need to get that running next.
And `op-geth` should be running! You should see some output, but you won’t see any blocks being created yet because `op-geth` is driven by the `op-node`. We’ll need to get that running next.