MevBoostRelayAllowedList
MEV-Boost relay allowed list is a simple contract storing a list of relays that have been approved by DAO for use in MEV-Boost setups. The data from the contract is used to generate a configuration file that contains a list of relays that should be connected to by the Node Operators participating in Lido.
View methods
get_owner()
Retrieves the current contract owner.
@view
@external
def get_owner() -> address
get_manager()
Retrieves the current manager entity (returns zero address if no entity is assigned).
@view
@external
def get_manager() -> address
get_relays_amount()
Retrieves the current total amount of allowed relays.
@view
@external
def get_relays_amount() -> uint256
get_relays()
Retrieves all of the currently allowed relays.
@view
@external
def get_relays() -> DynArray[Relay, MAX_NUM_RELAYS]