ETH Price: $2,747.48 (+2.24%)

Contract

0x16C10B6E9C56fDCDB50629DFfBDd0AfA5733CAC9

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...165465012024-10-04 4:17:57136 days ago1728015477IN
0x16C10B6E...A5733CAC9
0 ETH0.000007710.14990694
Set Approval For...157576992024-09-06 5:31:50164 days ago1725600710IN
0x16C10B6E...A5733CAC9
0 ETH0.000003890.12339871
Set Approval For...154956182024-08-28 2:12:25173 days ago1724811145IN
0x16C10B6E...A5733CAC9
0 ETH0.000004680.14831312
Set Approval For...149875822024-08-10 8:29:01191 days ago1723278541IN
0x16C10B6E...A5733CAC9
0 ETH0.000000580.03
Set Approval For...149875802024-08-10 8:28:55191 days ago1723278535IN
0x16C10B6E...A5733CAC9
0 ETH0.000000580.03
Set Approval For...145258552024-07-25 5:12:25207 days ago1721884345IN
0x16C10B6E...A5733CAC9
0 ETH0.000002570.05
Set Approval For...142819312024-07-16 16:31:09216 days ago1721147469IN
0x16C10B6E...A5733CAC9
0 ETH0.000005530.286
Set Approval For...142412582024-07-15 6:22:18217 days ago1721024538IN
0x16C10B6E...A5733CAC9
0 ETH0.000001840.0358
Set Approval For...142122272024-07-14 6:00:36218 days ago1720936836IN
0x16C10B6E...A5733CAC9
0 ETH0.000001820.0355
Set Approval For...141927932024-07-13 13:41:46219 days ago1720878106IN
0x16C10B6E...A5733CAC9
0 ETH0.000001270.0247
Set Approval For...124556622024-05-13 19:45:03280 days ago1715629503IN
0x16C10B6E...A5733CAC9
0 ETH0.000014380.27937667
Set Approval For...124357262024-05-13 3:03:18280 days ago1715569398IN
0x16C10B6E...A5733CAC9
0 ETH0.000001250.065044
Set Approval For...121296332024-05-02 11:59:53291 days ago1714651193IN
0x16C10B6E...A5733CAC9
0 ETH0.000016010.311
Set Approval For...118939922024-04-24 8:54:47299 days ago1713948887IN
0x16C10B6E...A5733CAC9
0 ETH0.000013320.688
Set Approval For...117737922024-04-20 3:58:44303 days ago1713585524IN
0x16C10B6E...A5733CAC9
0 ETH0.000048680.94576811
Set Approval For...117668512024-04-19 22:13:22303 days ago1713564802IN
0x16C10B6E...A5733CAC9
0 ETH0.000079451.5434476
Set Approval For...117664492024-04-19 21:53:24303 days ago1713563604IN
0x16C10B6E...A5733CAC9
0 ETH0.000075121.45921053
Set Approval For...117645772024-04-19 20:20:04304 days ago1713558004IN
0x16C10B6E...A5733CAC9
0 ETH0.000073331.42459704
Set Approval For...117605282024-04-19 16:58:25304 days ago1713545905IN
0x16C10B6E...A5733CAC9
0 ETH0.000100381.94998706
Set Approval For...117600122024-04-19 16:32:43304 days ago1713544363IN
0x16C10B6E...A5733CAC9
0 ETH0.00012352.3990297
Set Approval For...117599172024-04-19 16:27:58304 days ago1713544078IN
0x16C10B6E...A5733CAC9
0 ETH0.00013012.52728642
Set Approval For...117597922024-04-19 16:21:45304 days ago1713543705IN
0x16C10B6E...A5733CAC9
0 ETH0.000145192.82036031
Set Approval For...117593942024-04-19 16:01:57304 days ago1713542517IN
0x16C10B6E...A5733CAC9
0 ETH0.000118852.3086306
Set Approval For...117577402024-04-19 14:39:33304 days ago1713537573IN
0x16C10B6E...A5733CAC9
0 ETH0.000137292.66695225
Set Approval For...117576712024-04-19 14:36:06304 days ago1713537366IN
0x16C10B6E...A5733CAC9
0 ETH0.000157943.06810042

Latest 1 internal transaction

Parent Transaction Hash Block From To
80347172023-11-25 8:51:35450 days ago1700902295  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xE5860d9c...4DB9c37F7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
OmniseaERC721PsiProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 1 : OmniseaERC721PsiProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

contract OmniseaERC721PsiProxy {
    address private _proxy;

    constructor(address proxy_) {
        _proxy = proxy_;
    }

    fallback() external payable {
        _delegate(_proxy);
    }

    receive() external payable {
        _delegate(_proxy);
    }

    function _delegate(address _proxyTo) internal {
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), _proxyTo, 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": 1
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"proxy_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405236601d57600054601b906001600160a01b0316602d565b005b600054601b906001600160a01b03165b60405136600082376000803683855af43d806000843e818015604d578184f35b8184fdfea2646970667358221220600f90c0e59ddffb769074d4cc74283ea59df1a89099816dd6169b248142b48764736f6c63430008090033

Block Transaction Gas Used Reward
view all blocks sequenced

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
[ 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.