ETH Price: $3,134.99 (-5.43%)
 
Transaction Hash
Method
Block
From
To
Update User Pric...166890652023-02-23 5:37:23704 days ago1677130643IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0021554730
Update User Pric...164119612023-01-15 11:39:35743 days ago1673782775IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0007918915.22075771
Update User Pric...158592702022-10-30 7:05:35820 days ago1667113535IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000376977.24569262
Update User Pric...158584742022-10-30 4:25:35820 days ago1667103935IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000540287.51974407
Update User Pric...158397802022-10-27 13:42:11823 days ago1666878131IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0011050715.38048966
Update User Pric...158229702022-10-25 5:20:47825 days ago1666675247IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0008325811.58794609
Update User Pric...156652822022-10-03 4:36:47847 days ago1664771807IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000359245
Update User Pric...156622302022-10-02 18:23:23847 days ago1664735003IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000507757.06703835
Update User Pric...156622192022-10-02 18:20:59847 days ago1664734859IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000334534.65607507
Update User Pric...156579752022-10-02 4:09:23848 days ago1664683763IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000313934.3694038
Update User Pric...156401932022-09-29 16:28:47850 days ago1664468927IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0019529727.18161241
Update User Pric...156211842022-09-27 0:41:59853 days ago1664239319IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000574798
Update User Pric...156111232022-09-25 14:55:59855 days ago1664117759IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000559717.79022407
Update User Pric...156085122022-09-25 6:11:23855 days ago1664086283IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000438936.10906925
Update User Pric...155891152022-09-22 13:15:23858 days ago1663852523IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000574798
Update User Pric...155870152022-09-22 6:12:47858 days ago1663827167IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000549687.65053257
Update User Pric...155860482022-09-22 2:56:59858 days ago1663815419IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000541867.54169353
Update User Pric...155817172022-09-21 12:21:47859 days ago1663762907IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.00032254.48864978
Update User Pric...155795432022-09-21 4:46:11859 days ago1663735571IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000528287.35270661
Update User Pric...155795182022-09-21 4:40:59859 days ago1663735259IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000705819.82357873
Update User Pric...155795152022-09-21 4:40:23859 days ago1663735223IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0007220510.04957628
Update User Pric...155766332022-09-20 19:00:11859 days ago1663700411IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0008535611.87992387
Update User Pric...155762552022-09-20 17:44:11859 days ago1663695851IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0014833120.64495784
Update User Pric...155760312022-09-20 16:58:59859 days ago1663693139IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.0024583334.21535495
Update User Pric...155745412022-09-20 11:58:11860 days ago1663675091IN
0xa4e6Df9F...BFbe6A38a
0 ETH0.000344744.79824146
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
155436252022-09-16 3:49:11864 days ago1663300151  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.