Skip to main content

Command

Wallet:

Add New Wallet:

sunrised keys add wallet

Restore executing wallet:

sunrised keys add wallet --recover

List All Wallets:

sunrised keys list

Delete wallet:

sunrised keys delete wallet

Check Balance:

sunrised q bank balances $(sunrised keys show wallet -a)

Validator:

Create Validator:

sunrised tx staking create-validator <(cat <<EOF
{
"pubkey": $(sunrised comet show-validator),
"amount": "1000000uvrise",
"moniker": "Node39-Guide",
"identity": "YOUR_KEYBASE_ID",
"website": "YOUR_WEBSITE_URL",
"security-contact": "YOUR_SECURITY_EMAIL",
"details": "YOUR_DETAILS",
"commission-rate": "0.05",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
EOF
) \
--from wallet \
--chain-id sunrise-1 \
--fees 20000uusdrise \
-y

Check sync | False -> done.

sunrised status 2>&1 | jq .SyncInfo.catching_up

Delegate:

sunrised tx staking delegate $(sunrised keys show wallet --bech val -a) 1000000urise \
--from wallet \
--chain-id=sunrise-1 \
--fees 20000uusdrise \
--node=https://sunrise-rpc.node39.top:443 \
-y

Withdraw rewards and commission:

sunrised tx distribution withdraw-rewards $(sunrised keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=sunrise-1 \
--fees 20000uusdrise \
--node=https://sunrise-rpc.node39.top:443 \
-y

Unjail:

sunrised tx slashing unjail \
--from wallet \
--chain-id=sunrise-1 \
--chain-id sunrise-1 \
--fees 20000uusdrise \ \
--node=https://sunrise-rpc.node39.top:443 \
-y

Unbond:

sunrised tx staking unbond $(sunrised keys show wallet --bech val -a) 1000000urise \
--from wallet \
--chain-id=sunrise-1 \
--fees 20000uusdrise \
--node=https://sunrise-rpc.node39.top:443 \
-y

Vote:

terrad tx gov vote proposal_id yes \
--from wallet \
--chain-id=phoenix-1 \
--fees 30000uluna \
--node=https://terra-rpc.node39.top:443 \
-y

System:

Reload Service:

sudo systemctl daemon-reload

Enable Service:

sudo systemctl enable sunrised

Disable Service:

sudo systemctl disable sunrised

Start Service:

sudo systemctl start sunrised

Stop Service:

sudo systemctl stop sunrised

Restart Service:

sudo systemctl restart sunrised

Check Service Status:

sudo systemctl status sunrised

Check Service Logs:

sudo journalctl -u sunrised -fo cat