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

Commit 76678c5

Browse files
committed
remove wordle
1 parent 0edcfda commit 76678c5

9 files changed

Lines changed: 19 additions & 827 deletions

File tree

.vitepress/config.ts

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ function nav() {
174174
{ text: "Learn", link: "/learn/intro" },
175175
{ text: "Tutorials", link: "/tutorials/quick-start" },
176176
{ text: "How To Guides", link: "/guides/overview" },
177-
// { text: "Testnets", link: "/testnets/cosmwasm-testnet" },
178177
{ text: "Blog", link: "/blog/overview" },
179178
];
180179
}
@@ -218,7 +217,7 @@ function sidebarHome() {
218217
text: "Quick start guide",
219218
link: "/tutorials/quick-start",
220219
},
221-
{ text: "Build a chain", link: "/tutorials/wordle" },
220+
{ text: "Build a chain", link: "/tutorials/gm-world" },
222221
{
223222
text: "DA",
224223
collapsed: true,
@@ -235,10 +234,6 @@ function sidebarHome() {
235234
text: "Celestia",
236235
link: "/tutorials/da/celestia-da",
237236
},
238-
{
239-
text: "Avail",
240-
link: "/tutorials/da/avail-da",
241-
},
242237
],
243238
},
244239
{
@@ -250,12 +245,8 @@ function sidebarHome() {
250245
link: "/tutorials/sequencing/overview",
251246
},
252247
{
253-
text: "Local",
254-
link: "/tutorials/sequencing/local",
255-
},
256-
{
257-
text: "Centralized",
258-
link: "/tutorials/sequencing/centralized",
248+
text: "Single",
249+
link: "/tutorials/sequencing/single",
259250
},
260251
{
261252
text: "Based",
@@ -265,10 +256,6 @@ function sidebarHome() {
265256
text: "Forced Inclusion",
266257
link: "/tutorials/sequencing/forced-inclusion",
267258
},
268-
{
269-
text: "Astria",
270-
link: "/tutorials/sequencing/astria",
271-
},
272259
],
273260
},
274261
{
@@ -280,11 +267,7 @@ function sidebarHome() {
280267
text: "EVM",
281268
collapsed: true,
282269
items: [
283-
{ text: "BeaconKit EVM", link: "/tutorials/execution/beaconkit" },
284-
{
285-
text: "Artela EVM++",
286-
link: "/tutorials/execution/artela-evm-plus-plus",
287-
},
270+
// { text: "RETH EVM", link: "/tutorials/execution/reth-evm" },
288271
{
289272
text: "Contract interaction",
290273
link: "/tutorials/execution/evm-contract-interaction",
@@ -305,10 +288,6 @@ function sidebarHome() {
305288
text: "Docker Compose",
306289
link: "/tutorials/docker-compose",
307290
},
308-
// {
309-
// text: "Kurtosis",
310-
// link: "/tutorials/kurtosis",
311-
// },
312291
],
313292
},
314293
],
-502 KB
Binary file not shown.

public/polaris-evm/polaris-evm.png

-579 KB
Binary file not shown.
-575 KB
Binary file not shown.

public/wordle/init.sh

Lines changed: 0 additions & 44 deletions
This file was deleted.

public/wordle/wordle.png

-522 KB
Binary file not shown.

tutorials/docker-compose.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ Make sure you have your wordle chain ready by completing [the Build your chain t
2323

2424
### 💻 Docker Compose {#docker-compose}
2525

26-
You can [install docker compose here](https://docs.docker.com/compose/install/).
26+
You can [install docker compose here](https://docs.docker.com/compose/install/).
2727

2828
Once installed, you can verify the installation by running:
2929

3030
```bash
3131
docker compose version
3232
```
33+
3334
```bash
3435
Docker Compose version v2.23.0-desktop.1
3536
```
@@ -41,6 +42,7 @@ In addition to our chain, we need to run a DA and Sequencer node.
4142
We will use the [local-da](https://github.com/rollkit/local-da) and [local-sequencer](https://github.com/rollkit/go-sequencing) for this tutorial and run it with our chain.
4243

4344
To save time, we can use their respective Dockerfiles:
45+
4446
* [local-da Dockerfile](https://github.com/rollkit/local-da/blob/main/Dockerfile)
4547
* [local-sequencer Dockerfile](https://github.com/rollkit/go-sequencing/blob/main/Dockerfile)
4648

@@ -56,10 +58,10 @@ FROM golang as base
5658
5759
# Install dependencies
5860
RUN apt update && \
59-
apt-get install -y \
60-
build-essential \
61-
ca-certificates \
62-
curl
61+
apt-get install -y \
62+
build-essential \
63+
ca-certificates \
64+
curl
6365
6466
# Install rollkit
6567
RUN curl -sSL https://rollkit.dev/install.sh | sh -s {{constants.rollkitLatestTag}}
@@ -95,8 +97,8 @@ FROM debian:bookworm-slim
9597
9698
# Install jq
9799
RUN apt update && \
98-
apt-get install -y \
99-
jq
100+
apt-get install -y \
101+
jq
100102
101103
# Set the working directory
102104
WORKDIR /root
@@ -146,7 +148,7 @@ wordle latest 5d3533c1ea1c 8 seconds ago 443MB
146148

147149
### 🐳 Docker Compose file {#docker-compose-file}
148150

149-
Next we need to create our `compose.yaml` file for docker compose to use.
151+
Next we need to create our `compose.yaml` file for docker compose to use.
150152

151153
In the root of the `wordle` directory, create a new file called `compose.yaml` and add the following code:
152154

tutorials/gm-world.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ import constants from '../.vitepress/constants/constants.js'
2929

3030
## 🛠️ Dependencies {#dependencies}
3131

32-
As we move into more advanced use cases, we use [kurtosis](https://docs.kurtosis.com/) to help with managing all the services we need to run. You can [install kurtosis here](https://docs.kurtosis.com/install).
32+
As we move into more advanced use cases, we use [kurtosis](https://docs.kurtosis.com/) to help with managing all the services we need to run. You can [install kurtosis here](https://docs.kurtosis.com/install).
3333

3434
Once installed, you can verify the installation by running:
3535

3636
```bash
3737
kurtosis version
3838
```
39+
3940
```bash
4041
CLI Version: 0.90.1
4142

@@ -104,6 +105,7 @@ Kurtosis has successfully launched the GM rollup and the local DA network. The G
104105
```bash
105106
docker ps
106107
```
108+
107109
```bash
108110
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
109111
af16c1a5e68c ghcr.io/rollkit/gm:05bd40e "/bin/sh -c 'rollkit…" 46 seconds ago Up 45 seconds 0.0.0.0:26657->26657/tcp gm--ed0233f8291d4a42bdd0e173393af809
@@ -129,6 +131,7 @@ You can verify the rollup is running by checking the logs:
129131
```bash
130132
docker logs $GM
131133
```
134+
132135
```bash
133136
...
134137
12:21PM INF starting node with ABCI CometBFT in-process module=server
@@ -273,7 +276,7 @@ pagination:
273276

274277
## 📦 GM world UI app
275278

276-
Now that you have an idea of how to interact with the rollup with the rollkit CLI, let's look at the user interface (UI) application aspect of connecting a wallet to a rollup.
279+
Now that you have an idea of how to interact with the rollup with the rollkit CLI, let's look at the user interface (UI) application aspect of connecting a wallet to a rollup.
277280

278281
Connecting your wallet to your rollup is as straightforward as connecting to any other blockchain. It assumes you have the [Keplr](https://www.keplr.app/) wallet extension installed in your browser.
279282

0 commit comments

Comments
 (0)