ETH Price: $2,065.90 (-0.88%)

Contract

0x4a183b7ED67B9E14b3f45Abfb2Cf44ed22c29E54
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
209484502025-03-25 0:04:1121 hrs ago1742861051
0x4a183b7E...d22c29E54
0.00000464 ETH
209142942025-03-23 17:06:042 days ago1742749564
0x4a183b7E...d22c29E54
0.0000372 ETH
208165842025-03-20 0:17:315 days ago1742429851
0x4a183b7E...d22c29E54
0.000076 ETH
207518452025-03-17 12:33:238 days ago1742214803
0x4a183b7E...d22c29E54
0.000112 ETH
206865382025-03-15 0:57:2110 days ago1742000241
0x4a183b7E...d22c29E54
0.00003 ETH
206454352025-03-13 11:06:3512 days ago1741863995
0x4a183b7E...d22c29E54
0.000068 ETH
206451262025-03-13 10:49:0712 days ago1741862947
0x4a183b7E...d22c29E54
0.0000608 ETH
206385412025-03-13 4:45:1912 days ago1741841119
0x4a183b7E...d22c29E54
0.000008 ETH
205930562025-03-11 10:27:3614 days ago1741688856
0x4a183b7E...d22c29E54
0.0000768 ETH
205676482025-03-10 10:35:2615 days ago1741602926
0x4a183b7E...d22c29E54
0.00000294 ETH
205414032025-03-09 10:17:4916 days ago1741515469
0x4a183b7E...d22c29E54
0.000052 ETH
205153992025-03-08 10:32:0617 days ago1741429926
0x4a183b7E...d22c29E54
0.000004 ETH
205117182025-03-08 7:10:1817 days ago1741417818
0x4a183b7E...d22c29E54
0.00006888 ETH
204948802025-03-07 15:32:1118 days ago1741361531
0x4a183b7E...d22c29E54
0.00000368 ETH
204911542025-03-07 12:01:2518 days ago1741348885
0x4a183b7E...d22c29E54
0.00008 ETH
204720912025-03-06 18:27:0419 days ago1741285624
0x4a183b7E...d22c29E54
0.0000792 ETH
204675692025-03-06 14:13:5919 days ago1741270439
0x4a183b7E...d22c29E54
0.0000696 ETH
203735912025-03-02 22:14:3722 days ago1740953677
0x4a183b7E...d22c29E54
0.000008 ETH
203387802025-03-01 13:57:3924 days ago1740837459
0x4a183b7E...d22c29E54
0.000008 ETH
202844032025-02-27 10:51:2926 days ago1740653489
0x4a183b7E...d22c29E54
0.0002 ETH
202840252025-02-27 10:29:2426 days ago1740652164
0x4a183b7E...d22c29E54
0.00001128 ETH
202713432025-02-26 22:35:3826 days ago1740609338
0x4a183b7E...d22c29E54
0.0000832 ETH
202706322025-02-26 21:54:2726 days ago1740606867
0x4a183b7E...d22c29E54
0.00000344 ETH
202557372025-02-26 7:46:0827 days ago1740555968
0x4a183b7E...d22c29E54
0.00000472 ETH
202497072025-02-26 2:10:4727 days ago1740535847
0x4a183b7E...d22c29E54
0.000032 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5273604B...6e3Dfe715
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
Loading...
Loading
Loading...
Loading
[ 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.