Source Code
Latest 25 from a total of 37 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24721722 | 2 days ago | IN | 0 ETH | 0.00003293 | ||||
| Exec Transaction | 24719617 | 3 days ago | IN | 0 ETH | 0.00019964 | ||||
| Transfer | 24700221 | 5 days ago | IN | 0 ETH | 0.00003293 | ||||
| Exec Transaction | 24682378 | 8 days ago | IN | 0 ETH | 0.00000419 | ||||
| Transfer | 24671568 | 9 days ago | IN | 0 ETH | 0.00003293 | ||||
| Transfer | 24664399 | 10 days ago | IN | 0 ETH | 0.00003293 | ||||
| Transfer | 24657226 | 11 days ago | IN | 0.00000001 ETH | 0.00003293 | ||||
| Transfer | 24650052 | 12 days ago | IN | 0.00000002 ETH | 0.00003293 | ||||
| Exec Transaction | 24647226 | 13 days ago | IN | 0 ETH | 0.00002153 | ||||
| Transfer | 24642890 | 13 days ago | IN | 0.00000001 ETH | 0.00003293 | ||||
| Exec Transaction | 24638743 | 14 days ago | IN | 0 ETH | 0.00000301 | ||||
| Transfer | 24635728 | 14 days ago | IN | 0.00000001 ETH | 0.00003293 | ||||
| Transfer | 24621431 | 16 days ago | IN | 0.00000005 ETH | 0.00003293 | ||||
| Transfer | 24592785 | 20 days ago | IN | 0 ETH | 0.00003293 | ||||
| Transfer | 24585602 | 21 days ago | IN | 0 ETH | 0.00003293 | ||||
| Transfer | 24442198 | 41 days ago | IN | 0 ETH | 0.00003293 | ||||
| Transfer | 24435035 | 42 days ago | IN | 0.00000006 ETH | 0.00003293 | ||||
| Transfer | 24427876 | 43 days ago | IN | 0.00000007 ETH | 0.00003293 | ||||
| Transfer | 24248806 | 68 days ago | IN | 0.00000012 ETH | 0.00003293 | ||||
| Transfer | 24241627 | 69 days ago | IN | 0.00000016 ETH | 0.00003293 | ||||
| Transfer | 24234458 | 70 days ago | IN | 0.00000009 ETH | 0.00003293 | ||||
| Transfer | 24220148 | 72 days ago | IN | 0.00000091 ETH | 0.00003293 | ||||
| Transfer | 24055327 | 95 days ago | IN | 0.00004977 ETH | 0.00003293 | ||||
| Transfer | 24051361 | 96 days ago | IN | 0.00445032 ETH | 0.00003293 | ||||
| Transfer | 23948242 | 110 days ago | IN | 0 ETH | 0.00003293 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]Contract Creation Code
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
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.