Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BatchInbox
- Optimization enabled
- true
- Compiler version
- v0.8.15+commit.e14f2714
- Optimization runs
- 999999
- Verified at
- 2024-02-26T18:46:39.753726Z
Constructor Arguments
0000000000000000000000007e7f216cde9c0b9ae823a0a712662a636a2d9068
Arg [0] (address) : 0x7e7f216cde9c0b9ae823a0a712662a636a2d9068
src/L1/BatchInbox.sol
// SPDX-License-Identifier: MITpragma solidity 0.8.15;import { Semver } from "../universal/Semver.sol";import { CrossDomainMessenger } from "../universal/CrossDomainMessenger.sol";/*** @custom:proxied* @title BatchInbox* @notice Calldata entries of version hashes which are checked against the precompile of blobs to verify they exist*/// slither-disable-next-line locked-ethercontract BatchInbox is Semver {uint32 internal constant RECEIVE_DEFAULT_GAS_LIMIT = 100_000;address internal constant PODA_PRECOMPILE_ADDRESS = address(0x63);uint16 internal constant PODA_PRECOMPILE_COST = 1400;/*** @notice Messenger contract on this domain.*/CrossDomainMessenger public immutable MESSENGER;/*** @custom:semver 1.0.0** @param _messenger The address of the messenger on this domain.*/constructor(address payable _messenger) Semver(1, 0, 0) {MESSENGER = CrossDomainMessenger(_messenger);}/*** @notice appends an array of valid version hashes to the chain, each VH is checked via the VH precompile.**/function appendSequencerBatch(bytes32[] calldata _versionHashes) external view {require(_versionHashes.length > 0, "Must pass in atleast one version hash.");for (uint256 i = 0; i < _versionHashes.length; i++) {(bool success, bytes memory result) = PODA_PRECOMPILE_ADDRESS.staticcall{gas: PODA_PRECOMPILE_COST}(abi.encode(_versionHashes[i]));require(success, "Staticcall failed.");
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {* function initializeV2() reinitializer(2) public {* __ERC20Permit_init("MyToken");* }* }* ```** TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.** CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.** [CAUTION]* ====
lib/openzeppelin-contracts-upgradeable/contracts/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library AddressUpgradeable {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length > 0;
lib/openzeppelin-contracts/contracts/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/Address.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {* function initializeV2() reinitializer(2) public {* __ERC20Permit_init("MyToken");* }* }* ```** TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.** CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.** [CAUTION]* ====
lib/openzeppelin-contracts/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length > 0;
lib/openzeppelin-contracts/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;}bytes memory buffer = new bytes(digits);while (value != 0) {digits -= 1;buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));value /= 10;}return string(buffer);}/*** @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.*/function toHexString(uint256 value) internal pure returns (string memory) {
lib/openzeppelin-contracts/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a >= b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {return a < b ? a : b;}/*** @dev Returns the average of two numbers. The result is rounded towards* zero.*/function average(uint256 a, uint256 b) internal pure returns (uint256) {// (a + b) / 2 can overflow.return (a & b) + (a ^ b) / 2;}/*** @dev Returns the ceiling of the division of two numbers.*
lib/openzeppelin-contracts/contracts/utils/math/SignedMath.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a >= b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.*/function average(int256 a, int256 b) internal pure returns (int256) {// Formula from the book "Hacker's Delight"int256 x = (a & b) + ((a ^ b) >> 1);return x + (int256(uint256(x) >> 255) & (a ^ b));}/*** @dev Returns the absolute unsigned value of a signed value.*/function abs(int256 n) internal pure returns (uint256) {unchecked {// must be unchecked in order to support `n = type(int256).min`return uint256(n >= 0 ? n : -n);}
lib/solmate/src/utils/FixedPointMathLib.sol
// SPDX-License-Identifier: MITpragma solidity >=0.8.0;/// @notice Arithmetic library with operations for fixed-point numbers./// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/FixedPointMathLib.sol)library FixedPointMathLib {/*//////////////////////////////////////////////////////////////SIMPLIFIED FIXED POINT OPERATIONS//////////////////////////////////////////////////////////////*/uint256 internal constant WAD = 1e18; // The scalar of ETH and most ERC20s.function mulWadDown(uint256 x, uint256 y) internal pure returns (uint256) {return mulDivDown(x, y, WAD); // Equivalent to (x * y) / WAD rounded down.}function mulWadUp(uint256 x, uint256 y) internal pure returns (uint256) {return mulDivUp(x, y, WAD); // Equivalent to (x * y) / WAD rounded up.}function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) {return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down.}function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) {return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up.}function powWad(int256 x, int256 y) internal pure returns (int256) {// Equivalent to x to the power of y because x ** y = (e ** ln(x)) ** y = e ** (ln(x) * y)return expWad((lnWad(x) * y) / int256(WAD)); // Using ln(x) means x must be greater than 0.}function expWad(int256 x) internal pure returns (int256 r) {unchecked {// When the result is < 0.5 we return zero. This happens when// x <= floor(log(0.5e18) * 1e18) ~ -42e18if (x <= -42139678854452767551) return 0;// When the result is > (2**255 - 1) / 1e18 we can not represent it as an// int. This happens when x >= floor(log((2**255 - 1) / 1e18) * 1e18) ~ 135.
src/L1/ResourceMetering.sol
// SPDX-License-Identifier: MITpragma solidity 0.8.15;import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";import { Burn } from "src/libraries/Burn.sol";import { Arithmetic } from "src/libraries/Arithmetic.sol";/// @custom:upgradeable/// @title ResourceMetering/// @notice ResourceMetering implements an EIP-1559 style resource metering system where pricing/// updates automatically based on current demand.abstract contract ResourceMetering is Initializable {/// @notice Represents the various parameters that control the way in which resources are/// metered. Corresponds to the EIP-1559 resource metering system./// @custom:field prevBaseFee Base fee from the previous block(s)./// @custom:field prevBoughtGas Amount of gas bought so far in the current block./// @custom:field prevBlockNum Last block number that the base fee was updated.struct ResourceParams {uint128 prevBaseFee;uint64 prevBoughtGas;uint64 prevBlockNum;}/// @notice Represents the configuration for the EIP-1559 based curve for the deposit gas/// market. These values should be set with care as it is possible to set them in/// a way that breaks the deposit gas market. The target resource limit is defined as/// maxResourceLimit / elasticityMultiplier. This struct was designed to fit within a/// single word. There is additional space for additions in the future./// @custom:field maxResourceLimit Represents the maximum amount of deposit gas that/// can be purchased per block./// @custom:field elasticityMultiplier Determines the target resource limit along with/// the resource limit./// @custom:field baseFeeMaxChangeDenominator Determines max change on fee per block./// @custom:field minimumBaseFee The min deposit base fee, it is clamped to this/// value./// @custom:field systemTxMaxGas The amount of gas supplied to the system/// transaction. This should be set to the same/// number that the op-node sets as the gas limit/// for the system transaction./// @custom:field maximumBaseFee The max deposit base fee, it is clamped to this
src/libraries/Arithmetic.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import { SignedMath } from "@openzeppelin/contracts/utils/math/SignedMath.sol";import { FixedPointMathLib } from "@rari-capital/solmate/src/utils/FixedPointMathLib.sol";/// @title Arithmetic/// @notice Even more math than before.library Arithmetic {/// @notice Clamps a value between a minimum and maximum./// @param _value The value to clamp./// @param _min The minimum value./// @param _max The maximum value./// @return The clamped value.function clamp(int256 _value, int256 _min, int256 _max) internal pure returns (int256) {return SignedMath.min(SignedMath.max(_value, _min), _max);}/// @notice (c)oefficient (d)enominator (exp)onentiation function./// Returns the result of: c * (1 - 1/d)^exp./// @param _coefficient Coefficient of the function./// @param _denominator Fractional denominator./// @param _exponent Power function exponent./// @return Result of c * (1 - 1/d)^exp.function cdexp(int256 _coefficient, int256 _denominator, int256 _exponent) internal pure returns (int256) {return (_coefficient * (FixedPointMathLib.powWad(1e18 - (1e18 / _denominator), _exponent * 1e18))) / 1e18;}}
src/libraries/Burn.sol
// SPDX-License-Identifier: MITpragma solidity 0.8.15;/// @title Burn/// @notice Utilities for burning stuff.library Burn {/// @notice Burns a given amount of ETH./// @param _amount Amount of ETH to burn.function eth(uint256 _amount) internal {new Burner{ value: _amount }();}/// @notice Burns a given amount of gas./// @param _amount Amount of gas to burn.function gas(uint256 _amount) internal view {uint256 i = 0;uint256 initialGas = gasleft();while (initialGas - gasleft() < _amount) {++i;}}}/// @title Burner/// @notice Burner self-destructs on creation and sends all ETH to itself, removing all ETH given to/// the contract from the circulating supply. Self-destructing is the only way to remove ETH/// from the circulating supply.contract Burner {constructor() payable {selfdestruct(payable(address(this)));}}
src/libraries/Constants.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import { ResourceMetering } from "src/L1/ResourceMetering.sol";/// @title Constants/// @notice Constants is a library for storing constants. Simple! Don't put everything in here, just/// the stuff used in multiple contracts. Constants that only apply to a single contract/// should be defined in that contract instead.library Constants {/// @notice Special address to be used as the tx origin for gas estimation calls in the/// OptimismPortal and CrossDomainMessenger calls. You only need to use this address if/// the minimum gas limit specified by the user is not actually enough to execute the/// given message and you're attempting to estimate the actual necessary gas limit. We/// use address(1) because it's the ecrecover precompile and therefore guaranteed to/// never have any code on any EVM chain.address internal constant ESTIMATION_ADDRESS = address(1);/// @notice Value used for the L2 sender storage slot in both the OptimismPortal and the/// CrossDomainMessenger contracts before an actual sender is set. This value is/// non-zero to reduce the gas cost of message passing transactions.address internal constant DEFAULT_L2_SENDER = 0x000000000000000000000000000000000000dEaD;/// @notice The storage slot that holds the address of a proxy implementation./// @dev `bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)`bytes32 internal constant PROXY_IMPLEMENTATION_ADDRESS =0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;/// @notice The storage slot that holds the address of the owner./// @dev `bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1)`bytes32 internal constant PROXY_OWNER_ADDRESS = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;/// @notice Returns the default values for the ResourceConfig. These are the recommended values/// for a production network.function DEFAULT_RESOURCE_CONFIG() internal pure returns (ResourceMetering.ResourceConfig memory) {ResourceMetering.ResourceConfig memory config = ResourceMetering.ResourceConfig({maxResourceLimit: 20_000_000,elasticityMultiplier: 10,baseFeeMaxChangeDenominator: 8,minimumBaseFee: 1 gwei,systemTxMaxGas: 1_000_000,
src/libraries/Encoding.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import { Types } from "src/libraries/Types.sol";import { Hashing } from "src/libraries/Hashing.sol";import { RLPWriter } from "src/libraries/rlp/RLPWriter.sol";/// @title Encoding/// @notice Encoding handles Optimism's various different encoding schemes.library Encoding {/// @notice RLP encodes the L2 transaction that would be generated when a given deposit is sent/// to the L2 system. Useful for searching for a deposit in the L2 system. The/// transaction is prefixed with 0x7e to identify its EIP-2718 type./// @param _tx User deposit transaction to encode./// @return RLP encoded L2 deposit transaction.function encodeDepositTransaction(Types.UserDepositTransaction memory _tx) internal pure returns (bytes memory) {bytes32 source = Hashing.hashDepositSource(_tx.l1BlockHash, _tx.logIndex);bytes[] memory raw = new bytes[](8);raw[0] = RLPWriter.writeBytes(abi.encodePacked(source));raw[1] = RLPWriter.writeAddress(_tx.from);raw[2] = _tx.isCreation ? RLPWriter.writeBytes("") : RLPWriter.writeAddress(_tx.to);raw[3] = RLPWriter.writeUint(_tx.mint);raw[4] = RLPWriter.writeUint(_tx.value);raw[5] = RLPWriter.writeUint(uint256(_tx.gasLimit));raw[6] = RLPWriter.writeBool(false);raw[7] = RLPWriter.writeBytes(_tx.data);return abi.encodePacked(uint8(0x7e), RLPWriter.writeList(raw));}/// @notice Encodes the cross domain message based on the version that is encoded into the/// message nonce./// @param _nonce Message nonce with version encoded into the first two bytes./// @param _sender Address of the sender of the message./// @param _target Address of the target of the message./// @param _value ETH value to send to the target./// @param _gasLimit Gas limit to use for the message./// @param _data Data to send with the message./// @return Encoded cross domain message.function encodeCrossDomainMessage(uint256 _nonce,address _sender,
src/libraries/Hashing.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import { Types } from "src/libraries/Types.sol";import { Encoding } from "src/libraries/Encoding.sol";/// @title Hashing/// @notice Hashing handles Optimism's various different hashing schemes.library Hashing {/// @notice Computes the hash of the RLP encoded L2 transaction that would be generated when a/// given deposit is sent to the L2 system. Useful for searching for a deposit in the L2/// system./// @param _tx User deposit transaction to hash./// @return Hash of the RLP encoded L2 deposit transaction.function hashDepositTransaction(Types.UserDepositTransaction memory _tx) internal pure returns (bytes32) {return keccak256(Encoding.encodeDepositTransaction(_tx));}/// @notice Computes the deposit transaction's "source hash", a value that guarantees the hash/// of the L2 transaction that corresponds to a deposit is unique and is/// deterministically generated from L1 transaction data./// @param _l1BlockHash Hash of the L1 block where the deposit was included./// @param _logIndex The index of the log that created the deposit transaction./// @return Hash of the deposit transaction's "source hash".function hashDepositSource(bytes32 _l1BlockHash, uint256 _logIndex) internal pure returns (bytes32) {bytes32 depositId = keccak256(abi.encode(_l1BlockHash, _logIndex));return keccak256(abi.encode(bytes32(0), depositId));}/// @notice Hashes the cross domain message based on the version that is encoded into the/// message nonce./// @param _nonce Message nonce with version encoded into the first two bytes./// @param _sender Address of the sender of the message./// @param _target Address of the target of the message./// @param _value ETH value to send to the target./// @param _gasLimit Gas limit to use for the message./// @param _data Data to send with the message./// @return Hashed cross domain message.function hashCrossDomainMessage(uint256 _nonce,address _sender,
src/libraries/SafeCall.sol
// SPDX-License-Identifier: MITpragma solidity 0.8.15;/// @title SafeCall/// @notice Perform low level safe callslibrary SafeCall {/// @notice Performs a low level call without copying any returndata./// @dev Passes no calldata to the call context./// @param _target Address to call/// @param _gas Amount of gas to pass to the call/// @param _value Amount of value to pass to the callfunction send(address _target, uint256 _gas, uint256 _value) internal returns (bool) {bool _success;assembly {_success :=call(_gas, // gas_target, // recipient_value, // ether value0, // inloc0, // inlen0, // outloc0 // outlen)}return _success;}/// @notice Perform a low level call without copying any returndata/// @param _target Address to call/// @param _gas Amount of gas to pass to the call/// @param _value Amount of value to pass to the call/// @param _calldata Calldata to pass to the callfunction call(address _target, uint256 _gas, uint256 _value, bytes memory _calldata) internal returns (bool) {bool _success;assembly {_success :=call(_gas, // gas_target, // recipient_value, // ether value
src/libraries/Types.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/// @title Types/// @notice Contains various types used throughout the Optimism contract system.library Types {/// @notice OutputProposal represents a commitment to the L2 state. The timestamp is the L1/// timestamp that the output root is posted. This timestamp is used to verify that the/// finalization period has passed since the output root was submitted./// @custom:field outputRoot Hash of the L2 output./// @custom:field timestamp Timestamp of the L1 block that the output root was submitted in./// @custom:field l2BlockNumber L2 block number that the output corresponds to.struct OutputProposal {bytes32 outputRoot;uint128 timestamp;uint128 l2BlockNumber;}/// @notice Struct representing the elements that are hashed together to generate an output root/// which itself represents a snapshot of the L2 state./// @custom:field version Version of the output root./// @custom:field stateRoot Root of the state trie at the block of this output./// @custom:field messagePasserStorageRoot Root of the message passer storage trie./// @custom:field latestBlockhash Hash of the block this output was generated from.struct OutputRootProof {bytes32 version;bytes32 stateRoot;bytes32 messagePasserStorageRoot;bytes32 latestBlockhash;}/// @notice Struct representing a deposit transaction (L1 => L2 transaction) created by an end/// user (as opposed to a system deposit transaction generated by the system)./// @custom:field from Address of the sender of the transaction./// @custom:field to Address of the recipient of the transaction./// @custom:field isCreation True if the transaction is a contract creation./// @custom:field value Value to send to the recipient./// @custom:field mint Amount of ETH to mint./// @custom:field gasLimit Gas limit of the transaction./// @custom:field data Data of the transaction./// @custom:field l1BlockHash Hash of the block the transaction was submitted in.
src/libraries/rlp/RLPWriter.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/// @custom:attribution https://github.com/bakaoh/solidity-rlp-encode/// @title RLPWriter/// @author RLPWriter is a library for encoding Solidity types to RLP bytes. Adapted from Bakaoh's/// RLPEncode library (https://github.com/bakaoh/solidity-rlp-encode) with minor/// modifications to improve legibility.library RLPWriter {/// @notice RLP encodes a byte string./// @param _in The byte string to encode./// @return out_ The RLP encoded string in bytes.function writeBytes(bytes memory _in) internal pure returns (bytes memory out_) {if (_in.length == 1 && uint8(_in[0]) < 128) {out_ = _in;} else {out_ = abi.encodePacked(_writeLength(_in.length, 128), _in);}}/// @notice RLP encodes a list of RLP encoded byte byte strings./// @param _in The list of RLP encoded byte strings./// @return list_ The RLP encoded list of items in bytes.function writeList(bytes[] memory _in) internal pure returns (bytes memory list_) {list_ = _flatten(_in);list_ = abi.encodePacked(_writeLength(list_.length, 192), list_);}/// @notice RLP encodes a string./// @param _in The string to encode./// @return out_ The RLP encoded string in bytes.function writeString(string memory _in) internal pure returns (bytes memory out_) {out_ = writeBytes(bytes(_in));}/// @notice RLP encodes an address./// @param _in The address to encode./// @return out_ The RLP encoded address in bytes.function writeAddress(address _in) internal pure returns (bytes memory out_) {out_ = writeBytes(abi.encodePacked(_in));}
src/universal/CrossDomainMessenger.sol
// SPDX-License-Identifier: MITpragma solidity 0.8.15;import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";import { SafeCall } from "src/libraries/SafeCall.sol";import { Hashing } from "src/libraries/Hashing.sol";import { Encoding } from "src/libraries/Encoding.sol";import { Constants } from "src/libraries/Constants.sol";/// @custom:legacy/// @title CrossDomainMessengerLegacySpacer0/// @notice Contract only exists to add a spacer to the CrossDomainMessenger where the/// libAddressManager variable used to exist. Must be the first contract in the inheritance/// tree of the CrossDomainMessenger.contract CrossDomainMessengerLegacySpacer0 {/// @custom:legacy/// @custom:spacer libAddressManager/// @notice Spacer for backwards compatibility.address private spacer_0_0_20;}/// @custom:legacy/// @title CrossDomainMessengerLegacySpacer1/// @notice Contract only exists to add a spacer to the CrossDomainMessenger where the/// PausableUpgradable and OwnableUpgradeable variables used to exist. Must be/// the third contract in the inheritance tree of the CrossDomainMessenger.contract CrossDomainMessengerLegacySpacer1 {/// @custom:legacy/// @custom:spacer ContextUpgradable's __gap/// @notice Spacer for backwards compatibility. Comes from OpenZeppelin/// ContextUpgradable.uint256[50] private spacer_1_0_1600;/// @custom:legacy/// @custom:spacer OwnableUpgradeable's _owner/// @notice Spacer for backwards compatibility./// Come from OpenZeppelin OwnableUpgradeable.address private spacer_51_0_20;/// @custom:legacy/// @custom:spacer OwnableUpgradeable's __gap
src/universal/Semver.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";/// @title Semver/// @notice Semver is a simple contract for managing contract versions.contract Semver {/// @notice Contract version number (major).uint256 private immutable MAJOR_VERSION;/// @notice Contract version number (minor).uint256 private immutable MINOR_VERSION;/// @notice Contract version number (patch).uint256 private immutable PATCH_VERSION;/// @param _major Version number (major)./// @param _minor Version number (minor)./// @param _patch Version number (patch).constructor(uint256 _major,uint256 _minor,uint256 _patch) {MAJOR_VERSION = _major;MINOR_VERSION = _minor;PATCH_VERSION = _patch;}/// @notice Returns the full semver contract version./// @return Semver contract version as a string.function version() public view returns (string memory) {returnstring(abi.encodePacked(Strings.toString(MAJOR_VERSION),".",Strings.toString(MINOR_VERSION),".",Strings.toString(PATCH_VERSION)
Compiler Settings
{"remappings":["@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@rari-capital/solmate/=lib/solmate/","@cwia/=lib/clones-with-immutable-args/src/","@lib-keccak/=lib/lib-keccak/contracts/lib/","forge-std/=lib/forge-std/src/","ds-test/=lib/forge-std/lib/ds-test/src/","safe-contracts/=lib/safe-contracts/contracts/","kontrol-cheatcodes/=lib/kontrol-cheatcodes/src/","solady/=lib/solady/src/","@solady-test/=lib/lib-keccak/lib/solady/test/","@solady/=lib/lib-keccak/lib/solady/src/","clones-with-immutable-args/=lib/clones-with-immutable-args/src/","lib-keccak/=lib/lib-keccak/contracts/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","solmate/=lib/solmate/src/"],"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","storageLayout","devdoc","userdoc"],"":["ast"]}},"optimizer":{"runs":999999,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"none"},"libraries":{},"evmVersion":"london"}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_messenger","internalType":"address payable"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract CrossDomainMessenger"}],"name":"MESSENGER","inputs":[]},{"type":"function","stateMutability":"view","outputs":[],"name":"appendSequencerBatch","inputs":[{"type":"bytes32[]","name":"_versionHashes","internalType":"bytes32[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"appendSequencerBatchToL2","inputs":[{"type":"address","name":"_target","internalType":"address"},{"type":"bytes","name":"_selector","internalType":"bytes"},{"type":"bytes32[]","name":"_versionHashes","internalType":"bytes32[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"version","inputs":[]}]
Contract Creation Code
0x61010060405234801561001157600080fd5b50604051610c35380380610c3583398101604081905261003091610050565b6001608052600060a081905260c0526001600160a01b031660e052610080565b60006020828403121561006257600080fd5b81516001600160a01b038116811461007957600080fd5b9392505050565b60805160a05160c05160e051610b776100be60003960008181608901526102d20152600061013c015260006101130152600060ea0152610b776000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806354fd4d50146100515780635e2ff5981461006f578063927ede2d14610084578063a3a544c2146100d0575b600080fd5b6100596100e3565b6040516100669190610739565b60405180910390f35b61008261007d36600461079f565b610186565b005b6100ab7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610066565b6100826100de366004610869565b610348565b606061010e7f0000000000000000000000000000000000000000000000000000000000000000610582565b6101377f0000000000000000000000000000000000000000000000000000000000000000610582565b6101607f0000000000000000000000000000000000000000000000000000000000000000610582565b604051602001610172939291906108ab565b604051602081830303815290604052905090565b6040517fa3a544c2000000000000000000000000000000000000000000000000000000008152309063a3a544c2906101c49085908590600401610921565b60006040518083038186803b1580156101dc57600080fd5b505afa1580156101f0573d6000803e3d6000fd5b5050505060008484906102039190610976565b8383604051602401610216929190610921565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690633dbb202b9061030e9089908590620186a0906004016109be565b600060405180830381600087803b15801561032857600080fd5b505af115801561033c573d6000803e3d6000fd5b50505050505050505050565b806103da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4d757374207061737320696e2061746c65617374206f6e652076657273696f6e60448201527f20686173682e000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b8181101561057d5760008060636105788686868181106103ff576103ff610a03565b9050602002013560405160200161041891815260200190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261045091610a32565b6000604051808303818686fa925050503d806000811461048c576040519150601f19603f3d011682016040523d82523d6000602084013e610491565b606091505b5091509150816104fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53746174696363616c6c206661696c65642e000000000000000000000000000060448201526064016103d1565b6000815111610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f52657475726e2064617461206d757374206e6f7420626520656d7074792e000060448201526064016103d1565b5050808061057590610a7d565b9150506103dd565b505050565b6060816000036105c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156105ef57806105d981610a7d565b91506105e89050600a83610ae4565b91506105c9565b60008167ffffffffffffffff81111561060a5761060a610af8565b6040519080825280601f01601f191660200182016040528015610634576020820181803683370190505b5090505b84156106b757610649600183610b27565b9150610656600a86610b3e565b610661906030610b52565b60f81b81838151811061067657610676610a03565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506106b0600a86610ae4565b9450610638565b949350505050565b60005b838110156106da5781810151838201526020016106c2565b838111156106e9576000848401525b50505050565b600081518084526107078160208601602086016106bf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061074c60208301846106ef565b9392505050565b60008083601f84011261076557600080fd5b50813567ffffffffffffffff81111561077d57600080fd5b6020830191508360208260051b850101111561079857600080fd5b9250929050565b6000806000806000606086880312156107b757600080fd5b853573ffffffffffffffffffffffffffffffffffffffff811681146107db57600080fd5b9450602086013567ffffffffffffffff808211156107f857600080fd5b818801915088601f83011261080c57600080fd5b81358181111561081b57600080fd5b89602082850101111561082d57600080fd5b60208301965080955050604088013591508082111561084b57600080fd5b5061085888828901610753565b969995985093965092949392505050565b6000806020838503121561087c57600080fd5b823567ffffffffffffffff81111561089357600080fd5b61089f85828601610753565b90969095509350505050565b600084516108bd8184602089016106bf565b80830190507f2e0000000000000000000000000000000000000000000000000000000000000080825285516108f9816001850160208a016106bf565b600192019182015283516109148160028401602088016106bf565b0160020195945050505050565b6020815281602082015260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561095a57600080fd5b8260051b80856040850137600092016040019182525092915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081358181169160048510156109b65780818660040360031b1b83161692505b505092915050565b73ffffffffffffffffffffffffffffffffffffffff841681526060602082015260006109ed60608301856106ef565b905063ffffffff83166040830152949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008251610a448184602087016106bf565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610aae57610aae610a4e565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082610af357610af3610ab5565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082821015610b3957610b39610a4e565b500390565b600082610b4d57610b4d610ab5565b500690565b60008219821115610b6557610b65610a4e565b50019056fea164736f6c634300080f000a0000000000000000000000007e7f216cde9c0b9ae823a0a712662a636a2d9068
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806354fd4d50146100515780635e2ff5981461006f578063927ede2d14610084578063a3a544c2146100d0575b600080fd5b6100596100e3565b6040516100669190610739565b60405180910390f35b61008261007d36600461079f565b610186565b005b6100ab7f0000000000000000000000007e7f216cde9c0b9ae823a0a712662a636a2d906881565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610066565b6100826100de366004610869565b610348565b606061010e7f0000000000000000000000000000000000000000000000000000000000000001610582565b6101377f0000000000000000000000000000000000000000000000000000000000000000610582565b6101607f0000000000000000000000000000000000000000000000000000000000000000610582565b604051602001610172939291906108ab565b604051602081830303815290604052905090565b6040517fa3a544c2000000000000000000000000000000000000000000000000000000008152309063a3a544c2906101c49085908590600401610921565b60006040518083038186803b1580156101dc57600080fd5b505afa1580156101f0573d6000803e3d6000fd5b5050505060008484906102039190610976565b8383604051602401610216929190610921565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007e7f216cde9c0b9ae823a0a712662a636a2d90681690633dbb202b9061030e9089908590620186a0906004016109be565b600060405180830381600087803b15801561032857600080fd5b505af115801561033c573d6000803e3d6000fd5b50505050505050505050565b806103da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4d757374207061737320696e2061746c65617374206f6e652076657273696f6e60448201527f20686173682e000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b8181101561057d5760008060636105788686868181106103ff576103ff610a03565b9050602002013560405160200161041891815260200190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261045091610a32565b6000604051808303818686fa925050503d806000811461048c576040519150601f19603f3d011682016040523d82523d6000602084013e610491565b606091505b5091509150816104fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53746174696363616c6c206661696c65642e000000000000000000000000000060448201526064016103d1565b6000815111610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f52657475726e2064617461206d757374206e6f7420626520656d7074792e000060448201526064016103d1565b5050808061057590610a7d565b9150506103dd565b505050565b6060816000036105c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156105ef57806105d981610a7d565b91506105e89050600a83610ae4565b91506105c9565b60008167ffffffffffffffff81111561060a5761060a610af8565b6040519080825280601f01601f191660200182016040528015610634576020820181803683370190505b5090505b84156106b757610649600183610b27565b9150610656600a86610b3e565b610661906030610b52565b60f81b81838151811061067657610676610a03565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506106b0600a86610ae4565b9450610638565b949350505050565b60005b838110156106da5781810151838201526020016106c2565b838111156106e9576000848401525b50505050565b600081518084526107078160208601602086016106bf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061074c60208301846106ef565b9392505050565b60008083601f84011261076557600080fd5b50813567ffffffffffffffff81111561077d57600080fd5b6020830191508360208260051b850101111561079857600080fd5b9250929050565b6000806000806000606086880312156107b757600080fd5b853573ffffffffffffffffffffffffffffffffffffffff811681146107db57600080fd5b9450602086013567ffffffffffffffff808211156107f857600080fd5b818801915088601f83011261080c57600080fd5b81358181111561081b57600080fd5b89602082850101111561082d57600080fd5b60208301965080955050604088013591508082111561084b57600080fd5b5061085888828901610753565b969995985093965092949392505050565b6000806020838503121561087c57600080fd5b823567ffffffffffffffff81111561089357600080fd5b61089f85828601610753565b90969095509350505050565b600084516108bd8184602089016106bf565b80830190507f2e0000000000000000000000000000000000000000000000000000000000000080825285516108f9816001850160208a016106bf565b600192019182015283516109148160028401602088016106bf565b0160020195945050505050565b6020815281602082015260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561095a57600080fd5b8260051b80856040850137600092016040019182525092915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081358181169160048510156109b65780818660040360031b1b83161692505b505092915050565b73ffffffffffffffffffffffffffffffffffffffff841681526060602082015260006109ed60608301856106ef565b905063ffffffff83166040830152949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008251610a448184602087016106bf565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610aae57610aae610a4e565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082610af357610af3610ab5565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082821015610b3957610b39610a4e565b500390565b600082610b4d57610b4d610ab5565b500690565b60008219821115610b6557610b65610a4e565b50019056fea164736f6c634300080f000a