ETH Price: $3,412.18 (-1.23%)
Gas: 12 Gwei

Contract

0x9D8B6b46D8b1A7fc64995fCF0328dc009a4239cC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve201529922024-06-23 7:45:1130 days ago1719128711IN
0x9D8B6b46...09a4239cC
0 ETH0.000166433.38609358
Approve198827262024-05-16 13:06:1168 days ago1715864771IN
0x9D8B6b46...09a4239cC
0 ETH0.000396198.07235842
Approve195289932024-03-28 0:14:47117 days ago1711584887IN
0x9D8B6b46...09a4239cC
0 ETH0.0016384233.19609832
Transfer186374852023-11-23 22:44:23242 days ago1700779463IN
0x9D8B6b46...09a4239cC
0 ETH0.0014180221.321147
Approve170106632023-04-09 12:12:23471 days ago1681042343IN
0x9D8B6b46...09a4239cC
0 ETH0.0005199619.16440748
Approve165220152023-01-30 20:25:35539 days ago1675110335IN
0x9D8B6b46...09a4239cC
0 ETH0.0011732523.77125829
Approve162489082022-12-23 17:26:47577 days ago1671816407IN
0x9D8B6b46...09a4239cC
0 ETH0.0012864926.23152452
Approve156951022022-10-07 8:42:23655 days ago1665132143IN
0x9D8B6b46...09a4239cC
0 ETH0.000259035.2419336
Approve155997642022-09-24 0:54:47668 days ago1663980887IN
0x9D8B6b46...09a4239cC
0 ETH0.000319326.46187915
Approve155062662022-09-10 2:26:26682 days ago1662776786IN
0x9D8B6b46...09a4239cC
0 ETH0.0006305312.7598065
Approve154388672022-08-30 6:40:58693 days ago1661841658IN
0x9D8B6b46...09a4239cC
0 ETH0.000450919.12497055
Approve154050962022-08-24 20:51:03698 days ago1661374263IN
0x9D8B6b46...09a4239cC
0 ETH0.0009975320.18657108
Approve153196542022-08-11 8:25:48712 days ago1660206348IN
0x9D8B6b46...09a4239cC
0 ETH0.000422538.55052895
Approve149095692022-06-05 14:16:11779 days ago1654438571IN
0x9D8B6b46...09a4239cC
0 ETH0.0026407153.84376285
Approve149035302022-06-04 13:40:20780 days ago1654350020IN
0x9D8B6b46...09a4239cC
0 ETH0.0038888478.69598527
Approve148373702022-05-24 19:03:59790 days ago1653419039IN
0x9D8B6b46...09a4239cC
0 ETH0.0013137226.7866961
Approve148119392022-05-20 15:42:24795 days ago1653061344IN
0x9D8B6b46...09a4239cC
0 ETH0.0020398941.28011276
Approve147300212022-05-07 13:14:34808 days ago1651929274IN
0x9D8B6b46...09a4239cC
0 ETH0.0017941436.30691816
Approve146965002022-05-02 5:33:57813 days ago1651469637IN
0x9D8B6b46...09a4239cC
0 ETH0.0014824830
Update User Pric...146757332022-04-28 23:23:19816 days ago1651188199IN
0x9D8B6b46...09a4239cC
0 ETH0.0021368829.73135679
Update User Pric...146728022022-04-28 12:19:05817 days ago1651148345IN
0x9D8B6b46...09a4239cC
0 ETH0.0028501239.66162601
Update User Pric...146725152022-04-28 11:09:47817 days ago1651144187IN
0x9D8B6b46...09a4239cC
0 ETH0.001905726.5193884
Update User Pric...146720282022-04-28 9:13:49817 days ago1651137229IN
0x9D8B6b46...09a4239cC
0 ETH0.0018473625.70744587
Update User Pric...146716582022-04-28 7:56:28817 days ago1651132588IN
0x9D8B6b46...09a4239cC
0 ETH0.0025706535.77256934
Update User Pric...146714502022-04-28 7:11:19817 days ago1651129879IN
0x9D8B6b46...09a4239cC
0 ETH0.0022508831.32273723
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
146494962022-04-24 20:18:26820 days ago1650831506  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.