ETH Price: $3,902.87 (+1.12%)

Contract

0x81168DE68dA1Bc104dEF40B28f176573c229F80a

Overview

ETH Balance

0.091586766662742041 ETH

ETH Value

$357.45 (@ $3,902.87/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction1194026202024-04-29 15:20:17220 days ago1714404017IN
0x81168DE6...3c229F80a
0 ETH0.0000049638360.06306581
Exec Transaction1191913312024-04-24 17:57:19225 days ago1713981439IN
0x81168DE6...3c229F80a
0 ETH0.0000043750190.06098571
Exec Transaction1173704402024-03-13 14:20:57267 days ago1710339657IN
0x81168DE6...3c229F80a
0 ETH0.0002815948960.00010306

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
1191913312024-04-24 17:57:19225 days ago1713981439
0x81168DE6...3c229F80a
0.045 ETH
1088629282023-08-29 15:57:13464 days ago1693324633
0x81168DE6...3c229F80a
0.001 ETH
1088555302023-08-29 11:50:37464 days ago1693309837
0x81168DE6...3c229F80a
0.001 ETH
1088545862023-08-29 11:19:09464 days ago1693307949
0x81168DE6...3c229F80a
0.0006355 ETH
1088539032023-08-29 10:56:23464 days ago1693306583
0x81168DE6...3c229F80a
0.00023 ETH
1088538252023-08-29 10:53:47464 days ago1693306427
0x81168DE6...3c229F80a
0.0006219 ETH
1088533902023-08-29 10:39:17464 days ago1693305557
0x81168DE6...3c229F80a
0.00062 ETH
1088504142023-08-29 9:00:05464 days ago1693299605
0x81168DE6...3c229F80a
0.000622365 ETH
1088482952023-08-29 7:49:27464 days ago1693295367
0x81168DE6...3c229F80a
0.001 ETH
1088472042023-08-29 7:13:05464 days ago1693293185
0x81168DE6...3c229F80a
0.001 ETH
1088467132023-08-29 6:56:43464 days ago1693292203
0x81168DE6...3c229F80a
0.000666 ETH
1088459592023-08-29 6:31:35464 days ago1693290695
0x81168DE6...3c229F80a
0.00062 ETH
1088456472023-08-29 6:21:11464 days ago1693290071
0x81168DE6...3c229F80a
0.0000015 ETH
1088450052023-08-29 5:59:47464 days ago1693288787
0x81168DE6...3c229F80a
0.0015 ETH
1088450052023-08-29 5:59:47464 days ago1693288787
0x81168DE6...3c229F80a
0.0015 ETH
1088447042023-08-29 5:49:45464 days ago1693288185
0x81168DE6...3c229F80a
0.00000212 ETH
1088445432023-08-29 5:44:23464 days ago1693287863
0x81168DE6...3c229F80a
0.0000006 ETH
1088377412023-08-29 1:57:39465 days ago1693274259
0x81168DE6...3c229F80a
0.00061 ETH
1088367252023-08-29 1:23:47465 days ago1693272227
0x81168DE6...3c229F80a
0.00065 ETH
1088366552023-08-29 1:21:27465 days ago1693272087
0x81168DE6...3c229F80a
0.00062888 ETH
1088356912023-08-29 0:49:19465 days ago1693270159
0x81168DE6...3c229F80a
0.00066 ETH
1088355922023-08-29 0:46:01465 days ago1693269961
0x81168DE6...3c229F80a
0.00064 ETH
1088355512023-08-29 0:44:39465 days ago1693269879
0x81168DE6...3c229F80a
0.00061839 ETH
1088353062023-08-29 0:36:29465 days ago1693269389
0x81168DE6...3c229F80a
0.00064 ETH
1088333002023-08-28 23:29:37465 days ago1693265377
0x81168DE6...3c229F80a
0.00065 ETH
View All Internal Transactions

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.