Base Sepolia Testnet

Contract

0xd08982c910F3846415bcDB53c1D6507bf1A8b672

Overview

ETH Balance

0.05 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Exec Transaction148906902024-09-05 15:21:08229 days ago1725549668IN
0xd08982c9...bf1A8b672
0 ETH0.000000180.00110066
Exec Transaction148900962024-09-05 15:01:20229 days ago1725548480IN
0xd08982c9...bf1A8b672
0 ETH0.000219551.0000006
Exec Transaction148837842024-09-05 11:30:56230 days ago1725535856IN
0xd08982c9...bf1A8b672
0 ETH0.000000010.00010055
Exec Transaction148828762024-09-05 11:00:40230 days ago1725534040IN
0xd08982c9...bf1A8b672
0 ETH0.000167611.00000054
Exec Transaction148826672024-09-05 10:53:42230 days ago1725533622IN
0xd08982c9...bf1A8b672
0 ETH0.00000020.00110059
Exec Transaction148826322024-09-05 10:52:32230 days ago1725533552IN
0xd08982c9...bf1A8b672
0 ETH0.000184711.00000056
Exec Transaction148798922024-09-05 9:21:12230 days ago1725528072IN
0xd08982c9...bf1A8b672
0 ETH0.00000020.00120064
Exec Transaction147649472024-09-02 17:29:42232 days ago1725298182IN
0xd08982c9...bf1A8b672
0 ETH0.00000020.00120064
Exec Transaction145419762024-08-28 13:37:20237 days ago1724852240IN
0xd08982c9...bf1A8b672
0 ETH0.000003910.02117113
Exec Transaction144910062024-08-27 9:18:20239 days ago1724750300IN
0xd08982c9...bf1A8b672
0 ETH0.000005350.02897897
Transfer144894692024-08-27 8:27:06239 days ago1724747226IN
0xd08982c9...bf1A8b672
0.05 ETH0.000000260.00959672
Exec Transaction144618062024-08-26 17:05:00239 days ago1724691900IN
0xd08982c9...bf1A8b672
0 ETH0.000002920.02059691
Exec Transaction144603182024-08-26 16:15:24239 days ago1724688924IN
0xd08982c9...bf1A8b672
0 ETH0.000004120.02902968

Latest 1 internal transaction

Parent Transaction Hash Block From To
144483232024-08-26 9:35:34240 days ago1724664934  Contract Creation0 ETH

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x82Bcc9C5...d3a641Fa0
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

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : GnosisSafeProxy.sol
// 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())
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

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
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.