Byzantine Finance
Website - Home🖥️ For Developers
  • 👋Introduction
    • What is Byzantine Finance?
      • Permissionless strategy vaults
      • Strategy layer & infrastructure layer - Explain Like I'm 5
      • Architecture Overview
    • Explanation of terms
    • Restaking explained
  • Media kit
  • 🔑Byzantine Vaults
    • What are Byzantine vaults?
    • Features of Native Vaults
      • Byzantine Oracle
      • Best practices for Validator Managers
    • Types of Native Vaults
      • Solo Staker Vaults
      • Partner Validated Vaults
      • Distributed Validator Vaults
  • ↔️Vault Interaction
    • Deposit
      • Deposit to ERC20 Vaults
      • Deposit to Native Vaults
    • Withdraw
      • Withdraw from ERC20 Vaults
      • Withdraw from Native Vaults
    • Claim Rewards
      • Restaking Rewards
        • EigenLayer Rewards
        • Symbiotic Rewards
  • 🎛️Vault Creation
    • Overview
      • Vault Configuration Guide
      • Vault Parameters
        • Byzantine Vault Parameters
        • Native Vault Parameters
        • EigenLayer Parameters
        • Symbiotic Parameters
      • Roles
    • Single Protocol Vaults
      • EigenLayer Vault
        • Eigen ERC20 Vault
        • Eigen Native Vault
      • Symbiotic Vault
        • Sym ERC20 Vault
        • Sym Native Vault
    • Cross Protocol Vaults
      • Eigen Layer / Symbiotic ERC20 Vault
  • 🤖Curation
    • Overview
    • Curator Related Roles
    • Vault Management
    • Curation Fee Management
  • 🌐Node operators
    • Operators in the Byzantine ecosystem
    • Register as a Staking Operator
    • Staking
    • Restaking Operator
      • Symbiotic
      • EigenLayer
      • Allocation to existing Restaking Operators
      • Creation of on-demand Restaking Operators
  • Claiming DV operator fees
Powered by GitBook
On this page
  • 1. Request to be whitelisted
  • 2. Join our Staking Operator Registry
  • 3. Complete your profile, and start validating
  1. Node operators

Register as a Staking Operator

How to become a node operator is Byzantine ecosystem ?

PreviousOperators in the Byzantine ecosystemNextStaking

Last updated 27 days ago

Please note that registering as an operator is not compulsory - Byzantine vaults are fully permissionless, especially in the case of Solo Staker Vaults. Registering as an operator will however allow Byzantine to suggest you as a verified operator during the onboarding of new clients and to count on you for specific client demands.

For new operators looking to run staking and/or restaking nodes for Byzantine, become part of the Byzantine ecosystem, access its liquidity, and earn fees, the following steps are required:

1. Request to be whitelisted

At the moment, the ByzanTeam is carefully selecting the Node Operator Partners that users will be able to select as operators. All applicants will go through a due diligence process.

You can reach out to us by filling this .

2. Join our Staking Operator Registry

After having successfully passed the DD process, you will be added to the Operator Registry. You will only need to provide a few pieces of information:

 function registerOperator(
    string calldata _name,
    address _admin,
    uint16 _operatorFee,
    address[] calldata _managers
 ) external onlyByzantine;

Details about the parameters:

  • _name: The name of the staking operator. Lower case, spaces replaced by points. Example: for Node Operator Inc, _name will be node.operator.inc

  • _admin: The address of the Administrator of the operator. He will be allowed to change the staking fee, add or remove managers.

  • _operatorFee: The fees of the staking rewards in basis points. The fee can be updated by the Administrator and cannot exceed 10%. To set a fee at 10% inputing 1000 will be expected, 5% it will be 500, 2.89% 289, ...

  • _managers: The addresses of the Validator Managers. Knowing that the admin can update the managers list, this array can be empty during the registration. Validator Managers are capable of adding new validators' deposit data to vaults for which the applicant was selected as Validator Manager.

3. Complete your profile, and start validating

After having added Validator Managers and made sure your fee is up to date, you can run validators in the Byzantine infrastructure.

🌐
form