Welcome to validator AlxVoy ANODE.TEAM



Althea

Althea

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

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

Install last binary

git clone https://github.com/AltheaFoundation/althea-L1
cd althea-L1
git checkout v1.5.1
make install

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

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

Init the config files

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

Create a wallet

althea keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="d7e370152052ba702adaebb8bc37ed0fc4d07193@174.138.176.146:26656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.althea/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0aalthea"|g' $HOME/.althea/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

althea tx staking create-validator \
  --amount=1000000000000000aalthea \
  --pubkey=$(althea tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="althea_258432-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

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

Install last binary

git clone https://github.com/AltheaFoundation/althea-L1
cd althea-L1
git checkout v1.5.1
make install

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

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

Init the config files

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

Create a wallet

althea keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="d7e370152052ba702adaebb8bc37ed0fc4d07193@174.138.176.146:26656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.althea/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0aalthea"|g' $HOME/.althea/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

althea tx staking create-validator \
  --amount=1000000000000000aalthea \
  --pubkey=$(althea tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="althea_258432-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --from=[wallet_name]