ETH Price: $2,457.03 (+2.58%)

Contract

0xa45DF1A388049fb8d76E72D350d24E2C3F7aEBd1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Confirm Roots206807962024-09-05 0:26:4714 mins ago1725496007IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000184722.19263259
Confirm Roots206154932024-08-26 21:36:239 days ago1724708183IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000118371.40512786
Confirm Roots206006332024-08-24 19:46:1111 days ago1724528771IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000076020.90225236
Confirm Roots205488802024-08-17 14:15:4718 days ago1723904147IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000104211.23694794
Confirm Roots205270552024-08-14 13:05:3521 days ago1723640735IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000268533.18696374
Confirm Roots204927692024-08-09 18:15:2326 days ago1723227323IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000173792.06258754
Confirm Roots204745372024-08-07 5:15:1128 days ago1723007711IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.00013281.57639181
Confirm Roots204378072024-08-02 2:14:4733 days ago1722564887IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000158251.87846394
Confirm Roots203965072024-07-27 7:52:2339 days ago1722066743IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000112661.33728761
Confirm Roots203907442024-07-26 12:32:1140 days ago1721997131IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.00019712.33930364
Confirm Roots203554762024-07-21 14:21:4745 days ago1721571707IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000242112.87336877
Confirm Roots203454692024-07-20 4:51:3546 days ago1721451095IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000189212.24592891
Confirm Roots202852222024-07-11 19:01:1155 days ago1720724471IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.00038584.58003866
Confirm Roots202688972024-07-09 12:20:5957 days ago1720527659IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000219942.61110722
Confirm Roots202458412024-07-06 7:00:4760 days ago1720249247IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000157411.86842641
Confirm Roots202367332024-07-05 0:30:3562 days ago1720139435IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.00065227.74035443
Confirm Roots202208272024-07-02 19:10:2364 days ago1719947423IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000324383.85036695
Confirm Roots202021222024-06-30 4:30:1166 days ago1719721811IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000128361.52347835
Confirm Roots201723372024-06-26 0:39:4771 days ago1719362387IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000200492.3798291
Confirm Roots201424972024-06-21 20:31:1175 days ago1719001871IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000276253.27865563
Confirm Roots201417022024-06-21 17:50:5975 days ago1718992259IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.0011160113.2467242
Confirm Roots201280352024-06-19 20:00:4777 days ago1718827247IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.0008901710.56610216
Confirm Roots201265412024-06-19 15:00:3577 days ago1718809235IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.000806869.57729138
Confirm Roots200711312024-06-11 21:00:1185 days ago1718139611IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.0010263312.18233497
Confirm Roots200677982024-06-11 9:49:5985 days ago1718099399IN
0xa45DF1A3...C3F7aEBd1
0 ETH0.0010371612.31088436
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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
File 1 of 7 : OptimismMessengerWrapper.sol
// 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;
    }
}

File 2 of 7 : Ownable.sol
// 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;
    }
}

File 3 of 7 : Context.sol
// 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;
    }
}

File 4 of 7 : IMessengerWrapper.sol
// 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;
}

File 5 of 7 : iOVM_BaseCrossDomainMessenger.sol
// 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 {}

File 7 of 7 : MessengerWrapper.sol
// 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

[{"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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638e58736f11610097578063b67efb7011610066578063b67efb70146101d9578063c5deebb3146101ec578063d6ae3cd5146101f4578063f2fde38b146101fc57610100565b80638e58736f14610198578063934746a7146101ab57806399178dd8146101b3578063b08324f5146101c657610100565b80635ab2a558116100d35780635ab2a5581461016b578063715018a6146101805780638b034eb8146101885780638da5cb5b1461019057610100565b80631aae9eed14610105578063419cb5501461012e57806356f3f181146101435780635a4846b214610158575b600080fd5b6101186101133660046111ec565b61020f565b604051610125919061132b565b60405180910390f35b61014161013c3660046111b9565b610374565b005b61014b6104c6565b6040516101259190611336565b610141610166366004611226565b6104cc565b610173610544565b604051610125919061126d565b610141610568565b61011861064e565b610173610657565b6101416101a63660046110aa565b610678565b6101736109eb565b6101416101c1366004610ff3565b610a0f565b6101416101d436600461123e565b610bca565b61014b6101e736600461119d565b610c70565b610173610c82565b61014b610ca6565b61014161020a366004610fb4565b610cca565b6000808573ffffffffffffffffffffffffffffffffffffffff1663960a7afa86866040518363ffffffff1660e01b815260040161024d92919061133f565b60206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d9190611185565b90506000808773ffffffffffffffffffffffffffffffffffffffff16635a7e1083846040518263ffffffff1660e01b81526004016102db9190611336565b60c06040518083038186803b1580156102f357600080fd5b505afa158015610307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032b9190611041565b50929550935050504283900390508215801590610346575081155b801561035157508581115b1561036357600194505050505061036c565b60009450505050505b949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f16146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611507565b60405180910390fd5b60006103f782610e21565b6040517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa11690633dbb202b90610490907f00000000000000000000000083f6244bd87662118d96d9a6d44f09dfff14b30e908690869060040161128e565b600060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050505050565b60015481565b6104d4610e82565b73ffffffffffffffffffffffffffffffffffffffff166104f2610657565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b600155565b7f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f81565b610570610e82565b73ffffffffffffffffffffffffffffffffffffffff1661058e610657565b73ffffffffffffffffffffffffffffffffffffffff16146105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b6000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60005460ff1681565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517fd5ef75510000000000000000000000000000000000000000000000000000000081527f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f9073ffffffffffffffffffffffffffffffffffffffff82169063d5ef75519061071790339060040161126d565b60206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107679190611169565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611599565b8784146107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061153c565b60008173ffffffffffffffffffffffffffffffffffffffff1663f3f480d96040518163ffffffff1660e01b815260040160206040518083038186803b15801561081e57600080fd5b505afa158015610832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108569190611185565b905060005b898110156109b6576000610895848d8d8581811061087557fe5b905060200201358a8a8681811061088857fe5b905060200201358661020f565b9050806108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061143e565b8373ffffffffffffffffffffffffffffffffffffffff1663ef6ebe5e7f000000000000000000000000000000000000000000000000000000000000000a8e8e8681811061091757fe5b905060200201358d8d8781811061092a57fe5b905060200201358c8c8881811061093d57fe5b905060200201358b8b8981811061095057fe5b905060200201356040518663ffffffff1660e01b81526004016109779594939291906115d0565b600060405180830381600087803b15801561099157600080fd5b505af11580156109a5573d6000803e3d6000fd5b50506001909301925061085b915050565b5050600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050505050565b7f00000000000000000000000083f6244bd87662118d96d9a6d44f09dfff14b30e81565b60005460ff1615610a1f57610bc6565b7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611384565b7f00000000000000000000000083f6244bd87662118d96d9a6d44f09dfff14b30e73ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa173ffffffffffffffffffffffffffffffffffffffff16636e296e456040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b5050565b610bd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b7fffffffff0000000000000000000000000000000000000000000000000000000016600090815260026020526040902055565b60026020526000908152604090205481565b7f00000000000000000000000025ace71c97b33cc4729cf772ae268934f7ab5fa181565b7f000000000000000000000000000000000000000000000000000000000000000a81565b610cd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610cf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114d2565b73ffffffffffffffffffffffffffffffffffffffff8116610d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906113e1565b6000805460405173ffffffffffffffffffffffffffffffffffffffff8085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000806004835110610e72576000610e3a846000610e86565b60e01b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600260205260409020549150505b80610e7c57506001545b92915050565b3390565b60008160040183511015610ec6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061134d565b50016004015190565b60008083601f840112610ee0578182fd5b50813567ffffffffffffffff811115610ef7578182fd5b6020830191508360208083028501011115610f1157600080fd5b9250929050565b600082601f830112610f28578081fd5b813567ffffffffffffffff80821115610f3f578283fd5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501168201018181108382111715610f7d578485fd5b604052828152925082848301602001861015610f9857600080fd5b8260208601602083013760006020848301015250505092915050565b600060208284031215610fc5578081fd5b8135610fd0816115f3565b9392505050565b600060208284031215610fe8578081fd5b8151610fd0816115f3565b60008060408385031215611005578081fd5b8235611010816115f3565b9150602083013567ffffffffffffffff81111561102b578182fd5b61103785828601610f18565b9150509250929050565b60008060008060008060c08789031215611059578182fd5b8651611064816115f3565b80965050602087015194506040870151935060608701519250608087015161108b816115f3565b60a088015190925061109c81611618565b809150509295509295509295565b6000806000806000806000806080898b0312156110c5578182fd5b883567ffffffffffffffff808211156110dc578384fd5b6110e88c838d01610ecf565b909a50985060208b0135915080821115611100578384fd5b61110c8c838d01610ecf565b909850965060408b0135915080821115611124578384fd5b6111308c838d01610ecf565b909650945060608b0135915080821115611148578384fd5b506111558b828c01610ecf565b999c989b5096995094979396929594505050565b60006020828403121561117a578081fd5b8151610fd081611618565b600060208284031215611196578081fd5b5051919050565b6000602082840312156111ae578081fd5b8135610fd081611626565b6000602082840312156111ca578081fd5b813567ffffffffffffffff8111156111e0578182fd5b61036c84828501610f18565b60008060008060808587031215611201578384fd5b843561120c816115f3565b966020860135965060408601359560600135945092505050565b600060208284031215611237578081fd5b5035919050565b60008060408385031215611250578182fd5b82359150602083013561126281611626565b809150509250929050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff8516825260206060818401528451806060850152825b818110156112d7578681018301518582016080015282016112bb565b818111156112e85783608083870101525b5063ffffffff9490941660408401525050601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160160800192915050565b901515815260200190565b90815260200190565b918252602082015260400190565b6020808252601a908201527f4f564d5f4d53475f5750523a206f7574206f6620626f756e6473000000000000604082015260600190565b6020808252602d908201527f4f564d5f4d53475f5750523a2043616c6c6572206973206e6f74206c314d657360408201527f73656e6765724164647265737300000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4d573a20526f6f742063616e6e6f7420626520636f6e6669726d656400000000604082015260600190565b60208082526028908201527f4f564d5f4d53475f5750523a20496e76616c69642063726f73732d646f6d616960408201527f6e2073656e646572000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4d573a2053656e646572206d75737420626520746865204c3120427269646765604082015260600190565b60208082526037908201527f4d573a20726f6f7448617368657320616e6420746f74616c416d6f756e74732060408201527f6d757374206265207468652073616d65206c656e677468000000000000000000606082015260800190565b6020808252601b908201527f4d573a2053656e646572206d757374206265206120626f6e6465720000000000604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b73ffffffffffffffffffffffffffffffffffffffff8116811461161557600080fd5b50565b801515811461161557600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461161557600080fdfea26469706673582212207a1c1904ce54765ea7ac833201c412245afc40d758bd5940582d7c50cf291a0b64736f6c634300060c0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.