Node CLI Cheatsheet
CLI Cheatsheet
- Always be careful with the capitalized words
- Specify
--chain-id
Usefull Command
tacchaind status 2>&1 | jq .sync_info
Wallet Management
Add Wallet Specify the value <wallet>
with your own wallet name
tacchaind keys add wallet
Export PK to EVM
tacchaind keys export wallet --unarmored-hex --unsafe
Recover Wallet
tacchaind keys add wallet --recover
List Wallet
tacchaind keys list
Delete Wallet
tacchaind keys delete wallet
Check Wallet Balance
tacchaind q bank balances $(tacchaind keys show wallet -a)
Validator Management
Please adjust <wallet>
, MONIKER
, YOUR_KEYBASE_ID
, YOUR_DETAILS
, YOUUR_WEBSITE_URL
Create Validator (Staking)
- Check Your Pubkey
tacchaind tendermint show-validator
- Make File validator.json
nano $HOME/.tacchaind/validator.json
{
"pubkey": ,
"amount": "5000000000000000000utac",
"moniker": "",
"identity": "",
"website": "",
"security": "",
"details": "",
"commission-rate": "0.05",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
tacchaind tx staking create-validator $HOME/.tacchaind/validator.json \
--from wallet \
--chain-id tacchain_2391-1 \
--gas-prices=4000000000000utac \
--gas-adjustment=1.2 \
--gas=auto
Unjail Validator
tacchaind tx slashing unjail --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Check Jailed Reason
tacchaind query slashing signing-info $(tacchaind tendermint show-validator)
Token Management
Withdraw Rewards
tacchaind tx distribution withdraw-all-rewards --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Withdraw Rewards with Comission
tacchaind tx distribution withdraw-rewards $(tacchaind keys show wallet --bech val -a) --commission --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Delegate Token to your own validator
tacchaind tx staking delegate $(tacchaind keys show wallet --bech val -a) 1000000000000000000utac --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Delegate Token to other validator
tacchaind staking redelegate $(tacchaind keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000000000000000utac --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Unbond Token from your validator
tacchaind tx staking unbond $(tacchaind keys show wallet --bech val -a) 1000000000000000000 --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Send Token to another wallet
tacchaind tx bank send wallet <TO_WALLET_ADDRESS> 1000000000000000000utac --from wallet --chain-id tacchain_2391-1 --gas-prices=4000000000000utac --gas-adjustment=1.2 --gas=auto
Other
Set Your own Custom Ports You can change value CUSTOM_PORT=20
To any other ports
- PORT=31
sed -i.bak -e "s%^node = \"tcp://localhost:26657\"%node = \"tcp://localhost:31657\"%" $HOME/.tacchaind/config/client.toml
sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:31658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:31657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:31060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:31656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":31660\"%" $HOME/.tacchaind/config/config.toml
sed -i.bak -e "s%^address = \"tcp://localhost:1317\"%address = \"tcp://localhost:31317\"%; s%^address = \"localhost:9090\"%address = \"localhost:31090\"%" $HOME/.tacchaind/config/app.toml
Enable Indexing usually enabled by default
sed -i 's|^indexer *=.*|indexer = "kv"|' $HOME/.tacchaind/config/config.toml
Disable Indexing
sed -i 's|^indexer *=.*|indexer = "null"|' $HOME/.tacchaind/config/config.toml
Reset Chain Data
tacchaind tendermint unsafe-reset-all --home $HOME/.tacchaind --keep-addr-book
Delete Node
WARNING! Use this command wisely Backup your key first it will remove Defund from your system
sudo systemctl stop tacchainbd
sudo systemctl disable tacchaind
sudo rm /etc/systemd/system/tacchaind.service
sudo systemctl daemon-reload
rm -f $(which tacchaind)
rm -rf .tacchaind
rm -rf tacchain