ETH Price: $3,044.45 (+2.09%)
Gas: 3 Gwei

Contract

0x90b0916eC12704DA969aEEC1c04dbdBCD60a39C7
 

Overview

ETH Balance

0.05592448880263798 ETH

Eth Value

$170.26 (@ $3,044.45/ETH)

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve198229892024-05-08 4:34:112 days ago1715142851IN
0x90b0916e...CD60a39C7
0 ETH0.000108284
Approve198210862024-05-07 22:11:472 days ago1715119907IN
0x90b0916e...CD60a39C7
0 ETH0.000204034.13401738
Transfer198210772024-05-07 22:09:592 days ago1715119799IN
0x90b0916e...CD60a39C7
0 ETH0.000259734.61574449
Approve198127202024-05-06 18:06:353 days ago1715018795IN
0x90b0916e...CD60a39C7
0 ETH0.000148925.50118568
Approve198092152024-05-06 6:19:234 days ago1714976363IN
0x90b0916e...CD60a39C7
0 ETH0.000118614.3718995
Approve198008942024-05-05 2:23:595 days ago1714875839IN
0x90b0916e...CD60a39C7
0 ETH0.000235574.77296256
Approve197727222024-05-01 3:53:359 days ago1714535615IN
0x90b0916e...CD60a39C7
0 ETH0.000344286.97556262
Approve197495812024-04-27 22:14:5912 days ago1714256099IN
0x90b0916e...CD60a39C7
0 ETH0.000266635.40230278
Transfer197467692024-04-27 12:49:1112 days ago1714222151IN
0x90b0916e...CD60a39C7
0 ETH0.0008544914
Transfer197353262024-04-25 22:20:1114 days ago1714083611IN
0x90b0916e...CD60a39C7
0 ETH0.000495348.8046565
Transfer197105392024-04-22 11:08:1117 days ago1713784091IN
0x90b0916e...CD60a39C7
0 ETH0.0009765616
Approve197073072024-04-22 0:16:5918 days ago1713745019IN
0x90b0916e...CD60a39C7
0 ETH0.00042378.58459613
Transfer197059472024-04-21 19:44:1118 days ago1713728651IN
0x90b0916e...CD60a39C7
0 ETH0.0009155215
Approve196912782024-04-19 18:30:4720 days ago1713551447IN
0x90b0916e...CD60a39C7
0 ETH0.0005894611.94319382
Approve196416972024-04-12 19:46:4727 days ago1712951207IN
0x90b0916e...CD60a39C7
0 ETH0.0039185979.76303254
Approve196358032024-04-11 23:58:4728 days ago1712879927IN
0x90b0916e...CD60a39C7
0 ETH0.0002923610.7996417
Approve195874652024-04-05 5:29:1135 days ago1712294951IN
0x90b0916e...CD60a39C7
0 ETH0.0008610717.42498833
Transfer195664132024-04-02 6:44:1138 days ago1712040251IN
0x90b0916e...CD60a39C7
0 ETH0.0011251125.60851969
Transfer195662692024-04-02 6:15:1138 days ago1712038511IN
0x90b0916e...CD60a39C7
0 ETH0.0015663425.67818546
Transfer195468922024-03-30 12:53:1140 days ago1711803191IN
0x90b0916e...CD60a39C7
0 ETH0.0017089828
Approve195301882024-03-28 4:20:1143 days ago1711599611IN
0x90b0916e...CD60a39C7
0 ETH0.0010615721.50853257
Approve195202512024-03-26 18:01:5944 days ago1711476119IN
0x90b0916e...CD60a39C7
0 ETH0.0023396147.40293265
Transfer195186202024-03-26 12:29:1144 days ago1711456151IN
0x90b0916e...CD60a39C7
0 ETH0.0019908832.61873927
Transfer195031332024-03-24 8:10:1146 days ago1711267811IN
0x90b0916e...CD60a39C7
0 ETH0.0015248424.98312941
Approve195004842024-03-23 23:14:2347 days ago1711235663IN
0x90b0916e...CD60a39C7
0 ETH0.0009176818.59315955
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
172395842023-05-11 21:02:47364 days ago1683838967  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.