diff --git a/docs/developers/celestia-node-key.mdx b/docs/developers/celestia-node-key.mdx index 892275e00a7..9784eedd231 100644 --- a/docs/developers/celestia-node-key.mdx +++ b/docs/developers/celestia-node-key.mdx @@ -277,7 +277,7 @@ services: - NODE_TYPE=light command: celestia light start --core.ip rpc-mocha.pops.one --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network mocha --keyring.accname my_celes_key volumes: - - ${PWD}/keys:/root/.celestia-light-mocha/keys + - ${PWD}/keys:/root/.celestia-light-mocha-3/keys ports: - 26659:26659 ``` @@ -312,7 +312,7 @@ expect with the key you mounted: ```bash root@:/# ./cel-key list --keyring-backend test --node.type light -using directory: ~/.celestia-light-mocha/keys +using directory: ~/.celestia-light-mocha-3/keys - address: celestia1wkhyhr7ngf0ayqlpnsnxg4d72hfs5453dvunm9 name: my_celes_key pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A1/NsoY0RGL7Hqt4VWLg441GQKJsZ2fBUnZXipgns8oV"}' diff --git a/docs/nodes/full-consensus-node.md b/docs/nodes/full-consensus-node.md index 2bee5658c23..6d96f07607b 100644 --- a/docs/nodes/full-consensus-node.md +++ b/docs/nodes/full-consensus-node.md @@ -187,7 +187,7 @@ cd $HOME rm -rf ~/.celestia-app/data mkdir -p ~/.celestia-app/data SNAP_NAME=$(curl -s https://snaps.qubelabs.io/celestia/ | \ - egrep -o ">mocha.*tar" | tr -d ">") + egrep -o ">mocha-3.*tar" | tr -d ">") wget -O - https://snaps.qubelabs.io/celestia/${SNAP_NAME} | tar xf - \ -C ~/.celestia-app/data/ ``` diff --git a/versions/constants.js b/versions/constants.js index c1d9a5c2f42..869ddb233d6 100644 --- a/versions/constants.js +++ b/versions/constants.js @@ -7,7 +7,7 @@ const constants = Object.freeze({ golang: "1.19.1", arabicaChainId: "arabica-9", bsrChainId: "blockspacerace-0", - mochaChainId: "mocha", + mochaChainId: "mocha-3", arabicaRollkitVersion: "v0.8.2-rc0", mochaRollkitVersion: "currently not compatible", bsrRollkitVersion: "v0.8.1",