ETH Price: $3,110.00 (-4.81%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim155441142022-09-16 5:28:11870 days ago1663306091IN
0x5D20fE11...6326474b0
0 ETH0.000490144
Claim155077382022-09-10 8:14:15876 days ago1662797655IN
0x5D20fE11...6326474b0
0 ETH0.000735216
Claim153958972022-08-23 9:59:34893 days ago1661248774IN
0x5D20fE11...6326474b0
0 ETH0.000551414.5
Claim153493612022-08-16 1:06:23901 days ago1660611983IN
0x5D20fE11...6326474b0
0 ETH0.000980288
Claim153449152022-08-15 8:12:38902 days ago1660551158IN
0x5D20fE11...6326474b0
0 ETH0.000877.1
Claim153448402022-08-15 7:55:22902 days ago1660550122IN
0x5D20fE11...6326474b0
0 ETH0.000980288
Buy153012022022-08-08 11:09:56908 days ago1659956996IN
0x5D20fE11...6326474b0
0 ETH0.003476974.67
Contribute152931262022-08-07 4:57:34910 days ago1659848254IN
0x5D20fE11...6326474b0
0.00001 ETH0.000177165.24244085
Contribute152931202022-08-07 4:56:22910 days ago1659848182IN
0x5D20fE11...6326474b0
0.000019 ETH0.000524744.05452145
Contribute152930312022-08-07 4:38:01910 days ago1659847081IN
0x5D20fE11...6326474b0
0.00012 ETH0.00084886.55840135
Contribute152929382022-08-07 4:17:40910 days ago1659845860IN
0x5D20fE11...6326474b0
0.00011 ETH0.000803716.21006502
Contribute152928582022-08-07 3:57:13910 days ago1659844633IN
0x5D20fE11...6326474b0
0.00012 ETH0.000868966.71423593
Contribute152893452022-08-06 14:45:05910 days ago1659797105IN
0x5D20fE11...6326474b0
0.0001 ETH0.00095287.36203606
Contribute152890992022-08-06 13:47:42910 days ago1659793662IN
0x5D20fE11...6326474b0
0.00015 ETH0.001162878.98515976
Contribute152879882022-08-06 9:47:34910 days ago1659779254IN
0x5D20fE11...6326474b0
0.0001 ETH0.000984667.60814492
Contribute152877692022-08-06 8:54:33910 days ago1659776073IN
0x5D20fE11...6326474b0
0.0002 ETH0.000897576.93527434
Contribute152877432022-08-06 8:49:07910 days ago1659775747IN
0x5D20fE11...6326474b0
0.0001 ETH0.001219189.42025237
Contribute152869502022-08-06 5:45:04911 days ago1659764704IN
0x5D20fE11...6326474b0
0.000001 ETH0.000967557.4759405
Contribute152862292022-08-06 3:02:58911 days ago1659754978IN
0x5D20fE11...6326474b0
0.0001 ETH0.001792413.84927471
Contribute152861122022-08-06 2:34:38911 days ago1659753278IN
0x5D20fE11...6326474b0
0.00016 ETH0.000963667.44589851
Contribute152860082022-08-06 2:11:31911 days ago1659751891IN
0x5D20fE11...6326474b0
0.0001 ETH0.00130110.05241395
Contribute152836902022-08-05 17:36:02911 days ago1659720962IN
0x5D20fE11...6326474b0
0.0001 ETH0.0025624219.79898536
Contribute152832682022-08-05 15:59:25911 days ago1659715165IN
0x5D20fE11...6326474b0
0.00001 ETH0.0021773516.82372394
Contribute152493852022-07-31 9:22:48916 days ago1659259368IN
0x5D20fE11...6326474b0
0.000077 ETH0.000738255.70426493
Contribute152493752022-07-31 9:19:51916 days ago1659259191IN
0x5D20fE11...6326474b0
0.000088 ETH0.000781146.035607
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
153012022022-08-08 11:09:56908 days ago1659956996
0x5D20fE11...6326474b0
0.000175 ETH
153012022022-08-08 11:09:56908 days ago1659956996
0x5D20fE11...6326474b0
0.007 ETH
152027212022-07-24 2:44:22924 days ago1658630662  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x28D6C685...6bD7D6474
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.5+commit.a4f2e591

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 1 : NonReceivableInitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.5;

/**
 * @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)
                }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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"}]

Deployed Bytecode

0x608060405260043610601c5760003560e01c8063d7dfa0dd146062575b6040517f0000000000000000000000002045427276b2ad409202eea1e0c81e150f3203e49036600082376000803683855af43d806000843e818015605e578184f35b8184fd5b348015606d57600080fd5b5060947f0000000000000000000000002045427276b2ad409202eea1e0c81e150f3203e481565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122007a7eaa5a45963185124ebef682025da711e153766dc1074d9deb1558770382264736f6c63430008050033

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.