Node9X Service
  • πŸ„MAINNET
    • 🟒Kopi Protocol
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
      • ⛓️Upgrade (V11)
      • πŸͺ’Cosmovisor
      • πŸ›°οΈCommand
  • πŸš€Testnet
    • 🧬Explorer
    • 🟒Native
      • βš™οΈInstallation
    • 🟒XRPL EVM
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
      • πŸ•ΉοΈCommand
    • 🟒Pipe Network
      • Installation
      • Upgrade
    • 🟒Pell
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
      • ⛓️Upgrade (v1.1.1)
      • πŸ•ΉοΈCommand
    • 🟒Structs
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
      • πŸ•ΉοΈCommand
    • 🟒Prysm
      • πŸ›°οΈService & Snapshot
      • βš™οΈInstallation
      • πŸ’ΎCommand
    • 🟒Zenrock
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
      • ⛓️Upgrade ( v6.3.3)
      • πŸ•ΉοΈCosmovisor
      • πŸ›°οΈCommand
      • βš™οΈSidecar (βœ”οΈOracle)
        • πŸ”—Upgrade
    • 🟒Story Protocol
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation (Odyssey)
      • ⛓️Upgrade (v0.13.1)
        • πŸͺ’Upgrade (v0.13.0)
      • ⛓️Cosmovisor
      • πŸ›°οΈCommand
    • 🟒0G Chain
      • Service & Snapshot
      • Installation
        • Cosmovisor
      • Commands
      • β˜‘οΈ0G Storage Node
        • Upgrade (v0.7.3)
      • β˜‘οΈ0G Storage KV
      • β˜‘οΈ0G DA Node
        • Update
      • β˜‘οΈ0G DA Client
    • 🟒Airchains
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
        • πŸͺ’Cosmovisor
        • πŸ”ΊEVM ZK Rollup
      • πŸ•ΉοΈCommands
      • ⛓️Upgrade
    • 🟒Allora
      • πŸ”ΊWorkers
        • Create tool and worker wallet
        • Install Worker 1
        • Install Worker 2
        • Troubleshooting
        • Script for checking worker
      • Another method
      • Service
      • Installation By Dock (Recommend)
      • Installation
      • Snapshot & State sync
      • Useful commands
    • 🟒Hedge Block
      • Service
      • Installation
      • Commands
    • 🟒Dill Chain
      • Usage Commands
    • 🟒Fiamma Chain
      • πŸ₯¦Services & Snapshot
      • βš™οΈInstallation
      • πŸ›°οΈUsage Command
    • 🟒Elixir Testnet
      • βš™οΈInstallation
    • 🟒Chainbase
      • ⛓️Installation
    • πŸ”˜AXONE Protocol
      • πŸ’ΎService & Snapshot
      • βš™οΈInstallation
    • πŸ”˜Symphony
      • πŸ”ŒInstallation
      • πŸ₯¦Fresh Peer
    • πŸ”˜Empeiria
      • Installation
      • Usage Command
Powered by GitBook
On this page

Was this helpful?

  1. Testnet
  2. Allora

Installation By Dock (Recommend)

PreviousServiceNextInstallation

Last updated 8 months ago

Was this helpful?

sudo apt update && sudo apt upgrade -y
sudo apt install docker-compose
sudo apt-get update
sudo apt-get install -y make gcc

Install GO v.1.22.4 (Stable)

cd $HOME
version="1.22.4"
wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"
rm "go$version.linux-amd64.tar.gz"
export PATH=$PATH:/usr/local/go/bin
go version

Check and change new version at here "v0.0.7"

curl -sSL https://raw.githubusercontent.com/allora-network/allora-chain/main/install.sh | bash -s -- v0.0.7

Change <latest-release-tag> same above version

git clone -b <latest-release-tag> https://github.com/allora-network/allora-chain.git
cd allora-chain && make all

Change <latest-release-tag> same above version

git switch -c v0.2.5-dev

Make install

sudo docker-compose pull

-d chαΊ‘y αΊ©n

sudo docker-compose up -d

Check logs

sudo docker-compose logs -f

Useful Commands

//Exact wallet 

sudo cat validator0.account_info

//keys list

allorad keys list --home="$APP_HOME" --keyring-backend=test

//Recover keys

allorad keys add <your wallet> --recover --home="$APP_HOME" --keyring-backend=test

//Create new key

allorad keys add <your wallet> --home="$APP_HOME" --keyring-backend=test

//Edit validator

Note: Important command before using another command

sudo docker-compose exec validator0 bash

 **Once you're in you'll see the root@xxxxx changed from your normal environment Check your wallet 

allorad --home="$APP_HOME" tx staking edit-validator \
  --new-moniker "<your wallet>" \
  --website "https://testnet.zkstore.in" \
  --identity "" \
  --from "validator0" \
  --keyring-backend=test \
  --chain-id ${NETWORK} \
  --gas auto \
  --gas-adjustment 1.5 \
  --gas-prices 1uallo \
  -y

//Check balance

allorad q bank balances $(allorad --home="$APP_HOME" keys show validator0 -a)

//Check your wallet 

allorad --home=$APP_HOME keys --keyring-backend=test list

//Check your validator address 

VAL_PUBKEY=$(allorad --home=$APP_HOME comet show-validator | jq -r .key)
allorad --home=$APP_HOME q staking validators -o=json | \
    jq '.validators[] | select(.consensus_pubkey.value=="'$VAL_PUBKEY'")'
 
//Check your wallet balance 

allorad --home=$APP_HOME q bank balances YOUR_WALLET_ADDRESS --node tcp://localhost:26657 

//Delegate 

allorad tx staking delegate YOUR_VALIDATOR_ADDRESS 30000000000uallo \
    --chain-id=edgenet \
    --home=$APP_HOME \
    --keyring-backend=test \
    --from=YOUR_WALLET_NAME --node tcp://localhost:26657

//Check status 

allorad status 2>&1 | jq

curl -s http://localhost:26658/status | jq .

curl -s http://localhost:26658/status | jq .result.sync_info.catching_up
πŸš€
🟒
Releases Β· allora-network/allora-chainGitHub
Logo