More Info
Private Name Tags
ContractCreator
Latest 9 from a total of 9 transactions (+1 Pending)
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x01e7329d793fa2bc33c0e6bb0672f4f30a11132680c910a5e0b6865d909235b4 | Transfer | (pending) | 4 days ago | IN | 0 ETH | (Pending) | |||
Transfer | 22225247 | 9 days ago | IN | 0.00020038 ETH | 0.00005223 | ||||
Withdraw Withdra... | 21799459 | 69 days ago | IN | 0 ETH | 0.0000385 | ||||
Transfer | 20331642 | 274 days ago | IN | 0.00291384 ETH | 0.000168 | ||||
Transfer | 20331620 | 274 days ago | IN | 0.00291036 ETH | 0.000168 | ||||
Transfer | 19376074 | 408 days ago | IN | 0.002579 ETH | 0.0021 | ||||
Proxy_change Adm... | 17936727 | 609 days ago | IN | 0 ETH | 0.00072766 | ||||
Initialize | 17936723 | 609 days ago | IN | 0 ETH | 0.00071033 | ||||
Proxy_change Adm... | 17936704 | 609 days ago | IN | 0 ETH | 0.00060805 | ||||
Transfer | 17064621 | 732 days ago | IN | 0.00007 ETH | 0.00056774 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Receive Withdraw... | 22295851 | 3 hrs ago | 2,209.63590628 ETH | ||||
Receive Withdraw... | 22288695 | 27 hrs ago | 5,921.29986708 ETH | ||||
Receive Withdraw... | 22281539 | 2 days ago | 495.1859989 ETH | ||||
Receive Withdraw... | 22274352 | 3 days ago | 10,041.61721422 ETH | ||||
Receive Withdraw... | 22267217 | 4 days ago | 1,337.7593601 ETH | ||||
Receive Withdraw... | 22260034 | 5 days ago | 18,477.78647479 ETH | ||||
Receive Withdraw... | 22252859 | 6 days ago | 41,535.68464554 ETH | ||||
Receive Withdraw... | 22245680 | 7 days ago | 126.10299745 ETH | ||||
Receive Withdraw... | 22238498 | 8 days ago | 472.65454453 ETH | ||||
Receive Withdraw... | 22231330 | 9 days ago | 268.59039286 ETH | ||||
Receive Withdraw... | 22224175 | 10 days ago | 3,643.73313477 ETH | ||||
Receive Withdraw... | 22217016 | 11 days ago | 352.28311623 ETH | ||||
Receive Withdraw... | 22209854 | 12 days ago | 6,233.69932191 ETH | ||||
Receive Withdraw... | 22202687 | 13 days ago | 1,259.62413568 ETH | ||||
Receive Withdraw... | 22195534 | 14 days ago | 2,190.83821807 ETH | ||||
Receive Withdraw... | 22188364 | 15 days ago | 4,872.35069494 ETH | ||||
Receive Withdraw... | 22181207 | 16 days ago | 725.728319 ETH | ||||
Receive Withdraw... | 22174053 | 17 days ago | 149.08529848 ETH | ||||
Receive Withdraw... | 22166884 | 18 days ago | 274.02448933 ETH | ||||
Receive Withdraw... | 22159714 | 19 days ago | 689.59602247 ETH | ||||
Receive Withdraw... | 22152559 | 20 days ago | 262.42260699 ETH | ||||
Receive Withdraw... | 22145378 | 21 days ago | 772.40674035 ETH | ||||
Receive Withdraw... | 22138227 | 22 days ago | 1,275.59576033 ETH | ||||
Receive Withdraw... | 22131060 | 23 days ago | 1,183.19612546 ETH | ||||
Receive Withdraw... | 22123899 | 24 days ago | 10,319.84796286 ETH |
Loading...
Loading
Contract Name:
WithdrawalsManagerProxy
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"}]
Contract Creation Code
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 19 blocks produced
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21701703 | 83 days ago | 148 | 0.00 TH | 9,480,493 (31.26%) | 0.006757485137441875 ETH |
21405302 | 124 days ago | 66 | 0.00 TH | 3,608,984 (12.03%) | 0.004718815701770082 ETH |
21335071 | 134 days ago | 141 | 0.00 TH | 8,789,274 (29.30%) | 0.011134486578002961 ETH |
21332744 | 134 days ago | 105 | 0.00 TH | 8,416,051 (28.05%) | 0.011749448830569646 ETH |
21319810 | 136 days ago | 138 | 0.00 TH | 7,687,057 (25.62%) | 0.009330745650884996 ETH |
21296050 | 139 days ago | 141 | 0.00 TH | 7,690,666 (25.64%) | 0.010653208487176035 ETH |
21222672 | 150 days ago | 79 | 0.00 TH | 3,902,868 (13.01%) | 0.010214093490634014 ETH |
21138317 | 161 days ago | 105 | 0.00 TH | 6,524,990 (21.75%) | 0.031792020958907195 ETH |
21119113 | 164 days ago | 73 | 0.00 TH | 4,505,555 (15.02%) | 0.006242146815986606 ETH |
18078237 | 590 days ago | 160 | 0.00 TH | 13,358,853 (44.53%) | 0.072281038649990882 ETH |
17933476 | 610 days ago | 119 | 0.00 TH | 10,114,206 (33.71%) | 0.023275049256426398 ETH |
17931379 | 610 days ago | 127 | 0.00 TH | 16,997,892 (56.66%) | 0.026759411323788832 ETH |
17925391 | 611 days ago | 252 | 0.00 TH | 29,432,038 (98.11%) | 0.137182271596415946 ETH |
17923015 | 611 days ago | 118 | 0.00 TH | 13,045,260 (43.48%) | 0.049325198661827709 ETH |
16622432 | 794 days ago | 199 | 0.00 TH | 17,300,152 (57.72%) | 0.027686310753050446 ETH |
16622247 | 794 days ago | 145 | 0.00 TH | 12,533,763 (41.82%) | 0.023905623426308055 ETH |
16622182 | 794 days ago | 270 | 0.00 TH | 22,632,321 (75.51%) | 0.05080508945742565 ETH |
16622090 | 794 days ago | 94 | 0.00 TH | 8,574,709 (28.61%) | 0.027417030907069896 ETH |
16622088 | 794 days ago | 117 | 0.00 TH | 10,015,844 (33.42%) | 0.02823831103815425 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 26111054 withdrawals (3,983,372.39140392 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1635105 | 22296868 | 5 mins ago | 0.019337354 ETH |
1635104 | 22296868 | 5 mins ago | 0.019333085 ETH |
1635103 | 22296868 | 5 mins ago | 0.019330741 ETH |
1635102 | 22296868 | 5 mins ago | 0.01934673 ETH |
1635101 | 22296868 | 5 mins ago | 0.019279023 ETH |
1635100 | 22296868 | 5 mins ago | 0.01928346 ETH |
1635099 | 22296868 | 5 mins ago | 0.019283012 ETH |
1635098 | 22296868 | 5 mins ago | 0.065118976 ETH |
1635097 | 22296868 | 5 mins ago | 0.019311563 ETH |
1635096 | 22296868 | 5 mins ago | 0.019279449 ETH |
1635095 | 22296868 | 5 mins ago | 0.019314942 ETH |
1635094 | 22296868 | 5 mins ago | 0.019339302 ETH |
1635093 | 22296868 | 5 mins ago | 0.019291935 ETH |
1635092 | 22296868 | 5 mins ago | 0.019302483 ETH |
1635091 | 22296867 | 6 mins ago | 0.019302929 ETH |
1635090 | 22296867 | 6 mins ago | 0.019283271 ETH |
1635089 | 22296867 | 6 mins ago | 0.019328661 ETH |
1635088 | 22296867 | 6 mins ago | 0.019349013 ETH |
1635087 | 22296867 | 6 mins ago | 0.019319089 ETH |
1635086 | 22296867 | 6 mins ago | 0.019308529 ETH |
1635085 | 22296867 | 6 mins ago | 0.019313153 ETH |
1635084 | 22296867 | 6 mins ago | 0.019307278 ETH |
1635083 | 22296867 | 6 mins ago | 0.019357831 ETH |
1635082 | 22296867 | 6 mins ago | 0.019351986 ETH |
1635081 | 22296867 | 6 mins ago | 0.019305753 ETH |
Loading...
Loading
[ 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.