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 to resolve the error "Error in new task subscription"
  • My operator is not showing up on the Aligned Explorer
  • How to resolve the error "Eth ws url or fallback is empty" or "Eth rpc url or fallback is empty"
  • How to update Rust
  • Compiler family detection failed due to error: ToolNotFound: failed to find tool "c++": No such file or directory (os error 2)
  1. Operators

Troubleshooting

PreviousOperator FAQNextUpgrading Guides

Last updated 1 month ago

How to resolve the error "Error in new task subscription"

This error is caused by the operator not being able to subscribe to the task.

Make sure you have configured the RPC correctly and verify that the node is running.

The following RPC providers are known to have issues:

My operator is not showing up on the Aligned Explorer

The does not update the operator status in real time. The explorer updates the operators' list every 1 hour.

If your operator is not showing up after 1 hour, please check the following:

  • The operator is whitelisted on the Aligned AVS, you can run the following command:

    cast call \
    --rpc-url https://ethereum-holesky-rpc.publicnode.com \
    0x3aD77134c986193c9ef98e55e800B71e72835b62 \
    "isWhitelisted(address _address)(bool)" <operator_address>

    If the operator is whitelisted, it will return true.

  • The operator is registered on the Aligned AVS:

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

    If the operator is not registered, it will return 0x0 otherwise it will return the operator ID.

How to resolve the error "Eth ws url or fallback is empty" or "Eth rpc url or fallback is empty"

This error is caused by the operator not being able to get the RPC urls.

How to update Rust

Compiler family detection failed due to error: ToolNotFound: failed to find tool "c++": No such file or directory (os error 2)

Run sudo apt update && sudo apt install g++ to install the GNU C++ compiler.

Make sure you have configured the RPC correctly in the .

In case you have an unsupported version of Rust, you can update it following the

dRPC
explorer
official page
config file