cd $HOME
wget -O nilchaind https://explorer.dongqn.com/guidenode/nillion/nilchaind
chmod +x nilchaind
mv nilchaind $HOME/go/bin/
nilchaind version
Setup your variable settings
nilchaind config set client chain-id nillion-chain-testnet-1
nilchaind config set client keyring-backend test
nilchaind config set client node tcp://localhost:18057
Initialize node & create home directory
cd $HOME
nilchaind init dongqn --chain-id nillion-chain-testnet-1 --home=$HOME/.nillionapp
nilchaind status --node tcp://127.0.0.1:26657 2>&1 | jq
Create wallet
nilchaind keys add $WALLET_NAME
# DO NOT FORGET TO SAVE THE SEED PHRASE & YOUR PASSPHRASE YOU SET FOR THIS WALLET
# You can add --recover flag to restore existing key instead of creating
Check your wallet balance (node must be synced in order to see the current balance)
nilchaind q bank balances $(nilchaind keys show $WALLET_NAME -a)