Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
- https://www.defund.app/Twitter
- https://twitter.com/defund_financeDiscord
- https://discord.gg/yQeBZBCQGcGithub
https://github.com/defund-labs/defundMedium
https://medium.com/defund-financeANODE.TEAM
https://test.anode.team/defundPeer
634ef7bf5c9619a68414ee87cf530132703e5d7b@144.76.97.251:29656Live peers
https://anode.team/DeFund/test/peers.txtGenesis
https://anode.team/DeFund/test/genesis.jsonAddrbook
https://anode.team/DeFund/test/addrbook.jsonwget -O DeFund.sh https://anode.team/DeFund/test/DeFund.sh && chmod u+x DeFund.sh && ./DeFund.sh
git clone https://github.com/defund-labs/defund.git
cd defund
git checkout v0.2.6
make install
defundd init <moniker> --chain-id orbit-alpha-1
defundd config chain-id orbit-alpha-1
defundd keys add <wallet_name>
curl https://anode.team/DeFund/test/genesis.json > ~/.defund/config/genesis.json
curl https://anode.team/DeFund/test/addrbook.json > ~/.defund/config/addrbook.json
SEEDS="f902d7562b7687000334369c491654e176afd26d@170.187.157.19:26656,2b76e96658f5e5a5130bc96d63f016073579b72d@rpc-1.defund.nodes.guru:45656"
PEERS="f902d7562b7687000334369c491654e176afd26d@170.187.157.19:26656,f8093378e2e5e8fc313f9285e96e70a11e4b58d5@rpc-2.defund.nodes.guru:45656,878c7b70a38f041d49928dc02418619f85eecbf6@rpc-3.defund.nodes.guru:45656,3594b1f46c6321d9f99cda8ad5ef5a367ce06ccf@199.247.16.116:26656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.defund/config/config.toml
bash $HOME/defund/devtools/optimize.sh
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0ufetf\"/" $HOME/.defund/config/app.toml
sudo tee /etc/systemd/system/defundd.service > /dev/null <<EOF
[Unit]
Description=DeFund Test
After=network-online.target
[Service]
User=$USER
ExecStart=$(which defundd) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable defundd
sudo systemctl restart defundd && journalctl -fu defundd -o cat
defundd tx staking create-validator \
--amount=1000000ufetf \
--pubkey=$(defundd tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="orbit-alpha-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="0ufetf" \
--from=<wallet_name>
SNAP_RPC=https://defund.rpc.t.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
sudo systemctl stop defundd && defundd tendermint unsafe-reset-all --home $HOME/.defund --keep-addr-book
peers="634ef7bf5c9619a68414ee87cf530132703e5d7b@144.76.97.251:29656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.defund/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/.defund/config/config.toml
curl -o - -L https://anode.team/DeFund/test/anode.team_defund_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.defund/
sudo systemctl restart defundd && journalctl -fu defundd -o cat