ETH Price: $3,260.25 (+2.81%)
Gas: 2 Gwei

Contract

0x6E4B2155B7e15B7457c5e11687c5103a15cD5496
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim163546022023-01-07 11:27:47565 days ago1673090867IN
0x6E4B2155...a15cD5496
0 ETH0.0015931313
Claim159254462022-11-08 12:54:59625 days ago1667912099IN
0x6E4B2155...a15cD5496
0 ETH0.0016942313.82497148
Claim159254312022-11-08 12:51:59625 days ago1667911919IN
0x6E4B2155...a15cD5496
0 ETH0.0016616313.55891036
Claim156288442022-09-28 2:26:23667 days ago1664331983IN
0x6E4B2155...a15cD5496
0 ETH0.0018382315
Claim156011392022-09-24 5:30:35671 days ago1663997435IN
0x6E4B2155...a15cD5496
0 ETH0.000816736.66453754
Claim155610172022-09-18 14:26:35676 days ago1663511195IN
0x6E4B2155...a15cD5496
0 ETH0.000819756.68919116
Claim155449462022-09-16 8:17:59678 days ago1663316279IN
0x6E4B2155...a15cD5496
0 ETH0.001172129.56457028
Claim155145712022-09-11 11:27:02683 days ago1662895622IN
0x6E4B2155...a15cD5496
0 ETH0.000727155.93362532
Claim155079002022-09-10 8:49:46684 days ago1662799786IN
0x6E4B2155...a15cD5496
0 ETH0.000831976.78887701
Claim154833322022-09-06 9:44:43688 days ago1662457483IN
0x6E4B2155...a15cD5496
0 ETH0.000975977.9639496
Claim154771652022-09-05 9:56:49689 days ago1662371809IN
0x6E4B2155...a15cD5496
0 ETH0.000771986.29938614
Claim154761242022-09-05 5:52:38690 days ago1662357158IN
0x6E4B2155...a15cD5496
0 ETH0.000630985.14883357
Claim154760892022-09-05 5:45:01690 days ago1662356701IN
0x6E4B2155...a15cD5496
0 ETH0.000472193.85310415
Claim154750882022-09-05 1:48:11690 days ago1662342491IN
0x6E4B2155...a15cD5496
0 ETH0.0012262310.00604851
Claim154750612022-09-05 1:39:53690 days ago1662341993IN
0x6E4B2155...a15cD5496
0 ETH0.000796636.50054061
Claim154750552022-09-05 1:38:26690 days ago1662341906IN
0x6E4B2155...a15cD5496
0 ETH0.000865187.0599348
Claim154750352022-09-05 1:33:18690 days ago1662341598IN
0x6E4B2155...a15cD5496
0 ETH0.001043838.51765614
Claim154750232022-09-05 1:29:29690 days ago1662341369IN
0x6E4B2155...a15cD5496
0 ETH0.000826426.74359683
Claim154749982022-09-05 1:23:56690 days ago1662341036IN
0x6E4B2155...a15cD5496
0 ETH0.001070138.73227528
Claim154749712022-09-05 1:17:25690 days ago1662340645IN
0x6E4B2155...a15cD5496
0 ETH0.0012444110.15441767
Claim154694322022-09-04 3:54:45691 days ago1662263685IN
0x6E4B2155...a15cD5496
0 ETH0.00057854.72108572
Claim154692022022-09-04 3:01:54691 days ago1662260514IN
0x6E4B2155...a15cD5496
0 ETH0.000842816.87737757
Claim154691102022-09-04 2:43:23691 days ago1662259403IN
0x6E4B2155...a15cD5496
0 ETH0.0013850511.30312558
Claim154690772022-09-04 2:35:45691 days ago1662258945IN
0x6E4B2155...a15cD5496
0 ETH0.001077138.78939889
Claim154686222022-09-04 0:52:50691 days ago1662252770IN
0x6E4B2155...a15cD5496
0 ETH0.00056024.57126916
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
154586062022-09-02 10:26:26692 days ago1662114386
0x6E4B2155...a15cD5496
0.00682 ETH
154583072022-09-02 9:15:37692 days ago1662110137
0x6E4B2155...a15cD5496
0.045 ETH
154583072022-09-02 9:15:37692 days ago1662110137
0x6E4B2155...a15cD5496
1.8 ETH
154573072022-09-02 5:18:20693 days ago1662095900  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.