ETH Price: $2,152.13 (-0.57%)

Contract

0x333Df2b4d3Ff2D9aadFE7265b0eA542f3aa2091C
 

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
Exec Transaction208186402024-09-24 6:24:23543 days ago1727159063IN
0x333Df2b4...f3aa2091C
0 ETH0.0019405614.2890377
Exec Transaction208186062024-09-24 6:17:35543 days ago1727158655IN
0x333Df2b4...f3aa2091C
0 ETH0.0011814714.07924106
Exec Transaction203230632024-07-17 1:48:47612 days ago1721180927IN
0x333Df2b4...f3aa2091C
0 ETH0.000630795.74154362
Exec Transaction203230422024-07-17 1:44:35612 days ago1721180675IN
0x333Df2b4...f3aa2091C
0 ETH0.000891715.20739335
Exec Transaction203105692024-07-15 7:58:11614 days ago1721030291IN
0x333Df2b4...f3aa2091C
0 ETH0.000350162.86935563
Exec Transaction203105642024-07-15 7:57:11614 days ago1721030231IN
0x333Df2b4...f3aa2091C
0 ETH0.000362173.38144737
Exec Transaction202251092024-07-03 9:32:23625 days ago1719999143IN
0x333Df2b4...f3aa2091C
0 ETH0.000409974.20456776
Exec Transaction202251022024-07-03 9:30:59625 days ago1719999059IN
0x333Df2b4...f3aa2091C
0 ETH0.000510074.76337703
Exec Transaction202250942024-07-03 9:29:23625 days ago1719998963IN
0x333Df2b4...f3aa2091C
0 ETH0.000430874.09917934
Exec Transaction202227982024-07-03 1:47:23626 days ago1719971243IN
0x333Df2b4...f3aa2091C
0 ETH0.000346282.8313009
Transfer202159462024-07-02 2:47:23627 days ago1719888443IN
0x333Df2b4...f3aa2091C
0.001 ETH0.00004432.10982368

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer208186062024-09-24 6:17:35543 days ago1727158655
0x333Df2b4...f3aa2091C
0.001 ETH
Transfer202159832024-07-02 2:54:47627 days ago1719888887
0x333Df2b4...f3aa2091C
0x333Df2b4...f3aa2091C
0.001 ETH
0x60806040202159832024-07-02 2:54:47627 days ago1719888887  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
NXVProxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2025-08-14
*/

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/**
 * @title IProxy - Helper interface to access the singleton address of the Proxy on-chain.
 * @author Richard Meissner - @rmeissner
 */
interface IProxy {
    function masterCopy() external view returns (address);
}

/**
 * @title NXVProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
 * @author Stefan George - <stefan@gnosis.io>
 * @author Richard Meissner - <richard@gnosis.io>
 */
contract NXVProxy {
    // Singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`.
    address internal singleton;

    /**
     * @notice Constructor function sets address of singleton contract.
     * @param _singleton Singleton address.
     */
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

// .

Contract Security Audit

Contract ABI

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

0x608060405234801561001057600080fd5b506040516102d13803806102d18339818101604052810190610032919061014a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610098906101fa565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505061021a565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610117826100ec565b9050919050565b6101278161010c565b811461013257600080fd5b50565b6000815190506101448161011e565b92915050565b6000602082840312156101605761015f6100e7565b5b600061016e84828501610135565b91505092915050565b600082825260208201905092915050565b7f496e76616c69642073696e676c65746f6e20616464726573732070726f76696460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006101e4602283610177565b91506101ef82610188565b604082019050919050565b60006020820190508181036000830152610213816101d7565b9050919050565b60a9806102286000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003503604f578060005260206000f35b3660008037600080366000845af43d6000803e60008103606e573d6000fd5b3d6000f3fea2646970667358221220e3dcce0c967108a4f32bfc0ed20c923c1f2849ec587295bccf2782dad8fb9dc964736f6c634300081100330000000000000000000000003f99439d9e9bbc961cf3a25ed53309c8c42e14da

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003503604f578060005260206000f35b3660008037600080366000845af43d6000803e60008103606e573d6000fd5b3d6000f3fea2646970667358221220e3dcce0c967108a4f32bfc0ed20c923c1f2849ec587295bccf2782dad8fb9dc964736f6c63430008110033

Deployed Bytecode Sourcemap

535:1541:0:-:0;;;1400:42;1396:1;1390:8;1386:57;1580:66;1576:1;1563:15;1560:87;1557:179;;1677:10;1674:1;1667:21;1716:4;1713:1;1706:15;1557:179;1769:14;1766:1;1763;1750:34;1867:1;1864;1848:14;1845:1;1833:10;1826:5;1813:56;1904:16;1901:1;1898;1883:38;1950:1;1941:7;1938:14;1935:79;;1982:16;1979:1;1972:27;1935:79;2038:16;2035:1;2028:27

Swarm Source

ipfs://e3dcce0c967108a4f32bfc0ed20c923c1f2849ec587295bccf2782dad8fb9dc9

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.