Contract 0x08b4404aa18b752e7f0762a1b4aa29e716caeba9

Txn Hash Method
Block
From
To
Value [Txn Fee]
0x69cd11a9cf91b99b25ce8e830d009f08ecacaf9a4638cdcfba5283674138da23Exec Transaction281490482023-05-27 4:15:3513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00139686666
0x5ff8d20df38451051e9898d49b756583b7f9e775a8633ee67cba83b55d9e8f9dExec Transaction281490362023-05-27 4:14:3513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00038985408
0xc5d0eed396842114b5ba13d8db0d076a23fa04abfecfa3a77203a421b050e648Exec Transaction281489912023-05-27 4:10:3513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00032248433
0x9e2519ac80185eb811e9b510231100ebf9c175ffc7594f84b13348d6eb96925aExec Transaction281489832023-05-27 4:09:5513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00024211831
0xab44db17cc5f31b0bf67533bcaa9e126b95fb4b7d9c65b9865da258a6bd2ed85Exec Transaction281489792023-05-27 4:09:3513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00031594731
0x7b2300d4533a522ee9857a2d2ea0ee92ef82c9ba12c9e8f0973cb9d4ed1ae706Exec Transaction281489742023-05-27 4:09:0513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00027226577
0x8187722d5aba2c9476712988ae2f6f7f87b0801307fa1183f276f1dec4b74d4eExec Transaction281489722023-05-27 4:08:5513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00033584033
0x49ec3fe94e260bc0c4d3ba663960fa7eba19dda1f39c821554be1ccdeb3a8beeExec Transaction281489532023-05-27 4:07:1513 days 11 hrs ago0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 IN 0x08b4404aa18b752e7f0762a1b4aa29e716caeba90 xDAI0.00038382547
[ Download CSV Export 
Latest 4 internal transactions
Parent Txn Hash Block From To Value
0x7b2300d4533a522ee9857a2d2ea0ee92ef82c9ba12c9e8f0973cb9d4ed1ae706281489742023-05-27 4:09:0513 days 11 hrs ago 0x08b4404aa18b752e7f0762a1b4aa29e716caeba9Gnosis: WXDAI Token5 xDAI
0x8187722d5aba2c9476712988ae2f6f7f87b0801307fa1183f276f1dec4b74d4e281489722023-05-27 4:08:5513 days 11 hrs ago 0x08b4404aa18b752e7f0762a1b4aa29e716caeba9Gnosis: WXDAI Token5 xDAI
0x8317154a3afa0e3109dfff7a6eb6c883386507e164729a8a11cd741f95623134281216572023-05-25 12:35:5515 days 2 hrs ago 0xa6b71e26c5e0845f74c812102ca7114b6a896ab2  Contract Creation0 xDAI
0x767ab03408f7f87d50000af7ea9428fa00ea9790700c41c100d5c456b046bc11281216532023-05-25 12:35:3015 days 2 hrs ago 0xdd1305150d27aecc60c066630105db419977e3670x08b4404aa18b752e7f0762a1b4aa29e716caeba910.034520593289574687 xDAI
[ Download CSV Export 
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xb4c575308221caa398e0dd2cdeb6b2f10d7b000a

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 gnosisscan.io on 2022-12-17
*/

// 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 ABI

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

608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f76696465640000000000000000000000003e5c63644e683549055b9be8653de26e0b4cd36e

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 Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.