Skip to content

Commit

Permalink
update geth config instructions for running all local
Browse files Browse the repository at this point in the history
  • Loading branch information
sambukowski committed May 1, 2024
1 parent 115a4a2 commit 6ab2621
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions docs/developer/tutorials/run-local-rollup-and-sequencer.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,25 @@ cast w new
```

Open the `geth-genesis-local.json` file in your Geth repo and update the
`"alloc"` account with your new one:
`"alloc"` account with the new address you just created, as well as updating the
`"chainId"` and `"astriaRollupName"` to something of your choosing:

```json
"alloc": {
"<your new address>": { "balance": "300000000000000000000" }
{
"config": {
"chainId": <6 digit number>,
...
"astriaRollupName": "<your rollup name>",
...
"alloc": {
"<your new address>": { "balance": "300000000000000000000" }
}
}
}
```

You will use the private key for your new account with the [test
transactions](./test-transactions.md) later on.
You will use the private key for your new account, and the `"chainId"` you chose,
with the [test transactions](./test-transactions.md) later on.

<!-- ## Download and Build the Messenger Rollup
Expand Down

0 comments on commit 6ab2621

Please sign in to comment.