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