ETH Price: $3,244.16 (+1.49%)

Contract

0xe37254859c446Bb35Cb8Ca478Ac6439807274C6F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve215261462025-01-01 0:51:1120 days ago1735692671IN
0xe3725485...807274C6F
0 ETH0.00014935.10635852
Approve215261442025-01-01 0:50:4720 days ago1735692647IN
0xe3725485...807274C6F
0 ETH0.000255525.2
Approve215159922024-12-30 14:49:1121 days ago1735570151IN
0xe3725485...807274C6F
0 ETH0.0004301915.85575083
Transfer201282322024-06-19 20:40:35215 days ago1718829635IN
0xe3725485...807274C6F
0 ETH0.00059188.29824937
Approve196420012024-04-12 20:48:11283 days ago1712954891IN
0xe3725485...807274C6F
0 ETH0.0011215641.33744377
Approve196250622024-04-10 11:54:59285 days ago1712750099IN
0xe3725485...807274C6F
0 ETH0.0007894615.97599647
Transfer188989542023-12-30 14:34:47387 days ago1703946887IN
0xe3725485...807274C6F
0 ETH0.0008523615.16368822
Approve183061922023-10-08 13:55:23470 days ago1696773323IN
0xe3725485...807274C6F
0 ETH0.000220978.14439441
Approve178071732023-07-30 16:56:35540 days ago1690736195IN
0xe3725485...807274C6F
0 ETH0.0014102128.53757957
Approve174784092023-06-14 13:14:47586 days ago1686748487IN
0xe3725485...807274C6F
0 ETH0.0009413219.19342769
Approve174620472023-06-12 5:57:23588 days ago1686549443IN
0xe3725485...807274C6F
0 ETH0.0006435513.12189327
Approve174464422023-06-10 1:13:35590 days ago1686359615IN
0xe3725485...807274C6F
0 ETH0.0005358518.32603817
Approve174464392023-06-10 1:12:59590 days ago1686359579IN
0xe3725485...807274C6F
0 ETH0.0009273318.87130287
Approve174221022023-06-06 14:49:47594 days ago1686062987IN
0xe3725485...807274C6F
0 ETH0.0015580531.76851383
Approve173751512023-05-30 23:57:23601 days ago1685491043IN
0xe3725485...807274C6F
0 ETH0.0009981131.245711
Approve173721592023-05-30 13:52:23601 days ago1685454743IN
0xe3725485...807274C6F
0 ETH0.0014088343.97123386
Approve173606682023-05-28 23:04:11603 days ago1685315051IN
0xe3725485...807274C6F
0 ETH0.0008177125.55028077
Approve173606012023-05-28 22:50:47603 days ago1685314247IN
0xe3725485...807274C6F
0 ETH0.0007617526.08402104
Approve173605962023-05-28 22:49:47603 days ago1685314187IN
0xe3725485...807274C6F
0 ETH0.0013074226.62557557
Approve172704952023-05-16 6:27:11615 days ago1684218431IN
0xe3725485...807274C6F
0 ETH0.0020128140.95083648
Update User Pric...167612582023-03-05 9:17:23687 days ago1678007843IN
0xe3725485...807274C6F
0 ETH0.0013251518.44614846
Transfer166658922023-02-19 23:26:59701 days ago1676849219IN
0xe3725485...807274C6F
0 ETH0.0011508720.47857304
Approve164881952023-01-26 3:06:35725 days ago1674702395IN
0xe3725485...807274C6F
0 ETH0.0008209916.61389647
Approve164743822023-01-24 4:48:23727 days ago1674535703IN
0xe3725485...807274C6F
0 ETH0.0007261814.80671657
Approve164637182023-01-22 17:04:23729 days ago1674407063IN
0xe3725485...807274C6F
0 ETH0.0007403415
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
127499672021-07-02 18:58:501298 days ago1625252330  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.