ETH Price: $2,934.49 (-5.61%)
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...1443506842025-11-28 3:22:2518 days ago1764300145IN
0xbf30B188...81efDf944
0 ETH0.0000000033870.00010035
Set Approval For...1434196052025-11-06 14:06:2739 days ago1762437987IN
0xbf30B188...81efDf944
0 ETH0.0000000685750.00019968
Set Approval For...1434047572025-11-06 5:51:3139 days ago1762408291IN
0xbf30B188...81efDf944
0 ETH0.000000004730.00006609
Set Approval For...1434041992025-11-06 5:32:5539 days ago1762407175IN
0xbf30B188...81efDf944
0 ETH0.00000000390.00002757
Set Approval For...1421309662025-10-07 18:11:4969 days ago1759860709IN
0xbf30B188...81efDf944
0 ETH0.0000000579590.00100038
Set Approval For...1419987482025-10-04 16:44:3372 days ago1759596273IN
0xbf30B188...81efDf944
0 ETH0.0000000016110.00000627
Set Approval For...1419435462025-10-03 10:04:2973 days ago1759485869IN
0xbf30B188...81efDf944
0 ETH0.000000004690.00010039
Set Approval For...1419435442025-10-03 10:04:2573 days ago1759485865IN
0xbf30B188...81efDf944
0 ETH0.0000000046820.00010039
Set Approval For...1417094772025-09-28 0:02:1179 days ago1759017731IN
0xbf30B188...81efDf944
0 ETH0.0000000206560.00066423
Set Approval For...1411668602025-09-15 10:34:5791 days ago1757932497IN
0xbf30B188...81efDf944
0 ETH0.0000000084920.00001177
Set Approval For...1400534332025-08-20 16:00:43117 days ago1755705643IN
0xbf30B188...81efDf944
0 ETH0.0000000429870.0010005
Set Approval For...1400158452025-08-19 19:07:47118 days ago1755630467IN
0xbf30B188...81efDf944
0 ETH0.0000000394210.0010015
Set Approval For...1366324122025-06-02 11:26:41196 days ago1748863601IN
0xbf30B188...81efDf944
0 ETH0.0000000554960.0010006
Set Approval For...1365905142025-06-01 12:10:05197 days ago1748779805IN
0xbf30B188...81efDf944
0 ETH0.0000000375090.0010005
Set Approval For...1365866452025-06-01 10:01:07197 days ago1748772067IN
0xbf30B188...81efDf944
0 ETH0.0000000651230.00100039
Transfer From1364651542025-05-29 14:31:25200 days ago1748529085IN
0xbf30B188...81efDf944
0 ETH0.0000000554320.00000081
Set Approval For...1363357652025-05-26 14:38:27203 days ago1748270307IN
0xbf30B188...81efDf944
0 ETH0.000000069150.0010006
Set Approval For...1363357632025-05-26 14:38:23203 days ago1748270303IN
0xbf30B188...81efDf944
0 ETH0.0000000708490.0010005
Set Approval For...1355773692025-05-09 1:18:35221 days ago1746753515IN
0xbf30B188...81efDf944
0 ETH0.0000000460840.00100052
Safe Transfer Fr...1350090442025-04-25 21:34:25234 days ago1745616865IN
0xbf30B188...81efDf944
0 ETH0.0000000999370.00103952
Set Approval For...1348303122025-04-21 18:16:41238 days ago1745259401IN
0xbf30B188...81efDf944
0 ETH0.0000002589320.0049536
Set Approval For...1343832312025-04-11 9:53:59248 days ago1744365239IN
0xbf30B188...81efDf944
0 ETH0.0000001496460.00258934
Set Approval For...1338360002025-03-29 17:52:57261 days ago1743270777IN
0xbf30B188...81efDf944
0 ETH0.0000001820560.0017465
Set Approval For...1336303472025-03-24 23:37:51266 days ago1742859471IN
0xbf30B188...81efDf944
0 ETH0.0000000145970.00029593
Set Approval For...1336303432025-03-24 23:37:43266 days ago1742859463IN
0xbf30B188...81efDf944
0 ETH0.000000014580.00029619
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
1131854782023-12-07 17:22:13739 days ago1701969733  Contract Creation0 ETH

Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x05b32DA8...3bf25843E
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

Contract Source Code (Solidity Standard Json-Input format)

// 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

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

0x608060405234801561001057600080fd5b5060405161011938038061011983398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b6087806100926000396000f3fe608060405236601d57600054601b906001600160a01b0316602d565b005b600054601b906001600160a01b03165b60405136600082376000803683855af43d806000843e818015604d578184f35b8184fdfea2646970667358221220600f90c0e59ddffb769074d4cc74283ea59df1a89099816dd6169b248142b48764736f6c6343000809003300000000000000000000000083649299fe868b2427af8b51474a3b79cc5d5362

Deployed Bytecode

0x608060405236601d57600054601b906001600160a01b0316602d565b005b600054601b906001600160a01b03165b60405136600082376000803683855af43d806000843e818015604d578184f35b8184fdfea2646970667358221220600f90c0e59ddffb769074d4cc74283ea59df1a89099816dd6169b248142b48764736f6c63430008090033

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.