Overview
ETH Balance
73.44581704523636515 ETH
Eth Value
$180,253.37 (@ $2,454.24/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,672 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20969631 | 19 days ago | IN | 0 ETH | 0.00037459 | ||||
Cash | 20873371 | 32 days ago | IN | 0 ETH | 0.00051163 | ||||
Transfer | 20873358 | 32 days ago | IN | 0 ETH | 0.0007676 | ||||
Cash | 20731618 | 52 days ago | IN | 0 ETH | 0.00009445 | ||||
Approve | 20709286 | 55 days ago | IN | 0 ETH | 0.00003585 | ||||
Approve | 20452066 | 91 days ago | IN | 0 ETH | 0.00003076 | ||||
Cash | 20334018 | 107 days ago | IN | 0 ETH | 0.00077438 | ||||
Transfer | 20334013 | 107 days ago | IN | 0 ETH | 0.00057474 | ||||
Transfer | 20334003 | 107 days ago | IN | 0 ETH | 0.00060578 | ||||
Transfer | 20334000 | 107 days ago | IN | 0 ETH | 0.0009604 | ||||
Approve | 20089846 | 142 days ago | IN | 0 ETH | 0.00022794 | ||||
Approve | 20066862 | 145 days ago | IN | 0 ETH | 0.00015082 | ||||
Approve | 19975880 | 157 days ago | IN | 0 ETH | 0.00050711 | ||||
Approve | 19975852 | 157 days ago | IN | 0 ETH | 0.0004804 | ||||
Cash | 19810857 | 181 days ago | IN | 0 ETH | 0.00021034 | ||||
Approve | 19766683 | 187 days ago | IN | 0 ETH | 0.00021199 | ||||
Cash | 19661916 | 201 days ago | IN | 0 ETH | 0.00086068 | ||||
Cash | 19554003 | 216 days ago | IN | 0 ETH | 0.00078272 | ||||
Transfer | 19553939 | 216 days ago | IN | 0 ETH | 0.0012959 | ||||
Transfer | 19553929 | 216 days ago | IN | 0 ETH | 0.00136628 | ||||
Transfer | 19553878 | 216 days ago | IN | 0 ETH | 0.00197196 | ||||
Cash | 19553843 | 216 days ago | IN | 0 ETH | 0.00084135 | ||||
Transfer | 19553827 | 216 days ago | IN | 0 ETH | 0.0019126 | ||||
Transfer | 19448908 | 231 days ago | IN | 0 ETH | 0.00139023 | ||||
Transfer | 19448112 | 231 days ago | IN | 0 ETH | 0.00267906 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20873371 | 32 days ago | 0.06755922 ETH | ||||
20731618 | 52 days ago | 0.00857367 ETH | ||||
20334018 | 107 days ago | 0.01613707 ETH | ||||
19810857 | 181 days ago | 0.87883516 ETH | ||||
19661916 | 201 days ago | 0.00242143 ETH | ||||
19554003 | 216 days ago | 0.01466027 ETH | ||||
19553843 | 216 days ago | 0.00951995 ETH | ||||
19430736 | 234 days ago | 0.09914053 ETH | ||||
18932398 | 304 days ago | 0.09041448 ETH | ||||
18531814 | 360 days ago | 0.24646657 ETH | ||||
18035007 | 429 days ago | 0.02015356 ETH | ||||
18034998 | 429 days ago | 0.00410978 ETH | ||||
17792859 | 463 days ago | 0.16509435 ETH | ||||
17771064 | 466 days ago | 0.02886293 ETH | ||||
17664658 | 481 days ago | 0.19843673 ETH | ||||
17407833 | 517 days ago | 0.00528338 ETH | ||||
17315691 | 530 days ago | 0.03281395 ETH | ||||
17287768 | 534 days ago | 0.16854148 ETH | ||||
17048715 | 568 days ago | 0.12324332 ETH | ||||
16911703 | 587 days ago | 0.07512472 ETH | ||||
16895119 | 590 days ago | 0.05845365 ETH | ||||
16895082 | 590 days ago | 0.05302921 ETH | ||||
16895068 | 590 days ago | 0.05302921 ETH | ||||
16895007 | 590 days ago | 0.13412215 ETH | ||||
16894966 | 590 days ago | 0.13257304 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
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.