ETH Price: $1,588.65 (+0.14%)
Gas: 22 Gwei
 
Transaction Hash
Method
Block
From
To
Value
Proxy_change Adm...179367272023-08-17 19:49:4738 days 23 hrs ago1692301787IN
Lido: Withdrawal Vault
0 ETH0.0007276630.30665332
Initialize179367232023-08-17 19:48:5938 days 23 hrs ago1692301739IN
Lido: Withdrawal Vault
0 ETH0.0007103330.8842598
Proxy_change Adm...179367042023-08-17 19:45:1138 days 23 hrs ago1692301511IN
Lido: Withdrawal Vault
0 ETH0.0006080525.32512768
Transfer170646212023-04-17 6:06:23161 days 13 hrs ago1681711583IN
Lido: Withdrawal Vault
0.00007 ETH0.0005677427.0356209
0x60806040128124802021-07-12 12:36:41805 days 7 hrs ago1626093401IN
 Create: WithdrawalsManagerProxy
0 ETH0.0179185230

Latest 25 internal transactions (View All)

Advanced mode:
Advanced Filter
Parent Txn Hash Block From To Value
182127862023-09-25 12:25:357 hrs 12 mins ago1695644735
Lido: Withdrawal Vault
1,276.46609638 ETH
182056292023-09-24 12:22:591 day 7 hrs ago1695558179
Lido: Withdrawal Vault
1,276.96251729 ETH
181985182023-09-23 12:27:352 days 7 hrs ago1695472055
Lido: Withdrawal Vault
556.56585141 ETH
181913752023-09-22 12:26:593 days 7 hrs ago1695385619
Lido: Withdrawal Vault
607.42340124 ETH
181842312023-09-21 12:24:354 days 7 hrs ago1695299075
Lido: Withdrawal Vault
773.42529996 ETH
181770712023-09-20 12:22:235 days 7 hrs ago1695212543
Lido: Withdrawal Vault
721.25496161 ETH
181699262023-09-19 12:22:236 days 7 hrs ago1695126143
Lido: Withdrawal Vault
1,312.09925445 ETH
181627942023-09-18 12:21:597 days 7 hrs ago1695039719
Lido: Withdrawal Vault
1,642.61403037 ETH
181557272023-09-17 12:23:238 days 7 hrs ago1694953403
Lido: Withdrawal Vault
2,060.02568164 ETH
181486932023-09-16 12:25:599 days 7 hrs ago1694867159
Lido: Withdrawal Vault
647.54952549 ETH
181415962023-09-15 12:23:2310 days 7 hrs ago1694780603
Lido: Withdrawal Vault
480.55033359 ETH
181345002023-09-14 12:24:1111 days 7 hrs ago1694694251
Lido: Withdrawal Vault
740.4215616 ETH
181273582023-09-13 12:23:2312 days 7 hrs ago1694607803
Lido: Withdrawal Vault
954.00430507 ETH
181202332023-09-12 12:24:3513 days 7 hrs ago1694521475
Lido: Withdrawal Vault
1,667.35605755 ETH
181130822023-09-11 12:22:1114 days 7 hrs ago1694434931
Lido: Withdrawal Vault
12,532.60659254 ETH
181059452023-09-10 12:22:2315 days 7 hrs ago1694348543
Lido: Withdrawal Vault
460.29955439 ETH
180988012023-09-09 12:21:5916 days 7 hrs ago1694262119
Lido: Withdrawal Vault
588.52421562 ETH
180916792023-09-08 12:24:3517 days 7 hrs ago1694175875
Lido: Withdrawal Vault
458.34253127 ETH
180845222023-09-07 12:22:4718 days 7 hrs ago1694089367
Lido: Withdrawal Vault
778.95502052 ETH
180774002023-09-06 12:27:5919 days 7 hrs ago1694003279
Lido: Withdrawal Vault
1,309.93897737 ETH
180702462023-09-05 12:21:5920 days 7 hrs ago1693916519
Lido: Withdrawal Vault
835.69928156 ETH
180630852023-09-04 12:22:1121 days 7 hrs ago1693830131
Lido: Withdrawal Vault
323.73093084 ETH
180559382023-09-03 12:21:5922 days 7 hrs ago1693743719
Lido: Withdrawal Vault
585.21178411 ETH
180488062023-09-02 12:23:3523 days 7 hrs ago1693657415
Lido: Withdrawal Vault
515.91289207 ETH
180416772023-09-01 12:23:1124 days 7 hrs ago1693570991
Lido: Withdrawal Vault
749.44705758 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WithdrawalsManagerProxy

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-07-12
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;


////////////////////////////////////////////////////////////////////////////////////////////////////
/// PART: WithdrawalsManagerStub.sol ///////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev An initial stub implementation for the withdrawals contract proxy.
 */
contract WithdrawalsManagerStub {
    /**
     * @dev Receives Ether.
     *
     * Currently this is intentionally not supported since Ethereum 2.0 withdrawals specification
     * might change before withdrawals are enabled. This contract sits behind a proxy that can be
     * upgraded to a new implementation contract collectively by LDO holders by performing a vote.
     *
     * When Ethereum 2.0 withdrawals specification is finalized, Lido DAO will prepare the new
     * implementation contract and initiate a vote among LDO holders for upgrading the proxy to
     * the new implementation.
     */
    receive() external payable {
        revert("not supported");
    }
}

////////////////////////////////////////////////////////////////////////////////////////////////////
/// PART: OpenZeppelin/[email protected]/contracts/utils/Address.sol ////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


////////////////////////////////////////////////////////////////////////////////////////////////////
/// PART: OpenZeppelin/[email protected]/contracts/proxy/Proxy.sol //////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback () external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive () external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {
    }
}


////////////////////////////////////////////////////////////////////////////////////////////////////
/// PART: OpenZeppelin/[email protected]/contracts/proxy/ERC1967/ERC1967Proxy.sol ///////
////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
 * implementation address that can be changed. This address is stored in storage in the location specified by
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
 * implementation behind the proxy.
 *
 * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see
 * {TransparentUpgradeableProxy}.
 */
contract ERC1967Proxy is Proxy {
    /**
     * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
     *
     * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
     * function call, and allows initializating the storage of the proxy like a Solidity constructor.
     */
    constructor(address _logic, bytes memory _data) payable {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        _setImplementation(_logic);
        if(_data.length > 0) {
            Address.functionDelegateCall(_logic, _data);
        }
    }

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view virtual override returns (address impl) {
        bytes32 slot = _IMPLEMENTATION_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            impl := sload(slot)
        }
    }

    /**
     * @dev Upgrades the proxy to a new implementation.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal virtual {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "ERC1967Proxy: new implementation is not a contract");

        bytes32 slot = _IMPLEMENTATION_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, newImplementation)
        }
    }
}


////////////////////////////////////////////////////////////////////////////////////////////////////
/// PART: WithdrawalsManagerProxy.sol //////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev Copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/utils/StorageSlot.sol
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }
}

/**
 * @dev A proxy for Lido Ethereum 2.0 withdrawals manager contract.
 *
 * Though the Beacon chain already supports setting withdrawal credentials pointing to a smart
 * contract, the withdrawals specification is not yet final and might change before withdrawals
 * are enabled in the Merge network. This means that Lido cannot deploy the final implementation
 * of the withdrawals manager contract yet. At the same time, it's desirable to have withdrawal
 * credentials pointing to a smart contract since this would avoid the need to migrate a lot of
 * validators to new withdrawal credentials once withdrawals are enabled.
 *
 * To solve this, Lido uses an upgradeable proxy controlled by the DAO. Initially, it uses a stub
 * implementation contract, WithdrawalsManagerStub, that cannot receive Ether. The implementation
 * can only be changed by LDO holders collectively by performing a DAO vote. Lido will set validator
 * withdrawal credentials pointing to this proxy contract.
 *
 * When Ethereum 2.0 withdrawals specification is finalized, Lido DAO will prepare the new
 * implementation contract and initiate a vote among LDO holders for upgrading this proxy to the
 * new implementation.
 *
 * Once withdrawals are enabled in Ethereum 2.0, Lido DAO members will start a vote among LDO
 * holders for disabling the upgradeability forever and locking the implementation by changing
 * proxy admin from the DAO Voting contract to a zero address (which is an irreversible action).
 */
contract WithdrawalsManagerProxy is ERC1967Proxy {
    /**
     * @dev The address of Lido DAO Voting contract.
     */
    address internal constant LIDO_VOTING = 0x2e59A20f205bB85a89C53f1936454680651E618e;

    /**
     * @dev Storage slot with the admin of the contract.
     *
     * Equals `bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)`.
     */
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Initializes the upgradeable proxy with the initial stub implementation.
     */
    constructor() ERC1967Proxy(address(new WithdrawalsManagerStub()), new bytes(0)) {
        _setAdmin(LIDO_VOTING);
    }

    /**
     * @return Returns the current implementation address.
     */
    function implementation() external view returns (address) {
        return _implementation();
    }

    /**
     * @dev Upgrades the proxy to a new implementation, optionally performing an additional
     * setup call.
     *
     * Can only be called by the proxy admin until the proxy is ossified.
     * Cannot be called after the proxy is ossified.
     *
     * Emits an {Upgraded} event.
     *
     * @param setupCalldata Data for the setup call. The call is skipped if data is empty.
     */
    function proxy_upgradeTo(address newImplementation, bytes memory setupCalldata) external {
        address admin = _getAdmin();
        require(admin != address(0), "proxy: ossified");
        require(msg.sender == admin, "proxy: unauthorized");

        _upgradeTo(newImplementation);

        if (setupCalldata.length > 0) {
            Address.functionDelegateCall(newImplementation, setupCalldata, "proxy: setup failed");
        }
    }

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Returns the current admin of the proxy.
     */
    function proxy_getAdmin() external view returns (address) {
        return _getAdmin();
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function proxy_changeAdmin(address newAdmin) external {
        address admin = _getAdmin();
        require(msg.sender == admin, "proxy: unauthorized");
        emit AdminChanged(admin, newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev Returns whether the implementation is locked forever.
     */
    function proxy_getIsOssified() external view returns (bool) {
        return _getAdmin() == address(0);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"proxy_changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxy_getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxy_getIsOssified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"setupCalldata","type":"bytes"}],"name":"proxy_upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162000020906200033e565b604051809103906000f0801580156200003d573d6000803e3d6000fd5b506040805160008152602081019091526200007a60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd6200039e565b60008051602062000c4983398151915214620000a657634e487b7160e01b600052600160045260246000fd5b620000b182620000fa565b805115620000d257620000d082826200019060201b620003651760201c565b505b50620000f49050732e59a20f205bb85a89c53f1936454680651e618e620001bf565b620003f5565b62000110816200021a60201b620003911760201c565b6200017d5760405162461bcd60e51b815260206004820152603260248201527f4552433139363750726f78793a206e657720696d706c656d656e746174696f6e604482015271081a5cc81b9bdd08184818dbdb9d1c9858dd60721b60648201526084015b60405180910390fd5b60008051602062000c4983398151915255565b6060620001b8838360405180606001604052806027815260200162000c696027913962000220565b9392505050565b80620001f97fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b620002fd60201b620003971760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b3b151590565b6060833b620002815760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000174565b600080856001600160a01b0316856040516200029e91906200034b565b600060405180830381855af49150503d8060008114620002db576040519150601f19603f3d011682016040523d82523d6000602084013e620002e0565b606091505b509092509050620002f382828662000300565b9695505050505050565b90565b6060831562000311575081620001b8565b825115620003225782518084602001fd5b8160405162461bcd60e51b815260040162000174919062000369565b609d8062000bac83390190565b600082516200035f818460208701620003c2565b9190910192915050565b60208152600082518060208401526200038a816040850160208701620003c2565b601f01601f19169190910160400192915050565b600082821015620003bd57634e487b7160e01b81526011600452602481fd5b500390565b60005b83811015620003df578181015183820152602001620003c5565b83811115620003ef576000848401525b50505050565b6107a780620004056000396000f3fe60806040526004361061004e5760003560e01c8063019fa4f1146100655780632e1997b6146100855780635c60da1b146100af578063621f6309146100dc578063abe5e587146100fc5761005d565b3661005d5761005b610111565b005b61005b610111565b34801561007157600080fd5b5061005b6100803660046105e2565b610143565b34801561009157600080fd5b5061009a610223565b60405190151581526020015b60405180910390f35b3480156100bb57600080fd5b506100c461023d565b6040516001600160a01b0390911681526020016100a6565b3480156100e857600080fd5b5061005b6100f73660046105fc565b61026c565b34801561010857600080fd5b506100c461035b565b61014161013c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b61039a565b565b600061014d6103be565b9050336001600160a01b038216146101a25760405162461bcd60e51b81526020600482015260136024820152721c1c9bde1e4e881d5b985d5d1a1bdc9a5e9959606a1b60448201526064015b60405180910390fd5b604080516001600160a01b038084168252841660208201527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f910160405180910390a17fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610380546001600160a01b0319166001600160a01b0384161790555050565b60008061022e6103be565b6001600160a01b031614905090565b60006102677f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b60006102766103be565b90506001600160a01b0381166102c05760405162461bcd60e51b815260206004820152600f60248201526e1c1c9bde1e4e881bdcdcda599a5959608a1b6044820152606401610199565b336001600160a01b0382161461030e5760405162461bcd60e51b81526020600482015260136024820152721c1c9bde1e4e881d5b985d5d1a1bdc9a5e9959606a1b6044820152606401610199565b610317836103ec565b815115610356576103548383604051806040016040528060138152602001721c1c9bde1e4e881cd95d1d5c0819985a5b1959606a1b81525061042c565b505b505050565b60006102676103be565b606061038a838360405180606001604052806027815260200161074b6027913961042c565b9392505050565b3b151590565b90565b3660008037600080366000845af43d6000803e8080156103b9573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b031690565b6103f581610500565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060833b61048b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610199565b600080856001600160a01b0316856040516104a691906106b9565b600060405180830381855af49150503d80600081146104e1576040519150601f19603f3d011682016040523d82523d6000602084013e6104e6565b606091505b50915091506104f682828661058d565b9695505050505050565b803b6105695760405162461bcd60e51b815260206004820152603260248201527f4552433139363750726f78793a206e657720696d706c656d656e746174696f6e604482015271081a5cc81b9bdd08184818dbdb9d1c9858dd60721b6064820152608401610199565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6060831561059c57508161038a565b8251156105ac5782518084602001fd5b8160405162461bcd60e51b815260040161019991906106d5565b80356001600160a01b03811681146105dd57600080fd5b919050565b6000602082840312156105f3578081fd5b61038a826105c6565b6000806040838503121561060e578081fd5b610617836105c6565b9150602083013567ffffffffffffffff80821115610633578283fd5b818501915085601f830112610646578283fd5b81358181111561065857610658610734565b604051601f8201601f19908116603f0116810190838211818310171561068057610680610734565b81604052828152886020848701011115610698578586fd5b82602086016020830137856020848301015280955050505050509250929050565b600082516106cb818460208701610708565b9190910192915050565b60208152600082518060208401526106f4816040850160208701610708565b601f01601f19169190910160400192915050565b60005b8381101561072357818101518382015260200161070b565b838111156103545750506000910152565b634e487b7160e01b600052604160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122024a6beea1489deca3e19740de637312fd7d60c6671ec423222e03ab300c5f2ab64736f6c634300080400336080604052348015600f57600080fd5b50607f8061001e6000396000f3fe60806040523660445760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081cdd5c1c1bdc9d1959609a1b604482015260640160405180910390fd5b600080fdfea26469706673582212208bc83d03735241f22711929a29f93b090e294e22ff857529914b921a36cffd5264736f6c63430008040033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564

Deployed Bytecode

0x60806040526004361061004e5760003560e01c8063019fa4f1146100655780632e1997b6146100855780635c60da1b146100af578063621f6309146100dc578063abe5e587146100fc5761005d565b3661005d5761005b610111565b005b61005b610111565b34801561007157600080fd5b5061005b6100803660046105e2565b610143565b34801561009157600080fd5b5061009a610223565b60405190151581526020015b60405180910390f35b3480156100bb57600080fd5b506100c461023d565b6040516001600160a01b0390911681526020016100a6565b3480156100e857600080fd5b5061005b6100f73660046105fc565b61026c565b34801561010857600080fd5b506100c461035b565b61014161013c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b61039a565b565b600061014d6103be565b9050336001600160a01b038216146101a25760405162461bcd60e51b81526020600482015260136024820152721c1c9bde1e4e881d5b985d5d1a1bdc9a5e9959606a1b60448201526064015b60405180910390fd5b604080516001600160a01b038084168252841660208201527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f910160405180910390a17fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610380546001600160a01b0319166001600160a01b0384161790555050565b60008061022e6103be565b6001600160a01b031614905090565b60006102677f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b60006102766103be565b90506001600160a01b0381166102c05760405162461bcd60e51b815260206004820152600f60248201526e1c1c9bde1e4e881bdcdcda599a5959608a1b6044820152606401610199565b336001600160a01b0382161461030e5760405162461bcd60e51b81526020600482015260136024820152721c1c9bde1e4e881d5b985d5d1a1bdc9a5e9959606a1b6044820152606401610199565b610317836103ec565b815115610356576103548383604051806040016040528060138152602001721c1c9bde1e4e881cd95d1d5c0819985a5b1959606a1b81525061042c565b505b505050565b60006102676103be565b606061038a838360405180606001604052806027815260200161074b6027913961042c565b9392505050565b3b151590565b90565b3660008037600080366000845af43d6000803e8080156103b9573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b031690565b6103f581610500565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060833b61048b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610199565b600080856001600160a01b0316856040516104a691906106b9565b600060405180830381855af49150503d80600081146104e1576040519150601f19603f3d011682016040523d82523d6000602084013e6104e6565b606091505b50915091506104f682828661058d565b9695505050505050565b803b6105695760405162461bcd60e51b815260206004820152603260248201527f4552433139363750726f78793a206e657720696d706c656d656e746174696f6e604482015271081a5cc81b9bdd08184818dbdb9d1c9858dd60721b6064820152608401610199565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6060831561059c57508161038a565b8251156105ac5782518084602001fd5b8160405162461bcd60e51b815260040161019991906106d5565b80356001600160a01b03811681146105dd57600080fd5b919050565b6000602082840312156105f3578081fd5b61038a826105c6565b6000806040838503121561060e578081fd5b610617836105c6565b9150602083013567ffffffffffffffff80821115610633578283fd5b818501915085601f830112610646578283fd5b81358181111561065857610658610734565b604051601f8201601f19908116603f0116810190838211818310171561068057610680610734565b81604052828152886020848701011115610698578586fd5b82602086016020830137856020848301015280955050505050509250929050565b600082516106cb818460208701610708565b9190910192915050565b60208152600082518060208401526106f4816040850160208701610708565b601f01601f19169190910160400192915050565b60005b8381101561072357818101518382015260200161070b565b838111156103545750506000910152565b634e487b7160e01b600052604160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122024a6beea1489deca3e19740de637312fd7d60c6671ec423222e03ab300c5f2ab64736f6c63430008040033

Deployed Bytecode Sourcemap

18232:3045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12560:11;:9;:11::i;:::-;18232:3045;;12328:11;:9;:11::i;20833:237::-;;;;;;;;;;-1:-1:-1;20833:237:0;;;;;:::i;:::-;;:::i;21163:111::-;;;;;;;;;;;;;:::i;:::-;;;2399:14:1;;2392:22;2374:41;;2362:2;2347:18;21163:111:0;;;;;;;;19175:101;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;1881:32:1;;;1863:51;;1851:2;1836:18;19175:101:0;1818:102:1;19695:451:0;;;;;;;;;;-1:-1:-1;19695:451:0;;;;;:::i;:::-;;:::i;20620:95::-;;;;;;;;;;;;;:::i;11964:113::-;12041:28;12051:17;14867:66;15244:11;;15221:45;12051:17;12041:9;:28::i;:::-;11964:113::o;20833:237::-;20898:13;20914:11;:9;:11::i;:::-;20898:27;-1:-1:-1;20944:10:0;-1:-1:-1;;;;;20944:19:0;;;20936:51;;;;-1:-1:-1;;;20936:51:0;;3435:2:1;20936:51:0;;;3417:21:1;3474:2;3454:18;;;3447:30;-1:-1:-1;;;3493:18:1;;;3486:49;3552:18;;20936:51:0;;;;;;;;;21003:29;;;-1:-1:-1;;;;;2155:15:1;;;2137:34;;2207:15;;2202:2;2187:18;;2180:43;21003:29:0;;2072:18:1;21003:29:0;;;;;;;18647:66;20478:55;;-1:-1:-1;;;;;;20478:55:0;-1:-1:-1;;;;;20478:55:0;;;;;20833:237;;:::o;21163:111::-;21217:4;;21241:11;:9;:11::i;:::-;-1:-1:-1;;;;;21241:25:0;;21234:32;;21163:111;:::o;19175:101::-;19224:7;19251:17;14867:66;15244:11;;15221:45;19251:17;19244:24;;19175:101;:::o;19695:451::-;19795:13;19811:11;:9;:11::i;:::-;19795:27;-1:-1:-1;;;;;;19841:19:0;;19833:47;;;;-1:-1:-1;;;19833:47:0;;3783:2:1;19833:47:0;;;3765:21:1;3822:2;3802:18;;;3795:30;-1:-1:-1;;;3841:18:1;;;3834:45;3896:18;;19833:47:0;3755:165:1;19833:47:0;19899:10;-1:-1:-1;;;;;19899:19:0;;;19891:51;;;;-1:-1:-1;;;19891:51:0;;3435:2:1;19891:51:0;;;3417:21:1;3474:2;3454:18;;;3447:30;-1:-1:-1;;;3493:18:1;;;3486:49;3552:18;;19891:51:0;3407:169:1;19891:51:0;19955:29;19966:17;19955:10;:29::i;:::-;20001:20;;:24;19997:142;;20042:85;20071:17;20090:13;20042:85;;;;;;;;;;;;;-1:-1:-1;;;20042:85:0;;;:28;:85::i;:::-;;19997:142;19695:451;;;:::o;20620:95::-;20669:7;20696:11;:9;:11::i;7832:200::-;7915:12;7947:77;7968:6;7976:4;7947:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;7940:84;7832:200;-1:-1:-1;;;7832:200:0:o;2147:422::-;2514:20;2553:8;;;2147:422::o;16556:151::-;16685:4;16660:40::o;10557:915::-;10957:14;10954:1;10951;10938:34;11175:1;11172;11156:14;11153:1;11137:14;11130:5;11117:60;11254:16;11251:1;11248;11233:38;11294:6;11363:38;;;;11435:16;11432:1;11425:27;11363:38;11382:16;11379:1;11372:27;20212:123;18647:66;20283:44;-1:-1:-1;;;;;20283:44:0;;20212:123::o;15399:163::-;15474:37;15493:17;15474:18;:37::i;:::-;15527:27;;-1:-1:-1;;;;;15527:27:0;;;;;;;;15399:163;:::o;8226:423::-;8337:12;2514:20;;8362:69;;;;-1:-1:-1;;;8362:69:0;;4127:2:1;8362:69:0;;;4109:21:1;4166:2;4146:18;;;4139:30;4205:34;4185:18;;;4178:62;-1:-1:-1;;;4256:18:1;;;4249:36;4302:19;;8362:69:0;4099:228:1;8362:69:0;8505:12;8519:23;8546:6;-1:-1:-1;;;;;8546:19:0;8566:4;8546:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8504:67;;;;8589:52;8607:7;8616:10;8628:12;8589:17;:52::i;:::-;8582:59;8226:423;-1:-1:-1;;;;;;8226:423:0:o;15658:365::-;2514:20;;15732:100;;;;-1:-1:-1;;;15732:100:0;;3016:2:1;15732:100:0;;;2998:21:1;3055:2;3035:18;;;3028:30;3094:34;3074:18;;;3067:62;-1:-1:-1;;;3145:18:1;;;3138:48;3203:19;;15732:100:0;2988:240:1;15732:100:0;14867:66;15974:31;15959:57::o;8657:742::-;8772:12;8801:7;8797:595;;;-1:-1:-1;8832:10:0;8825:17;;8797:595;8946:17;;:21;8942:439;;9209:10;9203:17;9270:15;9257:10;9253:2;9249:19;9242:44;9157:148;9352:12;9345:20;;-1:-1:-1;;;9345:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:1040::-;470:6;478;531:2;519:9;510:7;506:23;502:32;499:2;;;552:6;544;537:22;499:2;580:29;599:9;580:29;:::i;:::-;570:39;;660:2;649:9;645:18;632:32;683:18;724:2;716:6;713:14;710:2;;;745:6;737;730:22;710:2;788:6;777:9;773:22;763:32;;833:7;826:4;822:2;818:13;814:27;804:2;;860:6;852;845:22;804:2;901;888:16;923:2;919;916:10;913:2;;;929:18;;:::i;:::-;1004:2;998:9;972:2;1058:13;;-1:-1:-1;;1054:22:1;;;1078:2;1050:31;1046:40;1034:53;;;1102:18;;;1122:22;;;1099:46;1096:2;;;1148:18;;:::i;:::-;1188:10;1184:2;1177:22;1223:2;1215:6;1208:18;1263:7;1258:2;1253;1249;1245:11;1241:20;1238:33;1235:2;;;1289:6;1281;1274:22;1235:2;1350;1345;1341;1337:11;1332:2;1324:6;1320:15;1307:46;1395:6;1390:2;1385;1377:6;1373:15;1369:24;1362:40;1421:6;1411:16;;;;;;;489:944;;;;;:::o;1438:274::-;1567:3;1605:6;1599:13;1621:53;1667:6;1662:3;1655:4;1647:6;1643:17;1621:53;:::i;:::-;1690:16;;;;;1575:137;-1:-1:-1;;1575:137:1:o;2426:383::-;2575:2;2564:9;2557:21;2538:4;2607:6;2601:13;2650:6;2645:2;2634:9;2630:18;2623:34;2666:66;2725:6;2720:2;2709:9;2705:18;2700:2;2692:6;2688:15;2666:66;:::i;:::-;2793:2;2772:15;-1:-1:-1;;2768:29:1;2753:45;;;;2800:2;2749:54;;2547:262;-1:-1:-1;;2547:262:1:o;4332:258::-;4404:1;4414:113;4428:6;4425:1;4422:13;4414:113;;;4504:11;;;4498:18;4485:11;;;4478:39;4450:2;4443:10;4414:113;;;4545:6;4542:1;4539:13;4536:2;;;-1:-1:-1;;4580:1:1;4562:16;;4555:27;4385:205::o;4595:127::-;4656:10;4651:3;4647:20;4644:1;4637:31;4687:4;4684:1;4677:15;4711:4;4708:1;4701:15

Swarm Source

ipfs://8bc83d03735241f22711929a29f93b090e294e22ff857529914b921a36cffd52

 Latest 10 blocks produced

Block Transaction Difficulty Gas Used Reward
180782372023-09-06 15:16:3519 days 4 hrs ago16940133951600.00 TH13,358,853 (44.53%)
0.072281038649990882 ETH
179334762023-08-17 8:54:2339 days 10 hrs ago16922624631190.00 TH10,114,206 (33.71%)
0.023275049256426398 ETH
179313792023-08-17 1:51:4739 days 17 hrs ago16922371071270.00 TH16,997,892 (56.66%)
0.026759411323788832 ETH
179253912023-08-16 5:45:1140 days 13 hrs ago16921647112520.00 TH29,432,038 (98.11%)
0.137182271596415946 ETH
179230152023-08-15 21:46:5940 days 21 hrs ago16921360191180.00 TH13,045,260 (43.48%)
0.049325198661827709 ETH
166224322023-02-13 21:10:59223 days 22 hrs ago16763226591990.00 TH17,300,152 (57.72%)
0.027686310753050446 ETH
166222472023-02-13 20:33:59223 days 23 hrs ago16763204391450.00 TH12,533,763 (41.82%)
0.023905623426308055 ETH
166221822023-02-13 20:20:47223 days 23 hrs ago16763196472700.00 TH22,632,321 (75.51%)
0.05080508945742565 ETH
166220902023-02-13 20:02:23223 days 23 hrs ago1676318543940.00 TH8,574,709 (28.61%)
0.027417030907069896 ETH
166220882023-02-13 20:01:59223 days 23 hrs ago16763185191170.00 TH10,015,844 (33.42%)
0.02823831103815425 ETH

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Latest 25 from a total of 6559768 withdrawals (459,323.16529744 ETH withdrawn)

Advanced Filter
Validator Index Block Amount
296303182149332023-09-25 19:37:5918 secs ago16956706790.016443923 ETH
296302182149332023-09-25 19:37:5918 secs ago16956706790.01641258 ETH
296301182149332023-09-25 19:37:5918 secs ago16956706790.016431365 ETH
296300182149332023-09-25 19:37:5918 secs ago16956706790.016420855 ETH
296299182149332023-09-25 19:37:5918 secs ago16956706790.016436474 ETH
296298182149332023-09-25 19:37:5918 secs ago16956706790.016436629 ETH
296297182149332023-09-25 19:37:5918 secs ago16956706790.01644667 ETH
296296182149332023-09-25 19:37:5918 secs ago16956706790.016444781 ETH
296295182149332023-09-25 19:37:5918 secs ago16956706790.016441202 ETH
296294182149332023-09-25 19:37:5918 secs ago16956706790.016457226 ETH
296293182149332023-09-25 19:37:5918 secs ago16956706790.056120111 ETH
296292182149332023-09-25 19:37:5918 secs ago16956706790.016414694 ETH
296291182149332023-09-25 19:37:5918 secs ago16956706790.01638152 ETH
296290182149332023-09-25 19:37:5918 secs ago16956706790.016412946 ETH
296289182149332023-09-25 19:37:5918 secs ago16956706790.016393695 ETH
296288182149332023-09-25 19:37:5918 secs ago16956706790.01644769 ETH
296287182149322023-09-25 19:37:4730 secs ago16956706670.016426183 ETH
296286182149322023-09-25 19:37:4730 secs ago16956706670.056439106 ETH
296285182149322023-09-25 19:37:4730 secs ago16956706670.016439451 ETH
296284182149322023-09-25 19:37:4730 secs ago16956706670.016430933 ETH
296283182149322023-09-25 19:37:4730 secs ago16956706670.016431626 ETH
296282182149322023-09-25 19:37:4730 secs ago16956706670.01645225 ETH
296281182149322023-09-25 19:37:4730 secs ago16956706670.016405355 ETH
296280182149322023-09-25 19:37:4730 secs ago16956706670.016453072 ETH
296279182149322023-09-25 19:37:4730 secs ago16956706670.01642626 ETH
View All Withdrawals

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

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