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

Commit 8f388bb

Browse files
committed
remove mentions of Rollkit CLI
1 parent eb7e140 commit 8f388bb

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

guides/create-genesis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ gmd start --rollkit.node.aggregator --chain_id $CHAIN_ID
118118

119119
## Summary
120120

121-
By following these steps, you will set up the genesis for your rollup, initialize the validator, add a genesis account, and started the chain. This guide provides a basic framework for configuring and starting your rollup using the Rollkit CLI. Make sure `rollkit.toml` is present in the root of your rollup directory, and use the `rollkit` command for all operations.
121+
By following these steps, you will set up the genesis for your rollup, initialize the validator, add a genesis account, and started the chain. This guide provides a basic framework for configuring and starting your rollup using the gm-world binary. Make sure you initialized your chain correctly, and use the `gmd` command for all operations.

guides/da/local-da.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import constants from '../../.vitepress/constants/constants.js'
99

1010
This tutorial serves as a comprehensive guide for using the [local-da](https://github.com/rollkit/local-da) with your chain.
1111

12-
Before proceeding, ensure that you have completed the [quick start](/guides/quick-start.md) or [build a chain](/guides/gm-world.md) tutorial, which covers installing the rollkit CLI, building your chain, and running your chain.
12+
Before proceeding, ensure that you have completed the [build a chain](/guides/gm-world.md) tutorial, which covers setting-up, building and running your chain.
1313

1414
## Setting Up a Local DA Network
1515

guides/docker-compose.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ b9d5e80e81fb gm-world "gmd start --rollkit…" 27 minutes ago Up 9 secon
210210

211211
We can see the gm-world chain running in container `gm-world` and the local DA network running in container `local-da`.
212212

213-
Since our chain is running in a docker container, we want to enter the docker container to interact with it via the Rollkit CLI. We can do this by running:
213+
Since our chain is running in a docker container, we want to enter the docker container to interact with it via the command `gmd`. We can do this by running:
214214

215215
```bash
216216
docker exec -it gm-world sh
217217
```
218218

219-
Now that you are in the docker container, you can interact with the chain using the Rollkit CLI and the example commands you used in the [gm-world tutorial](/guides/gm-world.md).
219+
Now that you are in the docker container, you can interact with the chain using the `gmd` command and the example you used in the [gm-world tutorial](/guides/gm-world.md).
220220

221221
Once you are done interacting with your chain, you can exit out of your docker container with:
222222

@@ -235,4 +235,4 @@ docker compose down
235235

236236
## 🎉 Next steps
237237

238-
Congratulations again! You now know how to run your chain with docker compose and interact with it using the Rollkit CLI in the docker container.
238+
Congratulations again! You now know how to run your chain with docker compose and interact with it using the `gmd` command in the docker container.

guides/full-node.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ This guide covers how to set up a full node to run alongside a sequencer node in
66

77
## Prerequisites
88

9-
Before starting, ensure you have:
9+
Before proceeding, ensure that you have completed the [build a chain](/guides/gm-world.md) tutorial, which covers setting-up, building and running your chain.
10+
11+
Ensure that you have:
1012

1113
- A local Data Availability (DA) network node running on port `7980`.
1214
- A Rollkit sequencer node running and posting blocks to the DA network.
13-
- The Rollkit CLI installed on your system.
1415

1516
## Setting Up Your Full Node
1617

public/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ elif [ $comparison_result -eq 2 ]; then
8686
fi
8787
echo ""
8888

89-
print_header "Building and installing Rollkit..."
89+
print_header "Building and installing GM executable..."
9090
make install
91-
print_success "Rollkit CLI installed successfully!"
91+
print_success "gmd CLI installed successfully!"
9292

9393
cd ..
9494
print_header "Cleaning up downloads..."

0 commit comments

Comments
 (0)