Operator Guide
This guide contains the steps needed to set up and register your node for AltLayer MACH AVS
Minimal system requirements
4 CPU
16GB Memory
50GB SSD
Ubuntu 24.04 LTS
Docker v24 and above
EigenLayer CLI
Full node with RPC service or managed RPC services for the target rollup
Minimal stake requirements
💡 For smooth onboarding of operators, we will set the initial stake requirement to be 0.
AltLayer MACH AVS Mainnet - 0 ETH
Supported token strategy
Mainnet
0
Native ETH All ETH LSTs
1
1
bEIGEN
0
Currently active AVS
AltLayer MACH AVS - Fast finality AVS for OP Mainnet and Arbitrum One
Operator setup
Key generation and wallet funding
Follow EigenLayer guide and Install EigenLayer CLI
Generate ECDSA and BLS keypair using the following command
💡 Please ensure you backup your private keys to a safe location. By default, the encrypted keys will be stored in ~/.eigenlayer/operator_keys/
Fund at least 0.3 ETH to the ECDSA address generated. It will be required for node registration in the later steps.
Please submit the ECDSA address via MACH AVS interest form https://forms.gle/3A6xNWwRf9ip9CnN9.
Register on EigenLayer as an operator
💡 You may skip the following steps if you are already a registered operator on the EigenLayer testnet and mainnet.
You will need to do it once for testnet and once for mainnet.
Create the configuration files needed for operator registration using the following commands. Follow the step-by-step prompt. Once completed,
operator.yamlandmetadata.jsonwill be created.
Edit
metadata.jsonand fill in your operator's details.
Upload
metadata.jsonto a public URL. Then update theoperator.yamlfile with the url (metadata_url). If you need hosting service to host the metadata, you can consider uploading the metadata gist and get therawurl.If this is your first time registering this operator, run the following command to register and update your operator
Upon successful registration, you should see
✅ Operator is registered successfully to EigenLayerIf you need to edit the metadata in the future, simply update
metadata.jsonand run the following commandAfter your operator has been registered, it will be reflected on the EigenLayer operator page.
Testnet: https://holesky.eigenlayer.xyz/operator
Mainnet: https://app.eigenlayer.xyz/operator

You can also check the operator registration status using the following command.
Joining MACH AVS
💡 Training wheels AltLayer Mach AVS will initially launch in operator allowlist mode. Interested operators can register their interest with us using this form: https://forms.gle/LmPABTNQcwJhw4UB7
Mach AVS Setup
Clone the Mach AVS repository
Run the following command to clone the MACH AVS operator repository
Inside this repository, we have configurations for various MACH AVS. Select the AVS you would like to run.
💡 You can be an operator of different MACH AVS. Repeat the following steps for each MACH AVS
Change the directory to the network and MACH AVS you would like to run
AltLayer Mach AVS Mainnet
cd mach-avs-operator-setup/ethereum/mach-avs/altlayer-multi-mach
Opt-in and out of MACH AVS
For opt-in and out, copy the following env
Update the TODO sections in the .env.opt
To opt-in
💡 Before you opt-in to MACH AVS, please ensure that
You have the right infrastructure (e.g., cloud hosting) to keep the operator up and running. Non-performing AVS operators may be subjected to ejection out of MACH AVS.
You have already been whitelisted as an operator for MACH AVS.
If you no longer want to run the AVS, you can opt out by running
💡 It may take a few minutes for EigenLayer AVS and operator page to be updated This is an automatic process.
Running MACH AVS
Create the environment file
Configuring MACH AVS operator
Update the TODO sections in the .env
💡 The default path where your generated keys are stored in ~/.eigenlayer/operator_keys/
Configuring rollup endpoint
💡 As public RPC endpoints typically have a rate limit, it is highly recommended that you use managed RPC services such as Infura, Alchemy, or QuickNode for public rollups like OP Sepolia Testnet.
Navigate to
/configs/chainGo to the respective chain config i.e
optimismandarbitrum_oneLocate the
collectorand look for the variableurl. Replace the value with the endpoint you generated from the RPC service provider, such as Infura or Alchemy.
Running MACH AVS
To run MACH AVS, you may launch it using docker compose.
Helm chart
To run MACH AVS within your Kubernetes cluster, you can use the reference Helm chart available in the MACH AVS Operator Setup repository. You can find the Helm chart at the following link:
Facing issues?
Please feel free to reach out to us via the Slack working group.
Frequently ask questions
How do I know whether my operator is running?
First, check whether your operator docker container is running by running docker compose ps.
Next, you can check the logs to see whether the services has been started or not
Finally, to determine whether your AVS is actively validating the target rollup, you can look for logs of the verifier container to see whether there is block validation activities
Who is running the aggregator and doing BLS signature aggregator?
AltLayer will provide an aggregator where your MACH AVS can connect to and submit the signatures for aggregation. Aggregator endpoint has been pre-configured in the configuration file.
How do I know when I do not meet sufficient minimal stake requirements during registration? You will encounter
execution reverted: StakeRegistry.registerOperator: Operator does not meet minimum stake
Please check that your ECDSA address is sufficiently funded. We recommend to maintain at least 0.3 ETH to ensure you have sufficient gas tokens for AVS registering, opt-in and de-registering operation.
Last updated