ETH Price: $2,151.93 (+0.91%)
Gas: 0.04 Gwei

Contract

0x42a310f567810AFB220FeF21B373602C8564e294
 

Overview

ETH Balance

6.920857864721087907 ETH

Eth Value

$14,893.18 (@ $2,151.93/ETH)

More Info

Private Name Tags

Multichain Info

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

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer247078662026-03-21 19:06:592 mins ago1774120019
0x42a310f5...C8564e294
0.00002375 ETH
Transfer247078472026-03-21 19:03:116 mins ago1774119791
0x42a310f5...C8564e294
0.00002375 ETH
Transfer247075222026-03-21 17:57:231 hr ago1774115843
0x42a310f5...C8564e294
0.00022325 ETH
Transfer247073812026-03-21 17:29:111 hr ago1774114151
0x42a310f5...C8564e294
0.0070775 ETH
Transfer247073722026-03-21 17:27:231 hr ago1774114043
0x42a310f5...C8564e294
0.0070775 ETH
Transfer247071872026-03-21 16:50:232 hrs ago1774111823
0x42a310f5...C8564e294
0.000475 ETH
Transfer247071572026-03-21 16:44:232 hrs ago1774111463
0x42a310f5...C8564e294
0.000475 ETH
Transfer247071292026-03-21 16:38:472 hrs ago1774111127
0x42a310f5...C8564e294
0.000475 ETH
Transfer247070482026-03-21 16:22:232 hrs ago1774110143
0x42a310f5...C8564e294
0.000475 ETH
Transfer247061052026-03-21 13:13:235 hrs ago1774098803
0x42a310f5...C8564e294
0.00002375 ETH
Transfer247060062026-03-21 12:53:356 hrs ago1774097615
0x42a310f5...C8564e294
0.00001662 ETH
Transfer247059402026-03-21 12:40:116 hrs ago1774096811
0x42a310f5...C8564e294
0.0000475 ETH
Transfer247058712026-03-21 12:26:116 hrs ago1774095971
0x42a310f5...C8564e294
0.0007125 ETH
Transfer247058392026-03-21 12:19:476 hrs ago1774095587
0x42a310f5...C8564e294
0.00241744 ETH
Transfer247057172026-03-21 11:55:117 hrs ago1774094111
0x42a310f5...C8564e294
0.0000475 ETH
Transfer247054392026-03-21 10:59:238 hrs ago1774090763
0x42a310f5...C8564e294
0.0000475 ETH
Transfer247054372026-03-21 10:58:598 hrs ago1774090739
0x42a310f5...C8564e294
0.0000475 ETH
Transfer247035342026-03-21 4:37:1114 hrs ago1774067831
0x42a310f5...C8564e294
0.00095 ETH
Transfer247030112026-03-21 2:52:2316 hrs ago1774061543
0x42a310f5...C8564e294
0.0000475 ETH
Transfer247029082026-03-21 2:31:2316 hrs ago1774060283
0x42a310f5...C8564e294
0.00000617 ETH
Transfer247028992026-03-21 2:29:3516 hrs ago1774060175
0x42a310f5...C8564e294
0.0007125 ETH
Transfer247025712026-03-21 1:23:1117 hrs ago1774056191
0x42a310f5...C8564e294
0.00012825 ETH
Transfer247025602026-03-21 1:20:5917 hrs ago1774056059
0x42a310f5...C8564e294
0.0034675 ETH
Transfer247025552026-03-21 1:19:5917 hrs ago1774055999
0x42a310f5...C8564e294
0.00475 ETH
Transfer247025412026-03-21 1:17:1117 hrs ago1774055831
0x42a310f5...C8564e294
0.003325 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
$25,045.92

Net Worth in ETH
11.638835

Token Allocations
ETH 68.82%
BNB 20.47%
BSC-USD 6.43%
Others 4.28%
Chain Token Portfolio % Price Amount Value
ETH
Ether (ETH)
59.46%$2,151.936.9209$14,893.18
BSC20.47%$641.497.9926$5,127.15
BSC6.43%$0.9998341,610.3644$1,610.1
BSC0.85%$0.999988211.9937$211.99
BSC0.76%$1.19159.9536$189.57
BSC0.29%$25.572.8882$73.85
BSC0.14%$0.68436952.4784$35.91
BSC0.08%$0.30462167.9918$20.71
BSC0.04%$1.098.0799$8.77
BSC0.01%$0.03311185.7647$2.84
BSC0.01%$0.06591440.0926$2.64
BSC<0.01%$0.2109019.7412$2.05
BSC<0.01%$0.04022217.1589$0.6901
BSC<0.01%$0.4783450.5302$0.2536
BSC<0.01%$0.00226289.5869$0.2026
BSC<0.01%$232.430.00057835$0.1344
BSC<0.01%$0.0215045.3658$0.1153
BSC<0.01%$0.000149743.8234$0.1104
BASE9.35%$2,151.931.0886$2,342.68
BASE0.01%$0.019895160$3.18
MONAD2.04%$0.02182823,389.9099$510.56
MONAD0.04%$0.9999039.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.