Official documentation:
Explorer:
- 4x CPUs; the faster clock speed the better
- 8GB RAM
- 100GB of storage (SSD or NVME)
- 8x CPUs; the faster clock speed the better
- 64GB RAM
- 1TB of storage (SSD or NVME)
wget https://raw.githubusercontent.com/freshe4qa/nibiru/main/nibiru2.sh && chmod +x nibiru2.sh && ./nibiru2.sh
When installation is finished please load variables into system
source $HOME/.bash_profile
Synchronization status:
nibid status 2>&1 | jq .SyncInfo
To create new wallet you can use command below. Don’t forget to save the mnemonic
nibid keys add $WALLET
Recover your wallet using seed phrase
nibid keys add $WALLET --recover
To get current list of wallets
nibid keys list
Check logs
journalctl -fu nibid -o cat
Start service
sudo systemctl start nibid
Stop service
sudo systemctl stop nibid
Restart service
sudo systemctl restart nibid
Synchronization info
nibid status 2>&1 | jq .SyncInfo
Validator info
nibid status 2>&1 | jq .ValidatorInfo
Node info
nibid status 2>&1 | jq .NodeInfo
Show node id
nibid tendermint show-node-id
List of wallets
nibid keys list
Recover wallet
nibid keys add $WALLET --recover
Delete wallet
nibid keys delete $WALLET
Get wallet balance
nibid query bank balances $NIBIRU_WALLET_ADDRESS
Transfer funds
nibid tx bank send $NIBIRU_WALLET_ADDRESS <TO_NIBIRU_WALLET_ADDRESS> 10000000unibi
nibid tx gov vote 1 yes --from $WALLET --chain-id=$NIBIRU_CHAIN_ID
Delegate stake
nibid tx staking delegate $NIBIRU_VALOPER_ADDRESS 10000000unibi --from=$WALLET --chain-id=$NIBIRU_CHAIN_ID --gas=auto
Redelegate stake from validator to another validator
nibid tx staking redelegate <srcValidatorAddress> <destValidatorAddress> 10000000unibi --from=$WALLET --chain-id=$NIBIRU_CHAIN_ID --gas=auto
Withdraw all rewards
nibid tx distribution withdraw-all-rewards --from=$WALLET --chain-id=$NIBIRU_CHAIN_ID --gas=auto
Withdraw rewards with commision
nibid tx distribution withdraw-rewards $NIBIRU_VALOPER_ADDRESS --from=$WALLET --commission --chain-id=$NIBIRU_CHAIN_ID
Unjail validator
nibid tx slashing unjail \
--broadcast-mode=block \
--from=$WALLET \
--chain-id=$NIBIRU_CHAIN_ID \
--gas=auto