Installation

Aztec Network Testnet

circle-info

You need to have your own sepolia RPC or rent it from any paid provider, the free one will have limited access and can't be used.

1. Follow This Step If It's Your First Time Running Aztec Sequencer (Otherwise Just Next To Step 2):

sudo apt-get update && sudo apt-get upgrade -y
sudo apt install curl iptables build-essential git wget lz4 jq make gcc nano automake autoconf tmux htop nvme-cli libgbm1 pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev screen  -y
source <(wget -O - https://raw.githubusercontent.com/frianowzki/installer/main/docker.sh)
sudo groupadd docker && sudo usermod -aG docker $(whoami) && newgrp docker
bash -i <(curl -s https://install.aztec.network)
echo 'export PATH=$PATH:/root/.aztec/bin' >> ~/.bashrc
source ~/.bashrc
aztec-up alpha-testnet

2. Stop, Remove & Update Current Sequencer:

docker ps -a
docker stop [aztec-container-id] && docker rm [aztec-container-id]
rm -rf .aztec/alpha-testnet/data
aztec-up alpha-testnet

// OR use below if you need specific version (example: v0.87.2)
aztec-up -v 0.87.2

12. Now let's run Aztec Sequencer again if there is no error:

  • Change RPC_URL with:

  • Change CONSENSUS_HOST_URL with:

  • Enter and wait until it fully synced, you can check the logs using:

13. Update Aztec Governance (Only for Validators):

If you are using CLI you can just add this line

Or if you use Docker Compose you can use this on your .env

Save it and set Docker Compose:

Run it by use this command:

Last updated