Installation
🖥️System Requirements
💭Prerequisites
🛠️Installation
bash -i <(curl -s https://install.aztec.network)mkdir -p aztec-docker/datacd aztec-docker && vi docker-compose.ymlname: aztec-sequencer services: aztec-sequencer: container_name: aztec-sequencer restart: unless-stopped image: aztecprotocol/aztec:alpha-testnet environment: ETHEREUM_HOSTS: "<your ETH RPC>" L1_CONSENSUS_HOST_URLS: "<your ETH Beacon>" DATA_DIRECTORY: /data VALIDATOR_PRIVATE_KEY: 0x<your private key hash> COINBASE: 0x<your address> P2P_IP: <your IP address> LOG_LEVEL: debug entrypoint: > sh -c 'node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --network alpha-testnet start --node --archiver --sequencer' ports: - 40400:40400/tcp - 40400:40400/udp - 8080:8080 volumes: - ./data:/datadocker compose up -d
Last updated