ETH Price: $2,268.96 (+3.01%)

Contract

0xadC312BC38e049B8B9cB30e1b716392CeB94f6c5
 

Overview

ETH Balance

0.06 ETH

Eth Value

$136.14 (@ $2,268.96/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim161821072022-12-14 9:42:11813 days ago1671010931IN
0xadC312BC...CeB94f6c5
0 ETH0.0010150415.98364428
Claim153391002022-08-14 10:03:01935 days ago1660471381IN
0xadC312BC...CeB94f6c5
0 ETH0.00035755.62954967
Claim153320732022-08-13 7:20:37936 days ago1660375237IN
0xadC312BC...CeB94f6c5
0 ETH0.000488427.69120432
Claim153316352022-08-13 5:45:36936 days ago1660369536IN
0xadC312BC...CeB94f6c5
0 ETH0.00043866.90658987
Claim152754472022-08-04 10:54:53945 days ago1659610493IN
0xadC312BC...CeB94f6c5
0 ETH0.000525648.27727828
Claim152539382022-08-01 2:30:29948 days ago1659321029IN
0xadC312BC...CeB94f6c5
0 ETH0.000518758.16878651
Claim152038542022-07-24 7:03:21956 days ago1658646201IN
0xadC312BC...CeB94f6c5
0 ETH0.000430196.77423865
Expire152037742022-07-24 6:43:24956 days ago1658645004IN
0xadC312BC...CeB94f6c5
0 ETH0.000498239.61215584
Contribute151314192022-07-13 1:39:22967 days ago1657676362IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0020286515.6673753
Contribute149967312022-06-20 13:09:57989 days ago1655730597IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0029164922.52413871
Contribute149897062022-06-19 8:03:33991 days ago1655625813IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0032370725
Contribute149896282022-06-19 7:42:31991 days ago1655624551IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0023262817.96591594
Contribute149889652022-06-19 4:53:27991 days ago1655614407IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0017237913.31290596
Contribute149882522022-06-19 1:51:29991 days ago1655603489IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0019130714.77473317
Contribute149856722022-06-18 15:15:35991 days ago1655565335IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0029560922.8299653
Contribute149828192022-06-18 3:26:06992 days ago1655522766IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0021762416.80717998
Contribute149790142022-06-17 11:46:43993 days ago1655466403IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0028486222
Contribute149786862022-06-17 10:28:02993 days ago1655461682IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0029124322.49282148
Contribute149780122022-06-17 7:40:51993 days ago1655451651IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0027996421.62174914
Contribute149776212022-06-17 6:02:26993 days ago1655445746IN
0xadC312BC...CeB94f6c5
0.2 ETH0.0026281920.29759727
Contribute149773842022-06-17 5:10:34993 days ago1655442634IN
0xadC312BC...CeB94f6c5
0.01 ETH0.0029808123.52970731

Latest 8 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer161821072022-12-14 9:42:11813 days ago1671010931
0xadC312BC...CeB94f6c5
0.2 ETH
Transfer153391002022-08-14 10:03:01935 days ago1660471381
0xadC312BC...CeB94f6c5
0.01 ETH
Transfer153320732022-08-13 7:20:37936 days ago1660375237
0xadC312BC...CeB94f6c5
0.01 ETH
Transfer153316352022-08-13 5:45:36936 days ago1660369536
0xadC312BC...CeB94f6c5
0.01 ETH
Transfer152754472022-08-04 10:54:53945 days ago1659610493
0xadC312BC...CeB94f6c5
0.01 ETH
Transfer152539382022-08-01 2:30:29948 days ago1659321029
0xadC312BC...CeB94f6c5
0.01 ETH
Transfer152038542022-07-24 7:03:21956 days ago1658646201
0xadC312BC...CeB94f6c5
0.01 ETH
-149772712022-06-17 4:43:13993 days ago1655440993  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

API
[{"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.