Run locally
Run a single-node blockchain locally
Download the binary
curl -s https://get.nibiru.fi/@v2.1.0 | bash[Optional] Remove old local state
nibid tendermint unsafe-reset-all
rm ~/.nibid/config/genesis.json
rm -rf ~/.nibid/config/gentx/Initialize the config files
CHAIN=nibiru-localnet-0
nibid init $CHAIN --chain-id=$CHAIN
nibid config chain-id $CHAIN && \
nibid config broadcast-mode sync && \
nibid config node "http://localhost:26657" && \
nibid config keyring-backend test && \
nibid config output json[Optional] Create a wallet
Option 1: Create a new mnemonic
Option 2: Import an existing mnemonic
Configure the genesis state
Start the chain
Last updated