Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add celestia and rollkit compatible versions #514

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .vitepress/constants/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,12 @@ const constants = Object.freeze({
goSequencingLatestTag: "v0.4.1",
centralizedSequencerLatestTag: "v0.4.0",
igniteVersionTag: "v28.5.3",

celestiaNodeArabicaTag: "v0.20.2-arabica",
celestiaNodeArabicaRollkitTag: "v0.14.1",
celestiaNodeMochaTag: "v0.20.2-mocha",
celestiaNodeMochaRollkitTag: "v0.14.1",
celestiaNodeMainnetTag: "v0.17.2",
celestiaNodeMainnetRollkitTag: "v0.13.7",
});
export default constants;
21 changes: 20 additions & 1 deletion tutorials/da/celestia-da.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,26 @@ Before proceeding, ensure that you have completed the [quick start](/tutorials/q

## 🪶 Running a Celestia light node

Before you can start your rollup node, you need to initiate, sync, and fund a light node on one of Celestia's networks:
Before you can start your rollup node, you need to initiate, sync, and fund a light node on one of Celestia's networks on a compatible version:

::: code-group

```sh-vue [Arabica]
Rollkit Version: {{constants.celestiaNodeArabicaRollkitTag}}
Celestia Node Version: {{constants.celestiaNodeArabicaTag}}
```

```sh-vue [Mocha]
Rollkit Version: {{constants.celestiaNodeMochaRollkitTag}}
Celestia Node Version: {{constants.celestiaNodeMochaTag}}
```

```sh-vue [Mainnet]
Rollkit Version: {{constants.celestiaNodeMainnetRollkitTag}}
Celestia Node Version: {{constants.celestiaNodeMainnetTag}}
```

:::

- [Arabica Devnet](https://docs.celestia.org/nodes/arabica-devnet)
- [Mocha Testnet](https://docs.celestia.org/nodes/mocha-testnet)
Expand Down
Loading