ETH Price: $2,292.16 (-5.27%)

Contract

0x51EF7C7e81CDC62156E6430D83B35731497f5010
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim154011822022-08-24 5:56:30753 days ago1661320590IN
0x51EF7C7e...1497f5010
0 ETH0.000831316.78424464
Claim154010802022-08-24 5:28:29753 days ago1661318909IN
0x51EF7C7e...1497f5010
0 ETH0.000893327.2902838
Claim154010772022-08-24 5:27:46753 days ago1661318866IN
0x51EF7C7e...1497f5010
0 ETH0.000972777.93864782
Claim154010722022-08-24 5:26:22753 days ago1661318782IN
0x51EF7C7e...1497f5010
0 ETH0.000956427.50775304
Claim154010702022-08-24 5:25:38753 days ago1661318738IN
0x51EF7C7e...1497f5010
0 ETH0.000890877.27031139
Claim154010672022-08-24 5:24:47753 days ago1661318687IN
0x51EF7C7e...1497f5010
0 ETH0.000874997.14072878
Claim154010642022-08-24 5:24:09753 days ago1661318649IN
0x51EF7C7e...1497f5010
0 ETH0.000831086.52389913
Claim154010592022-08-24 5:22:43753 days ago1661318563IN
0x51EF7C7e...1497f5010
0 ETH0.000747626.10126323
Buy154010512022-08-24 5:20:19753 days ago1661318419IN
0x51EF7C7e...1497f5010
0 ETH0.004265595.68090274
Contribute154010312022-08-24 5:15:56754 days ago1661318156IN
0x51EF7C7e...1497f5010
0.004 ETH0.000890296.87898881
Contribute154010222022-08-24 5:13:17754 days ago1661317997IN
0x51EF7C7e...1497f5010
0.01 ETH0.000838136.47598146
Contribute154010152022-08-24 5:12:05754 days ago1661317925IN
0x51EF7C7e...1497f5010
0.01 ETH0.000856126.61501595
Contribute154008782022-08-24 4:39:24754 days ago1661315964IN
0x51EF7C7e...1497f5010
0.01 ETH0.00089196.89146889
Contribute154008622022-08-24 4:34:37754 days ago1661315677IN
0x51EF7C7e...1497f5010
0.01 ETH0.000685915.29981159
Contribute154008372022-08-24 4:28:48754 days ago1661315328IN
0x51EF7C7e...1497f5010
0.01 ETH0.000948017.32497512
Contribute154008322022-08-24 4:27:26754 days ago1661315246IN
0x51EF7C7e...1497f5010
0.01 ETH0.000872496.74145547
Contribute154008282022-08-24 4:26:24754 days ago1661315184IN
0x51EF7C7e...1497f5010
0.01 ETH0.000798896.17281852
Contribute154008082022-08-24 4:23:09754 days ago1661314989IN
0x51EF7C7e...1497f5010
0.01 ETH0.000636346.68280309
Contribute154007932022-08-24 4:18:58754 days ago1661314738IN
0x51EF7C7e...1497f5010
0.01 ETH0.000900156.95520139
Contribute154007912022-08-24 4:18:24754 days ago1661314704IN
0x51EF7C7e...1497f5010
0.01 ETH0.000752385.81340827
Contribute154007842022-08-24 4:17:24754 days ago1661314644IN
0x51EF7C7e...1497f5010
0.01 ETH0.000550215.77819828
Contribute154007642022-08-24 4:13:45754 days ago1661314425IN
0x51EF7C7e...1497f5010
0.01 ETH0.000848466.55579338
Contribute154007482022-08-24 4:10:55754 days ago1661314255IN
0x51EF7C7e...1497f5010
0.01 ETH0.001083688.37325164
Contribute154007312022-08-24 4:06:07754 days ago1661313967IN
0x51EF7C7e...1497f5010
0.01 ETH0.000740195.71923883
Contribute154007022022-08-24 4:00:10754 days ago1661313610IN
0x51EF7C7e...1497f5010
0.01 ETH0.000819566.33251034
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
154010512022-08-24 5:20:19753 days ago1661318419
0x51EF7C7e...1497f5010
0.004 ETH
154010512022-08-24 5:20:19753 days ago1661318419
0x51EF7C7e...1497f5010
0.16 ETH
153950372022-08-23 6:29:38754 days ago1661236178  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.