ETH Price: $3,292.45 (+1.31%)
Gas: 2 Gwei

Contract

0x7E0EAF21357B27477524EDed3185E6dc1A4C2486
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203464622024-07-20 8:10:357 days ago1721463035IN
0x7E0EAF21...c1A4C2486
0 ETH0.000169693.45171046
Transfer198889272024-05-17 9:54:3571 days ago1715939675IN
0x7E0EAF21...c1A4C2486
0 ETH0.00052989.42474852
Approve194615922024-03-18 12:09:59131 days ago1710763799IN
0x7E0EAF21...c1A4C2486
0 ETH0.003326967.71913672
Approve190162152024-01-16 1:38:47193 days ago1705369127IN
0x7E0EAF21...c1A4C2486
0 ETH0.0012988326.43775883
Transfer185160102023-11-06 22:47:35263 days ago1699310855IN
0x7E0EAF21...c1A4C2486
0 ETH0.0017293930.7580026
Approve176480012023-07-08 8:56:47385 days ago1688806607IN
0x7E0EAF21...c1A4C2486
0 ETH0.000949619.31971592
Approve175724622023-06-27 18:27:35395 days ago1687890455IN
0x7E0EAF21...c1A4C2486
0 ETH0.0006953814.15449636
Approve170203332023-04-10 21:07:23473 days ago1681160843IN
0x7E0EAF21...c1A4C2486
0 ETH0.0008730227.26829703
Approve165993562023-02-10 15:49:11532 days ago1676044151IN
0x7E0EAF21...c1A4C2486
0 ETH0.0023820948.48753836
Approve163338822023-01-04 14:00:11569 days ago1672840811IN
0x7E0EAF21...c1A4C2486
0 ETH0.0007813615.90463543
Approve162784912022-12-27 20:32:23577 days ago1672173143IN
0x7E0EAF21...c1A4C2486
0 ETH0.0007320914.90169852
Transfer158463662022-10-28 11:49:47638 days ago1666957787IN
0x7E0EAF21...c1A4C2486
0 ETH0.0005724610.18148864
Approve155230702022-09-12 21:11:43683 days ago1663017103IN
0x7E0EAF21...c1A4C2486
0 ETH0.000589320.17050304
Approve155230702022-09-12 21:11:43683 days ago1663017103IN
0x7E0EAF21...c1A4C2486
0 ETH0.000589320.17050304
Approve155230702022-09-12 21:11:43683 days ago1663017103IN
0x7E0EAF21...c1A4C2486
0 ETH0.0009906920.17050304
Approve154052382022-08-24 21:17:31702 days ago1661375851IN
0x7E0EAF21...c1A4C2486
0 ETH0.000445129.06059805
Approve152860542022-08-06 2:19:49721 days ago1659752389IN
0x7E0EAF21...c1A4C2486
0 ETH0.000330246.68304664
Transfer152588142022-08-01 20:28:28725 days ago1659385708IN
0x7E0EAF21...c1A4C2486
0 ETH0.000972617.29810578
Approve150192572022-06-24 16:46:06763 days ago1656089166IN
0x7E0EAF21...c1A4C2486
0 ETH0.0016307233
Approve149977262022-06-20 17:15:12767 days ago1655745312IN
0x7E0EAF21...c1A4C2486
0 ETH0.0025871352.35419196
Update User Pric...149788212022-06-17 11:00:30771 days ago1655463630IN
0x7E0EAF21...c1A4C2486
0 ETH0.0010927920.99472658
Update User Pric...149788082022-06-17 10:57:17771 days ago1655463437IN
0x7E0EAF21...c1A4C2486
0 ETH0.001099821.13429413
Update User Pric...149788032022-06-17 10:56:05771 days ago1655463365IN
0x7E0EAF21...c1A4C2486
0 ETH0.0009476518.21051579
Approve147444502022-05-09 20:25:45809 days ago1652127945IN
0x7E0EAF21...c1A4C2486
0 ETH0.0046605994.86631286
Approve146867222022-04-30 16:47:03818 days ago1651337223IN
0x7E0EAF21...c1A4C2486
0 ETH0.0038784578.9458196
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
143863922022-03-14 18:36:46865 days ago1647283006  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.