Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 60af5b4

Browse files
committed
remove aggregator flag for fullnode as it is not required, add sequencer_rollup_id flag
1 parent c361e40 commit 60af5b4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

guides/full-node.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,19 @@ Make sure to include these flags with your start command:
7272
Run your full node with the following command:
7373

7474
```bash
75-
rollkit start --rollkit.aggregator=false \
75+
rollkit start \
7676
--rollkit.da_address http://127.0.0.1:7980 \
7777
--p2p.seeds $P2P_ID@127.0.0.1:26656 \
7878
--minimum-gas-prices 0stake \
7979
--rpc.laddr tcp://127.0.0.1:46657 \
8080
--grpc.address 127.0.0.1:9390 \
8181
--p2p.laddr "0.0.0.0:46656" \
82-
--api.address tcp://localhost:1318
82+
--api.address tcp://localhost:1318 \
83+
--rollkit.sequencer_rollup_id gm
8384
```
8485

8586
Key points about this command:
86-
- `--rollkit.aggregator=false` indicates this is not an aggregator node.
87+
- `rollkit.sequencer_rollup_id` is generally the `$CHAIN_ID`, which is `gm` in this case.
8788
- The ports and addresses are different from the sequencer node to avoid conflicts. Not everything may be necessary for your setup.
8889
- We use the `P2P_ID` environment variable to set the seed node.
8990

0 commit comments

Comments
 (0)