File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const constants = Object.freeze({
7
7
rollkitLatestTag : "v0.13.3" ,
8
8
rollkitLatestSha : "45b1573" ,
9
9
rollkitCosmosSDKVersion : "v0.50.6-rollkit-v0.13.3-no-fraud-proofs" ,
10
+ rollkitIgniteAppVersion : "v0.2.1" ,
10
11
11
12
localDALatestTag : "v0.2.0" ,
12
13
Original file line number Diff line number Diff line change 1
1
# Deploying a rollup to Celestia
2
2
3
+ <!-- markdownlint-disable MD033 -->
4
+ <script setup >
5
+ import constants from ' ../.vitepress/constants/constants.js'
6
+ </script >
7
+
3
8
## 🌞 Introduction {#introduction}
4
9
5
10
This tutorial serves as a comprehensive guide for deploying your rollup on Celestia's data availability (DA) network. From the Rollkit perspective, there's no difference in posting blocks to Celestia's testnets or Mainnet Beta.
@@ -33,8 +38,8 @@ ignite scaffold chain gm --address-prefix gm --no-module
33
38
34
39
Install the Rollkit app to ignite:
35
40
36
- ``` bash
37
- ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0
41
+ ``` bash-vue
42
+ ignite app install github.com/ignite/apps/rollkit@rollkit/{{constants.rollkitIgniteAppVersion}}
38
43
```
39
44
40
45
Next, move to the ` gm ` directory and add the Rollkit app:
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ exploring how to integrate CosmWasm with local DA layer using Rollkit.
8
8
<!-- markdownlint-disable MD033 -->
9
9
<script setup >
10
10
import Callout from ' ../.vitepress/components/callout.vue'
11
+ import constants from ' ../.vitepress/constants/constants.js'
11
12
</script >
12
13
13
14
::: tip
@@ -29,8 +30,8 @@ this tutorial.
29
30
30
31
For this tutorial, we will need ` go ` and ` jq ` installed on your machine. You can install them by running our script:
31
32
32
- ``` bash
33
- curl -sSL https://rollkit.dev/install-go.sh | bash -s go1.22.3
33
+ ``` bash-vue
34
+ curl -sSL https://rollkit.dev/install-go.sh | bash -s {{constants.golangVersion}}
34
35
```
35
36
36
37
### 🦀 Rust {#install-rust}
@@ -137,8 +138,8 @@ You will have to install `gcc` if you are trying it on a clean linux vm.
137
138
138
139
You will need a local-da node running in order to complete this tutorial. To start it, run:
139
140
140
- ```bash
141
- curl -sSL https://rollkit.dev/install-local-da.sh | bash -s v0.2.0
141
+ ```bash-vue
142
+ curl -sSL https://rollkit.dev/install-local-da.sh | bash -s {{constants.localDALatestTag}}
142
143
```
143
144
144
145
Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ Rollkit on our codebase.
168
168
169
169
To install the Rollkit app to Ignite, run the following command:
170
170
171
- ``` bash
172
- ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0
171
+ ``` bash-vue
172
+ ignite app install github.com/ignite/apps/rollkit@rollkit/{{constants.rollkitIgniteAppVersion}}
173
173
```
174
174
175
175
Next, add Rollkit to your project by running:
You can’t perform that action at this time.
0 commit comments