Node9X Service
  • 🍄MAINNET
    • đŸŸĸKopi Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade (V11)
      • đŸĒĸCosmovisor
      • đŸ›°ī¸Command
  • 🚀Testnet
    • đŸ§ŦExplorer
    • đŸŸĸNative
      • âš™ī¸Installation
    • đŸŸĸXRPL EVM
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • đŸ•šī¸Command
    • đŸŸĸPipe Network
      • Installation
      • Upgrade
    • đŸŸĸPell
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade (v1.1.1)
      • đŸ•šī¸Command
    • đŸŸĸStructs
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • đŸ•šī¸Command
    • đŸŸĸPrysm
      • đŸ›°ī¸Service & Snapshot
      • âš™ī¸Installation
      • 💾Command
    • đŸŸĸZenrock
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade ( v6.3.3)
      • đŸ•šī¸Cosmovisor
      • đŸ›°ī¸Command
      • âš™ī¸Sidecar (âœ”ī¸Oracle)
        • 🔗Upgrade
    • đŸŸĸStory Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation (Odyssey)
      • â›“ī¸Upgrade (v0.13.1)
        • đŸĒĸUpgrade (v0.13.0)
      • â›“ī¸Cosmovisor
      • đŸ›°ī¸Command
    • đŸŸĸ0G Chain
      • Service & Snapshot
      • Installation
        • Cosmovisor
      • Commands
      • â˜‘ī¸0G Storage Node
        • Upgrade (v0.7.3)
      • â˜‘ī¸0G Storage KV
      • â˜‘ī¸0G DA Node
        • Update
      • â˜‘ī¸0G DA Client
    • đŸŸĸAirchains
      • 💾Service & Snapshot
      • âš™ī¸Installation
        • đŸĒĸCosmovisor
        • đŸ”ēEVM ZK Rollup
      • đŸ•šī¸Commands
      • â›“ī¸Upgrade
    • đŸŸĸAllora
      • đŸ”ēWorkers
        • Create tool and worker wallet
        • Install Worker 1
        • Install Worker 2
        • Troubleshooting
        • Script for checking worker
      • Another method
      • Service
      • Installation By Dock (Recommend)
      • Installation
      • Snapshot & State sync
      • Useful commands
    • đŸŸĸHedge Block
      • Service
      • Installation
      • Commands
    • đŸŸĸDill Chain
      • Usage Commands
    • đŸŸĸFiamma Chain
      • đŸĨĻServices & Snapshot
      • âš™ī¸Installation
      • đŸ›°ī¸Usage Command
    • đŸŸĸElixir Testnet
      • âš™ī¸Installation
    • đŸŸĸChainbase
      • â›“ī¸Installation
    • 🔘AXONE Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation
    • 🔘Symphony
      • 🔌Installation
      • đŸĨĻFresh Peer
    • 🔘Empeiria
      • Installation
      • Usage Command
Powered by GitBook
On this page
  • Key management
  • Tokens
  • Validator operations
  • Governance

Was this helpful?

  1. Testnet
  2. Airchains

Commands

Check logs

sudo journalctl -u junctiond -f

Start service

sudo systemctl start junctiond

Stop service

sudo systemctl stop junctiond

Restart service

sudo systemctl restart junctiond

Check service status

sudo systemctl status junctiond

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable junctiond

Disable Service

sudo systemctl disable junctiond

Node info

junctiond status 2>&1 | jq

Key management

Add New Wallet

junctiond keys add $WALLET

Restore executing wallet

junctiond keys add $WALLET --recover

List All Wallets

junctiond keys list

Delete wallet

junctiond keys delete $WALLET

Check Balance

junctiond q bank balances $WALLET_ADDRESS 

Export Key (save to wallet.backup)

junctiond keys export $WALLET

View EVM Prived Key

junctiond keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

junctiond keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

junctiond tx distribution withdraw-all-rewards --from $WALLET --chain-id varanasi-1 --fees 200uamf 

Withdraw rewards and commission from your validator

junctiond tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id varanasi-1 --fees 200uamf -y 

Check your balance

junctiond query bank balances $WALLET_ADDRESS

Delegate to Yourself

junctiond tx staking delegate $(junctiond keys show $WALLET --bech val -a) 1000000uamf --from $WALLET --chain-id varanasi-1 --fees 200uamf -y 

Delegate

junctiond tx staking delegate <TO_VALOPER_ADDRESS> 1000000uamf --from $WALLET --chain-id varanasi-1 --fees 200uamf -y 	

Redelegate Stake to Another Validator

junctiond tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uamf --from $WALLET --chain-id junction --gas-adjustment 1.5 --gas auto --gas-prices 0.001uamf 

Unbond

junctiond tx staking unbond $(junctiond keys show $WALLET --bech val -a) 1000000uamf --from $WALLET --chain-id varanasi-1 --fees 200uamf -y 

Transfer Funds

junctiond tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uamf --fees 200amf -y 

Validator operations

Create New Validator

junctiond tx staking create-validator \
--amount 1000000amf \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(junctiond tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "I love blockchain â¤ī¸" \
--chain-id varanasi-1 \
--fees 200uamf \
-y 

Edit Existing Validator

junctiond tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "I love blockchain â¤ī¸" \
--from $WALLET \
--chain-id varanasi-1 \
--fees 200uamf \
-y 

Validator info

junctiond status 2>&1 | jq

Validator Details

junctiond q staking validator $(junctiond keys show $WALLET --bech val -a) 

Jailing info

junctiond q slashing signing-info $(junctiond tendermint show-validator) 

Slashing parameters

junctiond q slashing params 

Unjail validator

junctiond tx slashing unjail --from $WALLET --chain-id varanasi-1 --fees 200uamf -y 

Active Validators List

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

Check Validator key

[[ $(junctiond q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(junctiond status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"

Signing info

junctiond q slashing signing-info $(junctiond tendermint show-validator) 

Governance

Create New Text Proposal

junctiond  tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000uamf \
--type Text \
--from $WALLET \
--fees 200uamf \
-y 

Proposals List

junctiond query gov proposals 

Proposal IDProposal optionYesNoNo with vetoAbstain

View proposal

junctiond query gov proposal 1 

Proposal option

yes

no

No with veto

Abstain

Vote

junctiond tx gov vote 1 yes --from $WALLET --chain-id varanasi-1  --fees 200uamf -y 
PreviousEVM ZK RollupNextUpgrade

Last updated 2 months ago

Was this helpful?

🚀
đŸŸĸ
đŸ•šī¸