Note
nibid --help
to see a list of all available commands
# you may need to adjust the composition of the gas fee when doing cli with basic tx ,
example format :
--gas-prices # decimal format [AMOUNT]unibi
--gas # gas limit default is "200000"
--fees # format [AMOUNT]unibi
--gas-adjustment # default "1"
define your own combination
nibid keys add wallet
nibid keys delete wallet
nibid keys add wallet --recover
nibid keys list
nibid tx bank send wallet [TO_ADDRESS] [AMOUNT]unibi \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx bank multi-send wallet [TO_ADDRESS1] [TO_ADDRESS2] [TO_ADDRESS3] [AMOUNT]unibi \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx staking create-validator \
--amount 1000000unibi \
--pubkey $(nibid tendermint show-validator) \
--chain-id cataclysm-1 \
--min-self-delegation 1 \
--commission-max-change-rate 0.01 \
--commission-max-rate 0.2 \
--commission-rate 0.05 \
--moniker ["VALIDATOR-MONIKER"] \
--identity ["VALIDATOR-IDENTITY"] \
--details ["VALIDATOR-DESCRIPTION"] \
--website ["VALIDATOR-WEBSITE"] \
--security-contact ["VALIDATOR-CONTACT"] \
--from "wallet" \
--gas "200000"
nibid tx staking edit-validator \
--chain-id cataclysm-1 \
--commission-rate 0.05 \
--new-moniker ["NEW-VALIDATOR-MONIKER"] \
--identity ["NEW-VALIDATOR-IDENTITY"] \
--details ["NEW-VALIDATOR-DESCRIPTION"] \
--website ["NEW-VALIDATOR-WEBSITE"] \
--security-contact ["NEW-VALIDATOR-CONTACT"] \
--from "wallet" \
--gas "200000"
nibid tx staking delegate [TO_VALOPER_ADDRESS] [AMOUNT]unibi \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx staking redelegate [SRC_VALOPER_ADDRESS] [TO_VALOPER_ADDRESS] [AMOUNT]unibi \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx slashing unjail \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid query gov proposals
nibid query gov proposal [PROPOSAL_ID]
OPTION_VALUE: yes , no , no_with_veto and abstain
nibid tx gov vote [PROPOSAL_ID] [OPTION] \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx distribution withdraw-all-rewards \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"
nibid tx distribution withdraw-rewards $(nibid keys show wallet --bech val -a) \
--commission \
--chain-id cataclysm-1 \
--from "wallet" \
--gas "200000"