Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
https://foundation.kiTwitter
https://x.com/Ki_FoundationTelegram
https://t.me/kifoundationCoingecko
https://www.coingecko.com/en/coins/kiCoinmarketcap
https://coinmarketcap.com/ru/currencies/ki-foundation/GitHub
https://github.com/KiFoundationMedium
https://medium.com/ki-foundationLinkedin
https://www.linkedin.com/company/kifoundation/ANODE.TEAM
https://main.anode.team/kichainRPC
https://kichain.rpc.m.anode.teamAPI
https://kichain.api.m.anode.teamgRPC
http://kichain.grpc.m.anode.teamSeed
Peer
f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656Live peers
https://anode.team/KiChain/main/peers.txtGenesis
https://anode.team/KiChain/main/genesis.jsonAddrbook
https://anode.team/KiChain/main/addrbook.jsonwget -O KiChain.sh https://anode.team/KiChain/main/KiChain.sh && chmod u+x KiChain.sh && ./KiChain.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/KiFoundation/ki-tools
git checkout main
git checkout 5.0.2
make install
wget -O $HOME/go/bin/kid https://anode.team/KiChain/main/kid && chmod +x $HOME/go/bin/kid
kid init [moniker] --chain-id kichain-2
sed -i "s/chain-id = .*/chain-id = \"kichain-2\"/" $HOME/.kid/config/client.toml
kid keys add [wallet_name]
curl https://anode.team/KiChain/main/genesis.json > ~/.kid/config/genesis.json
curl https://anode.team/KiChain/main/addrbook.json > ~/.kid/config/addrbook.json
SEEDS=""
PEERS="f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.kid/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uxki"|g' $HOME/.kid/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .kid
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.kid/config/config.toml
sudo tee /etc/systemd/system/kichaind.service > /dev/null <<EOF
[Unit]
Description=KiChain Mainnet
After=network-online.target
[Service]
User=$USER
ExecStart=$(which kid) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable kid
sudo systemctl restart kid && journalctl -fu kid -o cat
kid tx staking create-validator \
--amount=1000000uxki \
--pubkey=$(kid tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="kichain-2" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="10000uxki" \
--gas 400000 \
--from=[wallet_name]
SNAP_RPC=https://ki.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 kid .kid
peers="f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.kid/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/.kid/config/config.toml
curl -o - -L https://anode.team/KiChain/main/anode.team_kichain_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.kid/
sudo systemctl restart kid && journalctl -fu kid -o cat
ANODE.TEAM
https://test.anode.team/kichainRPC
https://kichain.rpc.t.anode.teamAPI
https://kichain.api.t.anode.teamgRPC
http://kichain.grpc.t.anode.teamSeed
Peer
f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656Live peers
https://anode.team/KiChain/test/peers.txtGenesis
https://anode.team/KiChain/test/genesis.jsonAddrbook
https://anode.team/KiChain/test/addrbook.jsonwget -O KiChain.sh https://anode.team/KiChain/test/KiChain.sh && chmod u+x KiChain.sh && ./KiChain.sh
Memory
16GBCPUs
Quad Core or larger AMD or Intel (amd64) CPUDisk
At least 500GB NVMe Storagegit clone https://github.com/KiFoundation/ki-tools
git checkout main
git checkout 5.0.2
make install
wget -O $HOME/go/bin/kid https://anode.team/KiChain/test/kid && chmod +x $HOME/go/bin/kid
kid init [moniker] --chain-id kichain-2
sed -i "s/chain-id = .*/chain-id = \"kichain-2\"/" $HOME/.kid/config/client.toml
kid keys add [wallet_name]
curl https://anode.team/KiChain/test/genesis.json > ~/.kid/config/genesis.json
curl https://anode.team/KiChain/test/addrbook.json > ~/.kid/config/addrbook.json
SEEDS=""
PEERS="f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.kid/config/config.toml
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025uxki"|g' $HOME/.kid/config/app.toml
curl -sSL https://anode.team/set-ports.sh | bash -s -- .kid
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.kid/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.kid/config/config.toml
sudo tee /etc/systemd/system/kichaind.service > /dev/null <<EOF
[Unit]
Description=KiChain Mainnet
After=network-online.target
[Service]
User=$USER
ExecStart=$(which kid) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable kid
sudo systemctl restart kid && journalctl -fu kid -o cat
kid tx staking create-validator \
--amount=1000000uxki \
--pubkey=$(kid tendermint show-validator) \
--moniker="[moniker]" \
--identity="[identity]" \
--website="[website]" \
--details="[details]" \
--security-contact="[contact]" \
--chain-id="kichain-2" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="10000uxki" \
--gas 400000 \
--from=[wallet_name]
SNAP_RPC=https://ki.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 kid .kid
peers="f97811e969204e25b431f9b63b1e8c3219786a02@144.76.97.251:32656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.kid/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/.kid/config/config.toml
curl -o - -L https://anode.team/KiChain/test/anode.team_kichain_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.kid/
sudo systemctl restart kid && journalctl -fu kid -o cat