ETH Price: $2,584.75 (-2.74%)

Contract

0x0C04046546C46652969Aa9eB4BFB758cFDf1e821
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Strict Multicall196370132024-04-12 4:01:59131 days ago1712894519IN
0x0C040465...cFDf1e821
0 ETH0.0013361410.97864466
Strict Multicall195818922024-04-04 10:45:23138 days ago1712227523IN
0x0C040465...cFDf1e821
0 ETH0.0026580121.34025305
Strict Multicall195244762024-03-27 8:27:47147 days ago1711528067IN
0x0C040465...cFDf1e821
0 ETH0.0031515230.14025939
Strict Multicall195240682024-03-27 7:02:59147 days ago1711522979IN
0x0C040465...cFDf1e821
0 ETH0.0028078222.55791607
Strict Multicall194860282024-03-21 22:33:47152 days ago1711060427IN
0x0C040465...cFDf1e821
0 ETH0.0037612335.93803723
Strict Multicall194790692024-03-20 23:05:11153 days ago1710975911IN
0x0C040465...cFDf1e821
0 ETH0.0046587437.35989391
Strict Multicall194571632024-03-17 21:13:23156 days ago1710710003IN
0x0C040465...cFDf1e821
0 ETH0.0045400236.42189136
Strict Multicall194501442024-03-16 21:32:47157 days ago1710624767IN
0x0C040465...cFDf1e821
0 ETH0.0053896343.38258963
Strict Multicall194220832024-03-12 22:48:35161 days ago1710283715IN
0x0C040465...cFDf1e821
0 ETH0.0062237359.4997574
Strict Multicall194152952024-03-12 0:01:59162 days ago1710201719IN
0x0C040465...cFDf1e821
0 ETH0.0111772260.30467183
Multicall194121282024-03-11 13:22:59162 days ago1710163379IN
0x0C040465...cFDf1e821
0 ETH0.0108028278.2722584
Strict Multicall193721382024-03-05 23:05:35168 days ago1709679935IN
0x0C040465...cFDf1e821
0 ETH0.0116857670.64640283
Strict Multicall193557752024-03-03 16:15:59170 days ago1709482559IN
0x0C040465...cFDf1e821
0 ETH0.0087704270.59660148
Strict Multicall193367462024-03-01 0:28:35173 days ago1709252915IN
0x0C040465...cFDf1e821
0 ETH0.0075585860.65938729
Strict Multicall192995172024-02-24 19:25:59178 days ago1708802759IN
0x0C040465...cFDf1e821
0 ETH0.0035789134.19665665
Strict Multicall192756302024-02-21 11:07:11181 days ago1708513631IN
0x0C040465...cFDf1e821
0 ETH0.0038116930.5725738
Strict Multicall192683572024-02-20 10:35:11182 days ago1708425311IN
0x0C040465...cFDf1e821
0 ETH0.0037551730.84408486
Strict Multicall192613722024-02-19 11:05:47183 days ago1708340747IN
0x0C040465...cFDf1e821
0 ETH0.0054301828.24893646
Strict Multicall192176012024-02-13 7:26:59190 days ago1707809219IN
0x0C040465...cFDf1e821
0 ETH0.0018961916.00623851
Strict Multicall192053142024-02-11 14:07:35191 days ago1707660455IN
0x0C040465...cFDf1e821
0 ETH0.0030684825.91490314
Strict Multicall191959652024-02-10 6:35:35193 days ago1707546935IN
0x0C040465...cFDf1e821
0 ETH0.0055880136.32000078
Strict Multicall191930622024-02-09 20:51:23193 days ago1707511883IN
0x0C040465...cFDf1e821
0 ETH0.0085825555.79647529
Strict Multicall191930322024-02-09 20:45:23193 days ago1707511523IN
0x0C040465...cFDf1e821
0 ETH0.0066101955.80951626
Strict Multicall191593882024-02-05 3:25:23198 days ago1707103523IN
0x0C040465...cFDf1e821
0 ETH0.0010714510.8834315
Strict Multicall191501642024-02-03 20:19:59199 days ago1706991599IN
0x0C040465...cFDf1e821
0 ETH0.0023825415.48929211
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MultiCall

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : MultiCall.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT OR Apache-2.0



import '../interfaces/IZkLink.sol';

contract MultiCall {
    struct WithdrawToL1Info {
        address owner;
        address token;
        uint128 amount;
        uint16 fastWithdrawFeeRate;
        uint32 accountIdOfNonce;
        uint8 subAccountIdOfNonce;
        uint32 nonce;
        uint256 value;
    }

    struct WithdrawPendingBalanceInfo {
        address payable owner;
        uint16 tokenId;
        uint128 amount;
    }

    struct Result {
        bool success;
        bytes returnData;
    }

    event Call(address target, bytes _calldata, bool success, bytes result);

    function multiStaticCall(
        address[] calldata targets,
        bytes[] calldata calls
    ) external view returns (uint256 blockNumber, Result[] memory returnData) {
        blockNumber = block.number;
        returnData = new Result[](calls.length);
        for (uint i = 0; i < targets.length; i++) {
            (bool success, bytes memory ret) = targets[i].staticcall(calls[i]);
            returnData[i] = Result(success, ret);
        }
    }

    function strictMulticall(
        address[] calldata targets,
        bytes[] calldata calls
    ) external {
        require(targets.length == calls.length, 'targets.length != calls.length');

        for (uint i = 0; i < targets.length; i++) {
            (bool success, bytes memory data) = targets[i].call(calls[i]);
            require(success, string(data));
        }
    }

    function multicall(
        address[] calldata targets,
        bytes[] calldata calls
    ) external {
        require(targets.length == calls.length, 'targets.length != calls.length');

        for (uint i = 0; i < targets.length; i++) {
            (bool success, bytes memory data) = targets[i].call(calls[i]);
            emit Call(targets[i], calls[i], success, data);
        }
    }

    function batchWithdrawToL1(
        IZkLink zkLinkInstance,
        WithdrawToL1Info[] calldata _withdrawDatas
    ) external payable {
        for (uint i; i < _withdrawDatas.length; i++) {
            WithdrawToL1Info memory withdrawInfo = _withdrawDatas[i];
            zkLinkInstance.withdrawToL1{value: withdrawInfo.value}(
                withdrawInfo.owner,
                withdrawInfo.token,
                withdrawInfo.amount,
                withdrawInfo.fastWithdrawFeeRate,
                withdrawInfo.accountIdOfNonce,
                withdrawInfo.subAccountIdOfNonce,
                withdrawInfo.nonce
            );
        }
    }

    function batchWithdrawPendingBalance(
        IZkLink zkLinkInstance,
        WithdrawPendingBalanceInfo[] calldata _withdrawDatas
    ) external {
        for (uint i; i < _withdrawDatas.length; i++) {
            WithdrawPendingBalanceInfo memory withdrawInfo = _withdrawDatas[i];
            zkLinkInstance.withdrawPendingBalance(
                withdrawInfo.owner,
                withdrawInfo.tokenId,
                withdrawInfo.amount
            );
        }
    }
}

File 2 of 3 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 3 of 3 : IZkLink.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT OR Apache-2.0



import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/// @title ZkLink interface contract
/// @author zk.link
interface IZkLink {
    /// @notice Return the network governor
    function networkGovernor() external view returns (address);

    /// @notice Deposit ETH to Layer 2 - transfer ether from user into contract, validate it, register deposit
    function depositETH(bytes32 _zkLinkAddress, uint8 _subAccountId) external payable;

    /// @notice Deposit ERC20 token to Layer 2 - transfer ERC20 tokens from user into contract, validate it, register deposit
    function depositERC20(IERC20 _token, uint104 _amount, bytes32 _zkLinkAddress, uint8 _subAccountId, bool _mapping) external;


    /// @notice Receive block confirmation from master chain
    function receiveBlockConfirmation(uint32 blockNumber) external;

    /// @notice Withdraw token to L1 for user by gateway
    /// @param owner User receive token on L1
    /// @param token Token address
    /// @param amount The amount(recovered decimals) of withdraw operation
    /// @param fastWithdrawFeeRate Fast withdraw fee rate taken by acceptor
    /// @param accountIdOfNonce Account that supply nonce, may be different from accountId
    /// @param subAccountIdOfNonce SubAccount that supply nonce
    /// @param nonce SubAccount nonce, used to produce unique accept info
    function withdrawToL1(address owner, address token, uint128 amount, uint16 fastWithdrawFeeRate, uint32 accountIdOfNonce, uint8 subAccountIdOfNonce, uint32 nonce) external payable;

    /// @notice  Withdraws tokens from zkLink contract to the owner
    /// @param _owner Address of the tokens owner
    /// @param _tokenId Token id
    /// @param _amount Amount to withdraw to request.
    /// @return The actual withdrawn amount
    /// @dev NOTE: We will call ERC20.transfer(.., _amount), but if according to internal logic of ERC20 token zkLink contract
    /// balance will be decreased by value more then _amount we will try to subtract this value from user pending balance
    function withdrawPendingBalance(address payable _owner, uint16 _tokenId, uint128 _amount) external returns (uint128);
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"_calldata","type":"bytes"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"},{"indexed":false,"internalType":"bytes","name":"result","type":"bytes"}],"name":"Call","type":"event"},{"inputs":[{"internalType":"contract IZkLink","name":"zkLinkInstance","type":"address"},{"components":[{"internalType":"address payable","name":"owner","type":"address"},{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint128","name":"amount","type":"uint128"}],"internalType":"struct MultiCall.WithdrawPendingBalanceInfo[]","name":"_withdrawDatas","type":"tuple[]"}],"name":"batchWithdrawPendingBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IZkLink","name":"zkLinkInstance","type":"address"},{"components":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint16","name":"fastWithdrawFeeRate","type":"uint16"},{"internalType":"uint32","name":"accountIdOfNonce","type":"uint32"},{"internalType":"uint8","name":"subAccountIdOfNonce","type":"uint8"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct MultiCall.WithdrawToL1Info[]","name":"_withdrawDatas","type":"tuple[]"}],"name":"batchWithdrawToL1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"bytes[]","name":"calls","type":"bytes[]"}],"name":"multiStaticCall","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct MultiCall.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"bytes[]","name":"calls","type":"bytes[]"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"bytes[]","name":"calls","type":"bytes[]"}],"name":"strictMulticall","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60808060405234610016576109b9908161001c8239f35b600080fdfe6080604052600436101561001257600080fd5b60003560e01c80632b8e9249146106345780633b32eaae1461043457806363fb0b96146103355780639c5367dc146101d157639ecefae31461005357600080fd5b346101a45760403660031901126101a45761006c61074e565b602480359167ffffffffffffffff918284116101a457366023850112156101a45783600401358381116101a4576060903683838302880101116101a457946001600160a01b039384169060005b8781106100c257005b83810282018460231982360301126101a457604051908582018281108a8211176101bc576040528681013591888316908184036101a457604093815260449161010c838501610963565b9360209383868680960152610124606480940161094f565b978891015261ffff604051968794631792c03f60e11b86526004860152168c8401526001600160801b03809716908301528160008a5af180156101b057610177575b505050610172906107fa565b6100b9565b81813d83116101a9575b61018b81836107c0565b810103126101a45751908116036101a457388080610166565b600080fd5b503d610181565b6040513d6000823e3d90fd5b87634e487b7160e01b60005260416004526000fd5b346101a4576101df36610703565b6101eb819493946107e2565b936101f960405195866107c0565b818552601f19610208836107e2565b0160005b81811061031057505060005b81811061029a578560405160408101914382526020604081840152815180945260608301938160608260051b8601019301916000955b82871061025b5785850386f35b90919293828061028a600193605f198a82030186526040838a5180511515845201519181858201520190610764565b960192019601959291909261024e565b806000806102b46102af61030b95878b61081f565b610845565b6102bf84888a610859565b90816040519283928337810184815203915afa6102da61089b565b604051916102e7836107a4565b1515825260208201526102fa82896108db565b5261030581886108db565b506107fa565b610218565b60209060405161031f816107a4565b6000815282606081830152828a0101520161020c565b346101a45761034336610703565b9290916103518482146108ef565b60005b81811061035d57005b807fab62a3ffa5261e813f1520909db385792f512ab049d5b4a7d522ac63c65713636000806103936102af61042f96888a61081f565b8161039f868c8c610859565b9190826040519384928337810182815203925af16103bb61089b565b6104276103cc6102af86898b61081f565b916103d8868c8c610859565b9460405195869560018060a01b031686528060808060208901528701528060a0938488013760008682018401529015156040860152601f01601f19168401848103820160608601520190610764565b0390a16107fa565b610354565b60403660031901126101a45761044861074e565b6024359067ffffffffffffffff8083116101a457366023840112156101a4578260040135918183116101a45760089336602485871b830101116101a45760005b84811061049157005b610100908160231982891b8501360301126101a4576040519182018281108682111761061e576040526104ca602482891b85010161093b565b918281526104de6044838a1b86010161093b565b908160208201526104f56064848b1b87010161094f565b9182604083015261050c6084858c1b880101610963565b80606084015261052260a4868d1b890101610972565b9384608085015260c4868d1b890101359160ff831683036101a4578460e06101048f9761055c60e48e8960a08f950152838c1b0101610972565b60c08501819052981b8c0101359101526001600160a01b038a163b156101a45760405163d311461760e01b81526001600160a01b03988916600482015293881660248501526001600160801b0391909116604484015261ffff16606483015263ffffffff938416608483015260ff1660a4820152911660c482015291600090839060e4908290858c1b880161010401359089165af180156101b05761060b575b61060691506107fa565b610488565b84821161061e57610606916040526105fc565b634e487b7160e01b600052604160045260246000fd5b346101a45761064236610703565b9291906106508483146108ef565b60005b82811061065c57005b60008061066d6102af84878961081f565b81610679858a88610859565b9190826040519384928337810182815203925af161069561089b565b90156106aa57506106a5906107fa565b610653565b60405162461bcd60e51b8152602060048201529081906106ce906024830190610764565b0390fd5b9181601f840112156101a45782359167ffffffffffffffff83116101a4576020808501948460051b0101116101a457565b60406003198201126101a45767ffffffffffffffff916004358381116101a45782610730916004016106d2565b939093926024359182116101a45761074a916004016106d2565b9091565b600435906001600160a01b03821682036101a457565b919082519283825260005b848110610790575050826000602080949584010152601f8019910116010190565b60208183018101518483018201520161076f565b6040810190811067ffffffffffffffff82111761061e57604052565b90601f8019910116810190811067ffffffffffffffff82111761061e57604052565b67ffffffffffffffff811161061e5760051b60200190565b60001981146108095760010190565b634e487b7160e01b600052601160045260246000fd5b919081101561082f5760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b03811681036101a45790565b919081101561082f5760051b81013590601e19813603018212156101a457019081359167ffffffffffffffff83116101a45760200182360381136101a4579190565b3d156108d6573d9067ffffffffffffffff821161061e57604051916108ca601f8201601f1916602001846107c0565b82523d6000602084013e565b606090565b805182101561082f5760209160051b010190565b156108f657565b60405162461bcd60e51b815260206004820152601e60248201527f746172676574732e6c656e67746820213d2063616c6c732e6c656e67746800006044820152606490fd5b35906001600160a01b03821682036101a457565b35906001600160801b03821682036101a457565b359061ffff821682036101a457565b359063ffffffff821682036101a45756fea264697066735822122044811fd7f4a8a3b59d6c1cd34528ba588694de1cd1de9f2baba191ce79d655c164736f6c63430008120033

Deployed Bytecode

0x6080604052600436101561001257600080fd5b60003560e01c80632b8e9249146106345780633b32eaae1461043457806363fb0b96146103355780639c5367dc146101d157639ecefae31461005357600080fd5b346101a45760403660031901126101a45761006c61074e565b602480359167ffffffffffffffff918284116101a457366023850112156101a45783600401358381116101a4576060903683838302880101116101a457946001600160a01b039384169060005b8781106100c257005b83810282018460231982360301126101a457604051908582018281108a8211176101bc576040528681013591888316908184036101a457604093815260449161010c838501610963565b9360209383868680960152610124606480940161094f565b978891015261ffff604051968794631792c03f60e11b86526004860152168c8401526001600160801b03809716908301528160008a5af180156101b057610177575b505050610172906107fa565b6100b9565b81813d83116101a9575b61018b81836107c0565b810103126101a45751908116036101a457388080610166565b600080fd5b503d610181565b6040513d6000823e3d90fd5b87634e487b7160e01b60005260416004526000fd5b346101a4576101df36610703565b6101eb819493946107e2565b936101f960405195866107c0565b818552601f19610208836107e2565b0160005b81811061031057505060005b81811061029a578560405160408101914382526020604081840152815180945260608301938160608260051b8601019301916000955b82871061025b5785850386f35b90919293828061028a600193605f198a82030186526040838a5180511515845201519181858201520190610764565b960192019601959291909261024e565b806000806102b46102af61030b95878b61081f565b610845565b6102bf84888a610859565b90816040519283928337810184815203915afa6102da61089b565b604051916102e7836107a4565b1515825260208201526102fa82896108db565b5261030581886108db565b506107fa565b610218565b60209060405161031f816107a4565b6000815282606081830152828a0101520161020c565b346101a45761034336610703565b9290916103518482146108ef565b60005b81811061035d57005b807fab62a3ffa5261e813f1520909db385792f512ab049d5b4a7d522ac63c65713636000806103936102af61042f96888a61081f565b8161039f868c8c610859565b9190826040519384928337810182815203925af16103bb61089b565b6104276103cc6102af86898b61081f565b916103d8868c8c610859565b9460405195869560018060a01b031686528060808060208901528701528060a0938488013760008682018401529015156040860152601f01601f19168401848103820160608601520190610764565b0390a16107fa565b610354565b60403660031901126101a45761044861074e565b6024359067ffffffffffffffff8083116101a457366023840112156101a4578260040135918183116101a45760089336602485871b830101116101a45760005b84811061049157005b610100908160231982891b8501360301126101a4576040519182018281108682111761061e576040526104ca602482891b85010161093b565b918281526104de6044838a1b86010161093b565b908160208201526104f56064848b1b87010161094f565b9182604083015261050c6084858c1b880101610963565b80606084015261052260a4868d1b890101610972565b9384608085015260c4868d1b890101359160ff831683036101a4578460e06101048f9761055c60e48e8960a08f950152838c1b0101610972565b60c08501819052981b8c0101359101526001600160a01b038a163b156101a45760405163d311461760e01b81526001600160a01b03988916600482015293881660248501526001600160801b0391909116604484015261ffff16606483015263ffffffff938416608483015260ff1660a4820152911660c482015291600090839060e4908290858c1b880161010401359089165af180156101b05761060b575b61060691506107fa565b610488565b84821161061e57610606916040526105fc565b634e487b7160e01b600052604160045260246000fd5b346101a45761064236610703565b9291906106508483146108ef565b60005b82811061065c57005b60008061066d6102af84878961081f565b81610679858a88610859565b9190826040519384928337810182815203925af161069561089b565b90156106aa57506106a5906107fa565b610653565b60405162461bcd60e51b8152602060048201529081906106ce906024830190610764565b0390fd5b9181601f840112156101a45782359167ffffffffffffffff83116101a4576020808501948460051b0101116101a457565b60406003198201126101a45767ffffffffffffffff916004358381116101a45782610730916004016106d2565b939093926024359182116101a45761074a916004016106d2565b9091565b600435906001600160a01b03821682036101a457565b919082519283825260005b848110610790575050826000602080949584010152601f8019910116010190565b60208183018101518483018201520161076f565b6040810190811067ffffffffffffffff82111761061e57604052565b90601f8019910116810190811067ffffffffffffffff82111761061e57604052565b67ffffffffffffffff811161061e5760051b60200190565b60001981146108095760010190565b634e487b7160e01b600052601160045260246000fd5b919081101561082f5760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b03811681036101a45790565b919081101561082f5760051b81013590601e19813603018212156101a457019081359167ffffffffffffffff83116101a45760200182360381136101a4579190565b3d156108d6573d9067ffffffffffffffff821161061e57604051916108ca601f8201601f1916602001846107c0565b82523d6000602084013e565b606090565b805182101561082f5760209160051b010190565b156108f657565b60405162461bcd60e51b815260206004820152601e60248201527f746172676574732e6c656e67746820213d2063616c6c732e6c656e67746800006044820152606490fd5b35906001600160a01b03821682036101a457565b35906001600160801b03821682036101a457565b359061ffff821682036101a457565b359063ffffffff821682036101a45756fea264697066735822122044811fd7f4a8a3b59d6c1cd34528ba588694de1cd1de9f2baba191ce79d655c164736f6c63430008120033

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.