Skip to content

freshe4qa/nibiru

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nibiru Testnet — nibiru-itn-2

Official documentation:

Explorer:

Minimum Hardware Requirements

  • 4x CPUs; the faster clock speed the better
  • 8GB RAM
  • 100GB of storage (SSD or NVME)

Recommended Hardware Requirements

  • 8x CPUs; the faster clock speed the better
  • 64GB RAM
  • 1TB of storage (SSD or NVME)

Set up your nibiru fullnode

wget https://raw.githubusercontent.com/freshe4qa/nibiru/main/nibiru2.sh && chmod +x nibiru2.sh && ./nibiru2.sh

Post installation

When installation is finished please load variables into system

source $HOME/.bash_profile

Synchronization status:

nibid status 2>&1 | jq .SyncInfo

Create wallet

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

Usefull commands

Service management

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

Node info

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

Wallet operations

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

Voting

nibid tx gov vote 1 yes --from $WALLET --chain-id=$NIBIRU_CHAIN_ID

Staking, Delegation and Rewards

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages