Managing Token

Withdraw reward from all validator

symphonyd tx distribution withdraw-all-rewards --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Withdraw reward and commision

symphonyd tx distribution withdraw-rewards $(symphonyd keys show wallet --bech val -a) --commission --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Delegate token to your validator

symphonyd tx staking delegate $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Delegate token to another validator

symphonyd tx staking delegate <to-valoper-address> 1000000note --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Redelegate to another validator

symphonyd tx staking redelegate $(symphonyd keys show wallet --bech val -a) <to-valoper-address> 1000000note --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Unbond token from your own validator

symphonyd tx staking unbond $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Send token to the wallet

symphonyd tx bank send wallet <to-wallet-address> 1000000note --from wallet --chain-id symphony-testnet-3 --gas-adjustment 1.4 --gas auto --fees 800note -y

Last updated