ETH Price: $1,844.30 (-1.23%)
 

Overview

ETH Balance

0.0199 ETH

Eth Value

$36.70 (@ $1,844.30/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction220343622025-03-13 0:27:3517 hrs ago1741825655IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000071630.9
Exec Transaction220209082025-03-11 3:20:352 days ago1741663235IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000127771.32172919
Exec Transaction220209042025-03-11 3:19:472 days ago1741663187IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000140031.44846919
Exec Transaction220208982025-03-11 3:18:232 days ago1741663103IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000110871.39305702
Exec Transaction219920372025-03-07 2:30:596 days ago1741314659IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000092141.15784734
Exec Transaction219920312025-03-07 2:29:476 days ago1741314587IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000107161.10858227
Exec Transaction219753102025-03-04 18:26:478 days ago1741112807IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000116861.46869356
Exec Transaction219416652025-02-28 1:49:4713 days ago1740707387IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000285713.59022883
Exec Transaction219198042025-02-25 0:36:5916 days ago1740443819IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000411014.25122417
Exec Transaction219197992025-02-25 0:35:5916 days ago1740443759IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000399655.02203236
Exec Transaction218918242025-02-21 2:47:1120 days ago1740106031IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000095491.2
Exec Transaction218917992025-02-21 2:42:1120 days ago1740105731IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000111951.15808378
Exec Transaction218845202025-02-20 2:14:2321 days ago1740017663IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000115631.15076246
Exec Transaction218845082025-02-20 2:11:5921 days ago1740017519IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000058361
Exec Transaction218822792025-02-19 18:43:2321 days ago1739990603IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000052030.95365481
Exec Transaction218381032025-02-13 14:17:3528 days ago1739456255IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000352573.79809996
Exec Transaction218381002025-02-13 14:16:5928 days ago1739456219IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000468774.84872786
Exec Transaction217632302025-02-03 3:14:5938 days ago1738552499IN
0x8A6c1F0B...FD3A884A3
0 ETH0.01570871162.5
Exec Transaction217631192025-02-03 2:52:2338 days ago1738551143IN
0x8A6c1F0B...FD3A884A3
0 ETH0.01290514133.49825788
Exec Transaction217557842025-02-02 2:14:5939 days ago1738462499IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000193362
Exec Transaction217047812025-01-25 23:22:5946 days ago1737847379IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000372564.6816413
Exec Transaction216810092025-01-22 15:44:4750 days ago1737560687IN
0x8A6c1F0B...FD3A884A3
0 ETH0.0013372213.30739904
Exec Transaction216810022025-01-22 15:43:2350 days ago1737560603IN
0x8A6c1F0B...FD3A884A3
0 ETH0.0012769715.31163313
Exec Transaction216782982025-01-22 6:40:4750 days ago1737528047IN
0x8A6c1F0B...FD3A884A3
0 ETH0.000773878.33752451
Exec Transaction216376792025-01-16 14:35:3556 days ago1737038135IN
0x8A6c1F0B...FD3A884A3
0 ETH0.0009437811.86294881
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer211326202024-11-07 1:54:23126 days ago1730944463
0x8A6c1F0B...FD3A884A3
0.0001 ETH
0x60806040211220092024-11-05 14:21:11128 days ago1730816471  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.