Welcome to validator AlxVoy ANODE.TEAM



Lum

Lum

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Lum.sh https://anode.team/Lum/main/Lum.sh && chmod u+x Lum.sh && ./Lum.sh

Installation

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.22.3 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/lum-network/chain.git lum
cd lum
git checkout v1.6.7
make install

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/lumd https://anode.team/Lum/main/lumd && chmod +x $HOME/go/bin/lumd

Init the config files

lumd init [moniker] --chain-id lum-network-1
sed -i "s/chain-id = .*/chain-id = \"lum-network-1\"/" $HOME/.lumd/config/client.toml

Create a wallet

lumd keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Lum/main/genesis.json > ~/.lumd/config/genesis.json
curl https://anode.team/Lum/main/addrbook.json > ~/.lumd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="fbc96d027e8a1ee88a8b51195903a71cb73cc294@65.21.224.150:26626"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.lumd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.0001ulum"|g' $HOME/.lumd/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .lumd

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.lumd/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.lumd/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.lumd/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.lumd/config/config.toml

Create the service file

sudo tee /etc/systemd/system/lumd.service > /dev/null <<EOF
[Unit]
Description=Lum
After=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/root/
ExecStart=$(which lumd) start --p2p.laddr tcp://0.0.0.0:26626 --home /$HOME/.lumd
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable lumd
sudo systemctl restart lumd && journalctl -fu lumd -o cat

Create Validator

lumd tx staking create-validator \
  --amount=1000000ulum \
  --pubkey=$(lumd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="lum-network-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="400ulum" \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Lum.sh https://anode.team/Lum/test/Lum.sh && chmod u+x Lum.sh && ./Lum.sh

Installation

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.22.3 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/lum-network/chain.git lum
cd lum
git checkout v1.6.7
make install

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/lumd https://anode.team/Lum/test/lumd && chmod +x $HOME/go/bin/lumd

Init the config files

lumd init [moniker] --chain-id lum-network-1
sed -i "s/chain-id = .*/chain-id = \"lum-network-1\"/" $HOME/.lumd/config/client.toml

Create a wallet

lumd keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Lum/test/genesis.json > ~/.lumd/config/genesis.json
curl https://anode.team/Lum/test/addrbook.json > ~/.lumd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="fbc96d027e8a1ee88a8b51195903a71cb73cc294@65.21.224.150:26626"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.lumd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.0001ulum"|g' $HOME/.lumd/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .lumd

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.lumd/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.lumd/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.lumd/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.lumd/config/config.toml

Create the service file

sudo tee /etc/systemd/system/lumd.service > /dev/null <<EOF
[Unit]
Description=Lum
After=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/root/
ExecStart=$(which lumd) start --p2p.laddr tcp://0.0.0.0:26626 --home /$HOME/.lumd
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable lumd
sudo systemctl restart lumd && journalctl -fu lumd -o cat

Create Validator

lumd tx staking create-validator \
  --amount=1000000ulum \
  --pubkey=$(lumd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="lum-network-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="400ulum" \
  --from=[wallet_name]