ETH Price: $3,317.77 (+2.02%)
 

Overview

ETH Balance

0.000019441488517083 ETH

Eth Value

$0.06 (@ $3,317.77/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction213239802024-12-03 19:11:1151 days ago1733253071IN
0xdb82D0A5...912734491
0 ETH0.0034404239.53964322
Exec Transaction213238572024-12-03 18:46:2351 days ago1733251583IN
0xdb82D0A5...912734491
0 ETH0.0040705334.29925855
Exec Transaction212958512024-11-29 20:52:2355 days ago1732913543IN
0xdb82D0A5...912734491
0 ETH0.0006144510.32495181
Exec Transaction212879122024-11-28 18:13:1156 days ago1732817591IN
0xdb82D0A5...912734491
0 ETH0.0009140114.73932824
Transfer212809062024-11-27 18:34:5957 days ago1732732499IN
0xdb82D0A5...912734491
0.042 ETH0.0005435819.89030157
Transfer212767112024-11-27 4:30:3557 days ago1732681835IN
0xdb82D0A5...912734491
0.14650275 ETH0.000245268.97460533
Transfer212445362024-11-22 16:42:5962 days ago1732293779IN
0xdb82D0A5...912734491
0.00924346 ETH0.0004919418.00087501
Transfer212444362024-11-22 16:22:3562 days ago1732292555IN
0xdb82D0A5...912734491
0.00350788 ETH0.000476217.42483625
Transfer212441752024-11-22 15:29:4762 days ago1732289387IN
0xdb82D0A5...912734491
0.0049 ETH0.0004447316.27345142
Transfer212441322024-11-22 15:21:1162 days ago1732288871IN
0xdb82D0A5...912734491
0.01208 ETH0.0004154415.20144879
Transfer212440722024-11-22 15:09:1162 days ago1732288151IN
0xdb82D0A5...912734491
0.00902 ETH0.0005207519.05500023
Transfer212440062024-11-22 14:55:5962 days ago1732287359IN
0xdb82D0A5...912734491
0.005 ETH0.0004214715.42220986
Transfer212439352024-11-22 14:41:4762 days ago1732286507IN
0xdb82D0A5...912734491
0.01 ETH0.0004269315.62202289
Transfer212438332024-11-22 14:21:2362 days ago1732285283IN
0xdb82D0A5...912734491
0.004 ETH0.0005035418.42542164
Transfer212437892024-11-22 14:12:3562 days ago1732284755IN
0xdb82D0A5...912734491
0.01513026 ETH0.0004913417.97889483
Transfer212437792024-11-22 14:10:3562 days ago1732284635IN
0xdb82D0A5...912734491
0.005 ETH0.0005152418.8534392
Transfer212437552024-11-22 14:05:4762 days ago1732284347IN
0xdb82D0A5...912734491
0.009 ETH0.0005102718.67141863
Transfer212437062024-11-22 13:55:4762 days ago1732283747IN
0xdb82D0A5...912734491
0.016 ETH0.0005641520.6431827
Transfer212436852024-11-22 13:51:3562 days ago1732283495IN
0xdb82D0A5...912734491
0.01551417 ETH0.0005812121.26731306
Transfer212436572024-11-22 13:45:5962 days ago1732283159IN
0xdb82D0A5...912734491
0.032 ETH0.0005577720.40973203
Transfer212433952024-11-22 12:53:1162 days ago1732279991IN
0xdb82D0A5...912734491
0.015 ETH0.0003883214.20915855
Exec Transaction212426792024-11-22 10:29:2362 days ago1732271363IN
0xdb82D0A5...912734491
0 ETH0.001134712.81677195
Transfer212329362024-11-21 1:50:2363 days ago1732153823IN
0xdb82D0A5...912734491
0.05 ETH0.000220438.06586042
Transfer212317972024-11-20 22:01:2364 days ago1732140083IN
0xdb82D0A5...912734491
0.00560817 ETH0.0004572316.73090752
Transfer212316482024-11-20 21:31:2364 days ago1732138283IN
0xdb82D0A5...912734491
0.033 ETH0.0004229115.47487646
View all transactions

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
213239802024-12-03 19:11:1151 days ago1733253071
0xdb82D0A5...912734491
0.17 ETH
213238592024-12-03 18:46:4751 days ago1733251607
0xdb82D0A5...912734491
0.0194127 ETH
212958512024-11-29 20:52:2355 days ago1732913543
0xdb82D0A5...912734491
0.254 ETH
212879122024-11-28 18:13:1156 days ago1732817591
0xdb82D0A5...912734491
0.17 ETH
212109892024-11-18 0:22:5967 days ago1731889379
0xdb82D0A5...912734491
0.0479 ETH
211557742024-11-10 7:28:5974 days ago1731223739  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

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