diff --git a/docs/nodes/nodes/4_mainnet.md b/docs/nodes/nodes/4_mainnet.md index d40290a..f962bf1 100644 --- a/docs/nodes/nodes/4_mainnet.md +++ b/docs/nodes/nodes/4_mainnet.md @@ -17,14 +17,14 @@ canined init --chain-id= :::note -`chain-id` for mainnet is currently `canine-1`. +`chain-id` for mainnet is currently `jackal-1`. ::: Then we want to replace our generated genesis file with the one used to start the network. ```sh -wget -O ~/.canine/config/genesis.json https://jackaldao.com/wp-content/uploads/2022/10/genesis-final.txt +wget -O ~/.canine/config/genesis.json https://cdn.discordapp.com/attachments/1002389406650466405/1034968352591986859/updated_genesis2.json ``` As a validator, you'll need to set a minimum gas price like so: diff --git a/docs/nodes/providers/2_setting_up.md b/docs/nodes/providers/2_setting_up.md index 5dd659c..c161199 100644 --- a/docs/nodes/providers/2_setting_up.md +++ b/docs/nodes/providers/2_setting_up.md @@ -16,7 +16,7 @@ The chain must be live on main-net to complete the following actions ```sh canined init [node-name] --home={path-to-pool-from-before} -canined config chain-id canine-1 +canined config chain-id jackal-1 canined config keyring-backend test canined tx storage init-provider {IP_ADDRESS} {STORAGE_IN_BYTES} --from {KEY_NAME} --gas-prices=0.002ujkl diff --git a/docs/nodes/validators/1_joining.md b/docs/nodes/validators/1_joining.md index 1a5ee9b..b039568 100644 --- a/docs/nodes/validators/1_joining.md +++ b/docs/nodes/validators/1_joining.md @@ -20,6 +20,6 @@ canined tx staking create-validator \ --min-self-delegation 1 \ --moniker {YOUR_MONIKER} \ --pubkey $(canined tendermint show-validator) \ - --chain-id canine-1 \ + --chain-id jackal-1 \ --gas-prices 0.02ujkl ```