Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
https://bitway.comTwitter
https://x.com/BitwayOfficialTelegram
https://t.me/bitwaycommunityDiscord
https://discord.gg/bitwayGitHub
https://github.com/bitwaylabsLinkedin
https://linkedin.com/company/bitwayofficialANODE.TEAM
https://main.anode.team/bitwayRPC
https://bitway.rpc.m.anode.teamAPI
https://bitway.api.m.anode.teamgRPC
http://bitway.grpc.m.anode.teamSeed
Peer
defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836Live peers
https://anode.team/Bitway/main/peers.txtGenesis
https://anode.team/Bitway/main/genesis.jsonAddrbook
https://anode.team/Bitway/main/addrbook.jsonwget -O Bitway.sh https://anode.team/Bitway/main/Bitway.sh && chmod u+x Bitway.sh && ./Bitway.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/bitwaylabs/bitway
cd bitway
git checkout v2.0.0
make install
wget -O $HOME/go/bin/bitwayd https://anode.team/Bitway/main/bitwayd && chmod +x $HOME/go/bin/bitwayd
bitwayd init [moniker] --chain-id bitway-1
sed -i "s/chain-id = .*/chain-id = \"bitway-1\"/" $HOME/.bitway/config/client.toml
bitwayd keys add [wallet_name]
curl https://anode.team/Bitway/main/genesis.json > ~/.bitway/config/genesis.json
curl https://anode.team/Bitway/main/addrbook.json > ~/.bitway/config/addrbook.json
SEEDS=""
PEERS="defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.bitway/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.005uside"|g' $HOME/.bitway/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .bitway
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.bitway/config/config.toml
sudo tee /etc/systemd/system/bitwayd.service > /dev/null <<EOF
[Unit]
Description=Bitway
After=network-online.target
[Service]
User=$USER
ExecStart=$(which bitwayd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable bitwayd
sudo systemctl restart bitwayd && journalctl -fu bitwayd -o cat
echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(sided comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
"amount": "1000000ubtw",
"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
bitwayd tx staking create-validator validator.json \
--from [wallet_name] \
--chain-id bitway-1 \
--fees 1000ubtw
SNAP_RPC=https://bitway.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
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 bitwayd .bitway
peers="defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.bitway/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/.bitway/config/config.toml
curl -o - -L https://anode.team/Bitway/main/anode.team_bitway_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.bitway/
sudo systemctl restart bitwayd && journalctl -fu bitwayd -o cat
ANODE.TEAM
https://test.anode.team/bitwayRPC
https://bitway.rpc.t.anode.teamAPI
https://bitway.api.t.anode.teamgRPC
http://bitway.grpc.t.anode.teamSeed
Peer
defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836Live peers
https://anode.team/Bitway/test/peers.txtGenesis
https://anode.team/Bitway/test/genesis.jsonAddrbook
https://anode.team/Bitway/test/addrbook.jsonwget -O Bitway.sh https://anode.team/Bitway/test/Bitway.sh && chmod u+x Bitway.sh && ./Bitway.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/bitwaylabs/bitway
cd bitway
git checkout v2.0.0
make install
wget -O $HOME/go/bin/bitwayd https://anode.team/Bitway/test/bitwayd && chmod +x $HOME/go/bin/bitwayd
bitwayd init [moniker] --chain-id bitway-1
sed -i "s/chain-id = .*/chain-id = \"bitway-1\"/" $HOME/.bitway/config/client.toml
bitwayd keys add [wallet_name]
curl https://anode.team/Bitway/test/genesis.json > ~/.bitway/config/genesis.json
curl https://anode.team/Bitway/test/addrbook.json > ~/.bitway/config/addrbook.json
SEEDS=""
PEERS="defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.bitway/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.005uside"|g' $HOME/.bitway/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .bitway
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.bitway/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.bitway/config/config.toml
sudo tee /etc/systemd/system/bitwayd.service > /dev/null <<EOF
[Unit]
Description=Bitway
After=network-online.target
[Service]
User=$USER
ExecStart=$(which bitwayd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable bitwayd
sudo systemctl restart bitwayd && journalctl -fu bitwayd -o cat
echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(sided comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
"amount": "1000000ubtw",
"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
bitwayd tx staking create-validator validator.json \
--from [wallet_name] \
--chain-id bitway-1 \
--fees 1000ubtw
SNAP_RPC=https://bitway.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
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 bitwayd .bitway
peers="defba289155976cee442e502e5fedc262dd56f4f@162.220.162.178:26836"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.bitway/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/.bitway/config/config.toml
curl -o - -L https://anode.team/Bitway/test/anode.team_bitway_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.bitway/
sudo systemctl restart bitwayd && journalctl -fu bitwayd -o cat