Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,090 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 17697016 | 508 days ago | IN | 0 ETH | 0.00157989 | ||||
Claim | 16922766 | 617 days ago | IN | 0 ETH | 0.00268979 | ||||
Claim | 16860849 | 626 days ago | IN | 0 ETH | 0.00153616 | ||||
Claim | 16846361 | 628 days ago | IN | 0 ETH | 0.00226613 | ||||
Claim | 16589445 | 664 days ago | IN | 0 ETH | 0.0026871 | ||||
Claim | 16541093 | 671 days ago | IN | 0 ETH | 0.00213632 | ||||
Claim | 16523778 | 673 days ago | IN | 0 ETH | 0.00207126 | ||||
Claim | 16510105 | 675 days ago | IN | 0 ETH | 0.00170963 | ||||
Claim | 16495441 | 677 days ago | IN | 0 ETH | 0.00195018 | ||||
Claim | 16492139 | 678 days ago | IN | 0 ETH | 0.00273925 | ||||
Claim | 16481661 | 679 days ago | IN | 0 ETH | 0.00188743 | ||||
Claim | 16481027 | 679 days ago | IN | 0 ETH | 0.00165211 | ||||
Claim | 16409781 | 689 days ago | IN | 0 ETH | 0.00201696 | ||||
Claim | 16382007 | 693 days ago | IN | 0 ETH | 0.00180793 | ||||
Claim | 16376096 | 694 days ago | IN | 0 ETH | 0.00192099 | ||||
Claim | 16368131 | 695 days ago | IN | 0 ETH | 0.00185131 | ||||
Claim | 16362620 | 696 days ago | IN | 0 ETH | 0.00153182 | ||||
Claim | 16362580 | 696 days ago | IN | 0 ETH | 0.00205562 | ||||
Claim | 16352675 | 697 days ago | IN | 0 ETH | 0.00171025 | ||||
Claim | 16339251 | 699 days ago | IN | 0 ETH | 0.00167892 | ||||
Claim | 16319407 | 702 days ago | IN | 0 ETH | 0.00178571 | ||||
Claim | 16318710 | 702 days ago | IN | 0 ETH | 0.00167879 | ||||
Claim | 16274607 | 708 days ago | IN | 0 ETH | 0.00165855 | ||||
Claim | 16258925 | 710 days ago | IN | 0 ETH | 0.00148536 | ||||
Claim | 15925447 | 757 days ago | IN | 0 ETH | 0.00163973 |
Latest 9 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16492139 | 678 days ago | 0.01 ETH | ||||
16352675 | 697 days ago | 0.00975 ETH | ||||
15483494 | 820 days ago | 0.01 ETH | ||||
15478337 | 821 days ago | 0.31975 ETH | ||||
15478337 | 821 days ago | 12.79 ETH | ||||
15466693 | 822 days ago | 0.01005 ETH | ||||
15464243 | 823 days ago | 0.01 ETH | ||||
15463754 | 823 days ago | 0.01 ETH | ||||
15458267 | 824 days ago | Contract Creation | 0 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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.