ETH Price: $1,953.50 (-2.26%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0xf70f40f872b28bf00d9ef22193a4ccf3b92b8f742005266aa8e1448b789c61a9 Transfer(pending)2026-03-01 1:35:2328 hrs ago1772328923IN
0x1D72713F...D45340e17
0 ETH(Pending)(Pending)
Exec Transaction245621392026-03-01 10:57:2319 hrs ago1772362643IN
0x1D72713F...D45340e17
0 ETH0.000002970.03699088
Exec Transaction245606542026-03-01 5:59:1124 hrs ago1772344751IN
0x1D72713F...D45340e17
0 ETH0.000002920.03629654
Exec Transaction245552542026-02-28 11:52:3542 hrs ago1772279555IN
0x1D72713F...D45340e17
0 ETH0.000004110.05112791
Exec Transaction245541162026-02-28 8:03:5946 hrs ago1772265839IN
0x1D72713F...D45340e17
0 ETH0.000241582.12753137
Exec Transaction245461152026-02-27 5:16:113 days ago1772169371IN
0x1D72713F...D45340e17
0 ETH0.000003280.04084001
Exec Transaction245389682026-02-26 5:22:114 days ago1772083331IN
0x1D72713F...D45340e17
0 ETH0.000232522.04757626
Exec Transaction245336392026-02-25 11:29:594 days ago1772018999IN
0x1D72713F...D45340e17
0 ETH0.000164062.03756453
Exec Transaction245319402026-02-25 5:49:235 days ago1771998563IN
0x1D72713F...D45340e17
0 ETH0.000003360.04174569
Exec Transaction245265872026-02-24 11:53:235 days ago1771934003IN
0x1D72713F...D45340e17
0 ETH0.000004930.05049782
Exec Transaction245246642026-02-24 5:27:356 days ago1771910855IN
0x1D72713F...D45340e17
0 ETH0.000005390.05523437
Exec Transaction245192672026-02-23 11:23:476 days ago1771845827IN
0x1D72713F...D45340e17
0 ETH0.00000360.04472562
Transfer245174872026-02-23 5:26:477 days ago1771824407IN
0x1D72713F...D45340e17
0.00000055 ETH0.000000770.03667114
Exec Transaction245174682026-02-23 5:22:597 days ago1771824179IN
0x1D72713F...D45340e17
0 ETH0.000003160.03242328
Exec Transaction245120522026-02-22 11:16:477 days ago1771759007IN
0x1D72713F...D45340e17
0 ETH0.000003410.0424472
Exec Transaction245104602026-02-22 5:56:598 days ago1771739819IN
0x1D72713F...D45340e17
0 ETH0.000002550.03177148
Exec Transaction245048212026-02-21 11:04:238 days ago1771671863IN
0x1D72713F...D45340e17
0 ETH0.000198672.0350123
Transfer244905552026-02-19 11:20:3510 days ago1771500035IN
0x1D72713F...D45340e17
0 ETH0.000000920.04390659
Transfer244905552026-02-19 11:20:3510 days ago1771500035IN
0x1D72713F...D45340e17
0 ETH0.000000920.04390659
Exec Transaction244905272026-02-19 11:14:5910 days ago1771499699IN
0x1D72713F...D45340e17
0 ETH0.00000460.03526237
Transfer244888172026-02-19 5:31:5911 days ago1771479119IN
0x1D72713F...D45340e17
0 ETH0.000000870.04183088
Exec Transaction244888142026-02-19 5:31:2311 days ago1771479083IN
0x1D72713F...D45340e17
0 ETH0.00000280.03479449
Transfer244833372026-02-18 11:11:4711 days ago1771413107IN
0x1D72713F...D45340e17
0 ETH0.000001890.09011441
Exec Transaction244833282026-02-18 11:09:5911 days ago1771412999IN
0x1D72713F...D45340e17
0 ETH0.000009760.10003984
Transfer244816582026-02-18 5:34:4712 days ago1771392887IN
0x1D72713F...D45340e17
0 ETH0.000000830.0396896
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer231956242025-08-22 9:09:23191 days ago1755853763
0x1D72713F...D45340e17
0.0535173 ETH
Transfer221573552025-03-30 4:31:23337 days ago1743309083
0x1D72713F...D45340e17
0.001 ETH
0x60806040221573552025-03-30 4:31:23337 days ago1743309083  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
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.