# Command

**Command:**

Wallet:

```bash
// 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:

```bash
// 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**:

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

// Option
yes
no
abstain
NoWithVeto
```

**System:**

```bash
# 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
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://services.node39.top/index.html/mainnet/nibiru-chain/command.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
