ETH Price: $2,071.87 (-5.14%)

Contract

0x7BE738B315bed080da19B84fA52BDB2D2Fa88057
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer247217222026-03-23 17:30:592 days ago1774287059IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Exec Transaction247196172026-03-23 10:26:593 days ago1774261619IN
0x7BE738B3...D2Fa88057
0 ETH0.000199642.04486181
Transfer247002212026-03-20 17:30:595 days ago1774027859IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Exec Transaction246823782026-03-18 5:48:478 days ago1773812927IN
0x7BE738B3...D2Fa88057
0 ETH0.000004190.04294471
Transfer246715682026-03-16 17:30:599 days ago1773682259IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Transfer246643992026-03-15 17:30:5910 days ago1773595859IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Transfer246572262026-03-14 17:30:5911 days ago1773509459IN
0x7BE738B3...D2Fa88057
0.00000001 ETH0.000032931.2
Transfer246500522026-03-13 17:30:5912 days ago1773423059IN
0x7BE738B3...D2Fa88057
0.00000002 ETH0.000032931.2
Exec Transaction246472262026-03-13 8:03:3513 days ago1773389015IN
0x7BE738B3...D2Fa88057
0 ETH0.000021530.2205166
Transfer246428902026-03-12 17:31:1113 days ago1773336671IN
0x7BE738B3...D2Fa88057
0.00000001 ETH0.000032931.2
Exec Transaction246387432026-03-12 3:37:3514 days ago1773286655IN
0x7BE738B3...D2Fa88057
0 ETH0.000003010.03083194
Transfer246357282026-03-11 17:30:5914 days ago1773250259IN
0x7BE738B3...D2Fa88057
0.00000001 ETH0.000032931.2
Transfer246214312026-03-09 17:32:5916 days ago1773077579IN
0x7BE738B3...D2Fa88057
0.00000005 ETH0.000032931.2
Transfer245927852026-03-05 17:32:5920 days ago1772731979IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Transfer245856022026-03-04 17:30:5921 days ago1772645459IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Transfer244421982026-02-12 17:30:4741 days ago1770917447IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
Transfer244350352026-02-11 17:30:4742 days ago1770831047IN
0x7BE738B3...D2Fa88057
0.00000006 ETH0.000032931.2
Transfer244278762026-02-10 17:30:4743 days ago1770744647IN
0x7BE738B3...D2Fa88057
0.00000007 ETH0.000032931.2
Transfer242488062026-01-16 17:32:4768 days ago1768584767IN
0x7BE738B3...D2Fa88057
0.00000012 ETH0.000032931.2
Transfer242416272026-01-15 17:32:4769 days ago1768498367IN
0x7BE738B3...D2Fa88057
0.00000016 ETH0.000032931.2
Transfer242344582026-01-14 17:32:4770 days ago1768411967IN
0x7BE738B3...D2Fa88057
0.00000009 ETH0.000032931.2
Transfer242201482026-01-12 17:32:5972 days ago1768239179IN
0x7BE738B3...D2Fa88057
0.00000091 ETH0.000032931.2
Transfer240553272025-12-20 17:32:2395 days ago1766251943IN
0x7BE738B3...D2Fa88057
0.00004977 ETH0.000032931.2
Transfer240513612025-12-20 4:16:2396 days ago1766204183IN
0x7BE738B3...D2Fa88057
0.00445032 ETH0.000032931.2
Transfer239482422025-12-05 17:31:35110 days ago1764955895IN
0x7BE738B3...D2Fa88057
0 ETH0.000032931.2
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer239161532025-12-01 4:08:23115 days ago1764562103
0x7BE738B3...D2Fa88057
48.2952001 ETH
Transfer237829532025-11-12 11:48:59134 days ago1762948139
0x7BE738B3...D2Fa88057
0x7BE738B3...D2Fa88057
0.0002 ETH
0x60806040237829532025-11-12 11:48:59134 days ago1762948139  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.