Cross-Domain Messaging

Scroll has an arbitrary message passing bridge that enables token transfers and allows dapps to communicate between layer 1 and layer 2. This means that dapps on layer 1 can trigger contract functions on layer 2, and vice versa. Next, we will explain how the messages are relayed between layer 1 and layer 2.

Sending Messages from L1 to L2

L1 to L2 workflow
Figure 1. L1 to L2 message relay workflow

There are two primary approaches to sending a message from L1 to L2: sending arbitrary messages via L1ScrollMessenger and sending enforced transactions via EnforcedTxGateway. Both approaches allow users to initiate a L2 transaction on L1 and call arbitrary contracts on L2. For arbitrary messages, the sender of the L2 transactions is the aliased L1ScrollMessenger address. For enforced transactions, the L2 sender is an externally-owned account (EOA). In addition, we provide several standard token gateways to make it easier for users to deposit ETH and other standard tokens including ERC-20, ERC-677, ERC-721, and ERC-1155. In essence, these gateways encode token deposits into a message and send it to their counterparts on L2 through the L1ScrollMessenger contract. You can find more details about the L1 token gateways in the Deposit Gateways.

As depicted in Figure 1, both arbitrary messages and enforced transactions are appended to the message queue stored in the L1MessageQueue contract. The L1MessageQueue contract provides two functions appendCrossDomainMessage and appendEnforcedTransaction for appending arbitrary messages and enforced transactions respectively.

/// @notice Append an arbitrary L1-to-L2 message into this contract.
/// @param target The target address on L2.
/// @param gasLimit The maximum gas can be used for this transaction on L2.
/// @param data The calldata of the L1-initiated transaction.
function appendCrossDomainMessage(
    address target,
    uint256 gasLimit,
    bytes calldata data
) external;

/// @notice Append an enforced transaction to this contract.
/// @param sender The sender address of this transaction.
/// @param target The target address of this transaction.
/// @param value The value to be transferred on L2.
/// @param gasLimit The maximum gas should be used for this transaction on L2.
/// @param data The calldata of the L1-initiated transaction.
function appendEnforcedTransaction(
    address sender,
    address target,
    uint256 value,
    uint256 gasLimit,
    bytes calldata data
) external;

Both functions construct an L1-initiated transaction with a new transaction type L1MessageTx introduced in the Scroll chain and compute the transaction hash (see more details in the L1 Message Transaction). L1MessageQueue then appends the transaction hash to the message queue, and emits the event QueueTransaction(sender, target, value, queueIndex, gasLimit, calldata). The difference between appendCrossDomainMessage and appendEnforcedTransaction when constructing L1 message transactions is:

  • appendCrossDomainMessage can be only called by L1ScrollMessenger and it uses the aliased address of msg.sender, which will be the address of L1ScrollMessenger, as the transaction sender.
  • appendEnforcedTransaction can be only called by EnforcedTxGateway and it uses sender from the function parameter as the transaction sender. This allows users to enforce a withdrawal or transfer of ETH from their L2 accounts directly through the L1 bridge.

After the transaction is successfully executed on L1, the watcher in the Scroll sequencer that monitors the L1MessageQueue contract collects the new QueueTransaction events from L1 blocks. The sequencer then constructs a new L1MessageTx transaction per event and appends them to its local L1 transaction queue. When constructing a new L2 block, the sequencer includes the transactions from both its L1 transaction queue and its L2 mempool. Note that the L1 message transactions must be included sequentially based on the L1 message queue order in the L1MessageQueue contract. L1MessageTx transactions always come first in the L2 blocks followed by L2 transactions. Currently, we limit the number of L1MessageTx transactions in an L2 block to NumL1MessagesPerBlock (currently set to 10).

Next, we will expand more on the specific process of sending arbitrary messages via L1ScrollMessenger and sending enforced transactions via EnforcedTxGateway.

Sending Arbitrary Messages

The L1ScrollMessenger contract provides two sendMessage functions to send arbitrary messages. The only difference is that the second one allows users to specify a refund address other than the sender address to receive a fee refund.

sendMessage function signatures
/// @param target The target address on L2.
/// @param value The value to deposit to L2 from `msg.value`.
/// @param message The message passed to target contract.
/// @param gasLimit The maximum gas can be used for this transaction on L2.
function sendMessage(
    address target,
    uint256 value,
    bytes memory message,
    uint256 gasLimit
) external payable;

/// @param target The target address on L2.
/// @param value The value to deposit to L2 from `msg.value`.
/// @param message The message passed to target contract.
/// @param gasLimit The maximum gas can be used for this transaction on L2.
/// @param refundAddress The address to refund excessive fee on L1.
function sendMessage(
    address target,
    uint256 value,
    bytes calldata message,
    uint256 gasLimit,
    address refundAddress
) external payable;

Both functions require users to provide a gas limit for the corresponding L1MessageTx transaction on L2 and prepay the message relay fee on L1, which is calculated based on the gas limit amount. The fee is collected to a feeVault contract on L1. In case the transaction fails on L2 because the user did not set the correct gas limit for their message on L1, the user can replay the same message with a higher gas limit. You can find more details in the Retrying failed messages section, but since any unused portion of these fees is refunded to the user, there is no penalty for overestimating the gas limit.

The sendMessage functions encode the arguments into a cross-domain message (see the code snippet below), where the message nonce is the next queue index of the L1 message queue. The encoded data is then used as calldata in the L1MessageTx transaction executed on L2. Note that such cross-domain messages always call the relayMessage function of the L2ScrollMessenger contract on L2.

abi.encodeWithSignature(
    "relayMessage(address,address,uint256,uint256,bytes)",
    _sender,
    _target,
    _value,
    _messageNonce,
    _message
)

The deposited ETH of value amount is locked in the L1ScrollMessenger contract. If the amount of ETH in the message cannot cover the message relay fee and the deposited amount, the transaction will be reverted. The L1ScrollMessenger contract will refund the excess amount to the designated refundAddress or the transaction sender otherwise. Finally, L1ScrollMessenger appends the cross-domain message to L1MessageQueue via the appendCrossDomainMessage method.

Sending Enforced Transactions

The EnforcedTxGateway contract provides two sendTransaction functions to send an enforced transaction. In the first function, the sender of the generated L1MessageTx transaction is the transaction sender. On the other hand, the second function uses the passed sender address as the sender of the L1MessageTx transaction. This allows a third party to send an enforced transaction on behalf of the user and pay the relay fee. Note that the second function requires providing a valid signature of the generated L1MessageTx transaction that matches the sender address. Both sendTransaction functions enforce the sender to be an EOA account.

sendTransaction function signatures
/// @param target The target address on L2.
/// @param value The value to withdraw from the `tx.origin` address on L2.
/// @param gasLimit The maximum gas can be used for this transaction on L2.
/// @param data The calldata passed to target contract.
function sendTransaction(
    address target,
    uint256 value,
    uint256 gasLimit,
    bytes calldata data
) external payable;

/// @param sender The sender address who will initiate this transaction on L2.
/// @param target The target address on L2.
/// @param value The value to withdraw from the `sender` address on L2.
/// @param gasLimit The maximum gas can be used for this transaction on L2.
/// @param data The calldata passed to target contract.
/// @param signature The signature for the corresponding `L1MessageTx` transaction.
/// @param refundAddress The address to refund excessive fee on L1.
function sendTransaction(
    address sender,
    address target,
    uint256 value,
    uint256 gasLimit,
    bytes calldata data,
    bytes memory signature,
    address refundAddress
) external payable;

Similar to arbitrary message relaying, sendTransaction deducts the message relay fee and transfers it to the L1 feeVault account. But a key difference is that the value passed to the function indicates the amount of ETH to be transferred from the sender account on L2, not on L1. Hence, the msg.value only needs to cover the message relay fee. If the amount of ETH in the message cannot cover the fee, the transaction will fail. Any excess fee is refunded to the transaction sender in the first function and to the refundAddress in the second function. Lastly, EnforcedTxGateway calls L1MessageQueue.appendEnforcedTransaction to append the transaction to the message queue.

Retrying Failed Messages

If an L1MessageTx transaction fails on L2 due to insufficient gas, users can replay the message with a higher gas limit. L1ScrollMessenger provides the method replayMessage that allows users to send the same information as the previous failed message with a higher gas limit. This message will become a new L1MessageTx transaction on L2. Note that we won’t refund the gas fee for the previous failed transaction as it is already processed on L2.

replayMessage function signature
/// @param from The address of the sender of the message.
/// @param to The address of the recipient of the message.
/// @param value The msg.value passed to the message call.
/// @param queueIndex The queue index for the message to replay.
/// @param message The content of the message.
/// @param newGasLimit New gas limit to be used for this message.
/// @param refundAddress The address of account who will receive the refunded fee.
function replayMessage(
    address from,
    address to,
    uint256 value,
    uint256 queueIndex,
    bytes memory message,
    uint32 newGasLimit,
    address refundAddress
) external payable;

Because the L2ScrollMessenger contract records all L1 messages that were successfully relayed to L2, the transaction of the replayed message will be reverted on L2 if the original message succeeds.

Message Relay Fee

The contract L2GasPriceOracle deployed on L1 computes the relay fee of a message given its gas limit. This contract stores the l2BaseFee in its storage, which is updated by a dedicated relayer run by Scroll currently. The relay fee of L1-to-L2 messages is gasLimit * l2BaseFee.

Address Alias

Due to the behavior of the CREATE opcode, it is possible that someone deploys a contract at the same address on L1 and L2 but with different bytecode. To avoid malicious users taking advantage of this, the bridge applies an address alias when the message sender is a contract on L1. The aliased sender address of the L1 message transaction is l1_contract_address + offset where the offset is 0x1111000000000000000000000000000000001111.

Sending Messages from L2 to L1

L2 to L1 workflow
Figure 2. L2 to L1 message relay workflow

On L2, users can send arbitrary messages through L2ScrollMessenger to withdraw tokens and call L1 contracts. Similar to L1, we have built several standard token gateways to make it easier to initialize token withdrawals. For more details about L2 token gateways, please refer to the Withdraw Gateways.

The L2ScrollMessenger contract also provides a sendMessage function. The difference from the L1ScrollMessenger.sendMessage is that the gasLimit parameter is ignored in the function because the withdrawal execution transaction on L1 is submitted by users and the transaction fee is paid on L1 directly. Thus, the sendMessage function requires msg.value to be equal to the parameter value. The function encodes the arguments into a cross-domain message following the same schema as in L1ScrollMessenger.

sendMessage function signatures
/// @param target The target address on L1.
/// @param value The value to withdraw to L1 from `msg.value`.
/// @param message The message passed to target contract.
/// @param _gasLimit Ignored in the L2ScrollMessenger because the withdrawal execution on L1 is done by the user.
function sendMessage(
    address target,
    uint256 value,
    bytes memory message,
    uint256 _gasLimit
) external payable;

Next, the cross-domain message hash is appended to L2MessageQueue by calling its appendMessage function. The L2MessageQueue contract maintains the Withdraw Trie, an append-only Merkle tree. Every time a new message is appended to the queue, the contract inserts it into the Withdraw Trie and updates the trie’s root hash.

After the transaction batch containing users’ L2-to-L1 messages is finalized on the L1 rollup contract, users need to submit corresponding Execute Withdrawal transactions to call relayMessageWithProof method in the L1ScrollMessenger contract that executes the withdrawal on L1. Thanks to the Merkle proofs, the finalization of withdrawal transactions on L1 is trustless and can be submitted by user themselves or by a third party on behalf of users.

To make it easier to construct a withdraw MIP, Scroll maintains a service called Bridge History API. Bridge History API monitors SentMessage events emitted from L2ScrollMessenger and maintains a Withdraw Trie internally. It continuously generates Merkle proofs for every withdrawal messages. Users and third-party services can query Merkle proofs from the Bridge History API to include in the Execute Withdrawal transactions.

Note that the execute withdrawal transactions can be submitted by the users themselves or by a third-party service.

Withdraw Trie

Withdraw Trie structure
Figure 3. Withdraw Trie structure

The Withdraw Trie is a dense binary Merkle tree. The hash of a leaf node is inherited from the message hash, while the hash of a non-leaf node is the Keccak hash digest of the concatenated hashes of its two children. The depth of the Withdraw Trie grows dynamically depending on the number of messages appended to the trie.

Figure 3(a) shows an example of a complete 3-layer withdraw trie. When the number of leaves cannot saturate a complete binary tree, we pad leaf nodes with hash 0, as depicted in Figure 3(b) and 3(c). When appending a new message to a non-complete Withdraw Trie, the padding node will be then replaced by a new leaf node with the actual message hash.

What's Next

Stay up-to-date on the latest Scroll Developer news
Roadmap updates, virtual and live events, ecosystem opportunities and more
Thank you for subscribing!

Resources

Follow Us