ETH Price: $2,526.37 (-0.25%)

Contract

0x5e48931F4A5720650139BF05653bd00598aA3eb0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim170998962023-04-22 5:46:47495 days ago1682142407IN
0x5e48931F...598aA3eb0
0 ETH0.0038722831.59785919
Claim169750972023-04-04 10:59:59513 days ago1680605999IN
0x5e48931F...598aA3eb0
0 ETH0.0023469519.15112992
Claim169274502023-03-28 17:56:35520 days ago1680026195IN
0x5e48931F...598aA3eb0
0 ETH0.0030250624.68455379
Claim169164912023-03-27 4:57:59521 days ago1679893079IN
0x5e48931F...598aA3eb0
0 ETH0.0017187814.02524869
Claim168880502023-03-23 5:03:59525 days ago1679547839IN
0x5e48931F...598aA3eb0
0 ETH0.0012284210.02397
Claim168871622023-03-23 2:03:59525 days ago1679537039IN
0x5e48931F...598aA3eb0
0 ETH0.0014567511.88827542
Claim168817892023-03-22 7:56:47526 days ago1679471807IN
0x5e48931F...598aA3eb0
0 ETH0.0013966911.39816549
Claim168757522023-03-21 11:35:35527 days ago1679398535IN
0x5e48931F...598aA3eb0
0 ETH0.0015929813
Claim168532822023-03-18 7:53:59530 days ago1679126039IN
0x5e48931F...598aA3eb0
0 ETH0.0017297214.1145873
Claim166617042023-02-19 9:20:47557 days ago1676798447IN
0x5e48931F...598aA3eb0
0 ETH0.0025219120.57881265
Claim166588532023-02-18 23:42:59557 days ago1676763779IN
0x5e48931F...598aA3eb0
0 ETH0.0023673119.3172975
Claim166322152023-02-15 5:59:47561 days ago1676440787IN
0x5e48931F...598aA3eb0
0 ETH0.0028271122.19016529
Claim166046652023-02-11 9:36:23565 days ago1676108183IN
0x5e48931F...598aA3eb0
0 ETH0.0019879416.22162576
Claim166045922023-02-11 9:21:47565 days ago1676107307IN
0x5e48931F...598aA3eb0
0 ETH0.0020323816.58427309
Claim166045522023-02-11 9:13:47565 days ago1676106827IN
0x5e48931F...598aA3eb0
0 ETH0.0020805716.97751394
Claim166045462023-02-11 9:12:35565 days ago1676106755IN
0x5e48931F...598aA3eb0
0 ETH0.0020436416.67613329
Claim166044892023-02-11 9:01:11565 days ago1676106071IN
0x5e48931F...598aA3eb0
0 ETH0.0020329316.58871365
Claim166044432023-02-11 8:51:59565 days ago1676105519IN
0x5e48931F...598aA3eb0
0 ETH0.0019231915.69331195
Claim166041072023-02-11 7:44:23565 days ago1676101463IN
0x5e48931F...598aA3eb0
0 ETH0.0019899116.23772092
Claim166040722023-02-11 7:37:23565 days ago1676101043IN
0x5e48931F...598aA3eb0
0 ETH0.0018530415.12085073
Claim166040312023-02-11 7:29:11565 days ago1676100551IN
0x5e48931F...598aA3eb0
0 ETH0.0021153817.26152241
Claim165980892023-02-10 11:34:35566 days ago1676028875IN
0x5e48931F...598aA3eb0
0 ETH0.0023561419.22613554
Claim165979982023-02-10 11:16:11566 days ago1676027771IN
0x5e48931F...598aA3eb0
0 ETH0.0024287619.81875026
Claim165899142023-02-09 8:09:47567 days ago1675930187IN
0x5e48931F...598aA3eb0
0 ETH0.0033974726.66694685
Claim165603132023-02-05 4:51:47571 days ago1675572707IN
0x5e48931F...598aA3eb0
0 ETH0.0018382315
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
159248472022-11-08 10:54:59660 days ago1667904899
0x5e48931F...598aA3eb0
0.0021959 ETH
159219722022-11-08 1:17:35660 days ago1667870255
0x5e48931F...598aA3eb0
0.20625 ETH
159219722022-11-08 1:17:35660 days ago1667870255
0x5e48931F...598aA3eb0
8.25 ETH
158519262022-10-29 6:27:59670 days ago1667024879
0x5e48931F...598aA3eb0
0.01 ETH
158395872022-10-27 13:02:35672 days ago1666875755  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.