Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
https://wardenprotocol.orgTwitter
https://x.com/wardenprotocolTelegram
https://t.me/wardenprotocolDiscord
https://discord.gg/wardenprotocolGitHub
https://github.com/warden-protocolANODE.TEAM
https://main.anode.team/wardenRPC
https://warden.rpc.m.anode.teamAPI
https://warden.api.m.anode.teamgRPC
http://warden.grpc.m.anode.teamSeed
Peer
fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726Live peers
https://anode.team/Warden/main/peers.txtGenesis
https://anode.team/Warden/main/genesis.jsonAddrbook
https://anode.team/Warden/main/addrbook.jsonwget -O Warden.sh https://anode.team/Warden/main/Warden.sh && chmod u+x Warden.sh && ./Warden.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagecd && wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.6.3/wardend-0.6.3-linux-amd64
chmod +x wardend-0.6.3-linux-amd64
sudo mv wardend-0.6.3-linux-amd64 $HOME/go/bin/wardend
wget -O $HOME/go/bin/wardend https://anode.team/Warden/main/wardend && chmod +x $HOME/go/bin/wardend
wardend init [moniker] --chain-id chiado_10010-1
sed -i "s/chain-id = .*/chain-id = \"chiado_10010-1\"/" $HOME/.warden/config/client.toml
keys add [wallet_name]
curl https://anode.team/Warden/main/genesis.json > ~/.warden/config/genesis.json
curl https://anode.team/Warden/main/addrbook.json > ~/.warden/config/addrbook.json
SEEDS=""
PEERS="fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.warden/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "250000000000000award"|g' $HOME/.warden/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .warden
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.warden/config/config.toml
sudo tee /etc/systemd/system/wardend.service > /dev/null <<EOF
[Unit]
Description=Warden
After=network-online.target
[Service]
User=$USER
ExecStart=$(which wardend) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable wardend
sudo systemctl restart wardend && journalctl -fu wardend -o cat
echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(wardend comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
"amount": "1000000000000000000award",
"moniker": "[moniker]",
"identity": "[identity]",
"website": "[website]",
"details": "[details],
"security-contact": "[contact]",
"commission-rate": "0.10",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}" > validator.json
wardend tx staking create-validator validator.json \
--from [wallet_name] \
--chain-id chiado_10010-1 \
--fees 250000000000000award \
--node https://rpc.chiado.wardenprotocol.org \
--gas auto \
--gas-adjustment 1.6
git clone https://github.com/skip-mev/connect.git
cd connect
git checkout v1.0.13
make install
sudo tee /etc/systemd/system/warden-slinky.service > /dev/null <<EOF
[Unit]
Description=Warden Oracle
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/connect
ExecStart=$(which slinky) --market-map-endpoint 127.0.0.1:9090 --log-disable-file-rotation
Restart=on-failure
RestartSec=5
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable warden-slinky
sudo systemctl restart warden-slinky && journalctl -fu warden-slinky -o cat
SNAP_RPC=https://warden.rpc.t.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh wardend .warden
peers="fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.warden/config/config.toml
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.warden/config/config.toml
curl -o - -L https://anode.team/Warden/main/anode.team_warden_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.warden/
sudo systemctl restart wardend && journalctl -fu wardend -o cat
ANODE.TEAM
https://test.anode.team/wardenRPC
https://warden.rpc.t.anode.teamAPI
https://warden.api.t.anode.teamgRPC
http://warden.grpc.t.anode.teamSeed
Peer
fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726Live peers
https://anode.team/Warden/test/peers.txtGenesis
https://anode.team/Warden/test/genesis.jsonAddrbook
https://anode.team/Warden/test/addrbook.jsonwget -O Warden.sh https://anode.team/Warden/test/Warden.sh && chmod u+x Warden.sh && ./Warden.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagecd && wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.6.3/wardend-0.6.3-linux-amd64
chmod +x wardend-0.6.3-linux-amd64
sudo mv wardend-0.6.3-linux-amd64 $HOME/go/bin/wardend
wget -O $HOME/go/bin/wardend https://anode.team/Warden/test/wardend && chmod +x $HOME/go/bin/wardend
wardend init [moniker] --chain-id chiado_10010-1
sed -i "s/chain-id = .*/chain-id = \"chiado_10010-1\"/" $HOME/.warden/config/client.toml
keys add [wallet_name]
curl https://anode.team/Warden/test/genesis.json > ~/.warden/config/genesis.json
curl https://anode.team/Warden/test/addrbook.json > ~/.warden/config/addrbook.json
SEEDS=""
PEERS="fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.warden/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "250000000000000award"|g' $HOME/.warden/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .warden
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.warden/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.warden/config/config.toml
sudo tee /etc/systemd/system/wardend.service > /dev/null <<EOF
[Unit]
Description=Warden
After=network-online.target
[Service]
User=$USER
ExecStart=$(which wardend) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable wardend
sudo systemctl restart wardend && journalctl -fu wardend -o cat
echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(wardend comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
"amount": "1000000000000000000award",
"moniker": "[moniker]",
"identity": "[identity]",
"website": "[website]",
"details": "[details],
"security-contact": "[contact]",
"commission-rate": "0.10",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}" > validator.json
wardend tx staking create-validator validator.json \
--from [wallet_name] \
--chain-id chiado_10010-1 \
--fees 250000000000000award \
--node https://rpc.chiado.wardenprotocol.org \
--gas auto \
--gas-adjustment 1.6
git clone https://github.com/skip-mev/connect.git
cd connect
git checkout v1.0.13
make install
sudo tee /etc/systemd/system/warden-slinky.service > /dev/null <<EOF
[Unit]
Description=Warden Oracle
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/connect
ExecStart=$(which slinky) --market-map-endpoint 127.0.0.1:9090 --log-disable-file-rotation
Restart=on-failure
RestartSec=5
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable warden-slinky
sudo systemctl restart warden-slinky && journalctl -fu warden-slinky -o cat
SNAP_RPC=https://warden.rpc.t.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh wardend .warden
peers="fb3c995373c0feee597dd3ed32e56cb5e0f0d1c2@144.76.97.251:26726"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.warden/config/config.toml
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.warden/config/config.toml
curl -o - -L https://anode.team/Warden/test/anode.team_warden_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.warden/
sudo systemctl restart wardend && journalctl -fu wardend -o cat