ETH Price: $3,480.43 (+0.91%)

Contract

0xEd5C07d5c924A01E7ab073Bd9D3d39d6D983cd7D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update User Pric...214702642024-12-24 5:32:1131 hrs ago1735018331IN
0xEd5C07d5...6D983cd7D
0 ETH0.000312256.00184901
Update User Pric...168757822023-03-21 11:41:35645 days ago1679398895IN
0xEd5C07d5...6D983cd7D
0 ETH0.0009340313
Update User Pric...166590592023-02-19 0:25:11675 days ago1676766311IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012212217
Update User Pric...166533072023-02-18 4:59:35676 days ago1676696375IN
0xEd5C07d5...6D983cd7D
0 ETH0.0010856620.86725864
Update User Pric...166413602023-02-16 12:42:23678 days ago1676551343IN
0xEd5C07d5...6D983cd7D
0 ETH0.0017758934.13404186
Update User Pric...166245572023-02-14 4:17:47680 days ago1676348267IN
0xEd5C07d5...6D983cd7D
0 ETH0.0009340313
Update User Pric...166047712023-02-11 9:57:35683 days ago1676109455IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012101216.84262788
Update User Pric...166047572023-02-11 9:54:47683 days ago1676109287IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012352917.19297596
Update User Pric...166047432023-02-11 9:51:59683 days ago1676109119IN
0xEd5C07d5...6D983cd7D
0 ETH0.0013171818.3326775
Update User Pric...166047232023-02-11 9:47:59683 days ago1676108879IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012573417.49985571
Update User Pric...166047182023-02-11 9:46:59683 days ago1676108819IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012740117.73181599
Update User Pric...166046992023-02-11 9:43:11683 days ago1676108591IN
0xEd5C07d5...6D983cd7D
0 ETH0.0014733220.50580639
Update User Pric...166046942023-02-11 9:42:11683 days ago1676108531IN
0xEd5C07d5...6D983cd7D
0 ETH0.0015904622.13626672
Update User Pric...166046822023-02-11 9:39:47683 days ago1676108387IN
0xEd5C07d5...6D983cd7D
0 ETH0.0013825719.24280439
Update User Pric...166046692023-02-11 9:37:11683 days ago1676108231IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012296817.11489497
Update User Pric...166046402023-02-11 9:31:23683 days ago1676107883IN
0xEd5C07d5...6D983cd7D
0 ETH0.0010914515.19092563
Update User Pric...166046212023-02-11 9:27:35683 days ago1676107655IN
0xEd5C07d5...6D983cd7D
0 ETH0.0012100616.8418004
Update User Pric...165899212023-02-09 8:11:11685 days ago1675930271IN
0xEd5C07d5...6D983cd7D
0 ETH0.0017512424.37392764
Update User Pric...165670872023-02-06 3:33:59688 days ago1675654439IN
0xEd5C07d5...6D983cd7D
0 ETH0.0010777315
Update User Pric...165541222023-02-04 8:06:35690 days ago1675497995IN
0xEd5C07d5...6D983cd7D
0 ETH0.0016146122.46861233
Update User Pric...165466152023-02-03 6:58:11691 days ago1675407491IN
0xEd5C07d5...6D983cd7D
0 ETH0.0011244721.61336159
Update User Pric...165457902023-02-03 4:11:59691 days ago1675397519IN
0xEd5C07d5...6D983cd7D
0 ETH0.0017624324.52968875
Update User Pric...165457772023-02-03 4:09:23691 days ago1675397363IN
0xEd5C07d5...6D983cd7D
0 ETH0.0022230730.9408794
Update User Pric...165457682023-02-03 4:07:23691 days ago1675397243IN
0xEd5C07d5...6D983cd7D
0 ETH0.0018149925.26121173
Update User Pric...165457642023-02-03 4:06:35691 days ago1675397195IN
0xEd5C07d5...6D983cd7D
0 ETH0.0017247424.00510923
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
159219722022-11-08 1:17:35778 days ago1667870255  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.