ETH Price: $3,169.36 (-0.63%)

Contract

0x6D8D46CaDB871c06d7cbf1fC6F2ab99F7c6E02C0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim153755822022-08-20 4:45:48878 days ago1660970748IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000612745
Claim153631692022-08-18 5:20:16880 days ago1660800016IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000612745
Claim153631432022-08-18 5:14:39880 days ago1660799679IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000612685
Claim153525842022-08-16 13:16:54881 days ago1660655814IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000612745
Claim153525752022-08-16 13:15:30881 days ago1660655730IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000648255
Claim153398052022-08-14 12:40:29883 days ago1660480829IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000655895.3521342
Claim153394972022-08-14 11:29:37883 days ago1660476577IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000490194
Claim153394812022-08-14 11:26:10883 days ago1660476370IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000490194
Contribute153394432022-08-14 11:17:22883 days ago1660475842IN
0x6D8D46Ca...F7c6E02C0
0.02 ETH0.000189295.25464925
Claim153394272022-08-14 11:14:00883 days ago1660475640IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.000490194
Buy153394142022-08-14 11:12:07883 days ago1660475527IN
0x6D8D46Ca...F7c6E02C0
0 ETH0.003572184.5895485
Contribute153393792022-08-14 11:04:58883 days ago1660475098IN
0x6D8D46Ca...F7c6E02C0
0.015 ETH0.000776896
Contribute153378532022-08-14 5:25:36884 days ago1660454736IN
0x6D8D46Ca...F7c6E02C0
0.01 ETH0.000647415
Contribute153367562022-08-14 1:09:23884 days ago1660439363IN
0x6D8D46Ca...F7c6E02C0
0.01 ETH0.000796136.14856124
Contribute153367312022-08-14 1:02:59884 days ago1660438979IN
0x6D8D46Ca...F7c6E02C0
0.02 ETH0.000756555.84290725
Contribute153327022022-08-13 9:49:45884 days ago1660384185IN
0x6D8D46Ca...F7c6E02C0
0.01 ETH0.0016990513.1218348
Contribute153324572022-08-13 8:52:23884 days ago1660380743IN
0x6D8D46Ca...F7c6E02C0
0.03 ETH0.000834196.44250083
Contribute153323722022-08-13 8:33:33884 days ago1660379613IN
0x6D8D46Ca...F7c6E02C0
0.021 ETH0.000906387
Contribute153321082022-08-13 7:28:56884 days ago1660375736IN
0x6D8D46Ca...F7c6E02C0
0.02 ETH0.000906387
Contribute153319692022-08-13 7:00:22884 days ago1660374022IN
0x6D8D46Ca...F7c6E02C0
0.04 ETH0.000861396.65255151
Contribute153271272022-08-12 13:00:13885 days ago1660309213IN
0x6D8D46Ca...F7c6E02C0
0.01 ETH0.0013804110.66097634
Contribute153264742022-08-12 10:24:27885 days ago1660299867IN
0x6D8D46Ca...F7c6E02C0
0.01 ETH0.0018860914.88828463

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
153525752022-08-16 13:15:30881 days ago1660655730
0x6D8D46Ca...F7c6E02C0
0.00125 ETH
153394142022-08-14 11:12:07883 days ago1660475527
0x6D8D46Ca...F7c6E02C0
0.00475 ETH
153394142022-08-14 11:12:07883 days ago1660475527
0x6D8D46Ca...F7c6E02C0
0.19 ETH
153259462022-08-12 8:25:54885 days ago1660292754  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.