ETH Price: $2,063.87 (-0.18%)

Contract

0xeB6B72D7C7607Eaf8096dADf5b2c2Fbf0d326b6D
 

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction243358962026-01-28 21:01:1142 days ago1769634071IN
0xeB6B72D7...f0d326b6D
0 ETH0.000031960.082
Exec Transaction243358832026-01-28 20:58:3542 days ago1769633915IN
0xeB6B72D7...f0d326b6D
0 ETH0.000006350.082
Exec Transaction243358432026-01-28 20:50:3542 days ago1769633435IN
0xeB6B72D7...f0d326b6D
0 ETH0.000027180.075
Exec Transaction243358362026-01-28 20:49:1142 days ago1769633351IN
0xeB6B72D7...f0d326b6D
0 ETH0.000005420.07
Exec Transaction241396432026-01-01 12:00:3570 days ago1767268835IN
0xeB6B72D7...f0d326b6D
0 ETH0.000028010.03
Exec Transaction240782362025-12-23 22:16:1178 days ago1766528171IN
0xeB6B72D7...f0d326b6D
0 ETH0.000015910.04
Exec Transaction240782292025-12-23 22:14:4778 days ago1766528087IN
0xeB6B72D7...f0d326b6D
0 ETH0.000002940.04
Exec Transaction240781772025-12-23 22:04:2378 days ago1766527463IN
0xeB6B72D7...f0d326b6D
0 ETH0.000002630.04
Exec Transaction240621912025-12-21 16:30:4781 days ago1766334647IN
0xeB6B72D7...f0d326b6D
0 ETH0.000038070.04
Exec Transaction240621712025-12-21 16:26:4781 days ago1766334407IN
0xeB6B72D7...f0d326b6D
0 ETH0.000002780.04
Exec Transaction240605962025-12-21 11:11:2381 days ago1766315483IN
0xeB6B72D7...f0d326b6D
0 ETH0.000003170.04
Exec Transaction240605892025-12-21 11:09:5981 days ago1766315399IN
0xeB6B72D7...f0d326b6D
0 ETH0.000003460.04
Exec Transaction240527322025-12-20 8:51:3582 days ago1766220695IN
0xeB6B72D7...f0d326b6D
0 ETH0.000012040.03
Exec Transaction240527252025-12-20 8:50:1182 days ago1766220611IN
0xeB6B72D7...f0d326b6D
0 ETH0.000002320.03
Exec Transaction240485852025-12-19 18:59:3582 days ago1766170775IN
0xeB6B72D7...f0d326b6D
0 ETH0.00002470.045
Exec Transaction240485792025-12-19 18:58:2382 days ago1766170703IN
0xeB6B72D7...f0d326b6D
0 ETH0.00000390.045
Exec Transaction240485402025-12-19 18:50:3582 days ago1766170235IN
0xeB6B72D7...f0d326b6D
0 ETH0.000004330.05
Exec Transaction240099912025-12-14 9:37:2388 days ago1765705043IN
0xeB6B72D7...f0d326b6D
0 ETH0.000014450.05
Exec Transaction240099862025-12-14 9:36:2388 days ago1765704983IN
0xeB6B72D7...f0d326b6D
0 ETH0.000003870.05
Exec Transaction240099692025-12-14 9:32:5988 days ago1765704779IN
0xeB6B72D7...f0d326b6D
0 ETH0.000006380.06
Exec Transaction240099692025-12-14 9:32:5988 days ago1765704779IN
0xeB6B72D7...f0d326b6D
0 ETH0.000002270.05
Exec Transaction240099622025-12-14 9:31:3588 days ago1765704695IN
0xeB6B72D7...f0d326b6D
0 ETH0.000025260.05
Exec Transaction240098512025-12-14 9:09:2388 days ago1765703363IN
0xeB6B72D7...f0d326b6D
0 ETH0.000003460.04
Exec Transaction239705902025-12-08 20:53:3593 days ago1765227215IN
0xeB6B72D7...f0d326b6D
0 ETH0.000102120.3
Exec Transaction239705832025-12-08 20:52:1193 days ago1765227131IN
0xeB6B72D7...f0d326b6D
0 ETH0.000024010.31
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Join237356052025-11-05 20:53:47126 days ago1762376027
0xeB6B72D7...f0d326b6D
0.002 ETH
0x60806040228102762025-06-29 13:06:23256 days ago1751202383  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 0xbe6E7581...0978C932f
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// 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 SafeProxy - 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 SafeProxy {
    // 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())
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

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

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000041675c099f32341bf84bfc5382af534df5c7461a

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

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