Skip to content

Commit

Permalink
chore: bump to rollkit v0.10.5 & local devnet to v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein committed Oct 18, 2023
1 parent e0e8181 commit 63bb2b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions tutorials/gm-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
```

```bash [Arabica Devnet]
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
Expand Down
4 changes: 2 additions & 2 deletions tutorials/recipe-book.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
```

```bash [Arabica Devnet]
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
Expand Down
2 changes: 1 addition & 1 deletion tutorials/starter-rollup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions tutorials/wordle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
```

```bash [Arabica Devnet]
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].2-no-fraud-proofs
go mod edit -replace github.com/cosmos/cosmos-sdk=github.com/rollkit/[email protected].5-no-fraud-proofs
go mod edit -replace github.com/gogo/protobuf=github.com/regen-network/[email protected]
go mod tidy
go mod download
Expand Down

0 comments on commit 63bb2b5

Please sign in to comment.