ETH Price: $2,624.09 (+1.98%)

Contract

0x6120308A62419A674a908676663B06fd82F2Ee2B
 

Overview

ETH Balance

0.110315454391169569 ETH

Eth Value

$289.48 (@ $2,624.09/ETH)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Claim Fees198285912024-05-08 23:24:11105 days ago1715210651IN
0x6120308A...d82F2Ee2B
0 ETH0.000157543.5101419
Transfer195501102024-03-30 23:45:35143 days ago1711842335IN
0x6120308A...d82F2Ee2B
0 ETH0.0010969425.2892233
Transfer193436282024-03-01 23:31:23173 days ago1709335883IN
0x6120308A...d82F2Ee2B
0 ETH0.00581154101.83909708
Transfer192967642024-02-24 10:11:23179 days ago1708769483IN
0x6120308A...d82F2Ee2B
0 ETH0.0011902627.45825852
Approve192506502024-02-17 22:49:11186 days ago1708210151IN
0x6120308A...d82F2Ee2B
0 ETH0.0008058916.30829291
Transfer192253632024-02-14 9:37:47189 days ago1707903467IN
0x6120308A...d82F2Ee2B
0 ETH0.0019003726.6412578
Transfer192178312024-02-13 8:13:35190 days ago1707812015IN
0x6120308A...d82F2Ee2B
0 ETH0.0014695220.60114179
Transfer192062632024-02-11 17:19:59192 days ago1707671999IN
0x6120308A...d82F2Ee2B
0 ETH0.0017923131.40781395
Transfer191765972024-02-07 13:24:59196 days ago1707312299IN
0x6120308A...d82F2Ee2B
0 ETH0.00263937.00226124
Transfer191571172024-02-04 19:47:23199 days ago1707076043IN
0x6120308A...d82F2Ee2B
0 ETH0.0009945313.95170188
Transfer191570902024-02-04 19:41:59199 days ago1707075719IN
0x6120308A...d82F2Ee2B
0 ETH0.0010075714.13226398
Transfer191570062024-02-04 19:24:59199 days ago1707074699IN
0x6120308A...d82F2Ee2B
0 ETH0.0008825314.47012347
Transfer191568572024-02-04 18:54:47199 days ago1707072887IN
0x6120308A...d82F2Ee2B
0 ETH0.0009038614.81982979
Approve191567422024-02-04 18:31:35199 days ago1707071495IN
0x6120308A...d82F2Ee2B
0 ETH0.0008513517.24927109
Approve191567342024-02-04 18:29:59199 days ago1707071399IN
0x6120308A...d82F2Ee2B
0 ETH0.0007165914.58987876
Transfer191564712024-02-04 17:37:23199 days ago1707068243IN
0x6120308A...d82F2Ee2B
0 ETH0.0012637720.72108984
Transfer191564652024-02-04 17:36:11199 days ago1707068171IN
0x6120308A...d82F2Ee2B
0 ETH0.0007357716.764066
Transfer191561352024-02-04 16:28:35199 days ago1707064115IN
0x6120308A...d82F2Ee2B
0 ETH0.0010677919.69381093
Approve191494032024-02-03 17:46:35200 days ago1706982395IN
0x6120308A...d82F2Ee2B
0 ETH0.0005957120.22387696
Approve191493992024-02-03 17:45:47200 days ago1706982347IN
0x6120308A...d82F2Ee2B
0 ETH0.0009664319.58081141
Transfer191485162024-02-03 14:46:59200 days ago1706971619IN
0x6120308A...d82F2Ee2B
0 ETH0.0007413616.89148045
Transfer191475092024-02-03 11:22:47200 days ago1706959367IN
0x6120308A...d82F2Ee2B
0 ETH0.0009426913.22232887
Transfer191045922024-01-28 10:58:23206 days ago1706439503IN
0x6120308A...d82F2Ee2B
0 ETH0.0006184214.09034446
Transfer191045672024-01-28 10:53:11206 days ago1706439191IN
0x6120308A...d82F2Ee2B
0 ETH0.0007703312.63048948
Approve190524232024-01-21 3:02:35213 days ago1705806155IN
0x6120308A...d82F2Ee2B
0 ETH0.000519110.51753251
View all transactions

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
162591352022-12-25 3:39:59605 days ago1671939599
0x6120308A...d82F2Ee2B
0.0009 ETH
161621692022-12-11 14:49:11619 days ago1670770151
0x6120308A...d82F2Ee2B
0.0003 ETH
161583042022-12-11 1:51:59619 days ago1670723519
0x6120308A...d82F2Ee2B
0.0003 ETH
161283872022-12-06 21:17:59624 days ago1670361479
0x6120308A...d82F2Ee2B
0.0003 ETH
160590562022-11-27 4:53:11633 days ago1669524791
0x6120308A...d82F2Ee2B
0.0006 ETH
158653142022-10-31 3:20:23660 days ago1667186423  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.