Prerequisites

  1. Install Docker:
  2. System Requirements:
  3. Clone the Repository:

Step 1: Pull the Docker Image

The ZKVerifier node is distributed as a prebuilt Docker image. Pull the image with the following command:

docker pull zkverifier/node:latest


Step 2: Configure the Node

  1. Create a Configuration Directory:

  2. Prepare the Configuration File:


Step 3: Run the Node Using Docker

Use the following command to start the node:

docker run -d \\
  --name zkverifier-node \\
  -v ~/zkverifier/config:/config \\
  -v ~/zkverifier/data:/data \\
  -p 8545:8545 \\
  zkverifier/node:latest

Explanation of Parameters: