ETH Price: $3,425.56 (+2.38%)

Contract

0x0469dFb82A816C5F0a566625Cec09216A721E90e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer203950152024-07-27 2:51:35119 days ago1722048695IN
0x0469dFb8...6A721E90e
0 ETH0.000069111.13338564
Transfer203950082024-07-27 2:50:11119 days ago1722048611IN
0x0469dFb8...6A721E90e
0 ETH0.000069741.14359176
Approve201460402024-06-22 8:25:47154 days ago1719044747IN
0x0469dFb8...6A721E90e
0 ETH0.000118842.40492004
Transfer200949332024-06-15 4:51:59161 days ago1718427119IN
0x0469dFb8...6A721E90e
0 ETH0.000324655.32197842
Transfer199989422024-06-01 19:04:35175 days ago1717268675IN
0x0469dFb8...6A721E90e
0 ETH0.000271116.931384
Transfer199989172024-06-01 18:59:35175 days ago1717268375IN
0x0469dFb8...6A721E90e
0 ETH0.000329017.4943544
Transfer198166392024-05-07 7:16:47200 days ago1715066207IN
0x0469dFb8...6A721E90e
0 ETH0.000318417.25678915
Approve197436052024-04-27 2:10:11210 days ago1714183811IN
0x0469dFb8...6A721E90e
0 ETH0.000275455.60547886
Transfer195647462024-04-02 1:08:35235 days ago1712020115IN
0x0469dFb8...6A721E90e
0 ETH0.0008855922.65533183
Transfer192118782024-02-12 12:14:47285 days ago1707740087IN
0x0469dFb8...6A721E90e
0 ETH0.0011924219.54737821
Transfer191848372024-02-08 17:09:35289 days ago1707412175IN
0x0469dFb8...6A721E90e
0 ETH0.004632975.96163452
Approve180045432023-08-27 7:33:59454 days ago1693121639IN
0x0469dFb8...6A721E90e
0 ETH0.0005227810.65953607
Update User Pric...180045212023-08-27 7:29:35454 days ago1693121375IN
0x0469dFb8...6A721E90e
0 ETH0.0004482710.48685656
Update User Pric...180044812023-08-27 7:21:35454 days ago1693120895IN
0x0469dFb8...6A721E90e
0 ETH0.0010362910.70708292
Approve178577962023-08-06 18:47:11475 days ago1691347631IN
0x0469dFb8...6A721E90e
0 ETH0.0007169314.59676924
Transfer177663672023-07-24 23:53:47488 days ago1690242827IN
0x0469dFb8...6A721E90e
0 ETH0.0014826924.31037934
Transfer177442402023-07-21 21:36:11491 days ago1689975371IN
0x0469dFb8...6A721E90e
0 ETH0.0017683629
Transfer177001702023-07-15 17:12:23497 days ago1689441143IN
0x0469dFb8...6A721E90e
0 ETH0.0010957417.9660547
Transfer176676832023-07-11 3:24:35501 days ago1689045875IN
0x0469dFb8...6A721E90e
0 ETH0.0011112318.22357827
Transfer176525492023-07-09 0:17:59504 days ago1688861879IN
0x0469dFb8...6A721E90e
0 ETH0.0009079914.88768142
Transfer176525272023-07-09 0:13:35504 days ago1688861615IN
0x0469dFb8...6A721E90e
0 ETH0.00091214.95338937
Transfer176462762023-07-08 3:07:47504 days ago1688785667IN
0x0469dFb8...6A721E90e
0 ETH0.0009301715.251342
Transfer176442682023-07-07 20:22:59505 days ago1688761379IN
0x0469dFb8...6A721E90e
0 ETH0.0031298751.317818
Transfer175995782023-07-01 13:44:11511 days ago1688219051IN
0x0469dFb8...6A721E90e
0 ETH0.0008975320.44960593
Transfer174830882023-06-15 5:02:23527 days ago1686805343IN
0x0469dFb8...6A721E90e
0 ETH0.0009583915.71708755
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
148395372022-05-25 3:26:46913 days ago1653449206  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.