Welcome to validator AlxVoy ANODE.TEAM



Pylons

Pylons

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

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

Install last binary

git clone https://github.com/Pylons-tech/pylons
cd pylons
git checkout v1.1.4
make install

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

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

Init the config files

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

Create a wallet

pylonsd keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="f11c7596800a52b9585e54d7fc372c5b5f367c49@65.109.93.152:29656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.pylons/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

sudo tee /etc/systemd/system/pylonsd.service > /dev/null <<EOF
[Unit]
Description=Pylons
After=network.target

[Service]
Type=simple
User=$USER
ExecStart=$(which pylonsd) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

pylonsd tx staking create-validator \
    --amount=1000000ubedrock \
    --pubkey=$(pylonsd tendermint show-validator) \
    --moniker="[moniker]" \
    --identity="[identity]" \
    --website="[website]" \
    --details="[details]" \
    --security-contact="[contact]" \
    --chain-id="pylons-mainnet-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 Pylons.sh https://anode.team/Pylons/test/Pylons.sh && chmod u+x Pylons.sh && ./Pylons.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.21.5 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/Pylons-tech/pylons
cd pylons
git checkout v1.1.4
make install

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

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

Init the config files

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

Create a wallet

pylonsd keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="f11c7596800a52b9585e54d7fc372c5b5f367c49@65.109.93.152:29656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.pylons/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

sudo tee /etc/systemd/system/pylonsd.service > /dev/null <<EOF
[Unit]
Description=Pylons
After=network.target

[Service]
Type=simple
User=$USER
ExecStart=$(which pylonsd) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

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