Overview
ETH Balance
20.575407695633401248 ETH
Eth Value
$68,818.97 (@ $3,344.72/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 670 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19975854 | 212 days ago | IN | 0 ETH | 0.00049744 | ||||
Approve | 18916490 | 361 days ago | IN | 0 ETH | 0.00038632 | ||||
Approve | 18799897 | 377 days ago | IN | 0 ETH | 0.00149518 | ||||
Cash | 18556414 | 411 days ago | IN | 0 ETH | 0.00134627 | ||||
Approve | 17466073 | 564 days ago | IN | 0 ETH | 0.00043712 | ||||
Approve | 17099437 | 616 days ago | IN | 0 ETH | 0.00095099 | ||||
Cash | 17019677 | 627 days ago | IN | 0 ETH | 0.00093879 | ||||
Cash | 16708814 | 671 days ago | IN | 0 ETH | 0.00084106 | ||||
Approve | 16656490 | 678 days ago | IN | 0 ETH | 0.000793 | ||||
Cash | 16625734 | 682 days ago | IN | 0 ETH | 0.00064968 | ||||
Cash | 16450551 | 707 days ago | IN | 0 ETH | 0.00126188 | ||||
Cash | 16449331 | 707 days ago | IN | 0 ETH | 0.00138675 | ||||
Cash | 16248507 | 735 days ago | IN | 0 ETH | 0.00091823 | ||||
Approve | 16126369 | 752 days ago | IN | 0 ETH | 0.00048277 | ||||
Approve | 16012362 | 768 days ago | IN | 0 ETH | 0.00035008 | ||||
Cash | 15915855 | 782 days ago | IN | 0 ETH | 0.00055814 | ||||
Cash | 15388573 | 858 days ago | IN | 0 ETH | 0.00015962 | ||||
Cash | 15249981 | 880 days ago | IN | 0 ETH | 0.00027802 | ||||
Cash | 15170112 | 893 days ago | IN | 0 ETH | 0.00104331 | ||||
Cash | 15159582 | 894 days ago | IN | 0 ETH | 0.00062825 | ||||
Transfer | 15159548 | 894 days ago | IN | 0 ETH | 0.00059262 | ||||
Cash | 15131299 | 899 days ago | IN | 0 ETH | 0.00493314 | ||||
Approve | 15078245 | 907 days ago | IN | 0 ETH | 0.00034289 | ||||
Approve | 14967941 | 926 days ago | IN | 0 ETH | 0.00287167 | ||||
Cash | 14965554 | 927 days ago | IN | 0 ETH | 0.00344357 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18556414 | 411 days ago | 0.36583647 ETH | ||||
17019677 | 627 days ago | 0.77214298 ETH | ||||
16708814 | 671 days ago | 0.22680268 ETH | ||||
16625734 | 682 days ago | 1.11403507 ETH | ||||
16450551 | 707 days ago | 0.78252186 ETH | ||||
16449331 | 707 days ago | 1.7208973 ETH | ||||
16248507 | 735 days ago | 2.51838767 ETH | ||||
15915855 | 782 days ago | 0.96974264 ETH | ||||
15388573 | 858 days ago | 0.00067242 ETH | ||||
15249981 | 880 days ago | 0.04920896 ETH | ||||
15170112 | 893 days ago | 0.08917804 ETH | ||||
15159582 | 894 days ago | 13.83390168 ETH | ||||
15131299 | 899 days ago | 0.37189051 ETH | ||||
14965554 | 927 days ago | 0.24547968 ETH | ||||
14893842 | 939 days ago | 7.38786106 ETH | ||||
14839437 | 948 days ago | 1.38875801 ETH | ||||
14814931 | 952 days ago | 0.03989804 ETH | ||||
14795011 | 955 days ago | 0.27327996 ETH | ||||
14704965 | 969 days ago | 4.47610151 ETH | ||||
14696684 | 970 days ago | 1.96756023 ETH | ||||
14695302 | 971 days ago | 0.56434124 ETH | ||||
14693955 | 971 days ago | 0.04813918 ETH | ||||
14688824 | 972 days ago | 0.20693114 ETH | ||||
14686289 | 972 days ago | 0.25999189 ETH | ||||
14683467 | 973 days ago | 1.97811287 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
InitializedProxy
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title InitializedProxy * @author Anna Carroll */ contract InitializedProxy { // address of logic contract address public immutable logic; // ======== Constructor ========= constructor( address _logic, bytes memory _initializationCalldata ) { logic = _logic; // Delegatecall into the logic contract, supplying initialization calldata (bool _ok, bytes memory returnData) = _logic.delegatecall(_initializationCalldata); // Revert if delegatecall to implementation reverts require(_ok, string(returnData)); } // ======== Fallback ========= fallback() external payable { address _impl = logic; assembly { let ptr := mload(0x40) calldatacopy(ptr, 0, calldatasize()) let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0) let size := returndatasize() returndatacopy(ptr, 0, size) switch result case 0 { revert(ptr, size) } default { return(ptr, size) } } } // ======== Receive ========= receive() external payable {} // solhint-disable-line no-empty-blocks }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,344.72 | 20.5754 | $68,818.97 |
Loading...
Loading
[ 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.