Welcome to validator AlxVoy ANODE.TEAM



GenesisL1

GenesisL1

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

wget -O GenesisL1.sh https://anode.team/GenesisL1/main/GenesisL1.sh && chmod u+x GenesisL1.sh && ./GenesisL1.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.20.13 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/alpha-omega-labs/genesisd
cd genesisd
git checkout v1.0.0
make install

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

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

Init the config files

genesisd init [moniker] --chain-id genesis_29-2
sed -i "s/chain-id = .*/chain-id = \"genesis_29-2\"/" $HOME/.genesis/config/client.toml

Create a wallet

genesisd keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="9f662a927cdab904fd2fef5f4b10d85aa2c68ce6@65.109.28.177:21496"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.genesis/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "50000000000el1"|g' $HOME/.genesis/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

[Service]
User=$USER
ExecStart=$(which genesisd) start
Restart=always
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

genesisd tx staking create-validator \
  --amount=1000000000000000000el1 \
  --pubkey=$(genesisd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="genesis_29-2" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="50000000000000000el1" \
  --gas 400000 \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

wget -O GenesisL1.sh https://anode.team/GenesisL1/test/GenesisL1.sh && chmod u+x GenesisL1.sh && ./GenesisL1.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.20.13 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/alpha-omega-labs/genesisd
cd genesisd
git checkout v1.0.0
make install

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

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

Init the config files

genesisd init [moniker] --chain-id genesis_29-2
sed -i "s/chain-id = .*/chain-id = \"genesis_29-2\"/" $HOME/.genesis/config/client.toml

Create a wallet

genesisd keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="9f662a927cdab904fd2fef5f4b10d85aa2c68ce6@65.109.28.177:21496"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.genesis/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "50000000000el1"|g' $HOME/.genesis/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

[Service]
User=$USER
ExecStart=$(which genesisd) start
Restart=always
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

genesisd tx staking create-validator \
  --amount=1000000000000000000el1 \
  --pubkey=$(genesisd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="genesis_29-2" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="50000000000000000el1" \
  --gas 400000 \
  --from=[wallet_name]