ETH Price: $2,156.67 (+8.73%)
 

Overview

ETH Balance

6.815066143157038051 ETH

Eth Value

$14,697.83 (@ $2,156.67/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction229170762025-07-14 11:19:47233 days ago1752491987IN
0x42a310f5...C8564e294
0 ETH0.000243483.70010434
Exec Transaction216842122025-01-23 2:29:11405 days ago1737599351IN
0x42a310f5...C8564e294
0 ETH0.000682986.56009717

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer245866942026-03-04 21:10:471 hr ago1772658647
0x42a310f5...C8564e294
0.0000285 ETH
Transfer245865382026-03-04 20:39:351 hr ago1772656775
0x42a310f5...C8564e294
0.00002018 ETH
Transfer245860372026-03-04 18:58:233 hrs ago1772650703
0x42a310f5...C8564e294
0.002375 ETH
Transfer245860342026-03-04 18:57:473 hrs ago1772650667
0x42a310f5...C8564e294
0.002375 ETH
Transfer245855882026-03-04 17:28:114 hrs ago1772645291
0x42a310f5...C8564e294
0.0000684 ETH
Transfer245852682026-03-04 16:23:595 hrs ago1772641439
0x42a310f5...C8564e294
0.00000475 ETH
Transfer245852642026-03-04 16:23:115 hrs ago1772641391
0x42a310f5...C8564e294
0.00000475 ETH
Transfer245846482026-03-04 14:19:118 hrs ago1772633951
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245844672026-03-04 13:42:598 hrs ago1772631779
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245835282026-03-04 10:34:3511 hrs ago1772620475
0x42a310f5...C8564e294
0.00001039 ETH
Transfer245834332026-03-04 10:15:3512 hrs ago1772619335
0x42a310f5...C8564e294
0.00000475 ETH
Transfer245833102026-03-04 9:50:5912 hrs ago1772617859
0x42a310f5...C8564e294
0.00001757 ETH
Transfer245828562026-03-04 8:20:1114 hrs ago1772612411
0x42a310f5...C8564e294
0.00000749 ETH
Transfer245824492026-03-04 6:58:3515 hrs ago1772607515
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245824202026-03-04 6:52:3515 hrs ago1772607155
0x42a310f5...C8564e294
0.00003277 ETH
Transfer245798732026-03-03 22:19:4724 hrs ago1772576387
0x42a310f5...C8564e294
0.0000247 ETH
Transfer245798712026-03-03 22:19:2324 hrs ago1772576363
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245798392026-03-03 22:12:5924 hrs ago1772575979
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245796672026-03-03 21:38:2324 hrs ago1772573903
0x42a310f5...C8564e294
0.00000475 ETH
Transfer245795132026-03-03 21:07:3525 hrs ago1772572055
0x42a310f5...C8564e294
0.00208136 ETH
Transfer245792282026-03-03 20:10:3526 hrs ago1772568635
0x42a310f5...C8564e294
0.00024225 ETH
Transfer245792262026-03-03 20:10:1126 hrs ago1772568611
0x42a310f5...C8564e294
0.00024225 ETH
Transfer245792172026-03-03 20:08:2326 hrs ago1772568503
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245792162026-03-03 20:08:1126 hrs ago1772568491
0x42a310f5...C8564e294
0.00002375 ETH
Transfer245780082026-03-03 16:05:3530 hrs ago1772553935
0x42a310f5...C8564e294
0.00001757 ETH
View All Internal Transactions
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 - <stefan@gnosis.io>
 * @author Richard Meissner - <richard@gnosis.io>
 */
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"}]

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000041675c099f32341bf84bfc5382af534df5c7461a

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0x42a310f567810AFB220FeF21B373602C8564e294
Net Worth in USD
$24,631.48

Net Worth in ETH
11.421089

Token Allocations
ETH 69.12%
BNB 20.89%
BSC-USD 5.60%
Others 4.40%
Chain Token Portfolio % Price Amount Value
ETH
Ether (ETH)
59.67%$2,156.676.8151$14,697.83
BSC20.89%$660.727.7874$5,145.29
BSC5.60%$11,378.1812$1,378.18
BSC0.84%$0.999938207.6505$207.64
BSC0.77%$1.19159.9536$189.57
BSC0.24%$20.442.8882$59.03
BSC0.15%$0.7228652.4784$37.93
BSC0.09%$0.32497267.9918$22.1
BSC0.04%$1.128.0799$9.05
BSC0.01%$0.06877340.0926$2.76
BSC<0.01%$0.02789885.7647$2.39
BSC<0.01%$0.1858429.7412$1.81
BSC<0.01%$0.04035517.1589$0.6924
BSC<0.01%$0.453670.5302$0.2405
BSC<0.01%$248.480.00057835$0.1437
BSC<0.01%$0.00159989.5869$0.1432
BSC<0.01%$0.022655.3658$0.1215
BSC<0.01%$0.00015743.8234$0.1117
BASE9.45%$2,156.451.0792$2,327.24
BASE0.01%$0.019895160$3.18
MONAD2.18%$0.02301123,328.1428$536.81
MONAD0.04%$19.2232$9.22
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.