Command
Wallet:
Add New Wallet:
sedad keys add wallet
Restore executing wallet:
sedad keys add wallet --recover
List All Wallets:
sedad keys list
Delete wallet:
sedad keys delete wallet
Check Balance:
sedad q bank balances $(sedad keys show wallet -a)
Validator:
Create Validator:
sedad tx staking create-validator \
--amount 1000000000000000000aseda \
--pubkey $(sedad tendermint show-validator) \
--moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id seda-1 \
--commission-rate 0.1 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--from wallet \
--fees 2000000000000000aseda \
-y
Edit Validator
sedad tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id seda-1 \
--commission-rate 0.05 \
--from wallet \
--fees 2000000000000000aseda \
-y
Check sync | False -> done.
sedad status 2>&1 | jq .SyncInfo.catching_up
Delegate:
sedad tx staking delegate $(sedad keys show wallet --bech val -a) 1000000aseda \
--from wallet \
--chain-id=seda-1 \
--gas-prices 10000000000aseda \
--gas 2000000 \
--node=https://seda-rpc.node39.top:443 \
-y
Withdraw rewards and commission:
sedad tx distribution withdraw-rewards $(sedad keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=seda-1 \
--gas-prices 10000000000aseda \
--gas 2000000 \
--node=https://seda-rpc.node39.top:443 \
-y
Unjail:
--from wallet \
--chain-id=seda-1 \
--gas-prices 10000000000aseda \
--gas 2000000 \
--node=https://seda-rpc.node39.top:443 \
-y
Unbond:
sedad tx staking unbond $(sedad keys show wallet --bech val -a) 1000000aseda \
--from wallet \
--chain-id=seda-1 \
--gas-prices 10000000000aseda \
--gas 2000000 \
--node=https://seda-rpc.node39.top:443 \
-y
Vote:
yes/no/no_with_veto/abstain
sedad tx gov vote 1 yes \
--from wallet \
--chain-id seda-1 \
--gas-prices 10000000000aseda \
--gas 2000000 \
--node=https://seda-rpc.node39.top:443 \
-y
System:
Reload Service:
sudo systemctl daemon-reload
Enable Service:
sudo systemctl enable sedad
Disable Service:
sudo systemctl disable sedad
Start Service:
sudo systemctl start sedad
Stop Service:
sudo systemctl stop sedad
Restart Service:
sudo systemctl restart sedad
Check Service Status:
sudo systemctl status sedad
Check Service Logs:
sudo journalctl -u sedad -fo cat