Skip to content

Commit

Permalink
Immutable zkEVM Shanghai upgrade steps (#802)
Browse files Browse the repository at this point in the history
* shanghai upgrade steps

* rm json arg

---------

Co-authored-by: Milap Sheth <milap@axelar.network>
  • Loading branch information
igx-C and milapsheth authored Mar 4, 2024
1 parent 88c3bc7 commit 71ce1c9
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/pages/validator/external-chains/immutable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ mkdir /opt/immutable-zkevm
2. Pull the Docker image.
```bash
docker pull ghcr.io/immutable/go-ethereum/go-ethereum:v0.0.8
docker pull ghcr.io/immutable/go-ethereum/go-ethereum:v1.0.0-beta.1
# Create a short-form tag we can reference in the next few commands
docker tag ghcr.io/immutable/go-ethereum/go-ethereum:v0.0.8 geth
docker tag ghcr.io/immutable/go-ethereum/go-ethereum:v1.0.0-beta.1 geth
```
3. Initialise the node.
Expand All @@ -126,8 +126,9 @@ docker run \
--rm \
-v /opt/immutable-zkevm:/mnt/geth \
--name geth \
geth init \
--datadir /mnt/geth /etc/geth/testnet.json
geth immutable bootstrap rpc \
--zkevm testnet \
--datadir /mnt/geth
```
</tab-item>
<tab-item title="Mainnet">
Expand All @@ -136,8 +137,9 @@ docker run \
--rm \
-v /opt/immutable-zkevm:/mnt/geth \
--name geth \
geth init \
--datadir /mnt/geth /etc/geth/mainnet.json
geth immutable bootstrap rpc \
--zkevm mainnet \
--datadir /mnt/geth
```
</tab-item>
</tabs>
Expand All @@ -154,9 +156,9 @@ docker run \
--name geth \
-p 8545:8545 \
geth \
--zkevm testnet \
--config /etc/geth/testnet.toml \
--datadir /mnt/geth \
--networkid 13473 \
--http \
--http.port "8545" \
--http.addr "0.0.0.0"
Expand All @@ -171,9 +173,9 @@ docker run \
--name geth \
-p 8545:8545 \
geth \
--zkevm mainnet \
--config /etc/geth/mainnet.toml \
--datadir /mnt/geth \
--networkid 13371 \
--http \
--http.port "8545" \
--http.addr "0.0.0.0"
Expand Down

0 comments on commit 71ce1c9

Please sign in to comment.