Skip to content

Commit 02746af

Browse files
Use rollkit instead of gmd in how-to configuration section
1 parent edb4d8d commit 02746af

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

guides/gas-price.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The gas price can also be configured manually with the flag
77
`--rollkit.da_gas_price`:
88

99
```bash
10-
gmd start --rollkit.da_gas_price=0.1 [existing flags...]
10+
rollkit start --rollkit.da_gas_price=0.1 [existing flags...]
1111
```
1212

1313
This configures the rollup to always use the fixed gas price of `0.1utia/gas`.
@@ -19,7 +19,7 @@ To avoid such transient blob submission failures, the flag
1919
`--rollkit.da_gas_multiplier` may be used:
2020

2121
```bash
22-
gmd start --rollkit.da_gas_price=0.1 --rollkit.da_gas_multiplier=1.2 [...]
22+
rollkit start --rollkit.da_gas_price=0.1 --rollkit.da_gas_multiplier=1.2 [...]
2323
```
2424

2525
This configures the rollup to keep increasing the gas price by a factor of 1.2x

guides/lazy-sequencing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ An example command with a custom block time of 1 minute:
2020

2121
```bash
2222
# start the chain
23-
gmd start [existing flags...] // [!code --]
24-
gmd start [existing flags...] --rollkit.lazy_aggregator --rollkit.lazy_block_time=1m0s // [!code ++]
23+
rollkit start [existing flags...] // [!code --]
24+
rollkit start [existing flags...] --rollkit.lazy_aggregator --rollkit.lazy_block_time=1m0s // [!code ++]
2525
```

guides/restart-rollup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ For the GM world tutorial, you can restart the chain by
1616
Use the `DA_START_HEIGHT`, `NAMESPACE`, and `AUTH_TOKEN` variables from your original
1717
start command.
1818

19-
Using the `gmd` rollup as an example, you can add something similar to your
19+
Using the `rollkit` rollup as an example, you can add something similar to your
2020
respective start script to make it easier to save variables for later use:
2121

2222
```bash
@@ -27,7 +27,7 @@ rm restart-local.sh
2727
echo "DA_BLOCK_HEIGHT=$DA_BLOCK_HEIGHT" >> restart-local.sh
2828
echo "NAMESPACE=$NAMESPACE" >> restart-local.sh
2929
echo "AUTH_TOKEN=$AUTH_TOKEN" >> restart-local.sh
30-
echo "gmd start --rollkit.aggregator --rollkit.da_auth_token=\$AUTH_TOKEN --rollkit.da_namespace \$NAMESPACE --rollkit.da_start_height \$DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr \"0.0.0.0:36656\"" >> restart-local.sh
30+
echo "rollkit start --rollkit.aggregator --rollkit.da_auth_token=\$AUTH_TOKEN --rollkit.da_namespace \$NAMESPACE --rollkit.da_start_height \$DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr \"0.0.0.0:36656\"" >> restart-local.sh
3131
```
3232

3333

@@ -81,7 +81,7 @@ You can stop your gm chain (or other Rollkit rollup) by using `Control + C` in y
8181
To reiterate, before restarting the chain, you will need to increase the gas fee in order to avoid a `Code: 19` error:
8282

8383
```bash
84-
gmd start --rollkit.aggregator --rollkit.da_auth_token=$AUTH_TOKEN --rollkit.da_namespace $NAMESPACE --rollkit.da_start_height $DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr "0.0.0.0:36656"
84+
rollkit start --rollkit.aggregator --rollkit.da_auth_token=$AUTH_TOKEN --rollkit.da_namespace $NAMESPACE --rollkit.da_start_height $DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr "0.0.0.0:36656"
8585
```
8686

8787
### 🔁 Restarting your rollup {#restarting-your-rollup}
@@ -93,7 +93,7 @@ Follow the [restart rollup](#restart-rollup) section above.
9393
In order to save your TIA, we also recommend stopping the chain with `Control + C`, changing the gas fee back to the default (in our case, 8000 utia) and restarting the chain:
9494

9595
```bash
96-
gmd start --rollkit.aggregator --rollkit.da_auth_token=$AUTH_TOKEN --rollkit.da_namespace $NAMESPACE --rollkit.da_start_height $DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr "0.0.0.0:36656"
96+
rollkit start --rollkit.aggregator --rollkit.da_auth_token=$AUTH_TOKEN --rollkit.da_namespace $NAMESPACE --rollkit.da_start_height $DA_BLOCK_HEIGHT --rpc.laddr tcp://127.0.0.1:36657 --grpc.address 127.0.0.1:9290 --p2p.laddr "0.0.0.0:36656"
9797
```
9898

9999
🎊 Congrats! You've successfully restarted your Rollkit rollup after running out of TIA.

0 commit comments

Comments
 (0)