ETH Price: $3,289.76 (+0.07%)

Contract

0x34732f079e56a7f2c31fA6e11Ce50FA55637AC9e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim152481252022-07-31 4:31:33896 days ago1659241893IN
0x34732f07...55637AC9e
0 ETH0.00051014
Claim152481232022-07-31 4:31:29896 days ago1659241889IN
0x34732f07...55637AC9e
0 ETH0.000438913.58195866
Claim152481232022-07-31 4:31:29896 days ago1659241889IN
0x34732f07...55637AC9e
0 ETH0.000438913.58195866
Claim152481222022-07-31 4:31:08896 days ago1659241868IN
0x34732f07...55637AC9e
0 ETH0.000443363.6182237
Claim152481222022-07-31 4:31:08896 days ago1659241868IN
0x34732f07...55637AC9e
0 ETH0.000443363.6182237
Claim152481222022-07-31 4:31:08896 days ago1659241868IN
0x34732f07...55637AC9e
0 ETH0.000443363.6182237
Claim152481042022-07-31 4:29:16896 days ago1659241756IN
0x34732f07...55637AC9e
0 ETH0.000503094.10566168
Claim152481042022-07-31 4:29:16896 days ago1659241756IN
0x34732f07...55637AC9e
0 ETH0.000503094.10566168
Claim152481042022-07-31 4:29:16896 days ago1659241756IN
0x34732f07...55637AC9e
0 ETH0.000537524.38664295
Claim152481012022-07-31 4:27:53896 days ago1659241673IN
0x34732f07...55637AC9e
0 ETH0.000598784.88664295
Claim152481002022-07-31 4:27:40896 days ago1659241660IN
0x34732f07...55637AC9e
0 ETH0.000493464.02712565
Claim152481002022-07-31 4:27:40896 days ago1659241660IN
0x34732f07...55637AC9e
0 ETH0.000530214.32705356
Claim152480992022-07-31 4:27:35896 days ago1659241655IN
0x34732f07...55637AC9e
0 ETH0.000493464.02712565
Buy152480962022-07-31 4:26:38896 days ago1659241598IN
0x34732f07...55637AC9e
0 ETH0.002296993.1
Contribute152480012022-07-31 4:04:27896 days ago1659240267IN
0x34732f07...55637AC9e
0.075 ETH0.000476263.67994378
Contribute152479762022-07-31 3:58:53896 days ago1659239933IN
0x34732f07...55637AC9e
0.22 ETH0.000460733.55993922
Contribute152479662022-07-31 3:56:20896 days ago1659239780IN
0x34732f07...55637AC9e
0.3 ETH0.000534324.12853832
Contribute152479612022-07-31 3:54:47896 days ago1659239687IN
0x34732f07...55637AC9e
0.01 ETH0.000430383.3254443
Contribute152479612022-07-31 3:54:47896 days ago1659239687IN
0x34732f07...55637AC9e
0.03 ETH0.000458043.53913212
Contribute152479532022-07-31 3:52:47896 days ago1659239567IN
0x34732f07...55637AC9e
0.02 ETH0.000439063.39247566
Contribute152479472022-07-31 3:51:34896 days ago1659239494IN
0x34732f07...55637AC9e
0.02 ETH0.00048153.72045449
Contribute152460722022-07-30 20:53:07897 days ago1659214387IN
0x34732f07...55637AC9e
0.01 ETH0.000543574.2
Contribute152460502022-07-30 20:48:55897 days ago1659214135IN
0x34732f07...55637AC9e
0.02 ETH0.000556514.3
Contribute152438962022-07-30 12:50:47897 days ago1659185447IN
0x34732f07...55637AC9e
0.08 ETH0.000603554.66349565
Contribute152438852022-07-30 12:49:16897 days ago1659185356IN
0x34732f07...55637AC9e
0.08 ETH0.000647115
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
152480962022-07-31 4:26:38896 days ago1659241598
0x34732f07...55637AC9e
0.025 ETH
152480962022-07-31 4:26:38896 days ago1659241598
0x34732f07...55637AC9e
1 ETH
152241232022-07-27 10:53:43900 days ago1658919223  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.