For the complete documentation index, see llms.txt. This page is also available as Markdown.

Validator

Validators are responsible for making and veryfiing claims of VeaInbox state on VeaOutbox. Validators keep Vea secure as it is a trust-minimized optimistically-verified bridge. The trust model requires only 1 live honest verifier, similar to optimistic rollups.

Setup

  1. Clone repository

    git clone git@github.com:kleros/vea.git
  2. Create and populate .env in ./validator-cli directory, follow README.md for env variable details

    cd validator-cli
    cp .env.example .env
  3. Build and run validator image

    docker compose build validator
    docker compose up validator

Last updated