ETH Price: $2,646.03 (+0.55%)

Contract

0xc48aD04a391a0cfA538422360fAb8534b49d6878
Transaction Hash
Method
Block
From
To
Exec Transaction164582032024-09-30 16:58:15131 days ago1727715495IN
0xc48aD04a...4b49d6878
0 ETH0.000060810.32
Exec Transaction164029342024-09-28 18:37:17133 days ago1727548637IN
0xc48aD04a...4b49d6878
0 ETH0.000045430.11
Exec Transaction163597282024-09-27 6:21:10134 days ago1727418070IN
0xc48aD04a...4b49d6878
0 ETH0.000134990.22
Exec Transaction163314692024-09-26 6:36:49135 days ago1727332609IN
0xc48aD04a...4b49d6878
0 ETH0.000108550.26
Exec Transaction163135702024-09-25 15:35:14136 days ago1727278514IN
0xc48aD04a...4b49d6878
0 ETH0.000217880.61
Exec Transaction163117632024-09-25 14:04:20136 days ago1727273060IN
0xc48aD04a...4b49d6878
0 ETH0.000052830.52
Exec Transaction163117402024-09-25 14:03:12136 days ago1727272992IN
0xc48aD04a...4b49d6878
0 ETH0.000036450.49
Exec Transaction124546962024-05-13 18:56:36271 days ago1715626596IN
0xc48aD04a...4b49d6878
0 ETH0.000021280.2
Exec Transaction121064082024-05-01 16:44:22283 days ago1714581862IN
0xc48aD04a...4b49d6878
0 ETH0.000044790.362
Exec Transaction118747832024-04-23 16:58:07291 days ago1713891487IN
0xc48aD04a...4b49d6878
0 ETH0.000185471.18
Exec Transaction118747612024-04-23 16:57:01291 days ago1713891421IN
0xc48aD04a...4b49d6878
0 ETH0.00010251.09
Exec Transaction108622372024-03-18 16:21:14327 days ago1710778874IN
0xc48aD04a...4b49d6878
0 ETH0.001026237.65
Exec Transaction108563202024-03-18 11:25:53327 days ago1710761153IN
0xc48aD04a...4b49d6878
0 ETH0.0009878713.1
Exec Transaction102080762024-02-24 21:18:09350 days ago1708809489IN
0xc48aD04a...4b49d6878
0 ETH0.000446884.38
Exec Transaction101165352024-02-21 17:11:51353 days ago1708535511IN
0xc48aD04a...4b49d6878
0 ETH0.000948348.3
Exec Transaction92701312024-01-16 15:47:39389 days ago1705420059IN
0xc48aD04a...4b49d6878
0 ETH0.000661065.81
Exec Transaction92287402024-01-14 2:41:01391 days ago1705200061IN
0xc48aD04a...4b49d6878
0 ETH0.000432252.28
Exec Transaction92287342024-01-14 2:40:31391 days ago1705200031IN
0xc48aD04a...4b49d6878
0 ETH0.000211352.25
Exec Transaction92046342024-01-12 23:18:05393 days ago1705101485IN
0xc48aD04a...4b49d6878
0 ETH0.000444293.89
Exec Transaction92046262024-01-12 23:17:24393 days ago1705101444IN
0xc48aD04a...4b49d6878
0 ETH0.000424313.89
Exec Transaction92044072024-01-12 22:52:26393 days ago1705099946IN
0xc48aD04a...4b49d6878
0 ETH0.006008474.89
Exec Transaction91241442024-01-10 1:39:09396 days ago1704850749IN
0xc48aD04a...4b49d6878
0 ETH0.001190312.66
Exec Transaction89893912024-01-03 15:05:05402 days ago1704294305IN
0xc48aD04a...4b49d6878
0 ETH0.000812485.41
Exec Transaction88014092023-12-26 23:07:07410 days ago1703632027IN
0xc48aD04a...4b49d6878
0 ETH0.000165662.21
Exec Transaction87261872023-12-24 0:11:00413 days ago1703376660IN
0xc48aD04a...4b49d6878
0 ETH0.000152942.04

Latest 1 internal transaction

Parent Transaction Hash Block From To
33853922023-07-30 1:48:45560 days ago1690681725  Contract Creation0 ETH
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

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