ETH Price: $1,649.55 (+1.23%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction221770562025-04-01 22:30:4712 days ago1743546647IN
0x7cFd3D29...EF89e5906
0 ETH0.000034240.40436175
Exec Transaction221770002025-04-01 22:19:3512 days ago1743545975IN
0x7cFd3D29...EF89e5906
0 ETH0.000050.46536831
Exec Transaction221769852025-04-01 22:16:3512 days ago1743545795IN
0x7cFd3D29...EF89e5906
0 ETH0.000076930.90854574
Exec Transaction221703102025-03-31 23:55:1113 days ago1743465311IN
0x7cFd3D29...EF89e5906
0 ETH0.000209720.61407283
Exec Transaction220412672025-03-13 23:34:4731 days ago1741908887IN
0x7cFd3D29...EF89e5906
0 ETH0.000061640.57371602
Exec Transaction219483152025-03-01 0:04:5944 days ago1740787499IN
0x7cFd3D29...EF89e5906
0 ETH0.000165120.81447882
Exec Transaction218681042025-02-17 19:12:1155 days ago1739819531IN
0x7cFd3D29...EF89e5906
0 ETH0.000773645.2431106
Exec Transaction218680712025-02-17 19:05:3555 days ago1739819135IN
0x7cFd3D29...EF89e5906
0 ETH0.000699576.51187071
Exec Transaction216386052025-01-16 17:41:3588 days ago1737049295IN
0x7cFd3D29...EF89e5906
0 ETH0.0012153111.31262056
Exec Transaction215247562024-12-31 20:12:11103 days ago1735675931IN
0x7cFd3D29...EF89e5906
0 ETH0.000842535.71000277
Exec Transaction215247072024-12-31 20:02:23103 days ago1735675343IN
0x7cFd3D29...EF89e5906
0 ETH0.00065136.06395873
Exec Transaction213874682024-12-12 15:57:59123 days ago1734019079IN
0x7cFd3D29...EF89e5906
0 ETH0.0038022835.38519887
Exec Transaction213023222024-11-30 18:36:23134 days ago1732991783IN
0x7cFd3D29...EF89e5906
0 ETH0.0049111917.08680673
Exec Transaction213022332024-11-30 18:18:35134 days ago1732990715IN
0x7cFd3D29...EF89e5906
0 ETH0.0015047414.0099221
Exec Transaction211883622024-11-14 20:36:59150 days ago1731616619IN
0x7cFd3D29...EF89e5906
0 ETH0.0026040124.87925009
Exec Transaction211879042024-11-14 19:04:59150 days ago1731611099IN
0x7cFd3D29...EF89e5906
0 ETH0.0115758329.50017705
Exec Transaction211869412024-11-14 15:51:11151 days ago1731599471IN
0x7cFd3D29...EF89e5906
0 ETH0.0034789931.2754996
Exec Transaction209242932024-10-08 23:57:59187 days ago1728431879IN
0x7cFd3D29...EF89e5906
0 ETH0.0061682314.43084698
Exec Transaction209234782024-10-08 21:13:59187 days ago1728422039IN
0x7cFd3D29...EF89e5906
0 ETH0.0027628421.53002929
Exec Transaction209234752024-10-08 21:13:23187 days ago1728422003IN
0x7cFd3D29...EF89e5906
0 ETH0.006881220.60924881

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60806040208642132024-09-30 14:57:35196 days ago1727708255  Contract Creation0 ETH
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
File 1 of 1 : SafeProxy.sol
// 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 - <[email protected]>
 * @author Richard Meissner - <[email protected]>
 */
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"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.