Token Management

before executed any commands, please change the value below (if any):

  • <wallet>

  • <TO_WALLET_ADDRESS>

  • <TO_VALOPER_ADDRESS>

Send token to another address

gitopiad tx bank send wallet <TO_WALLET_ADDRESS> 1000000aplanq --from wallet --chain-id planq_7070-2

Withdraw rewards

gitopiad tx distribution withdraw-all-rewards --from wallet --chain-id gitopia --gas-adjustment 1.15 --gas="auto" --fees="1000ulore" -y

Withdraw rewards and commission

gitopiad tx distribution withdraw-rewards $(gitopiad keys show wallet --bech val -a) --commission --from wallet --chain-id gitopia --gas-adjustment 1.15 --gas="auto" --fees="1000ulore" -y

Delegate token to a Validator

gitopiad tx staking delegate $(gitopiad keys show wallet --bech val -a) <AMOUNT> --from wallet --chain-id gitopia --gas-adjustment 1.15 --gas="auto" --fees="1000ulore" -y

Redelegate token to another Validator

gitopiad tx staking redelegate $(gitopiad keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> <AMOUNT> --from wallet --chain-id gitopia --gas-adjustment 1.15 --gas "auto" --fees "1000ulore" -y

Unbond token from Validator (it takes 21 days to unlocked)

gitopiad tx staking unbond $(gitopiad keys show wallet --bech val -a) <AMOUNT> --from wallet --chain-id gitopia --gas-adjustment 1.15 --gas "auto" --fees "1000ulore" -y

Last updated