ETH Price: $1,860.14 (+2.60%)
    /

    Contract

    0xb1ac0911d30F87717E9E6D9e408103AD54337404

    Overview

    ETH Balance

    0 ETH

    ETH Value

    $0.00

    Multichain Info

    No addresses found
    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount
    Announce5658352025-01-31 9:48:4160 days ago1738316921IN
    0xb1ac0911...D54337404
    0 ETH0.000008590.04525
    Announce3790372025-01-29 5:15:0462 days ago1738127704IN
    0xb1ac0911...D54337404
    0 ETH0.000009180.04525

    Latest 1 internal transaction

    Parent Transaction Hash Block Age From To Amount
    3321942025-01-28 16:04:3362 days ago1738080273
     Contract Creation
    0 ETH
    Loading...
    Loading

    Contract Source Code Verified (Exact Match)

    Contract Name:
    ValidatorAnnounce

    Compiler Version
    v0.8.19+commit.7dd6d404

    ZkSolc Version
    v1.5.3

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    default evmVersion, MIT license
    File 1 of 19 : ValidatorAnnounce.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.8.0;
    // ============ Internal Imports ============
    import {IValidatorAnnounce} from "../../interfaces/IValidatorAnnounce.sol";
    import {IMailbox} from "../../interfaces/IMailbox.sol";
    import {TypeCasts} from "../../libs/TypeCasts.sol";
    import {MailboxClient} from "../../client/MailboxClient.sol";
    // ============ External Imports ============
    import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
    import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
    /**
    * @title ValidatorAnnounce
    * @notice Stores the location(s) of validator signed checkpoints
    */
    contract ValidatorAnnounce is MailboxClient, IValidatorAnnounce {
    // ============ Libraries ============
    using EnumerableSet for EnumerableSet.AddressSet;
    using TypeCasts for address;
    // ============ Public Storage ============
    // The set of validators that have announced
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 19 : IValidatorAnnounce.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.6.11;
    interface IValidatorAnnounce {
    /// @notice Returns a list of validators that have made announcements
    function getAnnouncedValidators() external view returns (address[] memory);
    /**
    * @notice Returns a list of all announced storage locations for `validators`
    * @param _validators The list of validators to get storage locations for
    * @return A list of announced storage locations
    */
    function getAnnouncedStorageLocations(
    address[] calldata _validators
    ) external view returns (string[][] memory);
    /**
    * @notice Announces a validator signature storage location
    * @param _storageLocation Information encoding the location of signed
    * checkpoints
    * @param _signature The signed validator announcement
    * @return True upon success
    */
    function announce(
    address _validator,
    string calldata _storageLocation,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 19 : IMailbox.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.8.0;
    import {IInterchainSecurityModule} from "./IInterchainSecurityModule.sol";
    import {IPostDispatchHook} from "./hooks/IPostDispatchHook.sol";
    interface IMailbox {
    // ============ Events ============
    /**
    * @notice Emitted when a new message is dispatched via Hyperlane
    * @param sender The address that dispatched the message
    * @param destination The destination domain of the message
    * @param recipient The message recipient address on `destination`
    * @param message Raw bytes of message
    */
    event Dispatch(
    address indexed sender,
    uint32 indexed destination,
    bytes32 indexed recipient,
    bytes message
    );
    /**
    * @notice Emitted when a new message is dispatched via Hyperlane
    * @param messageId The unique message identifier
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 19 : TypeCasts.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.6.11;
    library TypeCasts {
    // alignment preserving cast
    function addressToBytes32(address _addr) internal pure returns (bytes32) {
    return bytes32(uint256(uint160(_addr)));
    }
    // alignment preserving cast
    function bytes32ToAddress(bytes32 _buf) internal pure returns (address) {
    require(
    uint256(_buf) <= uint256(type(uint160).max),
    "TypeCasts: bytes32ToAddress overflow"
    );
    return address(uint160(uint256(_buf)));
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 19 : MailboxClient.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.6.11;
    /*@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@@@@@@@@@@@@@@@@@
    @@@@@ HYPERLANE @@@@@@@
    @@@@@@@@@@@@@@@@@@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@*/
    // ============ Internal Imports ============
    import {IMailbox} from "../interfaces/IMailbox.sol";
    import {IPostDispatchHook} from "../interfaces/hooks/IPostDispatchHook.sol";
    import {IInterchainSecurityModule} from "../interfaces/IInterchainSecurityModule.sol";
    import {Message} from "../libs/Message.sol";
    import {PackageVersioned} from "../PackageVersioned.sol";
    // ============ External Imports ============
    import {Address} from "@openzeppelin/contracts/utils/Address.sol";
    import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 19 : EnumerableSet.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
    // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
    pragma solidity ^0.8.0;
    /**
    * @dev Library for managing
    * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
    * types.
    *
    * Sets have the following properties:
    *
    * - Elements are added, removed, and checked for existence in constant time
    * (O(1)).
    * - Elements are enumerated in O(n). No guarantees are made on the ordering.
    *
    * ```solidity
    * contract Example {
    * // Add the library methods
    * using EnumerableSet for EnumerableSet.AddressSet;
    *
    * // Declare a set state variable
    * EnumerableSet.AddressSet private mySet;
    * }
    * ```
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 19 : ECDSA.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
    pragma solidity ^0.8.0;
    import "../Strings.sol";
    /**
    * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
    *
    * These functions can be used to verify that a message was signed by the holder
    * of the private keys of a given address.
    */
    library ECDSA {
    enum RecoverError {
    NoError,
    InvalidSignature,
    InvalidSignatureLength,
    InvalidSignatureS,
    InvalidSignatureV // Deprecated in v4.8
    }
    function _throwError(RecoverError error) private pure {
    if (error == RecoverError.NoError) {
    return; // no error: do nothing
    } else if (error == RecoverError.InvalidSignature) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 19 : IInterchainSecurityModule.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.6.11;
    interface IInterchainSecurityModule {
    enum Types {
    UNUSED,
    ROUTING,
    AGGREGATION,
    LEGACY_MULTISIG,
    MERKLE_ROOT_MULTISIG,
    MESSAGE_ID_MULTISIG,
    NULL, // used with relayer carrying no metadata
    CCIP_READ,
    ARB_L2_TO_L1,
    WEIGHTED_MERKLE_ROOT_MULTISIG,
    WEIGHTED_MESSAGE_ID_MULTISIG,
    OP_L2_TO_L1
    }
    /**
    * @notice Returns an enum that represents the type of security model
    * encoded by this ISM.
    * @dev Relayers infer how to fetch and format metadata.
    */
    function moduleType() external view returns (uint8);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 19 : IPostDispatchHook.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.8.0;
    /*@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@@@@@@@@@@@@@@@@@
    @@@@@ HYPERLANE @@@@@@@
    @@@@@@@@@@@@@@@@@@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@@
    @@@@@@@@@ @@@@@@@@*/
    interface IPostDispatchHook {
    enum Types {
    UNUSED,
    ROUTING,
    AGGREGATION,
    MERKLE_TREE,
    INTERCHAIN_GAS_PAYMASTER,
    FALLBACK_ROUTING,
    ID_AUTH_ISM,
    PAUSABLE,
    PROTOCOL_FEE,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 19 : Message.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.8.0;
    import {TypeCasts} from "./TypeCasts.sol";
    /**
    * @title Hyperlane Message Library
    * @notice Library for formatted messages used by Mailbox
    **/
    library Message {
    using TypeCasts for bytes32;
    uint256 private constant VERSION_OFFSET = 0;
    uint256 private constant NONCE_OFFSET = 1;
    uint256 private constant ORIGIN_OFFSET = 5;
    uint256 private constant SENDER_OFFSET = 9;
    uint256 private constant DESTINATION_OFFSET = 41;
    uint256 private constant RECIPIENT_OFFSET = 45;
    uint256 private constant BODY_OFFSET = 77;
    /**
    * @notice Returns formatted (packed) Hyperlane message with provided fields
    * @dev This function should only be used in memory message construction.
    * @param _version The version of the origin and destination Mailboxes
    * @param _nonce A nonce to uniquely identify the message on its origin chain
    * @param _originDomain Domain of origin chain
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 19 : PackageVersioned.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    // SPDX-License-Identifier: MIT OR Apache-2.0
    pragma solidity >=0.6.11;
    /**
    * @title PackageVersioned
    * @notice Package version getter for contracts
    **/
    abstract contract PackageVersioned {
    // GENERATED CODE - DO NOT EDIT
    string public constant PACKAGE_VERSION = "5.11.0";
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 19 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.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
    *
    * Furthermore, `isContract` will also return true if the target contract within
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 19 : OwnableUpgradeable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
    pragma solidity ^0.8.0;
    import "../utils/ContextUpgradeable.sol";
    import "../proxy/utils/Initializable.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 19 : Strings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
    pragma solidity ^0.8.0;
    import "./math/Math.sol";
    import "./math/SignedMath.sol";
    /**
    * @dev String operations.
    */
    library Strings {
    bytes16 private constant _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) {
    unchecked {
    uint256 length = Math.log10(value) + 1;
    string memory buffer = new string(length);
    uint256 ptr;
    /// @solidity memory-safe-assembly
    assembly {
    ptr := add(buffer, add(32, length))
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 19 : ContextUpgradeable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
    pragma solidity ^0.8.0;
    import "../proxy/utils/Initializable.sol";
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }
    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 19 : Initializable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.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]
    * ```solidity
    * contract MyToken is ERC20Upgradeable {
    * function initialize() initializer public {
    * __ERC20_init("MyToken", "MTK");
    * }
    * }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 17 of 19 : Math.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.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 infinity
    Up, // Toward infinity
    Zero // 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) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 18 of 19 : SignedMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.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.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 19 of 19 : AddressUpgradeable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.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
    *
    * Furthermore, `isContract` will also return true if the target contract within
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
    "optimizer": {
    "enabled": true,
    "runs": 999999
    },
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_mailbox","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_hook","type":"address"}],"name":"HookSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ism","type":"address"}],"name":"IsmSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"validator","type":"address"},{"indexed":false,"internalType":"string","name":"storageLocation","type":"string"}],"name":"ValidatorAnnouncement","type":"event"},{"inputs":[],"name":"PACKAGE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_validator","type":"address"},{"internalType":"string","name":"_storageLocation","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"announce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_validators","type":"address[]"}],"name":"getAnnouncedStorageLocations","outputs":[{"internalType":"string[][]","name":"","type":"string[][]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAnnouncedValidators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_storageLocation","type":"string"}],"name":"getAnnouncementDigest","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hook","outputs":[{"internalType":"contract IPostDispatchHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interchainSecurityModule","outputs":[{"internalType":"contract IInterchainSecurityModule","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"localDomain","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mailbox","outputs":[{"internalType":"contract IMailbox","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hook","type":"address"}],"name":"setHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"setInterchainSecurityModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    9c4d535b000000000000000000000000000000000000000000000000000000000000000001000217d8013323f06a0f311a88146912a7ed4f9a5ed84dfbda5e41d84c9e7500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b9f9f1560e28c0bd00cc8336b73e61a3ee6d0aa6

    Deployed Bytecode

    0x00030000000000020010000000000002000200000001035500000000030100190000006003300270000001c50030019d000001c5033001970000000100200190000000260000c13d0000008002000039000000400020043f000000040030008c0000004a0000413d000000000201043b000000e002200270000001d50020009c0000004c0000213d000001df0020009c000000830000a13d000001e00020009c000000da0000213d000001e30020009c000001040000613d000001e40020009c0000004a0000c13d0000000001000416000000000001004b0000004a0000c13d0000009702000039000000000102041a000000800010043f000000000020043f0000002002000039000000000001004b000003310000c13d000000a0010000390000000004020019000003640000013d000000c004000039000000400040043f0000000002000416000000000002004b0000004a0000c13d0000001f02300039000001c602200197000000c002200039000000400020043f0000001f0530018f000001c706300198000000c002600039000000380000613d000000000701034f000000007807043c0000000004840436000000000024004b000000340000c13d000000000005004b000000450000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000004a0000413d000000c00200043d000001c80020009c000000620000a13d00000000010000190000071000010430000001d60020009c000000c00000a13d000001d70020009c000000e30000213d000001da0020009c000001370000613d000001db0020009c0000004a0000c13d0000000001000416000000000001004b0000004a0000c13d0000000001000412000e00000001001d000d00000000003d0000800501000039000000440300003900000000040004150000000e0440008a0000000504400210000001ec02000041070e06eb0000040f000002bc0000013d000001c9010000410000000000100443000c00000002001d00000004002004430000000001000414000001c50010009c000001c501008041000000c001100210000001ca011001c70000800202000039070e07090000040f00000001002001900000019f0000613d000000400b00043d000000000101043b000000000001004b000002c00000c13d0000004401b00039000001d20200004100000000002104350000002401b000390000001e020000390000000000210435000001d30100004100000000001b04350000000401b0003900000020020000390000000000210435000001c500b0009c000001c50b0080410000004001b00210000001d4011001c70000071000010430000001e50020009c0000016e0000613d000001e60020009c000001b10000613d000001e70020009c0000004a0000c13d000000240030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000401100370000000000101043b0000000002010019000001c80010009c0000004a0000213d000001c9010000410000000000100443000c00000002001d00000004002004430000000001000414000001c50010009c000001c501008041000000c001100210000001ca011001c70000800202000039070e07090000040f00000001002001900000019f0000613d000000000101043b0000000c03000029000000000003004b000000a60000613d000000000001004b0000018b0000613d0000003301000039000000000101041a000001c8011001970000000002000411000000000021004b000003a30000c13d0000006501000039000000000201041a000001ce02200197000000000232019f000000000021041b000000400100043d0000000000310435000001c50010009c000001c50100804100000040011002100000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f000001f6011001c70000800d020000390000000103000039000001f904000041000003a20000013d000001dc0020009c000001a00000613d000001dd0020009c000002b70000613d000001de0020009c0000004a0000c13d0000000001000416000000000001004b0000004a0000c13d000000c001000039000000400010043f0000000601000039000000800010043f000001ee01000041000000a00010043f0000002001000039000000c00010043f0000008001000039000000e002000039070e060b0000040f000000c00110008a000001c50010009c000001c5010080410000006001100210000001ef011001c70000070f0001042e000001e10020009c000001500000613d000001e20020009c0000004a0000c13d0000000001000416000000000001004b0000004a0000c13d0000006501000039000002bb0000013d000001d80020009c000001690000613d000001d90020009c0000004a0000c13d000000240030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000401100370000000000601043b000001c80060009c0000004a0000213d0000003301000039000000000201041a000001c8032001970000000005000411000000000053004b000003280000c13d000000000006004b0000037d0000c13d000001d301000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000001e801000041000000c40010043f000001e901000041000000e40010043f000001ea010000410000071000010430000000240030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000402100370000000000402043b000001cd0040009c0000004a0000213d0000002302400039000000000032004b0000004a0000813d0000000402400039000000000221034f000000000602043b000001cd0060009c0000004a0000213d000000050560021000000000025400190000002402200039000000000032004b0000004a0000213d0000003f02500039000001f402200197000001f30020009c0000033f0000213d0000008002200039000000400020043f000000800060043f000000000006004b000003b30000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400920003900000005041002100000000006940019000c00000001001d000000000001004b000004560000c13d000000000b06001900000000012b0049000001c50010009c000001c5010080410000006001100210000001c50020009c000001c5020080410000004002200210000000000121019f0000070f0001042e000000240030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000402100370000000000402043b000001cd0040009c0000004a0000213d0000002302400039000000000032004b0000004a0000813d0000000402400039000000000121034f000000000201043b0000002401400039070e061d0000040f070e06550000040f000000400200043d0000000000120435000001c50020009c000001c5020080410000004001200210000001ed011001c70000070f0001042e0000000001000416000000000001004b0000004a0000c13d0000003301000039000000000201041a000001c8032001970000000005000411000000000053004b000003280000c13d000001ce02200197000000000021041b0000000001000414000001c50010009c000001c501008041000000c001100210000001cf011001c70000800d020000390000000303000039000001d0040000410000000006000019070e07040000040f00000001002001900000004a0000613d00000000010000190000070f0001042e0000000001000416000000000001004b0000004a0000c13d0000006601000039000002bb0000013d000000240030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000401100370000000000101043b0000000002010019000001c80010009c0000004a0000213d000001c9010000410000000000100443000c00000002001d00000004002004430000000001000414000001c50010009c000001c501008041000000c001100210000001ca011001c70000800202000039070e07090000040f00000001002001900000019f0000613d000000000101043b0000000c03000029000000000003004b000003890000613d000000000001004b000003890000c13d000000400100043d00000064021000390000020903000041000000000032043500000044021000390000020a030000410000000000320435000000240210003900000027030000390000000000320435000001d3020000410000000000210435000000040210003900000020030000390000000000320435000001c50010009c000001c501008041000000400110021000000208011001c70000071000010430000000000001042f0000000001000416000000000001004b0000004a0000c13d0000000001000412001000000001001d000f00200000003d000080050100003900000044030000390000000004000415000000100440008a0000000504400210000001ec02000041070e06eb0000040f000001c501100197000000800010043f000001eb010000410000070f0001042e000000640030008c0000004a0000413d0000000002000416000000000002004b0000004a0000c13d0000000402100370000000000202043b000c00000002001d000001c80020009c0000004a0000213d0000002402100370000000000402043b000001cd0040009c0000004a0000213d0000002302400039000000000032004b0000004a0000813d0000000402400039000000000521034f000000000505043b000b00000005001d000001cd0050009c0000004a0000213d0000002405400039000a00000005001d0009000b0050002d000000090030006b0000004a0000213d0000004404100370000000000404043b000001cd0040009c0000004a0000213d0000002305400039000000000035004b0000004a0000813d0000000405400039000000000551034f000000000505043b000800000005001d000001cd0050009c0000004a0000213d0000002405400039000600000005001d000700080050002d000000070030006b0000004a0000213d0000000c030000290000006003300210000000a00030043f0000000b030000290000020c043001980000001f0630018f000300200020003d0000000302100360000500000004001d000000b401400039000001f00000613d000000b403000039000000000402034f000000004504043c0000000003530436000000000013004b000001ec0000c13d000000000006004b000001fd0000613d00000005022003600000000303600210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000400000006001d0000000b03000029000000b401300039000000000001043500000053013000390000020c021001970000001401300039000000800010043f000001f30020009c0000033f0000213d0000008002200039000000400020043f000001c50010009c000001c50100804100000060011002100000000002000414000001c50020009c000001c502008041000000c002200210000000000121019f000001fa011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000200000001001d000000000010043f0000009a01000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000101041a000000ff00100190000004900000c13d0000000201000029000000000010043f0000009a01000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000201041a0000020d0220019700000001022001bf000000000021041b0000000b010000290001001f0010003d000000200200008a000000010120017f000200000001001d0000003f01100039000000000221016f000000400100043d0000000002210019000000000012004b00000000030000390000000103004039000001cd0020009c0000033f0000213d00000001003001900000033f0000c13d000000400020043f0000000b0200002900000000022104360000000904000029000000000040007c0000004a0000213d000000030300002900000002043003670000000503200029000000050000006b0000025b0000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b000002570000c13d000000040000006b000002690000613d000000050440036000000004050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000b022000290000000000020435070e06550000040f00000008020000290000001f022000390000020c022001970000003f022000390000020c03200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000001cd0030009c0000033f0000213d00000001004001900000033f0000c13d000000400030043f000000080300002900000000043204360000000703000029000000000030007c0000004a0000213d00000008030000290000020c053001980000001f0630018f0000000603000029000000020730036700000000035400190000028d0000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000002890000c13d000000000006004b0000029a0000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000053043500000008034000290000000000030435000000400300043d0000000005020433000000410050008c0000049c0000c13d00000040052000390000000005050433000001fd0050009c000004ac0000a13d000000640130003900000206020000410000000000210435000000440130003900000207020000410000000000210435000000240130003900000022020000390000000000210435000001d3010000410000000000130435000000040130003900000020020000390000000000210435000001c50030009c000001c503008041000000400130021000000208011001c700000710000104300000000001000416000000000001004b0000004a0000c13d0000003301000039000000000101041a000001c801100197000000800010043f000001eb010000410000070f0001042e0000000c01000029000001c802100197000000800020043f000001cb0100004100000000001b04350000000001000414000000040020008c000002cd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000002f90000013d000001c500b0009c000001c50300004100000000030b40190000004003300210000001c50010009c000001c501008041000000c001100210000000000131019f000001cc011001c7000c0000000b001d070e07090000040f0000000c0b00002900000000030100190000006003300270000001c503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000002e90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000002e50000c13d000000000006004b000002f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000003450000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000001cd0010009c0000033f0000213d00000001002001900000033f0000c13d000000400010043f000000200030008c0000004a0000413d00000000010b0433000001c50010009c0000004a0000213d000000a00010043f0000003301000039000000000201041a000001ce032001970000000006000411000000000363019f000000000031041b0000000001000414000001c805200197000001c50010009c000001c501008041000000c001100210000001cf011001c70000800d020000390000000303000039000001d004000041070e07040000040f00000001002001900000004a0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000001000020044300000002010000390000012000100443000001d1010000410000070f0001042e000001d301000041000000800010043f0000002001000039000000840010043f000000a40010043f000001f001000041000000c40010043f000001f1010000410000071000010430000000a005000039000001f20300004100000000040000190000000006050019000000000503041a000000000556043600000001033000390000000104400039000000000014004b000003340000413d000000410160008a0000020c04100197000001f30040009c000003630000a13d000001f701000041000000000010043f0000004101000039000000040010043f000001f80100004100000710000104300000001f0530018f000001c706300198000000400200043d0000000004620019000003500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000034c0000c13d000000000005004b0000035d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000001c50020009c000001c5020080410000004002200210000000000112019f00000710000104300000008001400039000000400010043f0000000000210435000000a002400039000000800300043d0000000000320435000000c002400039000000000003004b000003740000613d000000a00400003900000000050000190000000046040434000001c80660019700000000026204360000000105500039000000000035004b0000036e0000413d0000000002120049000001c50020009c000001c5020080410000006002200210000001c50010009c000001c5010080410000004001100210000000000112019f0000070f0001042e000001ce02200197000000000262019f000000000021041b0000000001000414000001c50010009c000001c501008041000000c001100210000001cf011001c70000800d020000390000000303000039000001d004000041000001640000013d0000003301000039000000000101041a000001c8011001970000000002000411000000000021004b000003a30000c13d0000006601000039000000000201041a000001ce02200197000000000232019f000000000021041b000000400100043d0000000000310435000001c50010009c000001c50100804100000040011002100000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f000001f6011001c70000800d0200003900000001030000390000020b04000041000001640000013d000000400100043d0000004402100039000001f0030000410000000000320435000001d302000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000001c50010009c000001c5010080410000004001100210000001d4011001c7000007100001043000000060020000390000000003000019000000a00630003900000000002604350000002003300039000000000053004b000003b50000413d0000000003000019000400000003001d000300050030021800000003024000290000002402200039000000000121034f000000000101043b000001c80010009c0000004a0000213d000000000010043f0000009901000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000401041a000001cd0040009c0000033f0000213d00000005024002100000003f02200039000001f402200197000000400300043d0000000002230019000500000003001d000000000032004b00000000030000390000000103004039000001cd0020009c0000033f0000213d00000001003001900000033f0000c13d000000400020043f000600000004001d00000005020000290000000000420435000000000010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f6011001c70000801002000039070e07090000040f00000001002001900000004a0000613d0000000605000029000000000005004b000004400000613d000000000601043b00000000070000190000000508000029000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000005620000c13d000000400900043d0000000003490436000000000002004b000004250000613d000700000003001d000800000004001d000b00000009001d000900000008001d000a00000007001d000c00000006001d000000000060043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f6011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000080a00002900000000000a004b0000000a0700002900000009080000290000042b0000613d000000000201043b000000000100001900000006050000290000000c060000290000000b09000029000000070b00002900000000031b0019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000041d0000413d0000042f0000013d0000020d011001970000000000130435000000000004004b000000200100003900000000010060390000042f0000013d000000000100001900000006050000290000000c060000290000000b090000290000003f011000390000020c021001970000000001920019000000000021004b00000000020000390000000102004039000001cd0010009c0000033f0000213d00000001002001900000033f0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000003f40000413d000000800100043d0000000403000029000000000031004b0000048a0000a13d0000000301000029000000a00110003900000005020000290000000000210435000000800100043d000000000031004b0000048a0000a13d00000002010003670000000402100370000000000402043b0000000402400039000000000221034f000000000202043b0000000103300039000000000023004b000003bb0000413d000000400200043d000001230000013d000000a0030000390000000007000019000b00000002001d000004600000013d00000001077000390000000c0070006c00000000060b00190000000b0200002900000000090400190000012e0000813d0000000008260049000000400880008a00000000098904360000000004090019000000003803043400000000090804330000000000960435000000050a900210000000000aa60019000000200ba00039000000000009004b0000045a0000613d000000000a000019000000000c060019000004770000013d0000000001bd001900000000000104350000001f01d000390000020c01100197000000000bb10019000000010aa0003900000000009a004b0000045a0000813d000000000d6b0049000000200dd0008a000000200cc000390000000000dc04350000002008800039000000000d08043300000000ed0d0434000000000bdb043600000000000d004b0000046f0000613d000000000f0000190000000002bf00190000000001fe001900000000010104330000000000120435000000200ff000390000000000df004b000004820000413d0000046f0000013d000001f701000041000000000010043f0000003201000039000000040010043f000001f8010000410000071000010430000000400100043d0000004402100039000001fb030000410000000000320435000000240210003900000006030000390000000000320435000001d302000041000000000021043500000004021000390000002003000039000003ad0000013d0000004401300039000001fc02000041000000000021043500000024013000390000001f020000390000000000210435000001d3010000410000000000130435000000040130003900000020020000390000000000210435000001c50030009c000001c5030080410000004001300210000001d4011001c700000710000104300000006002200039000000000202043300000000040404330000006006300039000000000056043500000040053000390000000000450435000000f802200270000000200430003900000000002404350000000000130435000000000000043f000001c50030009c000001c50300804100000040013002100000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f000001fe011001c70000000102000039070e07090000040f00000000030100190000006003300270000001c503300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004d20000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004ce0000c13d000000000005004b000004df0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0000000100200190000004ec0000613d000000000100043d000001c801100198000004f80000c13d000000400100043d00000044021000390000020503000041000000000032043500000024021000390000001803000039000004960000013d0000001f0530018f000001c706300198000000400200043d0000000004620019000003500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004f30000c13d000003500000013d0000000c0010006c000005680000c13d0000000c01000029000000000010043f0000009801000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000101041a000000000001004b000005360000c13d0000000c01000029000000000010043f0000009801000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000101041a000000000001004b000005360000c13d0000009701000039000000000201041a000001cd0020009c0000033f0000213d0000000103200039000000000031041b000002000220009a0000000c03000029000000000032041b000000000101041a000900000001001d000000000030043f0000009801000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b0000000902000029000000000021041b0000000c01000029000000000010043f0000009901000039000000200010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f5011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000000201041a000900000002001d000001cd0020009c0000033f0000213d00000009020000290000000102200039000000000021041b000000000010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f6011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b0000000901100029000900000001001d000000000101041a000000010210019000000001011002700000007f0110618f000800000001001d0000001f0010008c00000000010000390000000101002039000000000012004b0000056f0000613d000001f701000041000000000010043f0000002201000039000000040010043f000001f8010000410000071000010430000000400100043d0000004402100039000001ff03000041000000000032043500000024021000390000000a03000039000004960000013d0000000801000029000000200010008c0000058e0000413d0000000901000029000000000010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f6011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000010200002900000005022002700000000b03000029000000200030008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000058e0000813d000000000002041b0000000102200039000000000012004b0000058a0000413d0000000b010000290000001f0010008c000005a10000a13d0000000901000029000000000010043f0000000001000414000001c50010009c000001c501008041000000c001100210000001f6011001c70000801002000039070e07090000040f00000001002001900000004a0000613d000000000101043b000000050000006b000005af0000c13d0000000002000019000005b90000013d0000000b0000006b0000000001000019000005a70000613d0000000a010000290000000201100367000000000101043b0000000b0400002900000003024002100000020e0220027f0000020e02200167000000000121016f0000000102400210000000000121019f000005c90000013d000000020300036700000000020000190000000a04200029000000000443034f000000000404043b000000000041041b00000001011000390000002002200039000000050020006c000005b10000413d00000005040000290000000b0040006c000005c60000813d0000000b030000290000000303300210000000f80330018f0000020e0330027f0000020e033001670000000a022000290000000202200367000000000202043b000000000232016f000000000021041b0000000b01000029000000010110021000000001011001bf0000000902000029000000000012041b000000400100043d00000020021000390000000b03000029000000000032043500000020020000390000000000210435000000400210003900000005032000290000000a040000290000000204400367000000050000006b000005dd0000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b000005d90000c13d000000040000006b000005eb0000613d000000050440036000000004050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000b022000290000000000020435000000020200002900000040022000390000006003200210000002010330009a000002020020009c0000020303008041000001c50010009c000001c5010080410000004001100210000000000131019f0000000002000414000001c50020009c000001c502008041000000c00220021000000000012100190000800d02000039000000020300003900000204040000410000000c05000029070e07040000040f00000001002001900000004a0000613d000000400100043d00000001020000390000000000210435000001c50010009c000001c5010080410000004001100210000001ed011001c70000070f0001042e00000000430104340000000001320436000000000003004b000006170000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000006100000413d000000000213001900000000000204350000001f023000390000020c022001970000000001210019000000000001042d00000000040100190000020f0020009c0000064d0000813d0000001f012000390000020c011001970000003f011000390000020c05100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000001cd0050009c0000064d0000213d00000001007001900000064d0000c13d000000400050043f00000000052104360000000007420019000000000037004b000006530000213d0000020c062001980000001f0720018f000000020440036700000000036500190000063d0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000006390000c13d000000000007004b0000064a0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000001f701000041000000000010043f0000004101000039000000040010043f000001f8010000410000071000010430000000000100001900000710000104300004000000000002000300000001001d000000400100043d000400000001001d000001ec01000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000001c50010009c000001c501008041000000c00110021000000210011001c70000800502000039070e07090000040f0000000100200190000006e30000613d00000004020000290000002002200039000000000101043b000000e001100210000200000002001d0000000000120435000001ec0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001c50010009c000001c501008041000000c00110021000000210011001c70000800502000039070e07090000040f0000000100200190000006e30000613d000000000101043b0000000404000029000000440240003900000211030000410000000000320435000001c801100197000000240240003900000000001204350000003a010000390000000000140435000002120040009c000006e40000813d00000004020000290000006001200039000100000001001d000000400010043f0000000201000029000001c50010009c000001c50100804100000040011002100000000002020433000001c50020009c000001c5020080410000006002200210000000000112019f0000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f000001cf011001c70000801002000039070e07090000040f0000000100200190000006e10000613d000000000201043b000000040300002900000080013000390000000000210435000000a00330003900000003020000290000000042020434000000000002004b000006b00000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b000006a90000413d000000000332001900000000000304350000002003200039000000010400002900000000003404350000005f022000390000020c032001970000000002430019000000000032004b00000000030000390000000103004039000001cd0020009c000006e40000213d0000000100300190000006e40000c13d000000400020043f000001c50010009c000001c50100804100000040011002100000000002040433000001c50020009c000001c5020080410000006002200210000000000112019f0000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f000001cf011001c70000801002000039070e07090000040f0000000100200190000006e10000613d000000000101043b0000021302000041000000000020043f0000001c0010043f0000000001000414000001c50010009c000001c501008041000000c00110021000000214011001c70000801002000039070e07090000040f0000000100200190000006e10000613d000000000101043b000000000001042d00000000010000190000071000010430000000000001042f000001f701000041000000000010043f0000004101000039000000040010043f000001f8010000410000071000010430000000000001042f00000000050100190000000000200443000000040100003900000005024002700000000002020031000000000121043a0000002004400039000000000031004b000006ee0000413d000001c50030009c000001c50300804100000060013002100000000002000414000001c50020009c000001c502008041000000c002200210000000000112019f00000215011001c70000000002050019070e07090000040f0000000100200190000007030000613d000000000101043b000000000001042d000000000001042f00000707002104210000000102000039000000000001042d0000000002000019000000000001042d0000070c002104230000000102000039000000000001042d0000000002000019000000000001042d0000070e000004320000070f0001042e000007100001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000008d3638f4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000c00000010000000000000000004d61696c626f78436c69656e743a20696e76616c6964206d61696c626f78000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008d3638f300000000000000000000000000000000000000000000000000000000b91e6a5000000000000000000000000000000000000000000000000000000000de523cf200000000000000000000000000000000000000000000000000000000de523cf300000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000b91e6a5100000000000000000000000000000000000000000000000000000000d5438eae000000000000000000000000000000000000000000000000000000008d3638f4000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000093c448470000000000000000000000000000000000000000000000000000000051abe7cb00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007f5a7c7b0000000000000000000000000000000000000000000000000000000051abe7cc00000000000000000000000000000000000000000000000000000000690cb786000000000000000000000000000000000000000000000000000000000e72cc060000000000000000000000000000000000000000000000000000000021f71781000000000000000000000000000000000000000000000000000000003dfd38734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0000000000000000000000000000000000000020000000000000000000000000352e31312e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000064000000800000000000000000354a83ed9988f79f6038d4c7a7dadbad8af32f4ad6df893e0e5807a1b1944ff9000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004eab7b127c764308788622363ad3e9532de3dfba7845bd4f84c125a22544255a0200000000000000000000000000000000000000000000a000000000000000007265706c6179000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265206c656e677468007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a00000000000000000000000000000000000000080000000000000000000000000217369676e617475726500000000000000000000000000000000000000000000cab57c12667708609fc72b3858252452750cd0b5292076c1f1a7f85e4e6bb007fe00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000ffffffff00000000000000000000000078066d8adb677a1353d1fc8be28cf03e2a8de7157bbab979953587d78076c11e45434453413a20696e76616c6964207369676e61747572650000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c000000000000000000000000000000000000008400000000000000000000000073657474696e67000000000000000000000000000000000000000000000000004d61696c626f78436c69656e743a20696e76616c696420636f6e747261637420c47cbcc588c67679e52261c45cc315e56562f8d0ccaba16facb9093ff9498799ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000020000020000000000000000000000000000004400000000000000000000000048595045524c414e455f414e4e4f554e43454d454e5400000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa019457468657265756d205369676e6564204d6573736167653a0a333200000000020000000000000000000000000000000000003c000000000000000000000000020000020000000000000000000000000000000000000000000000000000000094a37c43cd8d657d6a9793ce82ced0b92d4875f6dde1a66617e991659fee8e63

    Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

    000000000000000000000000b9f9f1560e28c0bd00cc8336b73e61a3ee6d0aa6

    -----Decoded View---------------
    Arg [0] : _mailbox (address): 0xb9f9f1560E28C0Bd00cc8336b73E61a3Ee6d0aa6

    -----Encoded View---------------
    1 Constructor Arguments found :
    Arg [0] : 000000000000000000000000b9f9f1560e28c0bd00cc8336b73e61a3ee6d0aa6


    Block Age Transaction Gas Used Reward
    view all blocks produced

    Block Age Uncle Number Difficulty Gas Used Reward
    View All Uncles
    Loading...
    Loading
    Loading...
    Loading

    Validator Index Block Age Amount
    View All Withdrawals

    Transaction Hash Block Age Value Eth2 PubKey Valid
    View All Deposits
    [ Download: CSV Export  ]
    [ Download: CSV Export  ]

    A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.