ETH Price: $3,119.70 (-5.90%)
 

Overview

ETH Balance

6.3128921102543 ETH

Eth Value

$19,694.34 (@ $3,119.70/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction216943882025-01-24 12:33:353 days ago1737722015IN
0x472AC001...81e40e6eA
0 ETH0.0015425919.96376261
Exec Transaction216941402025-01-24 11:43:473 days ago1737719027IN
0x472AC001...81e40e6eA
0 ETH0.0012013816.29942479
Exec Transaction216941322025-01-24 11:42:113 days ago1737718931IN
0x472AC001...81e40e6eA
0 ETH0.0021814317.06417861
Exec Transaction216941112025-01-24 11:37:593 days ago1737718679IN
0x472AC001...81e40e6eA
0 ETH0.0015114815.33461955

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
217168962025-01-27 15:56:3519 mins ago1737993395
0x472AC001...81e40e6eA
0.00297994 ETH
217167172025-01-27 15:20:4755 mins ago1737991247
0x472AC001...81e40e6eA
0.01599998 ETH
217163562025-01-27 14:07:472 hrs ago1737986867
0x472AC001...81e40e6eA
0.19999985 ETH
217161132025-01-27 13:18:592 hrs ago1737983939
0x472AC001...81e40e6eA
0.03869991 ETH
217159842025-01-27 12:53:113 hrs ago1737982391
0x472AC001...81e40e6eA
0.14999989 ETH
217159002025-01-27 12:36:113 hrs ago1737981371
0x472AC001...81e40e6eA
0.01199996 ETH
217158512025-01-27 12:26:113 hrs ago1737980771
0x472AC001...81e40e6eA
0.01399998 ETH
217158182025-01-27 12:19:353 hrs ago1737980375
0x472AC001...81e40e6eA
0.0097999 ETH
217156602025-01-27 11:47:594 hrs ago1737978479
0x472AC001...81e40e6eA
0.02599998 ETH
217148772025-01-27 9:10:237 hrs ago1737969023
0x472AC001...81e40e6eA
0.00999996 ETH
217146392025-01-27 8:22:477 hrs ago1737966167
0x472AC001...81e40e6eA
0.02299999 ETH
217146332025-01-27 8:21:357 hrs ago1737966095
0x472AC001...81e40e6eA
0.01699998 ETH
217145752025-01-27 8:09:598 hrs ago1737965399
0x472AC001...81e40e6eA
0.01103998 ETH
217145222025-01-27 7:59:238 hrs ago1737964763
0x472AC001...81e40e6eA
0.01233996 ETH
217144302025-01-27 7:40:598 hrs ago1737963659
0x472AC001...81e40e6eA
0.01149997 ETH
217144062025-01-27 7:36:118 hrs ago1737963371
0x472AC001...81e40e6eA
0.09999995 ETH
217143882025-01-27 7:32:358 hrs ago1737963155
0x472AC001...81e40e6eA
0.02539989 ETH
217143762025-01-27 7:30:118 hrs ago1737963011
0x472AC001...81e40e6eA
0.02799992 ETH
217143042025-01-27 7:15:479 hrs ago1737962147
0x472AC001...81e40e6eA
0.05289991 ETH
217142942025-01-27 7:13:479 hrs ago1737962027
0x472AC001...81e40e6eA
0.00699991 ETH
217141772025-01-27 6:50:239 hrs ago1737960623
0x472AC001...81e40e6eA
0.00499993 ETH
217141682025-01-27 6:48:359 hrs ago1737960515
0x472AC001...81e40e6eA
0.00899998 ETH
217141022025-01-27 6:35:239 hrs ago1737959723
0x472AC001...81e40e6eA
0.12999994 ETH
217140162025-01-27 6:17:599 hrs ago1737958679
0x472AC001...81e40e6eA
0.04199996 ETH
217136772025-01-27 5:09:4711 hrs ago1737954587
0x472AC001...81e40e6eA
0.00429997 ETH
View All Internal Transactions
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.