ETH Price: $3,395.73 (-0.65%)
Gas: 13 Gwei

Contract

0x80df40FBbf689435e982F93C2df9f8508b977eBf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim168603742023-03-19 7:46:47487 days ago1679212007IN
0x80df40FB...08b977eBf
0 ETH0.0013438912.45940665
Claim168603552023-03-19 7:42:59487 days ago1679211779IN
0x80df40FB...08b977eBf
0 ETH0.0012963512.01863151
Claim168602442023-03-19 7:20:23487 days ago1679210423IN
0x80df40FB...08b977eBf
0 ETH0.0014781613.70425884
Claim168601182023-03-19 6:54:59487 days ago1679208899IN
0x80df40FB...08b977eBf
0 ETH0.0013561612.57312164
Claim168600532023-03-19 6:41:59487 days ago1679208119IN
0x80df40FB...08b977eBf
0 ETH0.001479313.71478032
Claim168599742023-03-19 6:26:11487 days ago1679207171IN
0x80df40FB...08b977eBf
0 ETH0.0013441512.46181153
Claim163827092023-01-11 9:35:11554 days ago1673429711IN
0x80df40FB...08b977eBf
0 ETH0.0016179315
Claim163760972023-01-10 11:25:47555 days ago1673349947IN
0x80df40FB...08b977eBf
0 ETH0.0016435215.23729427
Claim158377422022-10-27 6:52:47630 days ago1666853567IN
0x80df40FB...08b977eBf
0 ETH0.001136649.27502695
Claim155153392022-09-11 14:25:15676 days ago1662906315IN
0x80df40FB...08b977eBf
0 ETH0.001082588.34927663
Claim155073882022-09-10 6:49:55677 days ago1662792595IN
0x80df40FB...08b977eBf
0 ETH0.001054828.60733781
Claim154884092022-09-07 4:57:23680 days ago1662526643IN
0x80df40FB...08b977eBf
0 ETH0.0019528215.93507631
Claim154844372022-09-06 13:46:38681 days ago1662471998IN
0x80df40FB...08b977eBf
0 ETH0.0016742713.6620556
Claim154824182022-09-06 6:18:05681 days ago1662445085IN
0x80df40FB...08b977eBf
0 ETH0.001224569.99246242
Claim154817502022-09-06 3:43:15681 days ago1662435795IN
0x80df40FB...08b977eBf
0 ETH0.001022518.34373492
Claim154783642022-09-05 14:23:28682 days ago1662387808IN
0x80df40FB...08b977eBf
0 ETH0.0013888411.33300235
Claim154639482022-09-03 7:02:34684 days ago1662188554IN
0x80df40FB...08b977eBf
0 ETH0.000748386.10683314
Claim154590192022-09-02 11:53:25685 days ago1662119605IN
0x80df40FB...08b977eBf
0 ETH0.001021718.33720004
Claim154508002022-09-01 4:33:53686 days ago1662006833IN
0x80df40FB...08b977eBf
0 ETH0.0019506315.91722151
Claim154409862022-08-30 14:53:21688 days ago1661871201IN
0x80df40FB...08b977eBf
0 ETH0.0056825546.36964736
Claim154399492022-08-30 10:50:08688 days ago1661856608IN
0x80df40FB...08b977eBf
0 ETH0.001189379.70533335
Claim154387512022-08-30 6:14:26688 days ago1661840066IN
0x80df40FB...08b977eBf
0 ETH0.001072038.74780757
Claim154385922022-08-30 5:41:17688 days ago1661838077IN
0x80df40FB...08b977eBf
0 ETH0.00086857.08703245
Claim154378212022-08-30 2:37:30688 days ago1661827050IN
0x80df40FB...08b977eBf
0 ETH0.0015934613.00270902
Claim154374102022-08-30 0:56:00688 days ago1661820960IN
0x80df40FB...08b977eBf
0 ETH0.001111189.06725402
View all transactions

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
155153392022-09-11 14:25:15676 days ago1662906315
0x80df40FB...08b977eBf
0.002125 ETH
154277412022-08-28 12:16:52690 days ago1661689012
0x80df40FB...08b977eBf
0.01 ETH
154202052022-08-27 7:16:23691 days ago1661584583
0x80df40FB...08b977eBf
0.01 ETH
154201622022-08-27 7:06:43691 days ago1661584003
0x80df40FB...08b977eBf
0.03375 ETH
154201622022-08-27 7:06:43691 days ago1661584003
0x80df40FB...08b977eBf
1.35 ETH
154077912022-08-25 7:26:31693 days ago1661412391  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.