Installing Elys Node
Install the Elys binary and configure your node
Elys Network Parameters
Parameter
Value
Chain ID
elystestnet-1
Denomination
uelys
Decimals
6 (1 elys= 1000000uelys)
Version
RPC Endpoint
Install Node
Install the current version of node binary. Note: In this example, v0.7.0 is the current version, but please check for the latest binary version at https://github.com/elys-network/elys/releases
git clone https://github.com/elys-network/elys elys
cd elys
git checkout v0.7.0
make install
Configure Node
Initialize Node
Replace YOUR_MONIKER
with your own moniker.
elysd init YOUR_MONIKER --chain-id elystestnet-1
Download Genesis
Elys Official genesis link:
wget -O genesis.json https://github.com/elys-network/elys/blob/main/chain/genesis.json --inet4-only
mv genesis.json ~/.elys/config
The genesis file link below is Polkachu's mirror download.
wget -O genesis.json https://snapshots.polkachu.com/testnet-genesis/elys/genesis.json --inet4-only
mv genesis.json ~/.elys/config
Configure Seed
Using a seed node to bootstrap is the best practice in our view. Alternatively, you can use addrbook or persistent_peers.
sed -i 's/seeds = ""/seeds = "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@testnet-seeds.polkachu.com:22056"/' ~/.elys/config/config.toml
Last updated