ETH Price: $3,132.01 (-1.97%)
 

Overview

ETH Balance

0.000119085365853659 ETH

Eth Value

$0.37 (@ $3,132.01/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cash154572812022-09-02 5:11:00880 days ago1662095460IN
0xE33dB064...94B25f8A4
0 ETH0.000330037.70759296
Cash154572812022-09-02 5:11:00880 days ago1662095460IN
0xE33dB064...94B25f8A4
0 ETH0.000330037.70759296
Cash154572812022-09-02 5:11:00880 days ago1662095460IN
0xE33dB064...94B25f8A4
0 ETH0.000330037.70759296
Cash154571892022-09-02 4:51:43880 days ago1662094303IN
0xE33dB064...94B25f8A4
0 ETH0.0004676610.92161343
End154571632022-09-02 4:45:17880 days ago1662093917IN
0xE33dB064...94B25f8A4
0 ETH0.000972799.37600847
Bid154401052022-08-30 11:26:41882 days ago1661858801IN
0xE33dB064...94B25f8A4
0.0021 ETH0.0009325716.52716376
Bid154333162022-08-29 9:22:55883 days ago1661764975IN
0xE33dB064...94B25f8A4
0.00139734 ETH0.000539310.11229947
Bid154321452022-08-29 4:53:21884 days ago1661748801IN
0xE33dB064...94B25f8A4
0.0013308 ETH0.000273795.13380651
Start154213202022-08-27 11:28:04885 days ago1661599684IN
0xE33dB064...94B25f8A4
0.00126742 ETH0.000548755.1577584
Update User Pric...154213112022-08-27 11:26:46885 days ago1661599606IN
0xE33dB064...94B25f8A4
0 ETH0.000318736.12640917
Update User Pric...154213002022-08-27 11:24:32885 days ago1661599472IN
0xE33dB064...94B25f8A4
0 ETH0.000492256.85123288
Approve154212552022-08-27 11:15:41885 days ago1661598941IN
0xE33dB064...94B25f8A4
0 ETH0.000402118.19915405

Latest 8 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
154572812022-09-02 5:11:00880 days ago1662095460
0xE33dB064...94B25f8A4
0.00039951 ETH
154572812022-09-02 5:11:00880 days ago1662095460
0xE33dB064...94B25f8A4
0.00000356 ETH
154572812022-09-02 5:11:00880 days ago1662095460
0xE33dB064...94B25f8A4
0.00039951 ETH
154571892022-09-02 4:51:43880 days ago1662094303
0xE33dB064...94B25f8A4
0.00117832 ETH
154401052022-08-30 11:26:41882 days ago1661858801
0xE33dB064...94B25f8A4
0.00139734 ETH
154333162022-08-29 9:22:55883 days ago1661764975
0xE33dB064...94B25f8A4
0.0013308 ETH
154321452022-08-29 4:53:21884 days ago1661748801
0xE33dB064...94B25f8A4
0.00126742 ETH
153650642022-08-18 12:42:23894 days ago1660826543  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.