☑️Allora Full Node (RPC)
Recommended Hardware: 8 Cores, 64GB RAM, 500GB of storage (NVME)
nstallation
Install dependencies, if needed
sudo apt update && sudo apt upgrade -y
sudo apt install git
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce jq python3-pip -y
Clone repository Allora:
git clone -b main https://github.com/allora-network/allora-chain.git
Sửa file docker-compose.yaml như hình:

Run the Node with Docker Compose
cd $HOME
cd allora-chain
sudo docker-compose pull
sudo docker-compose up -d
Monitoring Logs
sudo docker-compose logs -f
You can interact with the running node through RPC calls. For example, to check the node's status:
curl -s http://localhost:26657/status | jq .
Once your node has finished synching and is caught up with the network, this command will return false
:
curl -so- http\://localhost:26657/status | jq .result.sync_info.catching_up
Last updated