ETH Price: $3,401.47 (+1.61%)
Gas: 2 Gwei

Contract

0x4CD0c43B0D53bc318cc5342b77EB6f124E47f526
 
Transaction Hash
Method
Block
From
To
Value
0x225a61b3f07cff59dbc98659663ec0aa9511f543a1da9ebce727fe241aa64abe Transfer(pending)2024-06-23 1:40:432 days ago1719106843IN
0x4CD0c43B...24E47f526
0 ETH(Pending)(Pending)
Approve201710882024-06-25 20:29:354 hrs ago1719347375IN
0x4CD0c43B...24E47f526
0 ETH0.000232597.88028746
Approve201710872024-06-25 20:29:114 hrs ago1719347351IN
0x4CD0c43B...24E47f526
0 ETH0.000380447.69878047
Approve201710852024-06-25 20:28:474 hrs ago1719347327IN
0x4CD0c43B...24E47f526
0 ETH0.00037137.513765
Approve201699622024-06-25 16:42:238 hrs ago1719333743IN
0x4CD0c43B...24E47f526
0 ETH0.0005732411.61458314
Transfer201694882024-06-25 15:07:2310 hrs ago1719328043IN
0x4CD0c43B...24E47f526
0 ETH0.0009392424
Transfer201694772024-06-25 15:05:1110 hrs ago1719327911IN
0x4CD0c43B...24E47f526
0 ETH0.0010503317.20867164
Transfer201694092024-06-25 14:51:2310 hrs ago1719327083IN
0x4CD0c43B...24E47f526
0 ETH0.0007044318
Approve201681022024-06-25 10:28:4714 hrs ago1719311327IN
0x4CD0c43B...24E47f526
0 ETH0.000216654.3896481
Transfer201667342024-06-25 5:53:1119 hrs ago1719294791IN
0x4CD0c43B...24E47f526
0 ETH0.0006122210.03464727
Approve201666192024-06-25 5:29:5919 hrs ago1719293399IN
0x4CD0c43B...24E47f526
0 ETH0.000272025.51138712
Transfer201665142024-06-25 5:08:4720 hrs ago1719292127IN
0x4CD0c43B...24E47f526
0 ETH0.0003913510
Transfer201664862024-06-25 5:03:1120 hrs ago1719291791IN
0x4CD0c43B...24E47f526
0 ETH0.0004391110
Approve201664152024-06-25 4:48:5920 hrs ago1719290939IN
0x4CD0c43B...24E47f526
0 ETH0.000159743.23650873
Approve201662092024-06-25 4:07:4721 hrs ago1719288467IN
0x4CD0c43B...24E47f526
0 ETH0.00019844.01995051
Transfer201658702024-06-25 2:59:3522 hrs ago1719284375IN
0x4CD0c43B...24E47f526
0 ETH0.0003913510
Approve201651992024-06-25 0:44:4724 hrs ago1719276287IN
0x4CD0c43B...24E47f526
0 ETH0.000258855.23831961
Approve201634182024-06-24 18:45:4730 hrs ago1719254747IN
0x4CD0c43B...24E47f526
0 ETH0.000364627.37876182
Approve201607882024-06-24 9:56:4739 hrs ago1719223007IN
0x4CD0c43B...24E47f526
0 ETH0.0006282812.71429613
Approve201593902024-06-24 5:15:1144 hrs ago1719206111IN
0x4CD0c43B...24E47f526
0 ETH0.000113942.3086016
Approve201587622024-06-24 3:08:2346 hrs ago1719198503IN
0x4CD0c43B...24E47f526
0 ETH0.000173153.5039722
Approve201577162024-06-23 23:38:112 days ago1719185891IN
0x4CD0c43B...24E47f526
0 ETH0.000099272.02079014
Approve201576062024-06-23 23:16:112 days ago1719184571IN
0x4CD0c43B...24E47f526
0 ETH0.000104582.11891836
Transfer201575712024-06-23 23:09:112 days ago1719184151IN
0x4CD0c43B...24E47f526
0 ETH0.000184393.28044643
Transfer201575492024-06-23 23:04:472 days ago1719183887IN
0x4CD0c43B...24E47f526
0 ETH0.00011552.05402428
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
138129192021-12-16 0:12:06923 days ago1639613526  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.