This guide will help you set up a full node for the Xion testnet-2 network using xiond
- Linux/macOS (instructions are for Unix-like systems)
- At least 2 CPU cores, 4GB RAM, 100GB+ disk space
Download the latest release and install: https://github.com/burnt-labs/xion/releases
Replace <moniker>
with your node name:
xiond init <moniker> --chain-id xion-testnet-2
wget -O ~/.xion/config/genesis.json https://raw.githubusercontent.com/burnt-labs/xion-testnet-2/main/config/genesis.json
Edit ~/.xiond/config/config.toml
and set persistent peers. Example:
persistent_peers = "<peer1>,<peer2>,..."
You can find up-to-date peer addresses in the official Discord or community channels.
Edit ~/.xiond/config/app.toml
:
minimum-gas-prices = "0.001uxion"
xiond start
tail -f ~/.xiond/logs/xiond.log
- Ensure ports
26656
(P2P) and26657
(RPC) are open. - If you encounter issues, check the logs and reach out on Discord.
For more details, see the Xion documentation.