ETH Price: $1,794.36 (+10.39%)

Contract

0xD0749b3e537Ed52DE4e6a3Ae1eB6fc26059d0895

Overview

ETH Balance

142.592852952876859863 ETH

ETH Value

$255,862.54 (@ $1,794.36/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer613950612024-03-27 5:14:53392 days ago1711516493IN
0xD0749b3e...6059d0895
24.26880084 ETH0.000000330.01
Transfer613947912024-03-27 5:12:54392 days ago1711516374IN
0xD0749b3e...6059d0895
1.025687 ETH0.000000330.01
VIEW ADVANCED FILTER

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
833695592025-04-18 14:21:454 days ago1744986105
0xD0749b3e...6059d0895
0.0029278 ETH
833695572025-04-18 14:21:334 days ago1744986093
0xD0749b3e...6059d0895
0.00498957 ETH
832487362025-04-09 17:06:0613 days ago1744218366
0xD0749b3e...6059d0895
0.00275762 ETH
832487122025-04-09 17:04:0613 days ago1744218246
0xD0749b3e...6059d0895
0.00391332 ETH
831522232025-04-02 17:06:0620 days ago1743613566
0xD0749b3e...6059d0895
0.00225113 ETH
831522012025-04-02 17:04:0620 days ago1743613446
0xD0749b3e...6059d0895
0.01364096 ETH
828309732025-03-19 17:06:0834 days ago1742403968
0xD0749b3e...6059d0895
0.00133691 ETH
828309642025-03-19 17:04:1034 days ago1742403850
0xD0749b3e...6059d0895
0.01131706 ETH
826936432025-03-12 17:06:0841 days ago1741799168
0xD0749b3e...6059d0895
0.00366691 ETH
826936332025-03-12 17:04:0941 days ago1741799049
0xD0749b3e...6059d0895
0.01730963 ETH
825590802025-03-05 18:06:0848 days ago1741197968
0xD0749b3e...6059d0895
0.00380151 ETH
825590632025-03-05 18:04:0848 days ago1741197848
0xD0749b3e...6059d0895
0.01348939 ETH
824614782025-02-26 18:06:0755 days ago1740593167
0xD0749b3e...6059d0895
0.0025391 ETH
824614412025-02-26 18:04:0855 days ago1740593048
0xD0749b3e...6059d0895
0.02344122 ETH
824030502025-02-19 18:06:0762 days ago1739988367
0xD0749b3e...6059d0895
0.00517006 ETH
822682492025-02-12 18:06:0969 days ago1739383569
0xD0749b3e...6059d0895
0.00246277 ETH
822682372025-02-12 18:04:0769 days ago1739383447
0xD0749b3e...6059d0895
0.01036874 ETH
821509682025-02-05 18:06:0876 days ago1738778768
0xD0749b3e...6059d0895
0.02096306 ETH
821509542025-02-05 18:04:0876 days ago1738778648
0xD0749b3e...6059d0895
0.01119553 ETH
820300402025-01-29 18:06:0983 days ago1738173969
0xD0749b3e...6059d0895
0.02151042 ETH
820300282025-01-29 18:04:4683 days ago1738173886
0xD0749b3e...6059d0895
0.03038554 ETH
818237072025-01-22 18:06:0790 days ago1737569167
0xD0749b3e...6059d0895
0.0524299 ETH
818236682025-01-22 18:04:0890 days ago1737569048
0xD0749b3e...6059d0895
0.01475218 ETH
816368762025-01-15 18:06:0797 days ago1736964367
0xD0749b3e...6059d0895
0.0156244 ETH
816368502025-01-15 18:04:0897 days ago1736964248
0xD0749b3e...6059d0895
0.01495241 ETH
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x3cA27a79...41812B2cd
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

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

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
[ 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.