Welcome to validator AlxVoy ANODE.TEAM



Self

Self

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

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

Install last binary

wget https://github.com/hotcrosscom/Self-Chain-Releases/releases/download/mainnet-v2.0.2/selfchaind-linux-amd64.2
mv selfchaind-linux-amd64.2 selfchaind
chmod +x selfchaind
sudo mv selfchaind $HOME/go/bin/

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

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

Init the config files

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

Create a wallet

 keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="2a354655e506fff76cf78cec30eab5898ea3b6ad@65.108.229.19:26706"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.selfchain/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

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

Install last binary

wget https://github.com/hotcrosscom/Self-Chain-Releases/releases/download/mainnet-v2.0.2/selfchaind-linux-amd64.2
mv selfchaind-linux-amd64.2 selfchaind
chmod +x selfchaind
sudo mv selfchaind $HOME/go/bin/

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

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

Init the config files

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

Create a wallet

 keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="2a354655e506fff76cf78cec30eab5898ea3b6ad@65.108.229.19:26706"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.selfchain/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

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