ETH Price: $2,113.02 (+4.24%)

Contract

0xe5d6D047DF95c6627326465cB27B64A8b77A8b91
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction234975112025-10-03 13:20:35160 days ago1759497635IN
0xe5d6D047...8b77A8b91
0 ETH0.000041860.51028965
Exec Transaction234484132025-09-26 16:34:59167 days ago1758904499IN
0xe5d6D047...8b77A8b91
0 ETH0.000625211.02458773
Exec Transaction233972822025-09-19 12:59:35174 days ago1758286775IN
0xe5d6D047...8b77A8b91
0 ETH0.000015190.3345214
Exec Transaction233972812025-09-19 12:59:23174 days ago1758286763IN
0xe5d6D047...8b77A8b91
0 ETH0.000180720.335656
Exec Transaction233551042025-09-13 15:40:23180 days ago1757778023IN
0xe5d6D047...8b77A8b91
0 ETH0.000151110.36336334
Exec Transaction233317902025-09-10 9:27:11183 days ago1757496431IN
0xe5d6D047...8b77A8b91
0 ETH0.000018590.23715954
Exec Transaction233255802025-09-09 12:36:35184 days ago1757421395IN
0xe5d6D047...8b77A8b91
0 ETH0.000289031.19442506
Exec Transaction233193552025-09-08 15:45:23185 days ago1757346323IN
0xe5d6D047...8b77A8b91
0 ETH0.000444481.16031911
Exec Transaction233183432025-09-08 12:21:59185 days ago1757334119IN
0xe5d6D047...8b77A8b91
0 ETH0.000256720.54753308
Exec Transaction233181822025-09-08 11:49:47185 days ago1757332187IN
0xe5d6D047...8b77A8b91
0 ETH0.000088060.24962445
Exec Transaction232971822025-09-05 13:23:59188 days ago1757078639IN
0xe5d6D047...8b77A8b91
0 ETH0.000071631.18917418
Exec Transaction232971582025-09-05 13:19:11188 days ago1757078351IN
0xe5d6D047...8b77A8b91
0 ETH0.000655181.17988168
Exec Transaction232823562025-09-03 11:42:23190 days ago1756899743IN
0xe5d6D047...8b77A8b91
0 ETH0.000017510.29942064
Exec Transaction232777652025-09-02 20:19:59191 days ago1756844399IN
0xe5d6D047...8b77A8b91
0 ETH0.000059960.99576979
Exec Transaction232327982025-08-27 13:37:11197 days ago1756301831IN
0xe5d6D047...8b77A8b91
0 ETH0.00012641.53122301
Exec Transaction232254222025-08-26 12:55:47198 days ago1756212947IN
0xe5d6D047...8b77A8b91
0 ETH0.000202022.63695382
Exec Transaction232254222025-08-26 12:55:47198 days ago1756212947IN
0xe5d6D047...8b77A8b91
0 ETH0.000146582.63695382
Exec Transaction232254222025-08-26 12:55:47198 days ago1756212947IN
0xe5d6D047...8b77A8b91
0 ETH0.00020072.63695382
Exec Transaction232254222025-08-26 12:55:47198 days ago1756212947IN
0xe5d6D047...8b77A8b91
0 ETH0.000200672.63695382
Exec Transaction232183352025-08-25 13:11:11199 days ago1756127471IN
0xe5d6D047...8b77A8b91
0 ETH0.000029310.45562679
Exec Transaction230249762025-07-29 13:04:59226 days ago1753794299IN
0xe5d6D047...8b77A8b91
0 ETH0.000677788.02447787
Exec Transaction230180132025-07-28 13:42:59227 days ago1753710179IN
0xe5d6D047...8b77A8b91
0 ETH0.000158261.5579395

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60806040230180012025-07-28 13:40:35227 days ago1753710035  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 - <[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"}]

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f7669646564000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea

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.