ETH Price: $3,253.44 (-0.40%)
Gas: 2.1 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve210487912024-10-26 9:05:5998 days ago1729933559IN
0x175EaF4f...4bf38B198
0 ETH0.000132394.87982554
Transfer202507572024-07-06 23:28:47209 days ago1720308527IN
0x175EaF4f...4bf38B198
0 ETH0.000092111.63882378
Approve194859822024-03-21 22:24:35316 days ago1711059875IN
0x175EaF4f...4bf38B198
0 ETH0.0012713525.87215922
Approve192703792024-02-20 17:24:11346 days ago1708449851IN
0x175EaF4f...4bf38B198
0 ETH0.0021848644.26737162
Approve192635982024-02-19 18:36:47347 days ago1708367807IN
0x175EaF4f...4bf38B198
0 ETH0.0020050940.62522576
Approve188727312023-12-26 22:06:23402 days ago1703628383IN
0x175EaF4f...4bf38B198
0 ETH0.0009858719.95052176
Approve188449392023-12-23 0:26:47406 days ago1703291207IN
0x175EaF4f...4bf38B198
0 ETH0.0011722923.88543631
Approve187299282023-12-06 21:23:59422 days ago1701897839IN
0x175EaF4f...4bf38B198
0 ETH0.0030687962.17670705
Approve186425642023-11-24 15:49:47434 days ago1700840987IN
0x175EaF4f...4bf38B198
0 ETH0.0012712546.95815793
Approve185700882023-11-14 12:17:35444 days ago1699964255IN
0x175EaF4f...4bf38B198
0 ETH0.0008225930.31843888
Approve185416162023-11-10 12:42:35448 days ago1699620155IN
0x175EaF4f...4bf38B198
0 ETH0.0015184330.72769048
Update User Pric...184211572023-10-24 15:57:47465 days ago1698163067IN
0x175EaF4f...4bf38B198
0 ETH0.0021242640.84727348
Update User Pric...184201432023-10-24 12:33:11465 days ago1698150791IN
0x175EaF4f...4bf38B198
0 ETH0.0021365929.74633553
Transfer184201232023-10-24 12:29:11465 days ago1698150551IN
0x175EaF4f...4bf38B198
0 ETH0.001154620.09225914
Approve183923452023-10-20 15:12:11469 days ago1697814731IN
0x175EaF4f...4bf38B198
0 ETH0.0010306421.00965159
Update User Pric...183782912023-10-18 16:00:59471 days ago1697644859IN
0x175EaF4f...4bf38B198
0 ETH0.0017637924.55618853
Update User Pric...183782852023-10-18 15:59:47471 days ago1697644787IN
0x175EaF4f...4bf38B198
0 ETH0.0007476518.21455504
Approve183512412023-10-14 21:15:47475 days ago1697318147IN
0x175EaF4f...4bf38B198
0 ETH0.00040528.20988944
Approve183512342023-10-14 21:14:23475 days ago1697318063IN
0x175EaF4f...4bf38B198
0 ETH0.000424728.6052378
Approve183512212023-10-14 21:11:47475 days ago1697317907IN
0x175EaF4f...4bf38B198
0 ETH0.000413468.37729847
Approve183512172023-10-14 21:10:59475 days ago1697317859IN
0x175EaF4f...4bf38B198
0 ETH0.0005148510.4213623
Update User Pric...183510512023-10-14 20:37:35475 days ago1697315855IN
0x175EaF4f...4bf38B198
0 ETH0.000298675.74327972
Update User Pric...183510382023-10-14 20:34:59475 days ago1697315699IN
0x175EaF4f...4bf38B198
0 ETH0.000281035.40390434
Transfer183510112023-10-14 20:29:35475 days ago1697315375IN
0x175EaF4f...4bf38B198
0 ETH0.000305195.62673109
Update User Pric...183509972023-10-14 20:26:47475 days ago1697315207IN
0x175EaF4f...4bf38B198
0 ETH0.000291015.59583661
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
130709982021-08-21 21:17:041259 days ago1629580624  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.