StakeTown
  • Introduction
  • 🔗IBC relayers
  • Tools
    • Discord Governance Bot
    • IBC Monitoring
  • Mainnet
    • Archway
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Aura
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • C4E
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Celestia
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Elys
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Gitopia
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Juno
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Kyve
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Lava
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Osmosis
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Persistence
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Picasso
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Planq
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Quasar
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Quicksilver
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Source
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Umee
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
  • Testnet
    • Arkeo Network
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Babylon
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • C4E
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Celestia
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Elys
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Juno
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Lava
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Ojo
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Native
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Persistence
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Prysm
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Quicksilver
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Side Protocol
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Umee
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
    • Warden Protocol
      • Installation
      • Updates
      • Sync
      • Public API
      • Cheat Sheet
Powered by GitBook
On this page
  • Wallet operations
  • Validator operations
  • Transactions
  • Governance
  • Utils
  • Service management
  1. Testnet
  2. Native

Cheat Sheet

Wallet operations

Create wallet

⚠️ store seed phrase, important during recovering

gonative keys add <YOUR_WALLET_NAME>

Recover wallet

⚠️ store seed phrase, important during recovering

gonative keys add <YOUR_WALLET_NAME> --recover

List of all wallets

gonative keys list

Delete wallet

gonative keys delete <YOUR_WALLET_NAME>

Export wallet

⚠️ save to wallet.backup

gonative keys export <YOUR_WALLET_NAME>

Import wallet

gonative keys import <WALLET_NAME> wallet.backup

Check wallet balance

gonative q bank balances $(gonative keys show <YOUR_WALLET_NAME> -a)

Validator operations

Create validator

gonative tx staking create-validator \
--amount=1000000untiv \
--pubkey=$(gonative comet show-validator) \
--moniker="<Your moniker>" \
--identity=<Your identity> \
--details="<Your details>" \
--chain-id=native-t1 \
--commission-rate=0.05 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.1 \
--min-self-delegation=1 \
--from=<YOUR_WALLET> \
--fees=20000untiv \
-y

Edit validator

gonative tx staking edit-validator \
--new-moniker="<Your moniker>" \
--identity=<your identity> \
--details="<Your details>" \
--commission-rate=0.1 \
--from=<YOUR_WALLET> \
--fees=20000untiv \
-y

Unjail your validator

gonative tx slashing unjail --from <YOUR_WALLET> --fees=20000untiv -y

Check blocks info processed by your validator

gonative query slashing signing-info $(gonative tendermint show-validator)

List of active validators

gonative q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl

List of inactive validators

gonative q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED") or .status=="BOND_STATUS_UNBONDING")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl

Info about your validator

gonative q staking validator $(gonative keys show <YOUR_WALLET_NAME> --bech val -a)

Transactions

Get your rewards from all validators

gonative tx distribution withdraw-all-rewards --from <YOUR_WALLET> --fees=20000untiv -y

Get rewards and commissions from your validator

gonative tx distribution withdraw-rewards $(gonative keys show <YOUR_WALLET_NAME> --bech val -a) --commission --from <YOUR_WALLET> --fees=20000untiv -y

Delegate tokens to your validator

gonative tx staking delegate $(gonative keys show <YOUR_WALLET_NAME> --bech val -a) 1000000untiv --from <YOUR_WALLET> --fees=20000untiv -y

Delegate tokens to validator

gonative tx staking delegate <VALOPER_ADDRESS> 1000000untiv --from <YOUR_WALLET> --fees=20000untiv -y

Redelegate tokens to another validator

gonative tx staking redelegate <SRC_VALOPER_ADDRESS> <TARGET_VALOPER_ADDRESS> 1000000untiv --from <WALLET> --fees=20000untiv -y

Unbound tokens from validator

⚠️ it’s can take a while, ~21 days, depends on network’s parameters

gonative tx staking unbond <VALOPER_ADDRESS> 1000000untiv --from <YOUR_WALLET> --fees=20000untiv -y

Send tokens to another wallet

gonative tx bank send <YOUR_WALLET_ADDRESS> <TARGET_WALLET_ADDRESS> 1000000untiv --from <YOUR_WALLET_ADDRESS> --fees=20000untiv -y

Check info about transaction by hash TX_HASH

gonative query tx <TX_HASH>

Governance

Submit text proposal

gonative tx gov submit-proposal \
--title="<Your Title>" \
--description="<Your Description>" \
--deposit=1000000untiv \
--type="Text" \
--from=<WALLET_ADDRESS> \
--fees=20000untiv \
-y

List of all proposals

gonative query gov proposals

Check proposal info by proposal id

gonative query gov proposal <proposal_id>

Deposit proposal by proposal id

gonative tx gov deposit 1 1000000untiv --from <YOUR_WALLET> --fees=20000untiv -y

Vote as, YES

gonative tx gov vote 1 yes --from <YOUR_WALLET> --fees=20000untiv -y

Vote as, NO

gonative tx gov vote 1 no --from <YOUR_WALLET> --fees=20000untiv -y

Vote as, NO_WITH_VETO

gonative tx gov vote 1 no_with_veto --from <YOUR_WALLET> --fees=20000untiv -y

Vote as, ABSTAIN

gonative tx gov vote 1 abstain --from <YOUR_WALLET> --fees=20000untiv -y

Utils

Change ports to custom

sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:36658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:36657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:7060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:36656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":36660\"%" $HOME/.gonative/config/config.toml && \
sed -i.bak -e "s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:10090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:10091\"%; s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:2317\"%" $HOME/.gonative/config/app.toml && \
sed -i.bak -e "s%^node = \"tcp://localhost:26657\"%node = \"tcp://localhost:36657\"%" $HOME/.gonative/config/client.toml

Turn on indexing

sed -i 's|^indexer *=.*|indexer = "kv"|' $HOME/.gonative/config/config.toml

Turn off indexing

sed -i 's|^indexer *=.*|indexer = "null"|' $HOME/.gonative/config/config.toml

Setup custom prunning

APP_TOML="~/.gonative/config/app.toml"
sed -i 's|^pruning *=.*|pruning = "custom"|' $APP_TOML
sed -i 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' $APP_TOML
sed -i 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' $APP_TOML
sed -i 's|^pruning-interval *=.*|pruning-interval = "10"|' $APP_TOML

Check your peer

echo $(gonative comet show-node-id)@$(curl http://ifconfig.me/)$(grep -A 3 "\[p2p\]" ~/.gonative/config/config.toml | egrep -o ":[0-9]+")

Check your RPC

echo -e "\033[0;32m$(grep -A 3 "\[rpc\]" ~/.gonative/config/config.toml | egrep -o ":[0-9]+")\033[0m"

Check information about validator

gonative comet status 2>&1 | jq .ValidatorInfo

Check synchronisation status (false - synced, true - not synced)

gonative comet status 2>&1 | jq .SyncInfo.catching_up

Check the latest block

gonative comet status 2>&1 | jq .SyncInfo.latest_block_height

Reset network

gonative comet unsafe-reset-all --home $HOME/.gonative --keep-addr-book

Delete node

sudo systemctl stop gonatived && \
sudo systemctl disable gonatived && \
sudo rm /etc/systemd/system/gonatived.service && \
sudo systemctl daemon-reload && \
rm -rf $HOME/.gonative && \
rm -rf $HOME/gonative

Check IP address of the server

wget -qO- eth0.me

Check network parameters

gonative q staking params
gonative q slashing params

Check validator private key is correct

[[ $(gonative q staking validator $(gonative keys show <YOUR_WALLET> --bech val -a) -oj | jq -r .consensus_pubkey.key) = $(gonative status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\n\e[1m\e[32mTrue\e[0m\n" || echo -e "\n\e[1m\e[31mFalse\e[0m\n"

Search all output transactions by address

gonative q txs --events transfer.sender=<ADDRESS> 2>&1 | jq | grep txhash

Search all input transactions by address

gonative q txs --events transfer.recipient=<ADDRESS> 2>&1 | jq | grep txhash

Service management

Reload services

sudo systemctl daemon-reload

Enable service

sudo systemctl enable gonatived

Disable service

sudo systemctl disable gonatived

Start service

sudo systemctl start gonatived

Stop service

sudo systemctl stop gonatived

Restart service

sudo systemctl restart gonatived

Check service status

sudo systemctl status gonatived

Check service logs

sudo journalctl -u gonatived -f -o cat
PreviousPublic APINextPersistence

Last updated 5 months ago

Page cover image