ETH Price: $1,907.79 (-0.39%)

Contract

0x907B2443C8AeC461eF9Ee89b3583161Da4D07281
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim154271472022-08-28 10:03:29948 days ago1661681009IN
0x907B2443...Da4D07281
0 ETH0.000410915.63315257
Claim154271452022-08-28 10:03:08948 days ago1661680988IN
0x907B2443...Da4D07281
0 ETH0.000448916.15420043
Claim154271422022-08-28 10:02:18948 days ago1661680938IN
0x907B2443...Da4D07281
0 ETH0.000780026.76695296
Buy154271382022-08-28 10:01:21948 days ago1661680881IN
0x907B2443...Da4D07281
0 ETH0.006089997.88837095
Contribute154271292022-08-28 9:59:27948 days ago1661680767IN
0x907B2443...Da4D07281
0.03 ETH0.001148938.87328632
Contribute154271242022-08-28 9:57:59948 days ago1661680679IN
0x907B2443...Da4D07281
0.03 ETH0.001179779.11142022
Contribute154271212022-08-28 9:56:19948 days ago1661680579IN
0x907B2443...Da4D07281
0.031 ETH0.001039418.20484636

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer154271472022-08-28 10:03:29948 days ago1661681009
0x907B2443...Da4D07281
0.03 ETH
Transfer154271452022-08-28 10:03:08948 days ago1661680988
0x907B2443...Da4D07281
0.03 ETH
Transfer154271422022-08-28 10:02:18948 days ago1661680938
0x907B2443...Da4D07281
0.027966 ETH
Transfer154271382022-08-28 10:01:21948 days ago1661680881
0x907B2443...Da4D07281
0.000074 ETH
Fulfill Basic Or...154271382022-08-28 10:01:21948 days ago1661680881
0x907B2443...Da4D07281
0.00296 ETH
0x60a06040154271132022-08-28 9:53:43948 days ago1661680423  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

API
[{"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.