# You can run all of these commands from your home directory
# Initialize the genesis.json file that will help you to bootstrap the network
antliad init <moniker name> --chain-id=antliachain
# Create a key to hold your validator account
antliacli keys add validator
# Add that key into the genesis.app_state.accounts array in the genesis file
# NOTE: this command lets you set the number of coins. Make sure this account has some coins
# with the genesis.app_state.staking.params.bond_denom denom, the default is staking
antliad add-genesis-account $(antliacli keys show validator -a) 1000000000stake
# Generate the transaction that creates your validator
antliad gentx --name validator
# Add the generated bonding transaction to the genesis file
# Now its safe to start `antliad`