Note
sided --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]uside
--gas # gas limit default is "200000"
--fees # format [AMOUNT]uside
--gas-adjustment # default "1"
define your own combination
sided keys add wallet
sided keys delete wallet
sided keys add wallet --recover
sided keys list
sided tx bank send wallet [TO_ADDRESS] [AMOUNT]uside \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx bank multi-send wallet [TO_ADDRESS1] [TO_ADDRESS2] [TO_ADDRESS3] [AMOUNT]uside \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx staking create-validator \
--amount 1000000uside \
--pubkey $(sided tendermint show-validator) \
--chain-id S2-testnet-2 \
--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"
sided tx staking edit-validator \
--chain-id S2-testnet-2 \
--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"
sided tx staking delegate [TO_VALOPER_ADDRESS] [AMOUNT]uside \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx staking redelegate [SRC_VALOPER_ADDRESS] [TO_VALOPER_ADDRESS] [AMOUNT]uside \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx slashing unjail \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided query gov proposals
sided query gov proposal [PROPOSAL_ID]
OPTION_VALUE: yes , no , no_with_veto and abstain
sided tx gov vote [PROPOSAL_ID] [OPTION] \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx distribution withdraw-all-rewards \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"
sided tx distribution withdraw-rewards $(sided keys show wallet --bech val -a) \
--commission \
--chain-id S2-testnet-2 \
--from "wallet" \
--gas "200000"