Skip to content

Commit 056722c

Browse files
authored
docs: update celestia-da for changes on GM (#438)
* docs: update celestia-da for changes on GM 1. Now that GM tutorial uses Kurtosis, Ignite is not installed once someone goes through GM tutorial. This PR updates the prerequisites so that the user installs the correct version of ignite. I hit issues #421 (comment) when installing newer version from ignite's site on this tutorial. 2. Adds the `--rollkit.da_address` flag and explains what it is so that user can communicate with default light node setup easily. * docs: fix da address code block
1 parent b384f1d commit 056722c

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

tutorials/celestia-da.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ After successfully starting a light node, it's time to start posting the batches
2525

2626
## 🏗️ Prerequisites {#prerequisites}
2727

28-
From the [GM world rollup](/tutorials/gm-world) tutorial, you should already have the `rollkit` CLI and `ignite` CLI installed.
29-
28+
* `rollkit` CLI installed from the [GM world rollup](/tutorials/gm-world) tutorial.
29+
* `ignite` CLI v28.4.0 installed `curl https://get.ignite.com/cli@v28.4.0! | bash`
30+
3031
## 🏗️ Building your sovereign rollup {#building-your-sovereign-rollup}
3132

3233
Remove the existing `gm` project and create a new one using ignite:
@@ -126,7 +127,7 @@ The output of the command above will look similar to this:
126127
Your DA AUTH_TOKEN is eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJBbGxvdyI6WyJwdWJsaWMiLCJyZWFkIiwid3JpdGUiXX0.cSrJjpfUdTNFtzGho69V0D_8kyECn9Mzv8ghJSpKRDE
127128
```
128129

129-
Lastly, let's set up the namespace to be used for posting data on Celestia:
130+
Next, let's set up the namespace to be used for posting data on Celestia:
130131

131132
```bash
132133
DA_NAMESPACE=00000000000000000000000000000000000000000008e5f679bf7116cb
@@ -144,6 +145,13 @@ Replace the last 20 characters (10 bytes) in `0000000000000000000000000000000000
144145
[Learn more about namespaces](https://docs.celestia.org/developers/node-tutorial#namespaces).
145146
:::
146147

148+
Lastly, set your DA address for your light node, which by default runs at
149+
port 26658:
150+
151+
```bash
152+
DA_ADDRESS=http://localhost:26658
153+
```
154+
147155
## 🔥 Running your rollup connected to Celestia light node
148156

149157
Finally, let's initiate the rollup node with all the flags:
@@ -154,6 +162,7 @@ rollkit start \
154162
--rollkit.da_auth_token $AUTH_TOKEN \
155163
--rollkit.da_namespace $DA_NAMESPACE \
156164
--rollkit.da_start_height $DA_BLOCK_HEIGHT \
165+
--rollkit.da_address $DA_ADDRESS \
157166
--minimum-gas-prices="0.025stake"
158167
```
159168

0 commit comments

Comments
 (0)