AlignedLayer
  • Introduction
    • About Aligned
    • Try Aligned
    • Use cases
    • FAQ
    • Why ZK and Aligned?
  • Architecture
    • Supported Verifiers
    • Key Terms
    • Fast mode
      • Batcher
      • Payment Service Contract
      • Service Manager Contract
      • Operator
      • Aggregator
      • Explorer
    • Aggregation mode
  • Guides
    • Submitting proofs
    • Build your first Aligned Application
      • Modify ZkQuiz Questions
    • Validating public input
    • SDK Intro
    • SDK API Reference
    • Generating proofs for Aligned
    • Generating & submitting proofs of Rust code with ZKRust
    • Setup Aligned Infrastructure Locally
    • Contract Addresses
    • Submitting Batch Without Batcher
    • Aligned CLI
  • Operators
    • Running an operator
    • Operator FAQ
    • Troubleshooting
    • Upgrading Guides
      • Upgrading to v0.14.0
      • Upgrading to v0.10.2
      • Upgrading to v0.9.2
  • Useful links
    • Mainnet Explorer
    • Holesky Explorer
    • All the proof aggregation solutions will use RISC-V zkvms
    • Manifesto
  • Socials
    • Telegram Group
    • Twitter/X
    • Discord
    • Blog
    • Website
    • Github
    • YouTube
Powered by GitBook
On this page
  • How do I get whitelisted to run an operator?
  • What Strategies Tokens are supported in Mainnet?
  • What RPC should I use?
  • How can I check if the version I'm using is the latest one?
  • How do I check the operator version registered on the Aligned version tracking system?
  • How do I check the operator version locally?
  • How do I get the ID of the operator?
  1. Operators

Operator FAQ

PreviousRunning an operatorNextTroubleshooting

Last updated 1 day ago

The EigenLayer Operator FAQ is available .

How do I get whitelisted to run an operator?

To get whitelisted, you need to fill out the form available and wait for the Aligned team to approve your request.

What Strategies Tokens are supported in Mainnet?

The list of supported strategies can be found .

What RPC should I use?

We suggest you use your own nodes for better performance and reliability. Note that the node must support HTTP and WebSockets.

We also recommend the following RPC providers:

Two RPCs are used, one as the main one, and the other one as a fallback in case one node is working unreliably.

Default configurations is set up to use the same public node in both scenarios.

PUBLIC NODES SHOULDN'T BE USED AS THE MAIN RPC. We recommend not using public nodes at all.

FALLBACK AND MAIN RPCs SHOULD BE DIFFERENT.

Most of the actions will pass through the main RPC unless there is a problem with it. Events are fetched from both nodes.

How can I check if the version I'm using is the latest one?

How do I check the operator version registered on the Aligned version tracking system?

You can get the registered version of your operator by running the following command:

  • Mainnet:

    curl https://mainnet.telemetry.alignedlayer.com/versions/<operator_address>
  • Holesky:

    curl https://holesky.telemetry.alignedlayer.com/versions/<operator_address>

Replace <operator_address> with your operator address.

Also, you can check the operator version in the Explorer:

How do I check the operator version locally?

To see the operator version, run:

./operator/build/aligned-operator --version

You have to be in the root aligned-layer directory to run this command.

This will show the version of the operator you have built in your filesystem.

How do I get the ID of the operator?

You can get the ID of the operator by running the following command:

  • Mainnet:

    cast call \
        --rpc-url https://ethereum-rpc.publicnode.com \
        0x3CcfB7e6e8fe2A8d941a8Ce4C69A944a770E8228 \
        "getOperatorId(address operator)(bytes32)" <operator_address>
  • Holesky

    cast call \
        --rpc-url https://ethereum-holesky-rpc.publicnode.com \
        0xD0A725d82649f9e4155D7A60B638Fe33b3F25e3b \
        "getOperatorId(address operator)(bytes32)" <operator_address>

This will return the operator ID if the operator is registered, otherwise it will return 0x.

You can check the latest version available on the .

Note: You need to have installed

here
here
here
Infura
Blast
releases' page
Mainnet Operators Explorer
Holesky Operators Explorer
Foundry