Token Management
Send token to another address
dymd tx bank send wallet <TO_WALLET_ADDRESS> 1000000udym --from wallet --chain-id 35-C
Withdraw rewards
dymd tx distribution withdraw-all-rewards --from wallet --chain-id 35-C --fees 1000udym -y
Withdraw rewards and commission
dymd tx distribution withdraw-rewards $(dymd keys show wallet --bech val -a) --commission --from wallet --chain-id 35-c --fees 1000udym -y
Delegate token to a Validator
dymd tx staking delegate $(dymd keys show wallet --bech val -a) <AMOUNT> --from wallet --chain-id 35-C --fees 1000udym -y
Redelegate token to another Validator
dymd tx staking redelegate $(dymd keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> <AMOUNT> --from wallet --chain-id 35-C --fees 1000udym -y
Unbond token from Validator (it takes 21 days to unlocked)
dymd tx staking unbond $(dymd keys show wallet --bech val -a) <AMOUNT> --from wallet --chain-id 35-C --fees 1000udym -y
Last updated