ETH Price: $3,347.40 (+0.36%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim143530602022-03-09 14:13:351028 days ago1646835215IN
0xa67B2882...Bb74b2645
0 ETH0.0019935431.39192515
Claim142998812022-03-01 8:02:471036 days ago1646121767IN
0xa67B2882...Bb74b2645
0 ETH0.0027925743.97407339
Claim142964222022-02-28 19:03:071037 days ago1646074987IN
0xa67B2882...Bb74b2645
0 ETH0.0034435754.22526888
Claim142962552022-02-28 18:30:511037 days ago1646073051IN
0xa67B2882...Bb74b2645
0 ETH0.0060213294.81654447
Claim142962052022-02-28 18:20:591037 days ago1646072459IN
0xa67B2882...Bb74b2645
0 ETH0.0070125110.42448701
Claim142957332022-02-28 16:33:031037 days ago1646065983IN
0xa67B2882...Bb74b2645
0 ETH0.0032643251.40263761
Expire142957302022-02-28 16:31:431037 days ago1646065903IN
0xa67B2882...Bb74b2645
0 ETH0.0028757255.47956976
Contribute142492122022-02-21 11:37:281044 days ago1645443448IN
0xa67B2882...Bb74b2645
0.64975 ETH0.0060345346.62679153
Contribute142492012022-02-21 11:35:081044 days ago1645443308IN
0xa67B2882...Bb74b2645
0.03 ETH0.006494150.17778286
Contribute142491812022-02-21 11:30:201044 days ago1645443020IN
0xa67B2882...Bb74b2645
0.12 ETH0.0073212456.5687939
Contribute142490682022-02-21 11:02:531044 days ago1645441373IN
0xa67B2882...Bb74b2645
0.09 ETH0.0061323547.38260831
Contribute142490682022-02-21 11:02:531044 days ago1645441373IN
0xa67B2882...Bb74b2645
0.3 ETH0.0061323547.38260831
Contribute142490482022-02-21 10:59:001044 days ago1645441140IN
0xa67B2882...Bb74b2645
0.1 ETH0.0046063134.99843172
Contribute142490472022-02-21 10:58:531044 days ago1645441133IN
0xa67B2882...Bb74b2645
0.03 ETH0.0040124531.68848908

Latest 7 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
143530602022-03-09 14:13:351028 days ago1646835215
0xa67B2882...Bb74b2645
0.03 ETH
142998812022-03-01 8:02:471036 days ago1646121767
0xa67B2882...Bb74b2645
0.09 ETH
142964222022-02-28 19:03:071037 days ago1646074987
0xa67B2882...Bb74b2645
0.03 ETH
142962552022-02-28 18:30:511037 days ago1646073051
0xa67B2882...Bb74b2645
0.64975 ETH
142962052022-02-28 18:20:591037 days ago1646072459
0xa67B2882...Bb74b2645
0.3 ETH
142957332022-02-28 16:33:031037 days ago1646065983
0xa67B2882...Bb74b2645
0.12 ETH
142489912022-02-21 10:49:041044 days ago1645440544  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.