ETH Price: $1,593.44 (+0.02%)
Gas: 8 Gwei
 

Overview

ETH Balance

0.05592448880263798 ETH

Eth Value

$89.11 (@ $1,593.44/ETH)

Token Holdings

Multi Chain

Transaction Hash
Method
Block
From
To
Value
Approve182013932023-09-23 22:07:4720 hrs 26 mins ago1695506867IN
0x90b091...D60a39C7
0 ETH0.00037167.51993557
Approve182001112023-09-23 17:49:471 day 44 mins ago1695491387IN
0x90b091...D60a39C7
0 ETH0.000370257.49268844
Transfer181930672023-09-22 18:09:112 days 25 mins ago1695406151IN
0x90b091...D60a39C7
0 ETH0.0009792725
Approve181914932023-09-22 12:50:472 days 5 hrs ago1695387047IN
0x90b091...D60a39C7
0 ETH0.0005369410.87908965
Transfer181899202023-09-22 7:32:112 days 11 hrs ago1695367931IN
0x90b091...D60a39C7
0 ETH0.000587215
Transfer181890512023-09-22 4:36:232 days 13 hrs ago1695357383IN
0x90b091...D60a39C7
0 ETH0.0005695514.54468096
Transfer181890072023-09-22 4:27:232 days 14 hrs ago1695356843IN
0x90b091...D60a39C7
0 ETH0.0005554614.18062706
Transfer181889812023-09-22 4:22:112 days 14 hrs ago1695356531IN
0x90b091...D60a39C7
0 ETH0.0005984415.27779374
Transfer181889692023-09-22 4:19:472 days 14 hrs ago1695356387IN
0x90b091...D60a39C7
0 ETH0.0005649114.44388285
Approve181866562023-09-21 20:33:352 days 22 hrs ago1695328415IN
0x90b091...D60a39C7
0 ETH0.0013249726.81271126
Transfer181864212023-09-21 19:46:112 days 22 hrs ago1695325571IN
0x90b091...D60a39C7
0 ETH0.0012209420
Transfer181833392023-09-21 9:24:233 days 9 hrs ago1695288263IN
0x90b091...D60a39C7
0 ETH0.0007206418.41434615
Transfer181833242023-09-21 9:21:233 days 9 hrs ago1695288083IN
0x90b091...D60a39C7
0 ETH0.0007050718
Transfer181832942023-09-21 9:15:233 days 9 hrs ago1695287723IN
0x90b091...D60a39C7
0 ETH0.0007050718
Approve181750132023-09-20 5:26:354 days 13 hrs ago1695187595IN
0x90b091...D60a39C7
0 ETH0.000414498.42680707
Approve181627042023-09-18 12:03:476 days 6 hrs ago1695038627IN
0x90b091...D60a39C7
0 ETH0.0005927211.99459376
Transfer181619532023-09-18 9:30:116 days 9 hrs ago1695029411IN
0x90b091...D60a39C7
0 ETH0.000556489.89152912
Transfer181548582023-09-17 9:25:117 days 9 hrs ago1694942711IN
0x90b091...D60a39C7
0 ETH0.0008775714.37534641
Approve181548542023-09-17 9:24:237 days 9 hrs ago1694942663IN
0x90b091...D60a39C7
0 ETH0.000593612.01246567
Approve181545842023-09-17 8:28:597 days 10 hrs ago1694939339IN
0x90b091...D60a39C7
0 ETH0.000393487.97239244
Transfer181545802023-09-17 8:28:117 days 10 hrs ago1694939291IN
0x90b091...D60a39C7
0 ETH0.0009158815
Transfer181544822023-09-17 8:08:117 days 10 hrs ago1694938091IN
0x90b091...D60a39C7
0 ETH0.0008704114.25810659
Transfer181544592023-09-17 8:03:237 days 10 hrs ago1694937803IN
0x90b091...D60a39C7
0 ETH0.0006267316
Transfer181544592023-09-17 8:03:237 days 10 hrs ago1694937803IN
0x90b091...D60a39C7
0 ETH0.0006267316
Transfer181544452023-09-17 8:00:237 days 10 hrs ago1694937623IN
0x90b091...D60a39C7
0 ETH0.0005875615
View all transactions

Latest 1 internal transaction

Advanced mode:
Advanced Filter
Parent Txn Hash Block From To Value
172395842023-05-11 21:02:47135 days 21 hrs ago1683838967  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C...dC2ADecA
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
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.