ETH Price: $3,326.20 (+3.61%)

Contract

0x3EEe61B92C36e97Be6319BF9096A1ac3c04a1466

Overview

ETH Balance

0.001 ETH

ETH Value

$3.33 (@ $3,326.20/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction1245509812024-08-26 19:32:19141 days ago1724700739IN
0x3EEe61B9...3c04a1466
0 ETH0.0000009510050.00391264
Exec Transaction1243236122024-08-21 13:13:21147 days ago1724246001IN
0x3EEe61B9...3c04a1466
0 ETH0.0000007149170.00140799
Exec Transaction1216067762024-06-19 15:52:09210 days ago1718812329IN
0x3EEe61B9...3c04a1466
0 ETH0.0000148808110.0610255
Exec Transaction1207018642024-05-29 17:08:25231 days ago1717002505IN
0x3EEe61B9...3c04a1466
0 ETH0.0000039821830.01483754
Exec Transaction1207018062024-05-29 17:06:29231 days ago1717002389IN
0x3EEe61B9...3c04a1466
0 ETH0.0000035936780.01320798
Exec Transaction1206780702024-05-29 3:55:17231 days ago1716954917IN
0x3EEe61B9...3c04a1466
0 ETH0.0000146809230.0612155
Exec Transaction1206752052024-05-29 2:19:47231 days ago1716949187IN
0x3EEe61B9...3c04a1466
0 ETH0.0000087177540.06108154
Exec Transaction1199235072024-05-11 16:43:11249 days ago1715445791IN
0x3EEe61B9...3c04a1466
0 ETH0.0000128868730.0617059
Exec Transaction1186792312024-04-12 21:27:19277 days ago1712957239IN
0x3EEe61B9...3c04a1466
0 ETH0.0000023840950.02057969
Exec Transaction1186790002024-04-12 21:19:37277 days ago1712956777IN
0x3EEe61B9...3c04a1466
0 ETH0.0003777245351.5268445
Exec Transaction1186789372024-04-12 21:17:31277 days ago1712956651IN
0x3EEe61B9...3c04a1466
0 ETH0.0000046952370.02700727
Transfer1186677682024-04-12 15:05:13278 days ago1712934313IN
0x3EEe61B9...3c04a1466
0.001 ETH0.0000017713070.0614548
Exec Transaction1185428262024-04-09 17:40:29281 days ago1712684429IN
0x3EEe61B9...3c04a1466
0 ETH0.0000039568660.0614461
Exec Transaction1185427522024-04-09 17:38:01281 days ago1712684281IN
0x3EEe61B9...3c04a1466
0 ETH0.0000403878880.0619029
Exec Transaction1161642182024-02-14 16:13:33336 days ago1707927213IN
0x3EEe61B9...3c04a1466
0 ETH0.000197405460.103
Exec Transaction1152577132024-01-24 16:36:43357 days ago1706114203IN
0x3EEe61B9...3c04a1466
0 ETH0.0000751644060.0048035
Exec Transaction1152574532024-01-24 16:28:03357 days ago1706113683IN
0x3EEe61B9...3c04a1466
0 ETH0.0000750574130.0050411

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
1144371102024-01-05 16:43:17376 days ago1704472997  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

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