ETH Price: $2,523.62 (-0.03%)

Contract

0x9333D3983d8AF4f233F9B185ea4567bEDfAF26AD
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve205230432024-08-13 23:39:1116 days ago1723592351IN
0x9333D398...EDfAF26AD
0 ETH0.000059321.20048179
Approve203731372024-07-24 1:32:3537 days ago1721784755IN
0x9333D398...EDfAF26AD
0 ETH0.000103632.09983124
Approve203106842024-07-15 8:21:2346 days ago1721031683IN
0x9333D398...EDfAF26AD
0 ETH0.000194963.94545107
Approve202966912024-07-13 9:28:3548 days ago1720862915IN
0x9333D398...EDfAF26AD
0 ETH0.000075821.54304293
Approve201679452024-06-25 9:56:5966 days ago1719309419IN
0x9333D398...EDfAF26AD
0 ETH0.000121914.50323207
Approve201249532024-06-19 9:40:5972 days ago1718790059IN
0x9333D398...EDfAF26AD
0 ETH0.000181823.68387151
Approve200235432024-06-05 5:29:4786 days ago1717565387IN
0x9333D398...EDfAF26AD
0 ETH0.000324036.56520989
Approve199548272024-05-26 15:04:4796 days ago1716735887IN
0x9333D398...EDfAF26AD
0 ETH0.0008468217.22871571
Approve199084002024-05-20 3:17:11102 days ago1716175031IN
0x9333D398...EDfAF26AD
0 ETH0.000228354.62116282
Approve198846632024-05-16 19:36:11106 days ago1715888171IN
0x9333D398...EDfAF26AD
0 ETH0.00015465.23802655
Approve198846552024-05-16 19:34:35106 days ago1715888075IN
0x9333D398...EDfAF26AD
0 ETH0.000269225.44810173
Approve198846292024-05-16 19:29:23106 days ago1715887763IN
0x9333D398...EDfAF26AD
0 ETH0.000284655.76734821
Transfer198538892024-05-12 12:17:59110 days ago1715516279IN
0x9333D398...EDfAF26AD
0 ETH0.000202143.596143
Approve197723942024-05-01 2:47:23121 days ago1714531643IN
0x9333D398...EDfAF26AD
0 ETH0.000193187.13593916
Approve197183892024-04-23 13:27:47129 days ago1713878867IN
0x9333D398...EDfAF26AD
0 ETH0.0005865911.87053198
Transfer197183762024-04-23 13:25:11129 days ago1713878711IN
0x9333D398...EDfAF26AD
0 ETH0.0007325413.02926357
Approve195853942024-04-04 22:32:35147 days ago1712269955IN
0x9333D398...EDfAF26AD
0 ETH0.0004831317.84612632
Approve195853922024-04-04 22:32:11147 days ago1712269931IN
0x9333D398...EDfAF26AD
0 ETH0.000472317.40772731
Approve195713572024-04-02 23:24:59149 days ago1712100299IN
0x9333D398...EDfAF26AD
0 ETH0.0010713221.70608806
Approve194664652024-03-19 4:37:35164 days ago1710823055IN
0x9333D398...EDfAF26AD
0 ETH0.0010109920.48373988
Approve193047922024-02-25 13:07:35187 days ago1708866455IN
0x9333D398...EDfAF26AD
0 ETH0.0013335727.16476004
Approve192923192024-02-23 19:16:59189 days ago1708715819IN
0x9333D398...EDfAF26AD
0 ETH0.0016351233.30734123
Approve192714342024-02-20 20:57:11192 days ago1708462631IN
0x9333D398...EDfAF26AD
0 ETH0.0018472337.62812325
Approve192495372024-02-17 19:05:23195 days ago1708196723IN
0x9333D398...EDfAF26AD
0 ETH0.0012470425.40214369
Approve192085742024-02-12 1:08:23200 days ago1707700103IN
0x9333D398...EDfAF26AD
0 ETH0.0022020344.85534959
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
167584902023-03-04 23:58:59544 days ago1677974339  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.