Governance
Create New Text Proposal
firmachaind tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000ufct \
--type Text \
--from $WALLET \
--gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto \
-y
Proposals List
firmachaind query gov proposals
View proposal by proposal no
firmachaind query gov proposal 1
Vote yes
firmachaind tx gov vote 1 yes --from $WALLET --chain-id colosseum-1 --gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto
Vote no
firmachaind tx gov vote 1 no --from $WALLET --chain-id colosseum-1 --gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto
Vote abstain
firmachaind tx gov vote 1 abstain --from $WALLET --chain-id colosseum-1 --gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto
Vote No With Veto
firmachaind tx gov vote 1 no_with_veto --from $WALLET --chain-id colosseum-1 --gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto
Last updated