Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
https://arable.financeTwitter
https://x.com/ArableProtocolTelegram
https://t.me/ArableProtocolDiscord
https://discord.gg/bxFXCpk3hKCoinmarketcap
https://coinmarketcap.com/ru/currencies/arable-protocol/GitHub
https://github.com/ArableProtocolMedium
https://medium.com/@ArableProtocolWhitepaper
docs.google.com/document/d/14x1gPqb8PBmhbM_tKsN5EEjXFp5ZHLLl_DcIVfuR4…ANODE.TEAM
https://main.anode.team/arableRPC
https://arable.rpc.m.anode.teamAPI
https://arable.api.m.anode.teamgRPC
http://arable.grpc.m.anode.teamSeed
Peer
0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656Live peers
https://anode.team/Arable/main/peers.txtGenesis
https://anode.team/Arable/main/genesis.jsonAddrbook
https://anode.team/Arable/main/addrbook.jsonwget -O Arable.sh https://anode.team/Arable/main/Arable.sh && chmod u+x Arable.sh && ./Arable.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/ArableProtocol/acrechain
cd acrechain
git checkout v1.2.2
make install
wget -O $HOME/go/bin/acred https://anode.team/Arable/main/acred && chmod +x $HOME/go/bin/acred
acred init [moniker] --chain-id acre_9052-1
sed -i "s/chain-id = .*/chain-id = \"acre_9052-1\"/" $HOME/.acred/config/client.toml
acred keys add [wallet_name]
curl https://anode.team/Arable/main/genesis.json > ~/.acred/config/genesis.json
curl https://anode.team/Arable/main/addrbook.json > ~/.acred/config/addrbook.json
SEEDS=""
PEERS="0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.acred/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0aacre"|g' $HOME/.acred/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .acred
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.acred/config/config.toml
sudo tee /etc/systemd/system/acred.service > /dev/null <<EOF
[Unit]
Description=Arable
After=network-online.target
[Service]
User=$USER
ExecStart=$(which acred) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable acred
sudo systemctl restart acred && journalctl -fu acred -o cat
acred tx staking create-validator \
--amount=1000000000000000000aacre \
--pubkey=$(acred tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="acre_9052-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--gas=300000 \
--from=[wallet_name]
SNAP_RPC=https://arable.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1500)); \
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 acred .acred
peers="0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.acred/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/.acred/config/config.toml
sudo systemctl restart acred && journalctl -fu acred -o cat
ANODE.TEAM
https://test.anode.team/arableRPC
https://arable.rpc.t.anode.teamAPI
https://arable.api.t.anode.teamgRPC
http://arable.grpc.t.anode.teamSeed
Peer
0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656Live peers
https://anode.team/Arable/test/peers.txtGenesis
https://anode.team/Arable/test/genesis.jsonAddrbook
https://anode.team/Arable/test/addrbook.jsonwget -O Arable.sh https://anode.team/Arable/test/Arable.sh && chmod u+x Arable.sh && ./Arable.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/ArableProtocol/acrechain
cd acrechain
git checkout v1.2.2
make install
wget -O $HOME/go/bin/acred https://anode.team/Arable/test/acred && chmod +x $HOME/go/bin/acred
acred init [moniker] --chain-id acre_9052-1
sed -i "s/chain-id = .*/chain-id = \"acre_9052-1\"/" $HOME/.acred/config/client.toml
acred keys add [wallet_name]
curl https://anode.team/Arable/test/genesis.json > ~/.acred/config/genesis.json
curl https://anode.team/Arable/test/addrbook.json > ~/.acred/config/addrbook.json
SEEDS=""
PEERS="0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.acred/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0aacre"|g' $HOME/.acred/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .acred
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.acred/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.acred/config/config.toml
sudo tee /etc/systemd/system/acred.service > /dev/null <<EOF
[Unit]
Description=Arable
After=network-online.target
[Service]
User=$USER
ExecStart=$(which acred) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable acred
sudo systemctl restart acred && journalctl -fu acred -o cat
acred tx staking create-validator \
--amount=1000000000000000000aacre \
--pubkey=$(acred tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="acre_9052-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--gas=300000 \
--from=[wallet_name]
SNAP_RPC=https://arable.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1500)); \
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 acred .acred
peers="0a8e5ecc88266fe6ba12fdfb76da9ddba2a909dc@65.108.70.119:30656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.acred/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/.acred/config/config.toml
sudo systemctl restart acred && journalctl -fu acred -o cat