ETH Price: $2,053.84 (+4.72%)
 

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 Transaction234458332025-09-26 7:54:35157 days ago1758873275IN
0x3d28383a...975e1a1Ea
0 ETH0.000029270.38656346
Exec Transaction234458162025-09-26 7:51:11157 days ago1758873071IN
0x3d28383a...975e1a1Ea
0 ETH0.000025730.51826758
Exec Transaction234458152025-09-26 7:50:59157 days ago1758873059IN
0x3d28383a...975e1a1Ea
0 ETH0.000046910.40303114
Exec Transaction234458082025-09-26 7:49:35157 days ago1758872975IN
0x3d28383a...975e1a1Ea
0 ETH0.000037890.45886296
Exec Transaction234458032025-09-26 7:48:23157 days ago1758872903IN
0x3d28383a...975e1a1Ea
0 ETH0.000037130.44964665
Exec Transaction234457912025-09-26 7:45:59157 days ago1758872759IN
0x3d28383a...975e1a1Ea
0 ETH0.000033380.41218931
Exec Transaction234457792025-09-26 7:43:35157 days ago1758872615IN
0x3d28383a...975e1a1Ea
0 ETH0.000142940.4187761
Exec Transaction234457692025-09-26 7:41:35157 days ago1758872495IN
0x3d28383a...975e1a1Ea
0 ETH0.00008030.38833289
Exec Transaction234457522025-09-26 7:38:11157 days ago1758872291IN
0x3d28383a...975e1a1Ea
0 ETH0.000473620.43750998
Exec Transaction234457412025-09-26 7:35:59157 days ago1758872159IN
0x3d28383a...975e1a1Ea
0 ETH0.000461010.47191047
Exec Transaction234457102025-09-26 7:29:47157 days ago1758871787IN
0x3d28383a...975e1a1Ea
0 ETH0.000400050.39044045
Exec Transaction234456972025-09-26 7:27:11157 days ago1758871631IN
0x3d28383a...975e1a1Ea
0 ETH0.000388060.40026928
Exec Transaction234456742025-09-26 7:22:35157 days ago1758871355IN
0x3d28383a...975e1a1Ea
0 ETH0.000302250.35541581
Exec Transaction234456652025-09-26 7:20:47157 days ago1758871247IN
0x3d28383a...975e1a1Ea
0 ETH0.000386340.39582931
Exec Transaction234456602025-09-26 7:19:47157 days ago1758871187IN
0x3d28383a...975e1a1Ea
0 ETH0.000400690.38303863
Exec Transaction234456542025-09-26 7:18:35157 days ago1758871115IN
0x3d28383a...975e1a1Ea
0 ETH0.000342990.35128056
Exec Transaction234456292025-09-26 7:13:23157 days ago1758870803IN
0x3d28383a...975e1a1Ea
0 ETH0.000290160.32911699
Exec Transaction234456202025-09-26 7:11:23157 days ago1758870683IN
0x3d28383a...975e1a1Ea
0 ETH0.000028310.32939162
Exec Transaction234456062025-09-26 7:08:23157 days ago1758870503IN
0x3d28383a...975e1a1Ea
0 ETH0.00002350.27352006
Exec Transaction234455922025-09-26 7:05:35157 days ago1758870335IN
0x3d28383a...975e1a1Ea
0 ETH0.000255890.24590179
Exec Transaction234455592025-09-26 6:58:59157 days ago1758869939IN
0x3d28383a...975e1a1Ea
0 ETH0.000201230.19863293
Exec Transaction234455482025-09-26 6:56:47157 days ago1758869807IN
0x3d28383a...975e1a1Ea
0 ETH0.000017790.20700684
Exec Transaction234427492025-09-25 21:31:23157 days ago1758835883IN
0x3d28383a...975e1a1Ea
0 ETH0.000167750.72209525
Exec Transaction234426602025-09-25 21:13:11157 days ago1758834791IN
0x3d28383a...975e1a1Ea
0 ETH0.00005280.85176596
Exec Transaction234415212025-09-25 17:23:59157 days ago1758821039IN
0x3d28383a...975e1a1Ea
0 ETH0.001577844.88091542
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer234426602025-09-25 21:13:11157 days ago1758834791
0x3d28383a...975e1a1Ea
0.0149759 ETH
Send234415212025-09-25 17:23:59157 days ago1758821039
0x3d28383a...975e1a1Ea
0.00002409 ETH
0x60806040232315912025-08-27 9:33:59187 days ago1756287239  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.