ETH Price: $1,882.18 (-2.85%)
 
Transaction Hash
Method
Block
From
To
Exec Transaction217003232025-01-25 8:27:3550 days ago1737793655IN
0x3bD66d15...Fb2eC2A17
0 ETH0.003514496.45189657
Exec Transaction216978112025-01-25 0:01:2350 days ago1737763283IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000971367.90577674
Exec Transaction216977962025-01-24 23:58:2350 days ago1737763103IN
0x3bD66d15...Fb2eC2A17
0 ETH0.002212087.21246097
Exec Transaction216960542025-01-24 18:07:5951 days ago1737742079IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0015905912.94685241
Exec Transaction216960342025-01-24 18:03:5951 days ago1737741839IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0027686912.27802724
Exec Transaction216960322025-01-24 18:03:3551 days ago1737741815IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0012197713.00611241
Exec Transaction216952052025-01-24 15:17:4751 days ago1737731867IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0032195820.53923286
Exec Transaction216951942025-01-24 15:15:3551 days ago1737731735IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0021614121.84261369
Exec Transaction216946642025-01-24 13:29:1151 days ago1737725351IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0065590719.01805496
Exec Transaction216548272025-01-19 0:02:3556 days ago1737244955IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0026962331.21144335
Exec Transaction216097282025-01-12 16:52:4763 days ago1736700767IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000409634.07647698
Exec Transaction216096872025-01-12 16:44:3563 days ago1736700275IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000333454
Exec Transaction216096762025-01-12 16:42:2363 days ago1736700143IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000218134.11777895
Exec Transaction216096712025-01-12 16:41:2363 days ago1736700083IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000398754.2689256
Exec Transaction216096442025-01-12 16:35:5963 days ago1736699759IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000349414.28961318
Exec Transaction216081982025-01-12 11:45:3563 days ago1736682335IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000587493.4
Exec Transaction216081722025-01-12 11:40:2363 days ago1736682023IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000449222.6
Exec Transaction216081362025-01-12 11:33:1163 days ago1736681591IN
0x3bD66d15...Fb2eC2A17
0 ETH0.00124982.64201577
Exec Transaction216081172025-01-12 11:29:2363 days ago1736681363IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000193652.56499079
Exec Transaction216081032025-01-12 11:26:3563 days ago1736681195IN
0x3bD66d15...Fb2eC2A17
0 ETH0.001237772.62057963
Exec Transaction216080782025-01-12 11:21:3563 days ago1736680895IN
0x3bD66d15...Fb2eC2A17
0 ETH0.00019632.6
Exec Transaction216080702025-01-12 11:19:5963 days ago1736680799IN
0x3bD66d15...Fb2eC2A17
0 ETH0.001313582.68265618
Exec Transaction216080412025-01-12 11:14:1163 days ago1736680451IN
0x3bD66d15...Fb2eC2A17
0 ETH0.000218982.9
Exec Transaction216080362025-01-12 11:13:1163 days ago1736680391IN
0x3bD66d15...Fb2eC2A17
0 ETH0.001042712.86523877
Exec Transaction214390372024-12-19 20:44:5987 days ago1734641099IN
0x3bD66d15...Fb2eC2A17
0 ETH0.0108712543.20523458
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60806040211647162024-11-11 13:23:23125 days ago1731331403  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
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.