mainnet upgrade

This commit is contained in:
Marston Connell 2022-10-27 11:48:07 -04:00
parent a9b2485471
commit 6a92b57e79
3 changed files with 4 additions and 4 deletions

View File

@ -17,14 +17,14 @@ canined init <alias> --chain-id=<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:

View File

@ -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

View File

@ -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
```