ETH Price: $2,653.85 (+0.42%)

Contract

0x0745143D4D4E1349f5Ae75112585616639671C99
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim153941042022-08-23 2:55:25731 days ago1661223325IN
0x0745143D...639671C99
0 ETH0.000612685
Claim153577932022-08-17 8:58:30737 days ago1660726710IN
0x0745143D...639671C99
0 ETH0.00082686.74740981
Claim153577902022-08-17 8:57:29737 days ago1660726649IN
0x0745143D...639671C99
0 ETH0.000696735.68592109
Claim153577892022-08-17 8:57:19737 days ago1660726639IN
0x0745143D...639671C99
0 ETH0.00068515.59103222
Claim153577842022-08-17 8:56:51737 days ago1660726611IN
0x0745143D...639671C99
0 ETH0.000689715.62867561
Claim153577812022-08-17 8:56:35737 days ago1660726595IN
0x0745143D...639671C99
0 ETH0.0007085.77789827
Claim153577762022-08-17 8:55:44737 days ago1660726544IN
0x0745143D...639671C99
0 ETH0.000814376.64597312
Claim153577712022-08-17 8:54:43737 days ago1660726483IN
0x0745143D...639671C99
0 ETH0.000860697.02404544
Claim153577692022-08-17 8:54:28737 days ago1660726468IN
0x0745143D...639671C99
0 ETH0.000922087.52498507
Claim153577642022-08-17 8:53:46737 days ago1660726426IN
0x0745143D...639671C99
0 ETH0.00119839.77920192
Claim153577622022-08-17 8:52:43737 days ago1660726363IN
0x0745143D...639671C99
0 ETH0.00100288.18457623
Claim153577572022-08-17 8:51:48737 days ago1660726308IN
0x0745143D...639671C99
0 ETH0.001192379.7317701
Claim153577552022-08-17 8:51:19737 days ago1660726279IN
0x0745143D...639671C99
0 ETH0.001066818.70617337
Claim153577532022-08-17 8:50:13737 days ago1660726213IN
0x0745143D...639671C99
0 ETH0.000881547.19421114
Claim153577512022-08-17 8:49:44737 days ago1660726184IN
0x0745143D...639671C99
0 ETH0.000885387.22547641
Claim153577492022-08-17 8:49:24737 days ago1660726164IN
0x0745143D...639671C99
0 ETH0.000872627.1213414
Claim153577472022-08-17 8:48:35737 days ago1660726115IN
0x0745143D...639671C99
0 ETH0.00085797.00128367
Claim153577442022-08-17 8:48:06737 days ago1660726086IN
0x0745143D...639671C99
0 ETH0.000907087.40262812
Claim153577382022-08-17 8:47:22737 days ago1660726042IN
0x0745143D...639671C99
0 ETH0.000987658.06012443
Claim153577242022-08-17 8:45:27737 days ago1660725927IN
0x0745143D...639671C99
0 ETH0.0015474712.62869908
Claim153577232022-08-17 8:45:25737 days ago1660725925IN
0x0745143D...639671C99
0 ETH0.0014012211.43517552
Claim153577232022-08-17 8:45:25737 days ago1660725925IN
0x0745143D...639671C99
0 ETH0.0014012211.43517552
Claim153577192022-08-17 8:42:43737 days ago1660725763IN
0x0745143D...639671C99
0 ETH0.001152669.4076745
Claim153577172022-08-17 8:42:12737 days ago1660725732IN
0x0745143D...639671C99
0 ETH0.001183899.66158978
Claim153576642022-08-17 8:30:52737 days ago1660725052IN
0x0745143D...639671C99
0 ETH0.0012714910.37651994
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
153562772022-08-17 3:19:58737 days ago1660706398
0x0745143D...639671C99
0.0125 ETH
153562772022-08-17 3:19:58737 days ago1660706398
0x0745143D...639671C99
0.5 ETH
152686392022-08-03 9:12:38751 days ago1659517958  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x28D6C685...6bD7D6474
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.5+commit.a4f2e591

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 1 : NonReceivableInitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.5;

/**
 * @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)
                }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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

0x608060405260043610601c5760003560e01c8063d7dfa0dd146062575b6040517f0000000000000000000000002045427276b2ad409202eea1e0c81e150f3203e49036600082376000803683855af43d806000843e818015605e578184f35b8184fd5b348015606d57600080fd5b5060947f0000000000000000000000002045427276b2ad409202eea1e0c81e150f3203e481565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122007a7eaa5a45963185124ebef682025da711e153766dc1074d9deb1558770382264736f6c63430008050033

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.