Welcome to validator AlxVoy ANODE.TEAM



Worrell

Worrell

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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.27.0 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/worrellchain/worrell.git
cd worrell
ignite chain build
make install

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

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

Init the config files

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

Create a wallet

worrelld keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="754f6a93b484b6486eac888a2fcbf76430152817@65.108.229.19:27006"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.worrell/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uworrell"|g' $HOME/.worrell/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

cat > validator.json <<EOF
{
  "pubkey": $(worrelld comet show-validator),
  "amount": "1000000uworrell",
  "moniker": "[moniker]",
  "identity": "[identity]",
  "website": "[website]",
  "details": "[details]",
  "security": "[contact]",
  "commission-rate": "0.05",
  "commission-max-rate": "0.20",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1"
}
EOF
worrelld tx staking create-validator validator.json \
  --from [wallet_name] \
  --chain-id worrell-testnet-1 \
  --gas 400000 \
  --fees 5000uworrell \
  -y

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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.27.0 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/worrellchain/worrell.git
cd worrell
ignite chain build
make install

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

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

Init the config files

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

Create a wallet

worrelld keys add [wallet_name]

Download genesis and addrbook

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

Add peers, seed

SEEDS=""
PEERS="754f6a93b484b6486eac888a2fcbf76430152817@65.108.229.19:27006"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.worrell/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uworrell"|g' $HOME/.worrell/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

cat > validator.json <<EOF
{
  "pubkey": $(worrelld comet show-validator),
  "amount": "1000000uworrell",
  "moniker": "[moniker]",
  "identity": "[identity]",
  "website": "[website]",
  "details": "[details]",
  "security": "[contact]",
  "commission-rate": "0.05",
  "commission-max-rate": "0.20",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1"
}
EOF
worrelld tx staking create-validator validator.json \
  --from [wallet_name] \
  --chain-id worrell-testnet-1 \
  --gas 400000 \
  --fees 5000uworrell \
  -y