canine-docs/docs/nodes/4_mainnet.md
2022-10-20 17:25:59 -04:00

769 B

sidebar_position
4

Joining Mainnet

:::info

Mainnet goes live on October 26th 2022! If you are here before that, these docs will not work!

:::

After installing canined. You can join the mainnet by following these steps:

canined init <alias> --chain-id=<chain-id>

:::note

chain-id for mainnet is currently canine-1.

:::

Then we want to replace our generated genesis file with the one used to start the network.

wget -O ~/.canine/config/genesis.json https://raw.githubusercontent.com/JackalLabs/woof/master/genesis/woof-final.json

As a validator, you'll need to set a minimum gas price like so:

GAS="0.002ujkl"
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"$GAS\"/" $HOME/.canine/config/app.toml