ETH Price: $1,584.74 (-1.27%)

Contract

0x2501c477D0A35545a387Aa4A3EEe4292A9a8B3F0
Transaction Hash
Method
Block
From
To
Exec Transaction1343961472025-04-11 17:04:316 days ago1744391071IN
Optimism: Foundation
0 ETH0.0000004457880.00208472
Exec Transaction1340954122025-04-04 18:00:0113 days ago1743789601IN
Optimism: Foundation
0 ETH0.0000010834950.01136173
Exec Transaction1340953982025-04-04 17:59:3313 days ago1743789573IN
Optimism: Foundation
0 ETH0.0000010935880.01145035
Exec Transaction1331756262025-03-14 11:00:2935 days ago1741950029IN
Optimism: Foundation
0 ETH0.0000002380220.0013079
Exec Transaction1331755982025-03-14 10:59:3335 days ago1741949973IN
Optimism: Foundation
0 ETH0.0000004537930.00130619
Exec Transaction1319783832025-02-14 17:52:2362 days ago1739555543IN
Optimism: Foundation
0 ETH0.0000005112860.0010017
Exec Transaction1319346522025-02-13 17:34:4163 days ago1739468081IN
Optimism: Foundation
0 ETH0.0000022235520.00100044
Exec Transaction1313262732025-01-30 15:35:2378 days ago1738251323IN
Optimism: Foundation
0 ETH0.000000315990.00100053
Exec Transaction1313262572025-01-30 15:34:5178 days ago1738251291IN
Optimism: Foundation
0 ETH0.0000003221170.00100052
Exec Transaction1309572332025-01-22 2:34:0386 days ago1737513243IN
Optimism: Foundation
0 ETH0.0000149975610.00100025
Exec Transaction1307757982025-01-17 21:46:1390 days ago1737150373IN
Optimism: Foundation
0 ETH0.0000034134560.0010004
Exec Transaction1295101992024-12-19 14:39:35120 days ago1734619175IN
Optimism: Foundation
0 ETH0.0000014375350.00300227
Exec Transaction1285896992024-11-28 7:16:15141 days ago1732778175IN
Optimism: Foundation
0 ETH0.0000010604810.00100172
Exec Transaction1285832392024-11-28 3:40:55141 days ago1732765255IN
Optimism: Foundation
0 ETH0.0000002836910.00100413
Exec Transaction1283119322024-11-21 20:57:21147 days ago1732222641IN
Optimism: Foundation
0 ETH0.000000498610.00100212
Exec Transaction1283119112024-11-21 20:56:39147 days ago1732222599IN
Optimism: Foundation
0 ETH0.0000004859860.00100214
Exec Transaction1283118012024-11-21 20:52:59147 days ago1732222379IN
Optimism: Foundation
0 ETH0.0000004601640.00100204
Exec Transaction1283077902024-11-21 18:39:17147 days ago1732214357IN
Optimism: Foundation
0 ETH0.0000009142630.00100286
Exec Transaction1282706202024-11-20 22:00:17148 days ago1732140017IN
Optimism: Foundation
0 ETH0.0000004141210.00100212
Transfer1280404832024-11-15 14:09:03154 days ago1731679743IN
Optimism: Foundation
0.00033923 ETH0.0000011495980.0010005
Exec Transaction1267971982024-10-17 19:26:13182 days ago1729193173IN
Optimism: Foundation
0 ETH0.000002602550.02379686
Exec Transaction1265361972024-10-11 18:26:11188 days ago1728671171IN
Optimism: Foundation
0 ETH0.0000020016610.00986157
Exec Transaction1264435052024-10-09 14:56:27191 days ago1728485787IN
Optimism: Foundation
0 ETH0.0000009344290.00394705
Exec Transaction1264383902024-10-09 12:05:57191 days ago1728475557IN
Optimism: Foundation
0 ETH0.0000004636490.00150691
Exec Transaction1255553972024-09-19 1:32:51211 days ago1726709571IN
Optimism: Foundation
0 ETH0.0000009725730.0058917
View all transactions

Latest 7 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
1053206132023-06-08 16:00:03680 days ago1686240003
Optimism: Foundation
0 ETH
1053206132023-06-08 16:00:03680 days ago1686240003
Optimism: Foundation
0 ETH
1053206132023-06-08 16:00:03680 days ago1686240003
Optimism: Foundation
0 ETH
1053206132023-06-08 16:00:03680 days ago1686240003
Optimism: Foundation
0 ETH
1053206132023-06-08 16:00:03680 days ago1686240003
Optimism: Foundation
0 ETH
111643052022-06-10 15:15:261043 days ago1654874126
Optimism: Foundation
0.012045 ETH
62969572022-04-23 11:04:371091 days ago1650711877  Contract Creation0 ETH

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xf9D445a4...A3dae7f8D
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, GNU LGPLv3 license
/**
 *Submitted for verification at optimistic.etherscan.io on 2021-12-21
*/

// 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())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

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