ETH Price: $1,796.12 (+10.12%)
 

Overview

ETH Balance

Scroll LogoScroll LogoScroll Logo0.135736322552737008 ETH

ETH Value

$243.80 (@ $1,796.12/ETH)

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction147565862025-04-15 14:36:057 days ago1744727765IN
0x0259Bd00...8709D5361
0 ETH0.000032510.0473823
Exec Transaction118566232024-12-12 16:56:10131 days ago1734022570IN
0x0259Bd00...8709D5361
0 ETH0.000025920.08308599

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
149357392025-04-23 11:49:057 mins ago1745408945
0x0259Bd00...8709D5361
0.00013876 ETH
149357012025-04-23 11:44:3011 mins ago1745408670
0x0259Bd00...8709D5361
0.00013842 ETH
149355652025-04-23 11:28:0328 mins ago1745407683
0x0259Bd00...8709D5361
0.00013837 ETH
149355122025-04-23 11:21:3034 mins ago1745407290
0x0259Bd00...8709D5361
0.00013856 ETH
149353992025-04-23 11:07:5148 mins ago1745406471
0x0259Bd00...8709D5361
0.00013873 ETH
149352952025-04-23 10:55:091 hr ago1745405709
0x0259Bd00...8709D5361
0.0001391 ETH
149351872025-04-23 10:42:061 hr ago1745404926
0x0259Bd00...8709D5361
0.0001392 ETH
149351382025-04-23 10:36:111 hr ago1745404571
0x0259Bd00...8709D5361
0.00013922 ETH
149349032025-04-23 10:07:481 hr ago1745402868
0x0259Bd00...8709D5361
0.00013981 ETH
149349002025-04-23 10:07:261 hr ago1745402846
0x0259Bd00...8709D5361
0.00013991 ETH
149348592025-04-23 10:02:291 hr ago1745402549
0x0259Bd00...8709D5361
0.00013978 ETH
149347432025-04-23 9:48:292 hrs ago1745401709
0x0259Bd00...8709D5361
0.00013935 ETH
149345872025-04-23 9:29:402 hrs ago1745400580
0x0259Bd00...8709D5361
0.00013923 ETH
149335422025-04-23 8:06:213 hrs ago1745395581
0x0259Bd00...8709D5361
0.0001397 ETH
149325352025-04-23 7:13:214 hrs ago1745392401
0x0259Bd00...8709D5361
0.00014002 ETH
149323262025-04-23 7:02:504 hrs ago1745391770
0x0259Bd00...8709D5361
0.00013961 ETH
149321112025-04-23 6:51:535 hrs ago1745391113
0x0259Bd00...8709D5361
0.0001393 ETH
149318512025-04-23 6:37:495 hrs ago1745390269
0x0259Bd00...8709D5361
0.00013892 ETH
149316572025-04-23 6:26:535 hrs ago1745389613
0x0259Bd00...8709D5361
0.00013921 ETH
149314312025-04-23 6:14:295 hrs ago1745388869
0x0259Bd00...8709D5361
0.00013918 ETH
149311192025-04-23 5:57:235 hrs ago1745387843
0x0259Bd00...8709D5361
0.00013882 ETH
149309912025-04-23 5:49:556 hrs ago1745387395
0x0259Bd00...8709D5361
0.00013852 ETH
149304002025-04-23 5:17:586 hrs ago1745385478
0x0259Bd00...8709D5361
0.00013804 ETH
149302502025-04-23 5:09:236 hrs ago1745384963
0x0259Bd00...8709D5361
0.00013859 ETH
149281172025-04-23 3:00:298 hrs ago1745377229
0x0259Bd00...8709D5361
0.00013919 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xEfc9D109...102244dbe
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
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"
      ]
    }
  },
  "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"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Block Transaction Gas Used Reward
view all blocks sequenced

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