ETH Price: $2,657.80 (+1.50%)

Contract

0xA16A5215FD9622C307Bd6FE0B03877179eC9CbAD
 

Overview

ETH Balance

0.000485415 ETH

Eth Value

$1.29 (@ $2,657.80/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim154257962022-08-28 4:45:12896 days ago1661661912IN
0xA16A5215...79eC9CbAD
0 ETH0.000551474.5
Claim153902372022-08-22 12:29:54901 days ago1661171394IN
0xA16A5215...79eC9CbAD
0 ETH0.000821786.70577495
Buy151988112022-07-23 12:03:39931 days ago1658577819IN
0xA16A5215...79eC9CbAD
0 ETH0.0122123315.15978928
Contribute151987202022-07-23 11:44:02931 days ago1658576642IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000772965.96964127
Contribute151985852022-07-23 11:14:35931 days ago1658574875IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000832236.42734464
Contribute151984842022-07-23 10:56:19931 days ago1658573779IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000942877.28186041
Contribute151972742022-07-23 6:15:59932 days ago1658556959IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000628716.59842104
Contribute151972312022-07-23 6:07:20932 days ago1658556440IN
0xA16A5215...79eC9CbAD
0.00001 ETH0.00084346.51364342
Contribute151971152022-07-23 5:43:01932 days ago1658554981IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000907157.00597342
Contribute151963262022-07-23 2:48:14932 days ago1658544494IN
0xA16A5215...79eC9CbAD
0.000011 ETH0.00088826.85960411
Contribute151959852022-07-23 1:31:19932 days ago1658539879IN
0xA16A5215...79eC9CbAD
0.001 ETH0.000869556.715554
Contribute151958782022-07-23 1:10:52932 days ago1658538652IN
0xA16A5215...79eC9CbAD
0.00001 ETH0.0014978911.56827836
Contribute151925622022-07-22 13:15:19932 days ago1658495719IN
0xA16A5215...79eC9CbAD
0.0001 ETH0.0025186519.45162395
Contribute151915992022-07-22 9:39:06933 days ago1658482746IN
0xA16A5215...79eC9CbAD
0.00001 ETH0.001097418.47532572
Contribute151915722022-07-22 9:33:24933 days ago1658482404IN
0xA16A5215...79eC9CbAD
0.00005 ETH0.001051788.12297287
Contribute151913562022-07-22 8:47:26933 days ago1658479646IN
0xA16A5215...79eC9CbAD
0.00006591 ETH0.0016502912.7452273
Contribute151910302022-07-22 7:31:17933 days ago1658475077IN
0xA16A5215...79eC9CbAD
0.001 ETH0.0018447514.2470664
Contribute151905932022-07-22 5:38:06933 days ago1658468286IN
0xA16A5215...79eC9CbAD
0.00001 ETH0.001193039.21380477
Contribute151905882022-07-22 5:36:01933 days ago1658468161IN
0xA16A5215...79eC9CbAD
0.00001 ETH0.001064268.21934931
Contribute151905812022-07-22 5:34:43933 days ago1658468083IN
0xA16A5215...79eC9CbAD
0.000001 ETH0.001130158.72818876
Contribute151905762022-07-22 5:33:24933 days ago1658468004IN
0xA16A5215...79eC9CbAD
0.0001 ETH0.001114648.60843249
Contribute151903842022-07-22 4:56:51933 days ago1658465811IN
0xA16A5215...79eC9CbAD
0.001 ETH0.001012637.99342891

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
151988112022-07-23 12:03:39931 days ago1658577819
0xA16A5215...79eC9CbAD
0.0001925 ETH
151988112022-07-23 12:03:39931 days ago1658577819
0xA16A5215...79eC9CbAD
0.0077 ETH
151903642022-07-22 4:53:32933 days ago1658465612  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.