A comprehensive list of all deployed contracts is available here .
The L2 Relayer contract acts as a middleman, receiving messages and relaying them to the specific agent (ownership, parameter, or emergency).
The Relayer receives the broadcasted message and, using the relay function, forwards this message to the appropriate agent. The agents defined in the L2 Relayer contract (OWNERSHIP_AGENT, PARAMETER_AGENT, EMERGENCY_AGENT) are responsible for executing the calldata in the message.
Warning
A Relayer's agent addresses cannot be altered. Once choosen, there is no way back.
The contract utilizes chain dependent Messenger contacts:
The source code of the relay function may vary slightly depending on the type of Relayer used. However, the general concept remains consistent:
A message is broadcast through the Broadcaster contract from L1 to L2, where the Relayer relays the message and executes it via the corresponding agent.
This function can only be called by the MESSENGER of the contract.
Function to receive a message from the Broadcaster and relay the message to the according agent. This function is automatically called by the MESSENGER contract of the according chain. There is no need to manually call this function, which would actually revert as it is a guarded function.
Input
Type
Description
_agent
address
Token to transfer
_messages
address
Destination of the asset
Source code
@externaldefrelay(_agent:Agent,_messages:DynArray[Message,MAX_MESSAGES]):""" @notice Receive messages for an agent and relay them. @param _agent The agent to relay messages to. @param _messages The sequence of messages to relay. """assertIArbSys(ARBSYS).wasMyCallersAddressAliased()assertIArbSys(ARBSYS).myCallersAddressWithoutAliasing()==selfIAgent(self.agent[_agent]).execute(_messages)
@externaldefrelay(_agent:Agent,_messages:DynArray[Message,MAX_MESSAGES]):""" @notice Receive messages for an agent and relay them. @param _agent The agent to relay messages to. @param _messages The sequence of messages to relay. """assertmsg.sender==MESSENGERassertIMessenger(MESSENGER).xDomainMessageSender()==selfIAgent(self.agent[_agent]).execute(_messages)
@externaldefrelay(_agent:Agent,_messages:DynArray[Message,MAX_MESSAGES]):""" @notice Receive messages for an agent and relay them. @param _agent The agent to relay messages to. @param _messages The sequence of messages to relay. """assertmsg.sender==self.messengerIAgent(self.agent[_agent]).execute(_messages)