More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 344 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Multicall | 21872542 | 10 days ago | IN | 0 ETH | 0.0002361 | ||||
Update State And... | 21793858 | 21 days ago | IN | 0.289 ETH | 0.00016547 | ||||
Deposit | 21771766 | 24 days ago | IN | 2.28 ETH | 0.00015088 | ||||
Deposit | 21771751 | 24 days ago | IN | 0.83943075 ETH | 0.00016829 | ||||
Update State And... | 21771735 | 24 days ago | IN | 7.39863065 ETH | 0.00026743 | ||||
Multicall | 21717293 | 32 days ago | IN | 0 ETH | 0.00225769 | ||||
Multicall | 21696525 | 35 days ago | IN | 0 ETH | 0.0016054 | ||||
Multicall | 21687480 | 36 days ago | IN | 0 ETH | 0.0023533 | ||||
Multicall | 21658885 | 40 days ago | IN | 0 ETH | 0.00343064 | ||||
Multicall | 21656161 | 40 days ago | IN | 0 ETH | 0.00202727 | ||||
Burn Os Token | 21656159 | 40 days ago | IN | 0 ETH | 0.00098835 | ||||
Enter Exit Queue | 21571521 | 52 days ago | IN | 0 ETH | 0.00061827 | ||||
Enter Exit Queue | 21570312 | 52 days ago | IN | 0 ETH | 0.00053952 | ||||
Update State And... | 21570149 | 52 days ago | IN | 0.0003 ETH | 0.00062719 | ||||
Multicall | 21479308 | 65 days ago | IN | 0 ETH | 0.00049535 | ||||
Multicall | 21458423 | 68 days ago | IN | 0 ETH | 0.00094434 | ||||
Burn Os Token | 21458418 | 68 days ago | IN | 0 ETH | 0.00050479 | ||||
Multicall | 21297059 | 91 days ago | IN | 0 ETH | 0.00116075 | ||||
Multicall | 21287951 | 92 days ago | IN | 0 ETH | 0.00208502 | ||||
Multicall | 21278597 | 93 days ago | IN | 0 ETH | 0.00159703 | ||||
Multicall | 21275611 | 94 days ago | IN | 0 ETH | 0.00153046 | ||||
Multicall | 21270111 | 94 days ago | IN | 0 ETH | 0.00108603 | ||||
Multicall | 21267024 | 95 days ago | IN | 0 ETH | 0.00272166 | ||||
Burn Os Token | 21267022 | 95 days ago | IN | 0 ETH | 0.00143021 | ||||
Multicall | 21259714 | 96 days ago | IN | 0 ETH | 0.00166476 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21888584 | 8 days ago | 0.00691818 ETH | ||||
21793859 | 21 days ago | 32 ETH | ||||
21687480 | 36 days ago | 10.29671645 ETH | ||||
21658885 | 40 days ago | 1.74091913 ETH | ||||
21479308 | 65 days ago | 0.77308064 ETH | ||||
21479308 | 65 days ago | 0.02926133 ETH | ||||
21297059 | 91 days ago | 0.07810167 ETH | ||||
21297059 | 91 days ago | 0.04748601 ETH | ||||
21278597 | 93 days ago | 2.29529441 ETH | ||||
21275611 | 94 days ago | 0.10659498 ETH | ||||
21259714 | 96 days ago | 0.11428452 ETH | ||||
21188826 | 106 days ago | 0.00100492 ETH | ||||
21153892 | 111 days ago | 0.04984432 ETH | ||||
21149176 | 111 days ago | 0.16403852 ETH | ||||
21149176 | 111 days ago | 0.03698544 ETH | ||||
21118175 | 116 days ago | 0.05184911 ETH | ||||
21102664 | 118 days ago | 32 ETH | ||||
21065425 | 123 days ago | 0.14710368 ETH | ||||
20966140 | 137 days ago | 3.02886021 ETH | ||||
20918698 | 143 days ago | 0.14635083 ETH | ||||
20828701 | 156 days ago | 0.05869593 ETH | ||||
20790906 | 161 days ago | 0.01021051 ETH | ||||
20775409 | 163 days ago | 2.42867575 ETH | ||||
20774359 | 164 days ago | 0.00100135 ETH | ||||
20774359 | 164 days ago | 0.08124641 ETH |
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xAC0F906E...473652885 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.20;import {Proxy} from "../Proxy.sol";import {ERC1967Utils} from "./ERC1967Utils.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.*/contract ERC1967Proxy is Proxy {/*** @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.** If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.** Requirements:** - If `data` is empty, `msg.value` must be zero.*/constructor(address implementation, bytes memory _data) payable {
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.20;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeacon {/*** @dev Must return an address that can be used as a delegate call target.** {UpgradeableBeacon} will check that this address is a contract.*/function implementation() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)pragma solidity ^0.8.20;import {IBeacon} from "../beacon/IBeacon.sol";import {Address} from "../../utils/Address.sol";import {StorageSlot} from "../../utils/StorageSlot.sol";/*** @dev This abstract contract provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.*/library ERC1967Utils {// We re-declare ERC-1967 events here because they can't be used directly from IERC1967.// This will be fixed in Solidity 0.8.21. At that point we should remove these events./*** @dev Emitted when the implementation is upgraded.*/event Upgraded(address indexed implementation);/*** @dev Emitted when the admin account has changed.*/event AdminChanged(address previousAdmin, address newAdmin);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)pragma solidity ^0.8.20;/*** @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 internal call site, it will return directly to the external caller.*/function _delegate(address implementation) internal virtual {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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)pragma solidity ^0.8.20;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev The ETH balance of the account is not enough to perform the operation.*/error AddressInsufficientBalance(address account);/*** @dev There's no code at `target` (it is not a contract).*/error AddressEmptyCode(address target);/*** @dev A call to an address target failed. The target may have reverted.*/error FailedInnerCall();/*** @dev Replacement for Solidity's `transfer`: sends `amount` wei to
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```solidity* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
123456789101112131415161718192021222324{"viaIR": true,"optimizer": {"enabled": true,"runs": 200,"details": {"yul": true}},"evmVersion": "shanghai","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545f9081906001600160a01b0316368280378136915af43d5f803e156048573d5ff35b3d5ffdfea2646970667358221220590de6162af1aca5f7d380e459394ce97dc6a2e4a2575dd7c58d5d1cb01c826d64736f6c63430008160033
Latest 25 from a total of 573 withdrawals (204.001737072 ETH withdrawn)
Validator Index | Block | Age | Amount |
---|---|---|---|
1107828 | 21944939 | 14 hrs ago | 0.01905459 ETH |
1089994 | 21944235 | 17 hrs ago | 0.019073232 ETH |
1089389 | 21944211 | 17 hrs ago | 0.019078647 ETH |
1086640 | 21944105 | 17 hrs ago | 0.019074445 ETH |
1085931 | 21944087 | 17 hrs ago | 0.019016594 ETH |
1778439 | 21910846 | 5 days ago | 0.018964692 ETH |
1646839 | 21902993 | 6 days ago | 0.019018904 ETH |
1573942 | 21899190 | 7 days ago | 0.019050966 ETH |
1397322 | 21890305 | 8 days ago | 0.019043271 ETH |
1388516 | 21889914 | 8 days ago | 0.019085458 ETH |
1380896 | 21889516 | 8 days ago | 0.01906497 ETH |
1322209 | 21887263 | 8 days ago | 0.019058672 ETH |
1301093 | 21886567 | 8 days ago | 0.019083615 ETH |
1107828 | 21879480 | 9 days ago | 0.019134703 ETH |
1089994 | 21878775 | 9 days ago | 0.019135143 ETH |
1089389 | 21878750 | 9 days ago | 0.019128039 ETH |
1086640 | 21878645 | 9 days ago | 0.063864645 ETH |
1085931 | 21878627 | 9 days ago | 0.019068836 ETH |
1778439 | 21845660 | 14 days ago | 0.0127219 ETH |
1646839 | 21837757 | 15 days ago | 0.019096135 ETH |
1573942 | 21833896 | 16 days ago | 0.019117253 ETH |
1397322 | 21824898 | 17 days ago | 0.019089558 ETH |
1388516 | 21824492 | 17 days ago | 0.019114734 ETH |
1380896 | 21824091 | 17 days ago | 0.019087151 ETH |
1322209 | 21821818 | 17 days ago | 0.019143169 ETH |
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,263.17 | 3.8727 | $8,764.66 |
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.