ETH Price: $3,183.68 (-4.63%)
 

Overview

ETH Balance

0.199526301079076153 ETH

Eth Value

$635.23 (@ $3,183.68/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203754352024-07-24 9:14:11186 days ago1721812451IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000161973.30021529
Approve203754042024-07-24 9:07:59186 days ago1721812079IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000167573.41345375
Transfer203730972024-07-24 1:24:35187 days ago1721784275IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000291445.14628334
Approve191461142024-02-03 6:42:11358 days ago1706942531IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0004076715.02579359
Approve188674892023-12-26 4:29:11397 days ago1703564951IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000328812.11856427
Approve178286382023-08-02 16:55:11543 days ago1690995311IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0009256934.11820942
Approve174447702023-06-09 19:34:11597 days ago1686339251IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0004559816.80628779
Approve171182762023-04-24 19:38:59643 days ago1682365139IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0013988351.55657293
Approve165244122023-01-31 4:26:47726 days ago1675139207IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0004585216.89984407
Approve165244102023-01-31 4:26:23726 days ago1675139183IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0004336315.98252281
Approve163866362023-01-11 22:47:11746 days ago1673477231IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0006446623.76036011
Approve158645592022-10-31 0:48:11819 days ago1667177291IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000232348.56363353
Approve153226482022-08-11 19:55:45899 days ago1660247745IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0007244226.70018823
Approve152812882022-08-05 8:42:48905 days ago1659688968IN
0x3CBaecEf...Df11f4ee2
0 ETH0.000189486.98363762
Approve152029862022-07-24 3:45:01917 days ago1658634301IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0005462420.13289199
Approve151057322022-07-09 2:32:19933 days ago1657333939IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0008094829.83488944
Approve148043782022-05-19 10:09:18983 days ago1652954958IN
0x3CBaecEf...Df11f4ee2
0 ETH0.00055420.41883917
Approve147799322022-05-15 12:20:31987 days ago1652617231IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0003901114.37822954
Approve147799312022-05-15 12:20:26987 days ago1652617226IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0003516912.96237909
Approve147792302022-05-15 9:44:47987 days ago1652607887IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0003020611.13317676
Approve147098752022-05-04 8:29:48998 days ago1651652988IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0010182137.52815392
Approve147098722022-05-04 8:29:22998 days ago1651652962IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0011172741.17910549
Approve146526532022-04-25 8:16:401007 days ago1650874600IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0012036544.36288517
Approve146522612022-04-25 6:43:551007 days ago1650869035IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0014389953.03695902
Approve143527132022-03-09 12:58:001054 days ago1646830680IN
0x3CBaecEf...Df11f4ee2
0 ETH0.0009510419.24560387
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
137924052021-12-12 20:05:561141 days ago1639339556
0x3CBaecEf...Df11f4ee2
0.0000217 ETH
136509472021-11-20 8:52:321163 days ago1637398352
0x3CBaecEf...Df11f4ee2
99.80045199 ETH
136285782021-11-16 19:59:071167 days ago1637092747
0x3CBaecEf...Df11f4ee2
100 ETH
135168642021-10-30 6:19:161184 days ago1635574756  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB9b100DC...753e9F734
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
File 1 of 1 : InitializedProxy.sol
// 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
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.