Skip to content

Commit b642691

Browse files
constant rollkit ignite app version
1 parent 43d07ac commit b642691

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.vitepress/constants/constants.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const constants = Object.freeze({
77
rollkitLatestTag: "v0.13.3",
88
rollkitLatestSha: "45b1573",
99
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
10+
rollkitIgniteAppVersion: "v0.2.1",
1011

1112
localDALatestTag: "v0.2.0",
1213

tutorials/celestia-da.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Deploying a rollup to Celestia
22

3+
<!-- markdownlint-disable MD033 -->
4+
<script setup>
5+
import constants from '../.vitepress/constants/constants.js'
6+
</script>
7+
38
## 🌞 Introduction {#introduction}
49

510
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
3338

3439
Install the Rollkit app to ignite:
3540

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}}
3843
```
3944

4045
Next, move to the `gm` directory and add the Rollkit app:

tutorials/cosmwasm.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ exploring how to integrate CosmWasm with local DA layer using Rollkit.
88
<!-- markdownlint-disable MD033 -->
99
<script setup>
1010
import Callout from '../.vitepress/components/callout.vue'
11+
import constants from '../.vitepress/constants/constants.js'
1112
</script>
1213

1314
:::tip
@@ -29,8 +30,8 @@ this tutorial.
2930

3031
For this tutorial, we will need `go` and `jq` installed on your machine. You can install them by running our script:
3132

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}}
3435
```
3536

3637
### 🦀 Rust {#install-rust}
@@ -137,8 +138,8 @@ You will have to install `gcc` if you are trying it on a clean linux vm.
137138
138139
You will need a local-da node running in order to complete this tutorial. To start it, run:
139140
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}}
142143
```
143144
144145

tutorials/wordle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ Rollkit on our codebase.
168168

169169
To install the Rollkit app to Ignite, run the following command:
170170

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}}
173173
```
174174

175175
Next, add Rollkit to your project by running:

0 commit comments

Comments
 (0)