From 123e7feea1332f7289f3956626f1a99c9c6f0df3 Mon Sep 17 00:00:00 2001 From: Josh Stein <46639943+jcstein@users.noreply.github.com> Date: Sun, 1 Oct 2023 07:46:03 -0400 Subject: [PATCH 1/3] chore: fix broken link (#258) --- .vitepress/config.ts | 2 +- blog/lets-roll-community-call.md | 2 +- blog/overview.md | 2 +- ...itcoin-with-rollkit.md => sovereign-rollups-on-bitcoin.md} | 0 learn/intro.md | 4 ++-- 5 files changed, 5 insertions(+), 5 deletions(-) rename blog/{sovereign-rollups-on-bitcoin-with-rollkit.md => sovereign-rollups-on-bitcoin.md} (100%) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 14100570a..1f02318b8 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -230,7 +230,7 @@ function sidebarHome() { items: [ { text: 'Overview', link: '/blog/overview'}, { text: 'Introducing Rollkit', link: '/blog/introducing-rollkit' }, - { text: 'Sovereign rollups on Bitcoin with Rollkit', link: '/blog/sovereign-rollups-on-bitcoin-with-rollkit' }, + { text: 'Sovereign rollups on Bitcoin with Rollkit', link: '/blog/sovereign-rollups-on-bitcoin' }, { text: "Let's Roll - Rollkit's Community Call", link: '/blog/lets-roll-community-call' }, ] } diff --git a/blog/lets-roll-community-call.md b/blog/lets-roll-community-call.md index 9d68ead7b..d429729eb 100644 --- a/blog/lets-roll-community-call.md +++ b/blog/lets-roll-community-call.md @@ -21,7 +21,7 @@ By Joseph Al-Chami ![Rollkit blog cover](/lets-roll.jpg) _Originally published on 8 March 2023_ -Last Sunday, we released the first [research implementation](https://rollkit.dev/blog/sovereign-rollups-on-bitcoin-with-rollkit) that allows Rollkit rollups to use Bitcoin for data availability. +Last Sunday, we released the first [research implementation](https://rollkit.dev/blog/sovereign-rollups-on-bitcoin) that allows Rollkit rollups to use Bitcoin for data availability. [This announcement](https://twitter.com/RollkitDev/status/1632438374513676288) has sparked a lot of curiosity and excitement in the community. Many developers are starting to imagine what the future of sovereign rollups could look like on Bitcoin and other data availability layers. They’re looking for ways to innovate using this integration, to replicate it on other layer 1 blockchains, to identify challenges and to suggest improvements. diff --git a/blog/overview.md b/blog/overview.md index 496bd4d6a..691e03801 100644 --- a/blog/overview.md +++ b/blog/overview.md @@ -9,7 +9,7 @@ Welcome to our blog! Here, you'll find a variety of articles on a range of topic ## Table of Contents - [Introducing Rollkit](/blog/introducing-rollkit) -- [Sovereign rollups on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin-with-rollkit) +- [Sovereign rollups on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin) - [Let's Roll - Rollkit's Community Call](/blog/lets-roll-community-call) Stay tuned for more exciting content! diff --git a/blog/sovereign-rollups-on-bitcoin-with-rollkit.md b/blog/sovereign-rollups-on-bitcoin.md similarity index 100% rename from blog/sovereign-rollups-on-bitcoin-with-rollkit.md rename to blog/sovereign-rollups-on-bitcoin.md diff --git a/learn/intro.md b/learn/intro.md index eb51362ae..92273fcab 100644 --- a/learn/intro.md +++ b/learn/intro.md @@ -65,5 +65,5 @@ If you're familiar with Rollkit, you may want to skip to the [tutorials section] - [Overview](/blog/overview) - [Introducing Rollkit](/blog/introducing-rollkit) -- [Sovereign rollups on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin-with-rollkit) -- ["Let's Roll - Rollkit's Community Call"](/blog/lets-roll-community-call) \ No newline at end of file +- [Sovereign rollups on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin) +- ["Let's Roll - Rollkit's Community Call"](/blog/lets-roll-community-call) From 650cb68fe9daa88985046435e2c9c4a867f5344d Mon Sep 17 00:00:00 2001 From: Josh Stein <46639943+jcstein@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:57:25 -0400 Subject: [PATCH 2/3] chore: update docker run commands to match #66 (#257) * chore: update docker run commands to match #66 * Update tutorials/gm-world.md Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> * Update tutorials/starter-rollup.md Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> --------- Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> --- tutorials/gm-world.md | 2 +- tutorials/starter-rollup.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/gm-world.md b/tutorials/gm-world.md index 741a97b3b..44d922f02 100644 --- a/tutorials/gm-world.md +++ b/tutorials/gm-world.md @@ -310,7 +310,7 @@ this process can be done on any machine of your choosing. We tested out the Devn First, run the [`local-celestia-devnet`](https://github.com/rollkit/local-celestia-devnet) by running the following command: ```bash -docker run --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc8 +docker run -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12 ``` When passing the `--rollkit.da_config` flag later in the tutorial, diff --git a/tutorials/starter-rollup.md b/tutorials/starter-rollup.md index 782034b3b..6ae6f25ea 100644 --- a/tutorials/starter-rollup.md +++ b/tutorials/starter-rollup.md @@ -22,7 +22,7 @@ git clone https://github.com/rollkit/gm-starter.git && cd gm-starter In a second terminal instance, start the local-celestia-devnet: ```bash -docker run --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc8 +docker run -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12 ``` When passing the `--rollkit.da_config` flag later in the tutorial, it will require `auth_token`` to be passed in. The auth token with write permission is required to submit blobs and can be obtained from the logs on local-celestia-devnet before the bridge node starts. From 194d99426bd14989c68f3074f2698d3c87c21bb1 Mon Sep 17 00:00:00 2001 From: Josh Stein <46639943+jcstein@users.noreply.github.com> Date: Tue, 10 Oct 2023 19:02:11 -0400 Subject: [PATCH 3/3] docs: update docker cmd for rc12 (#259) --- tutorials/full-and-sequencer-node.md | 2 +- tutorials/gm-world.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/full-and-sequencer-node.md b/tutorials/full-and-sequencer-node.md index 861405302..27751ef6a 100644 --- a/tutorials/full-and-sequencer-node.md +++ b/tutorials/full-and-sequencer-node.md @@ -102,7 +102,7 @@ submit blobs and can be set with the following command once your local-celestia-devnet is running: ```bash -export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin) +export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin) ``` This will set the local-celestia-devnet bridge node auth token. This diff --git a/tutorials/gm-world.md b/tutorials/gm-world.md index 44d922f02..acf64cec5 100644 --- a/tutorials/gm-world.md +++ b/tutorials/gm-world.md @@ -319,7 +319,7 @@ write permission is required to submit blobs and can be obtained with the following command once your local-celestia-devnet is running: ```bash -docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin +docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin ``` This will give you the local-celestia-devnet bridge node auth token. This @@ -336,7 +336,7 @@ local network, this will make sure you can post rollup blocks to your Celestia D First, set your auth token: ```bash -export CELESTIA_NODE_AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin) +export CELESTIA_NODE_AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin) ``` Next, check your balance: @@ -467,7 +467,7 @@ Remember that the following command assumes that there is only one container, otherwise you can pass the container name. ```bash -export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin) +export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin) ``` Run the `init-local.sh` script: