// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.8.0; /*@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@ HYPERLANE @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@*/ // ============ Internal Imports ============ import {AbstractMessageIdAuthHook} from "./AbstractMessageIdAuthHook.sol"; import {TypeCasts} from "../libs/TypeCasts.sol"; import {Message} from "../libs/Message.sol"; import {OPStackHookMetadata} from "../libs/hooks/OPStackHookMetadata.sol"; import {IPostDispatchHook} from "../interfaces/hooks/IPostDispatchHook.sol"; // ============ External Imports ============ import {ICrossDomainMessenger} from "../interfaces/optimism/ICrossDomainMessenger.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; /** * @title OPStackHook * @notice Message hook to inform the OPStackISM of messages published through * the native OPStack bridge. */ contract OPStackHook is AbstractMessageIdAuthHook { using OPStackHookMetadata for bytes; // ============ Constants ============ /// @notice messenger contract specified by the rollup ICrossDomainMessenger public immutable l1Messenger; // Gas limit for sending messages to L2 // First 1.92e6 gas is provided by Optimism, see more here: // https://community.optimism.io/docs/developers/bridge/messaging/#for-l1-%E2%87%92-l2-transactions uint32 internal constant GAS_LIMIT = 1_920_000; // ============ Constructor ============ constructor( address _mailbox, uint32 _destinationDomain, address _ism, address _messenger ) AbstractMessageIdAuthHook(_mailbox, _destinationDomain, _ism) { require( Address.isContract(_messenger), "OPStackHook: invalid messenger" ); l1Messenger = ICrossDomainMessenger(_messenger); } // ============ External functions ============ /// @inheritdoc IPostDispatchHook function quoteDispatch(bytes calldata, bytes calldata) external pure override returns (uint256) { return 0; // gas subsidized by the L2 } // ============ Internal functions ============ /// @inheritdoc AbstractMessageIdAuthHook function _sendMessageId(bytes calldata metadata, bytes memory payload) internal override { require( metadata.msgValue() < 2**255, "OPStackHook: msgValue must less than 2 ** 255" ); l1Messenger.sendMessage{value: metadata.msgValue()}( ism, payload, GAS_LIMIT ); } }