Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
https://atom.oneTwitter
https://x.com/_atomoneDiscord
https://discord.gg/vRkpC6YbuaCoingecko
https://www.coingecko.com/en/coins/atomoneGitHub
https://github.com/atomone-hubYouTube
https://www.youtube.com/@AtomOneHubReddit
https://www.reddit.com/r/atomone/Common
https://common.xyz/atomone/ANODE.TEAM
https://main.anode.team/atomoneRPC
https://atomone.rpc.m.anode.teamAPI
https://atomone.api.m.anode.teamgRPC
http://atomone.grpc.m.anode.teamSeed
Peer
522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666Live peers
https://anode.team/AtomOne/main/peers.txtGenesis
https://anode.team/AtomOne/main/genesis.jsonAddrbook
https://anode.team/AtomOne/main/addrbook.jsonwget -O AtomOne.sh https://anode.team/AtomOne/main/AtomOne.sh && chmod u+x AtomOne.sh && ./AtomOne.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/atomone-hub/atomone
cd atomone
git checkout v2.0.0
make install
wget -O $HOME/go/bin/atomoned https://anode.team/AtomOne/main/atomoned && chmod +x $HOME/go/bin/atomoned
atomoned init [moniker] --chain-id atomone-1
sed -i "s/chain-id = .*/chain-id = \"atomone-1\"/" $HOME/.atomone/config/client.toml
atomoned keys add [wallet_name]
curl https://anode.team/AtomOne/main/genesis.json > ~/.atomone/config/genesis.json
curl https://anode.team/AtomOne/main/addrbook.json > ~/.atomone/config/addrbook.json
SEEDS=""
PEERS="522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.atomone/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uatone,0.225uphoton"|g' $HOME/.atomone/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .atomone
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.atomone/config/config.toml
sudo tee /etc/systemd/system/atomoned.service > /dev/null <<EOF
[Unit]
Description=AtomOne
After=network-online.target
[Service]
User=$USER
ExecStart=$(which atomoned) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable atomoned
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat
atomoned tx staking create-validator \
--amount=1000000uatone \
--pubkey=$(atomoned tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="atomone-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees=5000uatone \
--from=[wallet_name]
SNAP_RPC=https://atomone.rpc.m.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 atomoned .atomone
peers="522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.atomone/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/.atomone/config/config.toml
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat
sudo systemctl stop atomoned && \
cp $HOME/.atomone/data/priv_validator_state.json $HOME/.atomone/priv_validator_state.json.backup && \
rm -rf $HOME/.atomone/data/
curl -o - -L https://anode.team/AtomOne/main/anode.team_atomone.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.atomone/
mv $HOME/.atomone/priv_validator_state.json.backup $HOME/.atomone/data/priv_validator_state.json && \
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat
ANODE.TEAM
https://test.anode.team/atomoneRPC
https://atomone.rpc.t.anode.teamAPI
https://atomone.api.t.anode.teamgRPC
http://atomone.grpc.t.anode.teamSeed
Peer
522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666Live peers
https://anode.team/AtomOne/test/peers.txtGenesis
https://anode.team/AtomOne/test/genesis.jsonAddrbook
https://anode.team/AtomOne/test/addrbook.jsonwget -O AtomOne.sh https://anode.team/AtomOne/test/AtomOne.sh && chmod u+x AtomOne.sh && ./AtomOne.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/atomone-hub/atomone
cd atomone
git checkout v2.0.0
make install
wget -O $HOME/go/bin/atomoned https://anode.team/AtomOne/test/atomoned && chmod +x $HOME/go/bin/atomoned
atomoned init [moniker] --chain-id atomone-1
sed -i "s/chain-id = .*/chain-id = \"atomone-1\"/" $HOME/.atomone/config/client.toml
atomoned keys add [wallet_name]
curl https://anode.team/AtomOne/test/genesis.json > ~/.atomone/config/genesis.json
curl https://anode.team/AtomOne/test/addrbook.json > ~/.atomone/config/addrbook.json
SEEDS=""
PEERS="522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.atomone/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uatone,0.225uphoton"|g' $HOME/.atomone/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .atomone
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.atomone/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.atomone/config/config.toml
sudo tee /etc/systemd/system/atomoned.service > /dev/null <<EOF
[Unit]
Description=AtomOne
After=network-online.target
[Service]
User=$USER
ExecStart=$(which atomoned) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable atomoned
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat
atomoned tx staking create-validator \
--amount=1000000uatone \
--pubkey=$(atomoned tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="atomone-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees=5000uatone \
--from=[wallet_name]
SNAP_RPC=https://atomone.rpc.m.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 atomoned .atomone
peers="522826623d65d27ef3f7db8a5259d003be5a93d3@65.108.229.19:26666"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.atomone/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/.atomone/config/config.toml
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat
sudo systemctl stop atomoned && \
cp $HOME/.atomone/data/priv_validator_state.json $HOME/.atomone/priv_validator_state.json.backup && \
rm -rf $HOME/.atomone/data/
curl -o - -L https://anode.team/AtomOne/main/anode.team_atomone.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.atomone/
mv $HOME/.atomone/priv_validator_state.json.backup $HOME/.atomone/data/priv_validator_state.json && \
sudo systemctl restart atomoned && journalctl -fu atomoned -o cat