Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
- https://jackalprotocol.com/Twitter
- https://twitter.com/Jackal_ProtocolTelegram
- https://t.me/+kyaQs5qFMF8zZDcxDiscord
- https://discord.com/invite/5GKym3p6rjCoinGecko
https://www.coingecko.com/en/coins/jackal-protocolGithub
https://github.com/JackalLabsRetriever name service
https://jackaldao.com/rns/Jackkal docs
https://docs.jackaldao.com/ANODE.TEAM
https://main.anode.team/jackalPing
https://ping.pub/jackalPeer
751c1c50e803aee2c0fb698e2103ccafc30d619f@173.214.171.102:26696Live peers
https://anode.team/Jackal/main/peers.txtGenesis
https://anode.team/Jackal/main/genesis.jsonAddrbook
https://anode.team/Jackal/main/addrbook.jsonwget -O Jackal.sh https://anode.team/Jackal/main/Jackal.sh && chmod u+x Jackal.sh && ./Jackal.sh
Memory
32GBCPUs
4 Cores (modern CPU's)Disk
1TB of storage (SSD or NVME)git clone https://github.com/JackalLabs/canine-chain.git
cd canine-chain
git checkout v4.2.0
make install
canined init <moniker> --chain-id jackal-1
canined config chain-id jackal-1
canined keys add <wallet_name>
curl https://anode.team/Jackal/main/genesis.json > ~/.canine/config/genesis.json
curl https://anode.team/Jackal/main/addrbook.json > ~/.canine/config/addrbook.json
SEEDS=$(wget https://raw.githubusercontent.com/JackalLabs/canine-mainnet-genesis/master/genesis/seeds.txt -q -O -)
PEERS=`curl -sL https://raw.githubusercontent.com/JackalLabs/canine-mainnet-genesis/master/genesis/peers.txt | sort -R | head -n 7 | awk '{print $1}' | paste -s -d, -`
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.canine/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.002ujkl\"/" $HOME/.canine/config/app.toml
sudo tee /etc/systemd/system/canined.service > /dev/null <<EOF
[Unit]
Description=Jackal
After=network-online.target
[Service]
User=$USER
ExecStart=$(which canined) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable canined
sudo systemctl restart canined && journalctl -fu canined -o cat
canined tx staking create-validator \
--amount=1000000ujkl \
--pubkey=$(canined tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="jackal-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="400ujkl" \
--from=<wallet_name>
SNAP_RPC=https://jackal.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
sudo systemctl stop canined && canined tendermint unsafe-reset-all --home $HOME/.canine --keep-addr-book
peers="751c1c50e803aee2c0fb698e2103ccafc30d619f@173.214.171.102:26696"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.canine/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/.canine/config/config.toml
curl -o - -L https://anode.team/Jackal/main/anode.team_jackal_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.canine/
sudo systemctl restart canined && journalctl -fu canined -o cat
sudo systemctl stop bcnad && \
cp $HOME/.canine/data/priv_validator_state.json $HOME/.canine/priv_validator_state.json.backup && \
rm -rf $HOME/.canine/data/
curl -o - -L https://anode.team/Jackal/main/anode.team_jackal.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.canine
curl -o - -L https://anode.team/Jackal/main/anode.team_jackal_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.canine/
mv $HOME/.canine/priv_validator_state.json.backup $HOME/.canine/data/priv_validator_state.json && \
sudo systemctl restart canined && journalctl -fu canined -o cat
ANODE.TEAM
https://main.anode.team/jackalPeer
e0bbd062b09dd71a06edf96a446273d0e8bb3c45@144.76.97.251:26746Live peers
https://anode.team/Jackal/test/peers.txtGenesis
https://anode.team/Jackal/test/genesis.jsonAddrbook
https://anode.team/Jackal/test/addrbook.jsonwget -O Jackal.sh https://anode.team/Jackal/test/Jackal.sh && chmod u+x Jackal.sh && ./Jackal.sh
Memory
32GBCPUs
4 Cores (modern CPU's)Disk
1TB of storage (SSD or NVME)git clone https://github.com/JackalLabs/canine-chain.git
cd canine-chain
git checkout v4.2.0-rc.1
make install
canined init <moniker> --chain-id lupulella-2
canined config chain-id lupulella-2
canined keys add <wallet_name>
curl https://anode.team/Jackal/test/genesis.json > ~/.canine/config/genesis.json
curl https://anode.team/Jackal/test/addrbook.json > ~/.canine/config/addrbook.json
SEEDS=$(wget https://raw.githubusercontent.com/JackalLabs/canine-mainnet-genesis/master/genesis/seeds.txt -q -O -)
PEERS=`curl -sL https://raw.githubusercontent.com/JackalLabs/canine-mainnet-genesis/master/genesis/peers.txt | sort -R | head -n 7 | awk '{print $1}' | paste -s -d, -`
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.canine/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.002ujkl\"/" $HOME/.canine/config/app.toml
sudo tee /etc/systemd/system/canined.service > /dev/null <<EOF
[Unit]
Description=Jackal Test
After=network-online.target
[Service]
User=$USER
ExecStart=$(which canined) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable canined
sudo systemctl restart canined && journalctl -fu canined -o cat
canined tx staking create-validator \
--amount=1000000ujkl \
--pubkey=$(canined tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="lupulella-2" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="400ujkl" \
--from=<wallet_name>
SNAP_RPC=https://jackal.rpc.t.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 100)); \
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 canined && canined tendermint unsafe-reset-all --home $HOME/.canine --keep-addr-book
peers="e0bbd062b09dd71a06edf96a446273d0e8bb3c45@144.76.97.251:26746"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.canine/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/.canine/config/config.toml
curl -o - -L https://anode.team/Jackal/test/anode.team_jackal_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.canine/
sudo systemctl restart canined && journalctl -fu canined -o cat