ETH Price: $2,724.10 (+1.01%)

Contract

0xFe11E75A51CAC91516468cCb6bda3582F5F68Cfd

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction193545572025-01-22 10:08:3927 days ago1737540519IN
Aura: Protocol Multi-sig
0 ETH0.000013540.122
Exec Transaction157098672024-09-04 13:26:59167 days ago1725456419IN
Aura: Protocol Multi-sig
0 ETH0.000014680.0457
Exec Transaction151116652024-08-14 16:23:17188 days ago1723652597IN
Aura: Protocol Multi-sig
0 ETH0.000007280.0815
Exec Transaction141723462024-07-12 20:32:20221 days ago1720816340IN
Aura: Protocol Multi-sig
0 ETH0.000009420.06
Exec Transaction132999512024-06-12 8:03:45252 days ago1718179425IN
Aura: Protocol Multi-sig
0 ETH0.001952420.158
Exec Transaction122750662024-05-07 12:55:21287 days ago1715086521IN
Aura: Protocol Multi-sig
0 ETH0.001418920.227
Exec Transaction120766042024-04-30 16:05:07294 days ago1714493107IN
Aura: Protocol Multi-sig
0 ETH0.000076480.599
Exec Transaction112895342024-04-03 7:31:04322 days ago1712129464IN
Aura: Protocol Multi-sig
0 ETH0.022503373.6
Exec Transaction111269422024-03-28 16:18:16327 days ago1711642696IN
Aura: Protocol Multi-sig
0 ETH0.002047318.65
Exec Transaction100870872024-02-20 16:39:55364 days ago1708447195IN
Aura: Protocol Multi-sig
0 ETH0.008325116.01
Exec Transaction100632942024-02-19 20:52:39365 days ago1708375959IN
Aura: Protocol Multi-sig
0 ETH0.000762158.09
Exec Transaction97656862024-02-07 14:04:52377 days ago1707314692IN
Aura: Protocol Multi-sig
0 ETH0.026217755.29
Exec Transaction95690792024-01-30 16:12:03385 days ago1706631123IN
Aura: Protocol Multi-sig
0 ETH0.0012221912.2
Exec Transaction93829392024-01-22 4:58:06394 days ago1705899486IN
Aura: Protocol Multi-sig
0 ETH0.0006311.39
Exec Transaction85706022023-12-13 21:45:07433 days ago1702503907IN
Aura: Protocol Multi-sig
0 ETH0.009639963.6
Exec Transaction83469652023-11-30 14:56:32446 days ago1701356192IN
Aura: Protocol Multi-sig
0 ETH0.030575723.13
Exec Transaction83469422023-11-30 14:54:05446 days ago1701356045IN
Aura: Protocol Multi-sig
0 ETH0.048617473.33
Exec Transaction83468022023-11-30 14:40:04446 days ago1701355204IN
Aura: Protocol Multi-sig
0 ETH0.067789437.88

Latest 1 internal transaction

Parent Transaction Hash Block From To
76220182023-11-16 10:01:27460 days ago1700128887  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.