From 63bb2b569c49accd4577f59c255dc019c64de612 Mon Sep 17 00:00:00 2001 From: "joshcs.eth" <46639943+jcstein@users.noreply.github.com> Date: Wed, 18 Oct 2023 11:14:33 -0400 Subject: [PATCH] chore: bump to rollkit v0.10.5 & local devnet to v0.11.0 --- tutorials/gm-world.md | 6 +++--- tutorials/recipe-book.md | 4 ++-- tutorials/starter-rollup.md | 2 +- tutorials/wordle.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tutorials/gm-world.md b/tutorials/gm-world.md index f71e00971..102b2b3e3 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 -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12 +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 ``` When passing the `--rollkit.da_config` flag later in the tutorial, @@ -431,14 +431,14 @@ from inside the `gm` directory: ::: code-group ```bash [local-celestia-devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download ``` ```bash [Arabica Devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download diff --git a/tutorials/recipe-book.md b/tutorials/recipe-book.md index 32c22b3f2..5f018de9c 100644 --- a/tutorials/recipe-book.md +++ b/tutorials/recipe-book.md @@ -70,14 +70,14 @@ To swap out CometBFT for Rollkit, run the following commands: ::: code-group ```bash [local-celestia-devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download ``` ```bash [Arabica Devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download diff --git a/tutorials/starter-rollup.md b/tutorials/starter-rollup.md index 6ae6f25ea..a263cf76b 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 -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12 +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 ``` 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. diff --git a/tutorials/wordle.md b/tutorials/wordle.md index 90989e583..e06f90079 100644 --- a/tutorials/wordle.md +++ b/tutorials/wordle.md @@ -187,14 +187,14 @@ Run the following command inside the `wordle` directory. ::: code-group ```bash [local-celestia-devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download ``` ```bash [Arabica Devnet] -go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.2-no-fraud-proofs +go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/cosmos-sdk@v0.47.3-rollkit-v0.10.5-no-fraud-proofs go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/protobuf@v1.3.3-alpha.regen.1 go mod tidy go mod download