Node39
  • 👋Welcome to Node39.TOP
  • Mainnet
    • 🟢Pactus Blockchain
      • ⚙️Installation
      • 🚄Sync
      • 🖥️Upgrade
      • 🔌Bootstrap node
      • 🛟Command
    • 🟢Muon.net
    • 🟢Massa
    • 🟢Tangle
      • ⚙️Installation
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Nibiru Chain
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
      • 🔭Database option
    • 🟢Seda
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Zeta Chain
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Selfchains
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Shentu
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Entangle
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Kopi Protocol
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
  • 👨‍🏫Testnet
    • 🟢Tanssi
    • ⛔Dusk
    • ⛔Nulink
    • 🟢Kenshi - Unchained
    • ⛔X1 Blockchain
    • 🟢Rivalz
      • ⚙️Installation
  • 👨‍🏫Cosmos
    • 🟢Swisstronik
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Hedge Block
    • 🟢Warden Protocol
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
      • Slinky
    • 🟢Galactica
    • 🟢Airchains
      • Sync
    • 🟢Viper Private Phase 2
      • 🟢Chain 0003
    • 🟢Crowd Control
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
  • 🔴End
    • 🔴Avail
    • 🔴Rollup Madara
    • 🔴Light Node Avail
    • 🔴Self Chain
    • 🔴Pactus blockchain - Testnet
    • 🟢Symphony
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Airchains Station
    • 🟢Autonity
      • 🟢RPC
    • 🟢Empeiria
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
Powered by GitBook
On this page
  1. Mainnet
  2. Nibiru Chain

Command

Command:

Wallet:

// Add New Wallet
nibid keys add wallet

// Restore executing wallet
nibid keys add wallet --recover

//List All Wallets
nibid keys list

//Delete wallet
nibid keys delete wallet

//Check Balance
nibid q bank balances $(nibid keys show wallet -a)

//Export Key (save to wallet.backup)
nibid keys export sedad

//View EVM Prived Key
nibid keys unsafe-export-eth-key

//Import Key (restore from wallet.backup)
nibid keys import wallet.backup

Validator:

// Delegate
nibid tx staking delegate $(nibid keys show wallet --bech val -a) 39000000unibi 
--from wallet 
--chain-id cataclysm-1 \
--node https://nibiru-rpc.node39.top:443 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.025unibi \
-y

// Withdraw rewards and commission
nibid tx distribution withdraw-rewards $(nibid keys show wallet --bech val -a) \
--from wallet \
--commission \
--chain-id cataclysm-1 \
--node https://nibiru-rpc.node39.top:443 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.025unibi \
-y

// Unjail
nibid tx slashing unjail \
--from wallet \
--chain-id cataclysm-1 \
--node https://nibiru-rpc.node39.top:443 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.025unibi \
-y


// Unbond
nibid tx staking unbond $(nibid keys show wallet --bech val -a) \
--from wallet \
--commission \
--chain-id cataclysm-1 \
--gas-adjustment 1.4 \
--node https://nibiru-rpc.node39.top:443 \
--gas auto \
--gas-prices 0.025unibi \
-y

// Edit Validator
nibid tx staking edit-validator \
--new-moniker="Node39.TOP Guide" \
--commission-rate=0.05 \
--from wallet \
--chain-id cataclysm-1 \
--gas-adjustment 1.4 \
--node https://nibiru-rpc.node39.top:443 \
--gas auto \
--gas-prices 0.025unibi \
-y

Vote:

nibid tx gov vote 1 <option> --from wallet --chain-id cataclysm-1 --fees 5000unibi -y

// Option
yes
no
abstain
NoWithVeto

System:

# Reload Service
sudo systemctl daemon-reload

# Enable Service
sudo systemctl enable nibid

# Disable Service
sudo systemctl disable nibid

# Start Service
sudo systemctl start nibid

# Stop Service
sudo systemctl stop nibid

# Restart Service
sudo systemctl restart nibid

# Check Service Status
sudo systemctl status nibid

# Check Service Logs
sudo journalctl -u nibid -f --no-hostname -o cat
PreviousUpgradeNextDatabase option

Last updated 8 months ago

🟢
🛟