Command
Wallet:
Add New Wallet:
elysd keys add wallet
Restore executing wallet:
elysd keys add wallet --recover
List All Wallets:
elysd keys list
Delete wallet:
elysd keys delete wallet
Check Balance:
elysd q bank balances $(elysd keys show wallet -a)
Validator:
Create Validator:
- Show pub key:
elysd tendermint show-validator
- Create validator.json
nano $HOME/.elys/config/vaidator.json
- Copy, paste and edit:
{
"pubkey": {"@type":"/cosmos.crypto.ed25519.PubKey","key":"xxxxxxx"}, //Paste your Pub-key
"amount": "1000000uelys",
"moniker": "Node39.TOP Guide",
"identity": "xxxxxxxxxxxxx",
"website": "https://node39.top",
"security": "[email protected]",
"details": "POS Node & Validator",
"commission-rate": "0.1",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}
- Create:
elysd tx staking create-validator $HOME/.elys/config/validator.json --from wallet --chain-id=elys-1 --gas auto --gas-adjustment 1.5 --fees 500uelys --node=https://elys-rpc.node39.top:443 -y
Check sync | False -> done.
elysd status 2>&1 | jq .SyncInfo.catching_up
Delegate:
elysd tx staking delegate $(elysd keys show wallet --bech val -a) 1000000uelys --from wallet --chain-id=elys-1 --gas auto --gas-adjustment 1.5 --fees 500uelys --node=https://elys-rpc.node39.top:443 -y
Withdraw rewards and commission:
elysd tx distribution withdraw-rewards $(elysd keys show wallet --bech val -a) --commission --from wallet --chain-id=elys-1 --gas auto --gas-adjustment 1.5 --fees 500uelys --node=https://elys-rpc.node39.top:443 -y
Unjail:
elysd tx slashing unjail --from wallet --chain-id=elys-1 --gas auto --gas-adjustment 1.5 --fees 500uelys --node=https://elys-rpc.node39.top:443 -y
Unbond:
elysd tx staking unbond $(elysd keys show wallet --bech val -a) 1000000uelys --from wallet --chain-id=elys-1 --gas auto --gas-adjustment 1.5 --fees 500uelys --node=https://elys-rpc.node39.top:443 -y
Vote:
yes/no/no_with_veto/abstain
elysd tx gov vote 1 yes \
--from wallet \
--chain-id elys-1 \
--fees 500uelys \
--node=https://elys-rpc.node39.top:443 \
-y
System:
Reload Service:
sudo systemctl daemon-reload
Enable Service:
sudo systemctl enable elysd
Disable Service:
sudo systemctl disable elysd
Start Service:
sudo systemctl start elysd
Stop Service:
sudo systemctl stop elysd
Restart Service:
sudo systemctl restart elysd
Check Service Status:
sudo systemctl status elysd
Check Service Logs:
sudo journalctl -u elysd -fo cat