ETH Price: $3,617.90 (+1.10%)

Contract

0x4C2aFDBAE1CC13e59F96c79B2d2fBC58C3Ed7D51
 

Overview

ETH Balance

0.03 ETH

Eth Value

$108.54 (@ $3,617.90/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim159826562022-11-16 12:42:23747 days ago1668602543IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.0008437613.28654398
Claim154764242022-09-05 7:02:56820 days ago1662361376IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000254024
Claim154764242022-09-05 7:02:56820 days ago1662361376IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000254024
Claim154764092022-09-05 7:00:14820 days ago1662361214IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000317525
Claim154764062022-09-05 6:59:30820 days ago1662361170IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.00035165.53765561
Claim154763982022-09-05 6:57:39820 days ago1662361059IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000254024
Claim154679492022-09-03 22:25:14821 days ago1662243914IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000399496.29081847
Expire154679402022-09-03 22:21:56821 days ago1662243716IN
0x4C2aFDBA...8C3Ed7D51
0 ETH0.000329836.36320769
Contribute153485582022-08-15 22:10:44840 days ago1660601444IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.0095613873.84274944
Contribute152870252022-08-06 5:59:59850 days ago1659765599IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.000859186.63549577
Contribute151577532022-07-17 3:24:27870 days ago1658028267IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001035868
Contribute151577422022-07-17 3:21:29870 days ago1658028089IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001033837.98432388
Contribute151577252022-07-17 3:17:59870 days ago1658027879IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001035868
Contribute151577172022-07-17 3:15:47870 days ago1658027747IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001035868
Contribute151577112022-07-17 3:14:10870 days ago1658027650IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001056158.15667394
Contribute150826412022-07-05 12:53:33881 days ago1657025613IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001831914.14780791
Contribute150818062022-07-05 9:57:48882 days ago1657015068IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.0030938523.89388632
Contribute150809392022-07-05 6:39:36882 days ago1657003176IN
0x4C2aFDBA...8C3Ed7D51
0.01 ETH0.001140149

Latest 8 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
159826562022-11-16 12:42:23747 days ago1668602543
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154764242022-09-05 7:02:56820 days ago1662361376
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154764242022-09-05 7:02:56820 days ago1662361376
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154764092022-09-05 7:00:14820 days ago1662361214
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154764062022-09-05 6:59:30820 days ago1662361170
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154763982022-09-05 6:57:39820 days ago1662361059
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
154679492022-09-03 22:25:14821 days ago1662243914
0x4C2aFDBA...8C3Ed7D51
0.01 ETH
150807142022-07-05 5:47:50882 days ago1657000070  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x93fC1534...6AD88526c
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
NonReceivableInitializedProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-05-14
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

/**
 * @title NonReceivableInitializedProxy
 * @author Anna Carroll
 */
contract NonReceivableInitializedProxy {
    // 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)
            }
        }
    }
}

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"}]

Deployed Bytecode

0x608060405260043610601c5760003560e01c8063d7dfa0dd146062575b6040517f0000000000000000000000000c696f63a8cfd4b456f725f1174f1d5b48d1e8769036600082376000803683855af43d806000843e818015605e578184f35b8184fd5b348015606d57600080fd5b5060947f0000000000000000000000000c696f63a8cfd4b456f725f1174f1d5b48d1e87681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122022bce6ccb56fc7799f9d68d15a8c664be8dbfadc95d6a50dfb2e95627f51e85564736f6c63430008090033

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.