ETH Price: $1,981.72 (-2.64%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Confirm Roots243070922026-01-24 20:37:5938 days ago1769287079IN
0x9D3A7fB1...8b24F5638
0 ETH0.000011510.13646091
Confirm Roots241978132026-01-09 14:46:4753 days ago1767970007IN
0x9D3A7fB1...8b24F5638
0 ETH0.000021910.25975658
Confirm Roots241938772026-01-09 1:36:3553 days ago1767922595IN
0x9D3A7fB1...8b24F5638
0 ETH0.00001110.13166201
Confirm Roots239714422025-12-08 23:46:1184 days ago1765237571IN
0x9D3A7fB1...8b24F5638
0 ETH0.000032170.3813979
Confirm Roots237702362025-11-10 17:05:47113 days ago1762794347IN
0x9D3A7fB1...8b24F5638
0 ETH0.000056630.67137128
Confirm Roots235105982025-10-05 9:14:11149 days ago1759655651IN
0x9D3A7fB1...8b24F5638
0 ETH0.000018390.21811258
Confirm Roots234939472025-10-03 1:23:59151 days ago1759454639IN
0x9D3A7fB1...8b24F5638
0 ETH0.000025470.30201812
Confirm Roots233000222025-09-05 22:54:59178 days ago1757112899IN
0x9D3A7fB1...8b24F5638
0 ETH0.00002080.24660995
Confirm Roots232957962025-09-05 8:44:47179 days ago1757061887IN
0x9D3A7fB1...8b24F5638
0 ETH0.000033420.39622834
Confirm Roots231398072025-08-14 14:14:11201 days ago1755180851IN
0x9D3A7fB1...8b24F5638
0 ETH0.000349524.14327425
Confirm Roots230185652025-07-28 15:33:59218 days ago1753716839IN
0x9D3A7fB1...8b24F5638
0 ETH0.000178172.11240181
Confirm Roots228215872025-07-01 3:03:35245 days ago1751339015IN
0x9D3A7fB1...8b24F5638
0 ETH0.000054540.646625
Confirm Roots228215862025-07-01 3:03:23245 days ago1751339003IN
0x9D3A7fB1...8b24F5638
0 ETH0.000054920.65102026
Confirm Roots225345632025-05-21 23:32:59285 days ago1747870379IN
0x9D3A7fB1...8b24F5638
0 ETH0.000286783.39949599
Confirm Roots225345122025-05-21 23:22:47285 days ago1747869767IN
0x9D3A7fB1...8b24F5638
0 ETH0.000113051.34011904
Confirm Roots225344612025-05-21 23:12:35285 days ago1747869155IN
0x9D3A7fB1...8b24F5638
0 ETH0.000069050.81880875
Confirm Roots224509852025-05-10 5:42:23297 days ago1746855743IN
0x9D3A7fB1...8b24F5638
0 ETH0.000125391.48661877
Confirm Roots224441542025-05-09 6:32:11298 days ago1746772331IN
0x9D3A7fB1...8b24F5638
0 ETH0.000208612.47321442
Confirm Roots222293232025-04-09 5:41:47328 days ago1744177307IN
0x9D3A7fB1...8b24F5638
0 ETH0.000041640.49368831
Confirm Roots222275342025-04-08 23:41:35328 days ago1744155695IN
0x9D3A7fB1...8b24F5638
0 ETH0.000043240.51264403
Confirm Roots222272332025-04-08 22:41:23328 days ago1744152083IN
0x9D3A7fB1...8b24F5638
0 ETH0.000065770.77970614
Confirm Roots220401502025-03-13 19:50:59355 days ago1741895459IN
0x9D3A7fB1...8b24F5638
0 ETH0.000054410.64512536
Confirm Roots220322912025-03-12 17:30:47356 days ago1741800647IN
0x9D3A7fB1...8b24F5638
0 ETH0.000066880.79290575
Confirm Roots219485922025-03-01 1:00:35367 days ago1740790835IN
0x9D3A7fB1...8b24F5638
0 ETH0.000073160.86725284
Confirm Roots219392262025-02-27 17:40:23369 days ago1740678023IN
0x9D3A7fB1...8b24F5638
0 ETH0.000073280.86884767
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x97D596fa...1f96a9724
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
OptimismMessengerWrapper

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 50000 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/optimism/messengers/iOVM_L1CrossDomainMessenger.sol";
import "./MessengerWrapper.sol";

/**
 * @dev A MessengerWrapper for Optimism - https://community.optimism.io/docs/
 * @notice Deployed on layer-1
 */

contract OptimismMessengerWrapper is MessengerWrapper, Ownable {

    iOVM_L1CrossDomainMessenger public immutable l1MessengerAddress;
    address public immutable l2BridgeAddress;
    uint256 public defaultL2GasLimit;
    mapping (bytes4 => uint256) public l2GasLimitForSignature;

    constructor(
        address _l1BridgeAddress,
        address _l2BridgeAddress,
        iOVM_L1CrossDomainMessenger _l1MessengerAddress,
        uint256 _l2ChainId,
        uint256 _defaultL2GasLimit
    )
        public
        MessengerWrapper(_l1BridgeAddress, _l2ChainId)
    {
        l2BridgeAddress = _l2BridgeAddress;
        l1MessengerAddress = _l1MessengerAddress;
        defaultL2GasLimit = _defaultL2GasLimit;
    }

    /** 
     * @dev Sends a message to the l2BridgeAddress from layer-1
     * @param _calldata The data that l2BridgeAddress will be called with
     */
    function sendCrossDomainMessage(bytes memory _calldata) public override onlyL1Bridge {
        uint256 l2GasLimit = l2GasLimitForCalldata(_calldata);

        l1MessengerAddress.sendMessage(
            l2BridgeAddress,
            _calldata,
            uint32(l2GasLimit)
        );
    }

    function verifySender(address l1BridgeCaller, bytes memory /*_data*/) public override {
        if (isRootConfirmation) return;

        require(l1BridgeCaller == address(l1MessengerAddress), "OVM_MSG_WPR: Caller is not l1MessengerAddress");
        // Verify that cross-domain sender is l2BridgeAddress
        require(l1MessengerAddress.xDomainMessageSender() == l2BridgeAddress, "OVM_MSG_WPR: Invalid cross-domain sender");
    }

    function setDefaultL2GasLimit(uint256 _l2GasLimit) external onlyOwner {
        defaultL2GasLimit = _l2GasLimit;
    }

    function setL2GasLimitForSignature(uint256 _l2GasLimit, bytes4 signature) external onlyOwner {
        l2GasLimitForSignature[signature] = _l2GasLimit;
    }

    // Private functions

    function l2GasLimitForCalldata(bytes memory _calldata) private view returns (uint256) {
        uint256 l2GasLimit;

        if (_calldata.length >= 4) {
            bytes4 functionSignature = bytes4(toUint32(_calldata, 0));
            l2GasLimit = l2GasLimitForSignature[functionSignature];
        }

        if (l2GasLimit == 0) {
            l2GasLimit = defaultL2GasLimit;
        }

        return l2GasLimit;
    }

    // source: https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol
    function toUint32(bytes memory _bytes, uint256 _start) private pure returns (uint32) {
        require(_bytes.length >= _start + 4, "OVM_MSG_WPR: out of bounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.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 Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @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 GSN 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 Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12 <=0.8.9;
pragma experimental ABIEncoderV2;

interface IMessengerWrapper {
    function sendCrossDomainMessage(bytes memory _calldata) external;
    function verifySender(address l1BridgeCaller, bytes memory _data) external;
    function confirmRoots(
        bytes32[] calldata rootHashes,
        uint256[] calldata destinationChainIds,
        uint256[] calldata totalAmounts,
        uint256[] calldata rootCommittedAts
    ) external;
}

// SPDX-License-Identifier: MIT
// +build ovm
pragma solidity >0.5.0 <0.8.0;
pragma experimental ABIEncoderV2;

/**
 * @title iOVM_BaseCrossDomainMessenger
 */
interface iOVM_BaseCrossDomainMessenger {

    /**********
     * Events *
     **********/
    event SentMessage(bytes message);
    event RelayedMessage(bytes32 msgHash);

    /**********************
     * Contract Variables *
     **********************/
    function xDomainMessageSender() external view returns (address);

    /********************
     * Public Functions *
     ********************/

    /**
     * Sends a cross domain message to the target messenger.
     * @param _target Target contract address.
     * @param _message Message to send to the target.
     * @param _gasLimit Gas limit for the provided message.
     */
    function sendMessage(
        address _target,
        bytes calldata _message,
        uint32 _gasLimit
    ) external;

    function deposit(
        address _depositor,
        uint256 _amount,
        bool _send
    ) external;
}

File 6 of 7 : iOVM_L1CrossDomainMessenger.sol
// SPDX-License-Identifier: MIT
pragma solidity >0.5.0 <0.8.0;
pragma experimental ABIEncoderV2;

import { iOVM_BaseCrossDomainMessenger } from "./iOVM_BaseCrossDomainMessenger.sol";

/**
 * @title iOVM_L1CrossDomainMessenger
 */
interface iOVM_L1CrossDomainMessenger is iOVM_BaseCrossDomainMessenger {}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12 <=0.8.9;
pragma experimental ABIEncoderV2;

import "../interfaces/IMessengerWrapper.sol";

contract IL1Bridge {
    struct TransferBond {
        address bonder;
        uint256 createdAt;
        uint256 totalAmount;
        uint256 challengeStartTime;
        address challenger;
        bool challengeResolved;
    }
    uint256 public challengePeriod;
    mapping(bytes32 => TransferBond) public transferBonds;
    function getIsBonder(address maybeBonder) public view returns (bool) {}
    function getTransferRootId(bytes32 rootHash, uint256 totalAmount) public pure returns (bytes32) {}
    function confirmTransferRoot(
        uint256 originChainId,
        bytes32 rootHash,
        uint256 destinationChainId,
        uint256 totalAmount,
        uint256 rootCommittedAt
    )
        external
    {}
}

abstract contract MessengerWrapper is IMessengerWrapper {
    address public immutable l1BridgeAddress;
    uint256 public immutable l2ChainId;
    bool public isRootConfirmation = false;

    constructor(address _l1BridgeAddress, uint256 _l2ChainId) internal {
        l1BridgeAddress = _l1BridgeAddress;
        l2ChainId = _l2ChainId;
    }

    modifier onlyL1Bridge {
        require(msg.sender == l1BridgeAddress, "MW: Sender must be the L1 Bridge");
        _;
    }

    modifier rootConfirmation {
        isRootConfirmation = true;
        _;
        isRootConfirmation = false;
    }

    /**
     * @dev Confirm roots that have bonded on L1 and passed the challenge period with no challenge
     * @param rootHashes The root hashes to confirm
     * @param destinationChainIds The destinationChainId of the roots to confirm
     * @param totalAmounts The totalAmount of the roots to confirm
     * @param rootCommittedAts The rootCommittedAt of the roots to confirm
     */
    function confirmRoots (
        bytes32[] calldata rootHashes,
        uint256[] calldata destinationChainIds,
        uint256[] calldata totalAmounts,
        uint256[] calldata rootCommittedAts
    ) external override rootConfirmation {
        IL1Bridge l1Bridge = IL1Bridge(l1BridgeAddress);
        require(l1Bridge.getIsBonder(msg.sender), "MW: Sender must be a bonder");
        require(rootHashes.length == totalAmounts.length, "MW: rootHashes and totalAmounts must be the same length");

        uint256 challengePeriod = l1Bridge.challengePeriod();
        for (uint256 i = 0; i < rootHashes.length; i++) {
            bool canConfirm = canConfirmRoot(l1Bridge, rootHashes[i], totalAmounts[i], challengePeriod);
            require(canConfirm, "MW: Root cannot be confirmed");
            l1Bridge.confirmTransferRoot(
                l2ChainId,
                rootHashes[i],
                destinationChainIds[i],
                totalAmounts[i],
                rootCommittedAts[i]
            );
        }
    }
    
    function canConfirmRoot (IL1Bridge l1Bridge, bytes32 rootHash, uint256 totalAmount, uint256 challengePeriod) public view returns (bool) {
        bytes32 transferRootId = l1Bridge.getTransferRootId(rootHash, totalAmount);
        (,uint256 createdAt,,uint256 challengeStartTime,,) = l1Bridge.transferBonds(transferRootId);

        uint256 timeSinceBondCreation = block.timestamp - createdAt;
        if (
            createdAt != 0 &&
            challengeStartTime == 0 &&
            timeSinceBondCreation > challengePeriod
        ) {
            return true;
        }

        return false;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 50000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_l1BridgeAddress","type":"address"},{"internalType":"address","name":"_l2BridgeAddress","type":"address"},{"internalType":"contract iOVM_L1CrossDomainMessenger","name":"_l1MessengerAddress","type":"address"},{"internalType":"uint256","name":"_l2ChainId","type":"uint256"},{"internalType":"uint256","name":"_defaultL2GasLimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract IL1Bridge","name":"l1Bridge","type":"address"},{"internalType":"bytes32","name":"rootHash","type":"bytes32"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"challengePeriod","type":"uint256"}],"name":"canConfirmRoot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"rootHashes","type":"bytes32[]"},{"internalType":"uint256[]","name":"destinationChainIds","type":"uint256[]"},{"internalType":"uint256[]","name":"totalAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"rootCommittedAts","type":"uint256[]"}],"name":"confirmRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultL2GasLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRootConfirmation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1BridgeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1MessengerAddress","outputs":[{"internalType":"contract iOVM_L1CrossDomainMessenger","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2BridgeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2ChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"l2GasLimitForSignature","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes","name":"_calldata","type":"bytes"}],"name":"sendCrossDomainMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_l2GasLimit","type":"uint256"}],"name":"setDefaultL2GasLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_l2GasLimit","type":"uint256"},{"internalType":"bytes4","name":"signature","type":"bytes4"}],"name":"setL2GasLimitForSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"l1BridgeCaller","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"verifySender","outputs":[],"stateMutability":"nonpayable","type":"function"}]

0x6101006040526000805460ff191690553480156200001c57600080fd5b506040516200184e3803806200184e8339810160408190526200003f91620000e0565b6001600160601b0319606086901b1660805260a0829052600062000062620000dc565b60008054610100600160a81b0319166101006001600160a01b038416908102919091178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606094851b811660e0529290931b90911660c05250600155506200015d565b3390565b600080600080600060a08688031215620000f8578081fd5b8551620001058162000144565b6020870151909550620001188162000144565b60408701519094506200012b8162000144565b6060870151608090970151959894975095949392505050565b6001600160a01b03811681146200015a57600080fd5b50565b60805160601c60a05160c05160601c60e05160601c61168a620001c46000398061046452806109ed5280610aa65250806104375280610a215280610add5280610c845250806108ec5280610ca852508061038c528061054652806106cb525061168a6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638e58736f11610097578063b67efb7011610066578063b67efb70146101d9578063c5deebb3146101ec578063d6ae3cd5146101f4578063f2fde38b146101fc57610100565b80638e58736f14610198578063934746a7146101ab57806399178dd8146101b3578063b08324f5146101c657610100565b80635ab2a558116100d35780635ab2a5581461016b578063715018a6146101805780638b034eb8146101885780638da5cb5b1461019057610100565b80631aae9eed14610105578063419cb5501461012e57806356f3f181146101435780635a4846b214610158575b600080fd5b6101186101133660046111ec565b61020f565b604051610125919061132b565b60405180910390f35b61014161013c3660046111b9565b610374565b005b61014b6104c6565b6040516101259190611336565b610141610166366004611226565b6104cc565b610173610544565b604051610125919061126d565b610141610568565b61011861064e565b610173610657565b6101416101a63660046110aa565b610678565b6101736109eb565b6101416101c1366004610ff3565b610a0f565b6101416101d436600461123e565b610bca565b61014b6101e736600461119d565b610c70565b610173610c82565b61014b610ca6565b61014161020a366004610fb4565b610cca565b6000808573ffffffffffffffffffffffffffffffffffffffff1663960a7afa86866040518363ffffffff1660e01b815260040161024d92919061133f565b60206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d9190611185565b90506000808773ffffffffffffffffffffffffffffffffffffffff16635a7e1083846040518263ffffffff1660e01b81526004016102db9190611336565b60c06040518083038186803b1580156102f357600080fd5b505afa158015610307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032b9190611041565b50929550935050504283900390508215801590610346575081155b801561035157508581115b1561036357600194505050505061036c565b60009450505050505b949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611507565b60405180910390fd5b60006103f782610e21565b6040517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690633dbb202b90610490907f0000000000000000000000000000000000000000000000000000000000000000908690869060040161128e565b600060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050505050565b60015481565b6104d4610e82565b73ffffffffffffffffffffffffffffffffffffffff166104f2610657565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b600155565b7f000000000000000000000000000000000000000000000000000000000000000081565b610570610e82565b73ffffffffffffffffffffffffffffffffffffffff1661058e610657565b73ffffffffffffffffffffffffffffffffffffffff16146105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b6000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60005460ff1681565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517fd5ef75510000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000009073ffffffffffffffffffffffffffffffffffffffff82169063d5ef75519061071790339060040161126d565b60206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107679190611169565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611599565b8784146107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061153c565b60008173ffffffffffffffffffffffffffffffffffffffff1663f3f480d96040518163ffffffff1660e01b815260040160206040518083038186803b15801561081e57600080fd5b505afa158015610832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108569190611185565b905060005b898110156109b6576000610895848d8d8581811061087557fe5b905060200201358a8a8681811061088857fe5b905060200201358661020f565b9050806108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061143e565b8373ffffffffffffffffffffffffffffffffffffffff1663ef6ebe5e7f00000000000000000000000000000000000000000000000000000000000000008e8e8681811061091757fe5b905060200201358d8d8781811061092a57fe5b905060200201358c8c8881811061093d57fe5b905060200201358b8b8981811061095057fe5b905060200201356040518663ffffffff1660e01b81526004016109779594939291906115d0565b600060405180830381600087803b15801561099157600080fd5b505af11580156109a5573d6000803e3d6000fd5b50506001909301925061085b915050565b5050600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005460ff1615610a1f57610bc6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611384565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636e296e456040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b5050565b610bd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b7fffffffff0000000000000000000000000000000000000000000000000000000016600090815260026020526040902055565b60026020526000908152604090205481565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b610cd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610cf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b73ffffffffffffffffffffffffffffffffffffffff8116610d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906113e1565b6000805460405173ffffffffffffffffffffffffffffffffffffffff8085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000806004835110610e72576000610e3a846000610e86565b60e01b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600260205260409020549150505b80610e7c57506001545b92915050565b3390565b60008160040183511015610ec6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061134d565b50016004015190565b60008083601f840112610ee0578182fd5b50813567ffffffffffffffff811115610ef7578182fd5b6020830191508360208083028501011115610f1157600080fd5b9250929050565b600082601f830112610f28578081fd5b813567ffffffffffffffff80821115610f3f578283fd5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501168201018181108382111715610f7d578485fd5b604052828152925082848301602001861015610f9857600080fd5b8260208601602083013760006020848301015250505092915050565b600060208284031215610fc5578081fd5b8135610fd0816115f3565b9392505050565b600060208284031215610fe8578081fd5b8151610fd0816115f3565b60008060408385031215611005578081fd5b8235611010816115f3565b9150602083013567ffffffffffffffff81111561102b578182fd5b61103785828601610f18565b9150509250929050565b60008060008060008060c08789031215611059578182fd5b8651611064816115f3565b80965050602087015194506040870151935060608701519250608087015161108b816115f3565b60a088015190925061109c81611618565b809150509295509295509295565b6000806000806000806000806080898b0312156110c5578182fd5b883567ffffffffffffffff808211156110dc578384fd5b6110e88c838d01610ecf565b909a50985060208b0135915080821115611100578384fd5b61110c8c838d01610ecf565b909850965060408b0135915080821115611124578384fd5b6111308c838d01610ecf565b909650945060608b0135915080821115611148578384fd5b506111558b828c01610ecf565b999c989b5096995094979396929594505050565b60006020828403121561117a578081fd5b8151610fd081611618565b600060208284031215611196578081fd5b5051919050565b6000602082840312156111ae578081fd5b8135610fd081611626565b6000602082840312156111ca578081fd5b813567ffffffffffffffff8111156111e0578182fd5b61036c84828501610f18565b60008060008060808587031215611201578384fd5b843561120c816115f3565b966020860135965060408601359560600135945092505050565b600060208284031215611237578081fd5b5035919050565b60008060408385031215611250578182fd5b82359150602083013561126281611626565b809150509250929050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff8516825260206060818401528451806060850152825b818110156112d7578681018301518582016080015282016112bb565b818111156112e85783608083870101525b5063ffffffff9490941660408401525050601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160160800192915050565b901515815260200190565b90815260200190565b918252602082015260400190565b6020808252601a908201527f4f564d5f4d53475f5750523a206f7574206f6620626f756e6473000000000000604082015260600190565b6020808252602d908201527f4f564d5f4d53475f5750523a2043616c6c6572206973206e6f74206c314d657360408201527f73656e6765724164647265737300000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4d573a20526f6f742063616e6e6f7420626520636f6e6669726d656400000000604082015260600190565b60208082526028908201527f4f564d5f4d53475f5750523a20496e76616c69642063726f73732d646f6d616960408201527f6e2073656e646572000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4d573a2053656e646572206d75737420626520746865204c3120427269646765604082015260600190565b60208082526037908201527f4d573a20726f6f7448617368657320616e6420746f74616c416d6f756e74732060408201527f6d757374206265207468652073616d65206c656e677468000000000000000000606082015260800190565b6020808252601b908201527f4d573a2053656e646572206d757374206265206120626f6e6465720000000000604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b73ffffffffffffffffffffffffffffffffffffffff8116811461161557600080fd5b50565b801515811461161557600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461161557600080fdfea26469706673582212207a1c1904ce54765ea7ac833201c412245afc40d758bd5940582d7c50cf291a0b64736f6c634300060c0033000000000000000000000000914f986a44acb623a277d6bd17368171fcbe427300000000000000000000000003d7f750777ec48d39d080b020d83eb2cb4e354700000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa1000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000001d4c00

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638e58736f11610097578063b67efb7011610066578063b67efb70146101d9578063c5deebb3146101ec578063d6ae3cd5146101f4578063f2fde38b146101fc57610100565b80638e58736f14610198578063934746a7146101ab57806399178dd8146101b3578063b08324f5146101c657610100565b80635ab2a558116100d35780635ab2a5581461016b578063715018a6146101805780638b034eb8146101885780638da5cb5b1461019057610100565b80631aae9eed14610105578063419cb5501461012e57806356f3f181146101435780635a4846b214610158575b600080fd5b6101186101133660046111ec565b61020f565b604051610125919061132b565b60405180910390f35b61014161013c3660046111b9565b610374565b005b61014b6104c6565b6040516101259190611336565b610141610166366004611226565b6104cc565b610173610544565b604051610125919061126d565b610141610568565b61011861064e565b610173610657565b6101416101a63660046110aa565b610678565b6101736109eb565b6101416101c1366004610ff3565b610a0f565b6101416101d436600461123e565b610bca565b61014b6101e736600461119d565b610c70565b610173610c82565b61014b610ca6565b61014161020a366004610fb4565b610cca565b6000808573ffffffffffffffffffffffffffffffffffffffff1663960a7afa86866040518363ffffffff1660e01b815260040161024d92919061133f565b60206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d9190611185565b90506000808773ffffffffffffffffffffffffffffffffffffffff16635a7e1083846040518263ffffffff1660e01b81526004016102db9190611336565b60c06040518083038186803b1580156102f357600080fd5b505afa158015610307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032b9190611041565b50929550935050504283900390508215801590610346575081155b801561035157508581115b1561036357600194505050505061036c565b60009450505050505b949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000914f986a44acb623a277d6bd17368171fcbe427316146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611507565b60405180910390fd5b60006103f782610e21565b6040517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa11690633dbb202b90610490907f00000000000000000000000003d7f750777ec48d39d080b020d83eb2cb4e3547908690869060040161128e565b600060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050505050565b60015481565b6104d4610e82565b73ffffffffffffffffffffffffffffffffffffffff166104f2610657565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b600155565b7f000000000000000000000000914f986a44acb623a277d6bd17368171fcbe427381565b610570610e82565b73ffffffffffffffffffffffffffffffffffffffff1661058e610657565b73ffffffffffffffffffffffffffffffffffffffff16146105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b6000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60005460ff1681565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517fd5ef75510000000000000000000000000000000000000000000000000000000081527f000000000000000000000000914f986a44acb623a277d6bd17368171fcbe42739073ffffffffffffffffffffffffffffffffffffffff82169063d5ef75519061071790339060040161126d565b60206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107679190611169565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611599565b8784146107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061153c565b60008173ffffffffffffffffffffffffffffffffffffffff1663f3f480d96040518163ffffffff1660e01b815260040160206040518083038186803b15801561081e57600080fd5b505afa158015610832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108569190611185565b905060005b898110156109b6576000610895848d8d8581811061087557fe5b905060200201358a8a8681811061088857fe5b905060200201358661020f565b9050806108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061143e565b8373ffffffffffffffffffffffffffffffffffffffff1663ef6ebe5e7f000000000000000000000000000000000000000000000000000000000000000a8e8e8681811061091757fe5b905060200201358d8d8781811061092a57fe5b905060200201358c8c8881811061093d57fe5b905060200201358b8b8981811061095057fe5b905060200201356040518663ffffffff1660e01b81526004016109779594939291906115d0565b600060405180830381600087803b15801561099157600080fd5b505af11580156109a5573d6000803e3d6000fd5b50506001909301925061085b915050565b5050600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050505050565b7f00000000000000000000000003d7f750777ec48d39d080b020d83eb2cb4e354781565b60005460ff1615610a1f57610bc6565b7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611384565b7f00000000000000000000000003d7f750777ec48d39d080b020d83eb2cb4e354773ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa173ffffffffffffffffffffffffffffffffffffffff16636e296e456040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b5050565b610bd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b7fffffffff0000000000000000000000000000000000000000000000000000000016600090815260026020526040902055565b60026020526000908152604090205481565b7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa181565b7f000000000000000000000000000000000000000000000000000000000000000a81565b610cd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610cf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b73ffffffffffffffffffffffffffffffffffffffff8116610d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906113e1565b6000805460405173ffffffffffffffffffffffffffffffffffffffff8085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000806004835110610e72576000610e3a846000610e86565b60e01b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600260205260409020549150505b80610e7c57506001545b92915050565b3390565b60008160040183511015610ec6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061134d565b50016004015190565b60008083601f840112610ee0578182fd5b50813567ffffffffffffffff811115610ef7578182fd5b6020830191508360208083028501011115610f1157600080fd5b9250929050565b600082601f830112610f28578081fd5b813567ffffffffffffffff80821115610f3f578283fd5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501168201018181108382111715610f7d578485fd5b604052828152925082848301602001861015610f9857600080fd5b8260208601602083013760006020848301015250505092915050565b600060208284031215610fc5578081fd5b8135610fd0816115f3565b9392505050565b600060208284031215610fe8578081fd5b8151610fd0816115f3565b60008060408385031215611005578081fd5b8235611010816115f3565b9150602083013567ffffffffffffffff81111561102b578182fd5b61103785828601610f18565b9150509250929050565b60008060008060008060c08789031215611059578182fd5b8651611064816115f3565b80965050602087015194506040870151935060608701519250608087015161108b816115f3565b60a088015190925061109c81611618565b809150509295509295509295565b6000806000806000806000806080898b0312156110c5578182fd5b883567ffffffffffffffff808211156110dc578384fd5b6110e88c838d01610ecf565b909a50985060208b0135915080821115611100578384fd5b61110c8c838d01610ecf565b909850965060408b0135915080821115611124578384fd5b6111308c838d01610ecf565b909650945060608b0135915080821115611148578384fd5b506111558b828c01610ecf565b999c989b5096995094979396929594505050565b60006020828403121561117a578081fd5b8151610fd081611618565b600060208284031215611196578081fd5b5051919050565b6000602082840312156111ae578081fd5b8135610fd081611626565b6000602082840312156111ca578081fd5b813567ffffffffffffffff8111156111e0578182fd5b61036c84828501610f18565b60008060008060808587031215611201578384fd5b843561120c816115f3565b966020860135965060408601359560600135945092505050565b600060208284031215611237578081fd5b5035919050565b60008060408385031215611250578182fd5b82359150602083013561126281611626565b809150509250929050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff8516825260206060818401528451806060850152825b818110156112d7578681018301518582016080015282016112bb565b818111156112e85783608083870101525b5063ffffffff9490941660408401525050601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160160800192915050565b901515815260200190565b90815260200190565b918252602082015260400190565b6020808252601a908201527f4f564d5f4d53475f5750523a206f7574206f6620626f756e6473000000000000604082015260600190565b6020808252602d908201527f4f564d5f4d53475f5750523a2043616c6c6572206973206e6f74206c314d657360408201527f73656e6765724164647265737300000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4d573a20526f6f742063616e6e6f7420626520636f6e6669726d656400000000604082015260600190565b60208082526028908201527f4f564d5f4d53475f5750523a20496e76616c69642063726f73732d646f6d616960408201527f6e2073656e646572000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4d573a2053656e646572206d75737420626520746865204c3120427269646765604082015260600190565b60208082526037908201527f4d573a20726f6f7448617368657320616e6420746f74616c416d6f756e74732060408201527f6d757374206265207468652073616d65206c656e677468000000000000000000606082015260800190565b6020808252601b908201527f4d573a2053656e646572206d757374206265206120626f6e6465720000000000604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b73ffffffffffffffffffffffffffffffffffffffff8116811461161557600080fd5b50565b801515811461161557600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461161557600080fdfea26469706673582212207a1c1904ce54765ea7ac833201c412245afc40d758bd5940582d7c50cf291a0b64736f6c634300060c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.