ETH Price: $2,524.47 (+0.30%)

Contract

0xc386661EB0A1ef1351AD72776b5087dEEDf54641
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim155514052022-09-17 6:04:59713 days ago1663394699IN
0xc386661E...EEDf54641
0 ETH0.000418833.41801885
Claim155513882022-09-17 6:01:35713 days ago1663394495IN
0xc386661E...EEDf54641
0 ETH0.000524114.27721682
Claim155191612022-09-12 5:31:01718 days ago1662960661IN
0xc386661E...EEDf54641
0 ETH0.000565994.61903385
Claim155191212022-09-12 5:21:36718 days ago1662960096IN
0xc386661E...EEDf54641
0 ETH0.000604634.93434945
Claim155191002022-09-12 5:17:00718 days ago1662959820IN
0xc386661E...EEDf54641
0 ETH0.000780986.37351277
Claim155190602022-09-12 5:06:19718 days ago1662959179IN
0xc386661E...EEDf54641
0 ETH0.000831546.78616334
Claim155190602022-09-12 5:06:19718 days ago1662959179IN
0xc386661E...EEDf54641
0 ETH0.00083256.79463011
Claim155190542022-09-12 5:05:41718 days ago1662959141IN
0xc386661E...EEDf54641
0 ETH0.000971057.92463571
Claim155190442022-09-12 5:02:24718 days ago1662958944IN
0xc386661E...EEDf54641
0 ETH0.000935857.63738118
Claim155190272022-09-12 4:56:59718 days ago1662958619IN
0xc386661E...EEDf54641
0 ETH0.000605154.93905313
Claim155190232022-09-12 4:56:11718 days ago1662958571IN
0xc386661E...EEDf54641
0 ETH0.000625465.10435177
Claim155190182022-09-12 4:55:11718 days ago1662958511IN
0xc386661E...EEDf54641
0 ETH0.000622235.07800425
Claim155190152022-09-12 4:54:14718 days ago1662958454IN
0xc386661E...EEDf54641
0 ETH0.000641025.23131855
Claim155190102022-09-12 4:53:28718 days ago1662958408IN
0xc386661E...EEDf54641
0 ETH0.000621965.07580178
Claim155190042022-09-12 4:52:40718 days ago1662958360IN
0xc386661E...EEDf54641
0 ETH0.000721335.88675392
Claim155190012022-09-12 4:51:54718 days ago1662958314IN
0xc386661E...EEDf54641
0 ETH0.000693465.65929218
Claim155189972022-09-12 4:51:10718 days ago1662958270IN
0xc386661E...EEDf54641
0 ETH0.000574224.68616777
Claim155189892022-09-12 4:49:38718 days ago1662958178IN
0xc386661E...EEDf54641
0 ETH0.000833356.80086182
Claim155017272022-09-09 8:25:31721 days ago1662711931IN
0xc386661E...EEDf54641
0 ETH0.000948437.7400438
Claim155017232022-09-09 8:24:50721 days ago1662711890IN
0xc386661E...EEDf54641
0 ETH0.001020258.32700989
Claim155017212022-09-09 8:24:30721 days ago1662711870IN
0xc386661E...EEDf54641
0 ETH0.001060118.65145971
Claim155017072022-09-09 8:21:29721 days ago1662711689IN
0xc386661E...EEDf54641
0 ETH0.000982298.01641409
Claim155016852022-09-09 8:16:25721 days ago1662711385IN
0xc386661E...EEDf54641
0 ETH0.001052188.58671081
Claim155016772022-09-09 8:14:45721 days ago1662711285IN
0xc386661E...EEDf54641
0 ETH0.001054758.60767546
Claim155015932022-09-09 7:55:44721 days ago1662710144IN
0xc386661E...EEDf54641
0 ETH0.001029818.40417744
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
154698732022-09-04 5:41:56726 days ago1662270116
0xc386661E...EEDf54641
0.0375 ETH
154698732022-09-04 5:41:56726 days ago1662270116
0xc386661E...EEDf54641
1.5 ETH
154646332022-09-03 9:42:36727 days ago1662198156  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.