Sepolia Testnet

Contract

0x8B2ddbA7b77c5b2305ADfbD99d2947f81f008B63
Source Code Source Code

Overview

ETH Balance

10 ETH

More Info

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Amount
Exec Transaction95588932025-11-04 12:54:0099 days ago1762260840IN
0x8B2ddbA7...81f008B63
0 ETH0.000000080.00100001
Exec Transaction95453832025-11-02 15:45:48101 days ago1762098348IN
0x8B2ddbA7...81f008B63
0 ETH0.000000130.001
Exec Transaction95452612025-11-02 15:21:24101 days ago1762096884IN
0x8B2ddbA7...81f008B63
0 ETH0.000000120.001
Exec Transaction95163962025-10-29 14:56:36105 days ago1761749796IN
0x8B2ddbA7...81f008B63
0 ETH0.000000130.001
Exec Transaction95161212025-10-29 14:00:12105 days ago1761746412IN
0x8B2ddbA7...81f008B63
0 ETH0.000000130.00099999
Exec Transaction95156832025-10-29 12:32:12105 days ago1761741132IN
0x8B2ddbA7...81f008B63
0 ETH0.000000260.001
Exec Transaction95153902025-10-29 11:33:36105 days ago1761737616IN
0x8B2ddbA7...81f008B63
0 ETH0.000000080.00100001
Exec Transaction94522002025-10-20 12:26:24114 days ago1760963184IN
0x8B2ddbA7...81f008B63
0 ETH0.000000120.00100001
Exec Transaction94504402025-10-20 6:18:36114 days ago1760941116IN
0x8B2ddbA7...81f008B63
0 ETH0.000000080.00100001
Exec Transaction88666092025-07-29 7:36:36197 days ago1753774596IN
0x8B2ddbA7...81f008B63
0 ETH0.000000490.00393289
Exec Transaction88665952025-07-29 7:33:48197 days ago1753774428IN
0x8B2ddbA7...81f008B63
0 ETH0.000000160.00282852
Exec Transaction88665862025-07-29 7:32:00197 days ago1753774320IN
0x8B2ddbA7...81f008B63
0 ETH0.000000140.00245051
Exec Transaction88665742025-07-29 7:29:36197 days ago1753774176IN
0x8B2ddbA7...81f008B63
0 ETH0.000000110.00195807
Exec Transaction88665622025-07-29 7:27:12197 days ago1753774032IN
0x8B2ddbA7...81f008B63
0 ETH0.000000220.00178723
Exec Transaction88665592025-07-29 7:26:36197 days ago1753773996IN
0x8B2ddbA7...81f008B63
0 ETH0.000000090.00169576
Exec Transaction88664722025-07-29 7:09:12197 days ago1753772952IN
0x8B2ddbA7...81f008B63
0 ETH0.000000070.0012108
Exec Transaction88664692025-07-29 7:08:36197 days ago1753772916IN
0x8B2ddbA7...81f008B63
0 ETH0.000000070.00124214
Exec Transaction88616642025-07-28 15:06:24198 days ago1753715184IN
0x8B2ddbA7...81f008B63
0 ETH0.00001840.31319436
Exec Transaction88611432025-07-28 13:22:00198 days ago1753708920IN
0x8B2ddbA7...81f008B63
0 ETH0.000009290.15813382
Transfer88610502025-07-28 13:03:24198 days ago1753707804IN
0x8B2ddbA7...81f008B63
10 ETH0.000044181.61690286
Exec Transaction88608212025-07-28 12:17:36198 days ago1753705056IN
0x8B2ddbA7...81f008B63
0 ETH0.000027260.26664597
Exec Transaction88608142025-07-28 12:16:12198 days ago1753704972IN
0x8B2ddbA7...81f008B63
0 ETH0.000036390.2599814
Exec Transaction88607032025-07-28 11:53:48198 days ago1753703628IN
0x8B2ddbA7...81f008B63
0 ETH0.000127681.52650293
Exec Transaction88606012025-07-28 11:33:24198 days ago1753702404IN
0x8B2ddbA7...81f008B63
0 ETH0.000000410.00330892
Exec Transaction88558222025-07-27 19:36:36199 days ago1753644996IN
0x8B2ddbA7...81f008B63
0 ETH0.000000230.00100002
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Amount
0x6080604081780652025-04-23 8:32:48294 days ago1745397168  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading

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 0x34A50a7A...AF18B1eB5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GnosisSafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-22
*/

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title GnosisSafeProxy - 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 GnosisSafeProxy {
    // 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;

    /// @dev 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())
        }
    }
}

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f7669646564000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
0x8B2ddbA7b77c5b2305ADfbD99d2947f81f008B63
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.