ETH Price: $3,343.31 (-1.92%)
 

Overview

ETH Balance

0.05 ETH

Eth Value

$167.17 (@ $3,343.31/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve215264442025-01-01 1:50:5914 hrs ago1735696259IN
0xDC98c554...93D0aa4A8
0 ETH0.000265675.41303791
Approve213631892024-12-09 6:36:1123 days ago1733726171IN
0xDC98c554...93D0aa4A8
0 ETH0.0005906411.96709505
Approve212943032024-11-29 15:40:3533 days ago1732894835IN
0xDC98c554...93D0aa4A8
0 ETH0.0006678824.61622684
Approve212076642024-11-17 13:16:1145 days ago1731849371IN
0xDC98c554...93D0aa4A8
0 ETH0.0003064310.51877331
Approve212076562024-11-17 13:14:3545 days ago1731849275IN
0xDC98c554...93D0aa4A8
0 ETH0.000266689.82929247
Transfer208327992024-09-26 5:49:1197 days ago1727329751IN
0xDC98c554...93D0aa4A8
0 ETH0.0006373311.33097427
Approve205909502024-08-23 11:17:47131 days ago1724411867IN
0xDC98c554...93D0aa4A8
0 ETH0.00010132.05
Approve205514562024-08-17 22:54:23136 days ago1723935263IN
0xDC98c554...93D0aa4A8
0 ETH0.000029011.06942565
Approve204520732024-08-04 2:03:11150 days ago1722736991IN
0xDC98c554...93D0aa4A8
0 ETH0.000028361.04541258
Approve203653092024-07-22 23:19:47162 days ago1721690387IN
0xDC98c554...93D0aa4A8
0 ETH0.00019994.07105197
Approve201484892024-06-22 16:39:23192 days ago1719074363IN
0xDC98c554...93D0aa4A8
0 ETH0.000213774.34824738
Approve198259022024-05-08 14:21:23238 days ago1715178083IN
0xDC98c554...93D0aa4A8
0 ETH0.000440968.97806645
Approve196359562024-04-12 0:29:35264 days ago1712881775IN
0xDC98c554...93D0aa4A8
0 ETH0.0005299810.72497108
Approve196299102024-04-11 4:09:47265 days ago1712808587IN
0xDC98c554...93D0aa4A8
0 ETH0.0006426413.07152041
Approve196205712024-04-09 20:49:47266 days ago1712695787IN
0xDC98c554...93D0aa4A8
0 ETH0.0010711521.70268459
Approve196167462024-04-09 7:57:59267 days ago1712649479IN
0xDC98c554...93D0aa4A8
0 ETH0.0013371427.19773975
Approve195481952024-03-30 17:17:47276 days ago1711819067IN
0xDC98c554...93D0aa4A8
0 ETH0.0006954925.63389129
Approve195343202024-03-28 18:26:35278 days ago1711650395IN
0xDC98c554...93D0aa4A8
0 ETH0.0020265341.25015791
Approve195215962024-03-26 22:35:47280 days ago1711492547IN
0xDC98c554...93D0aa4A8
0 ETH0.0021175942.85242365
Approve195169772024-03-26 6:57:23281 days ago1711436243IN
0xDC98c554...93D0aa4A8
0 ETH0.001081622
Approve194931012024-03-22 22:21:11284 days ago1711146071IN
0xDC98c554...93D0aa4A8
0 ETH0.0010478721.35549622
Approve194892002024-03-22 9:13:23285 days ago1711098803IN
0xDC98c554...93D0aa4A8
0 ETH0.0012977126.40207106
Approve194500782024-03-16 21:19:35290 days ago1710623975IN
0xDC98c554...93D0aa4A8
0 ETH0.0018160536.79509624
Approve193573812024-03-03 21:40:11303 days ago1709502011IN
0xDC98c554...93D0aa4A8
0 ETH0.0023088946.78044439
Approve193340462024-02-29 15:25:11307 days ago1709220311IN
0xDC98c554...93D0aa4A8
0 ETH0.0038204577.31214865
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
130950622021-08-25 14:27:301225 days ago1629901650  Contract Creation0 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
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.