Contract 0xd15c36215970106cfc43a8b0ea02200a1244fde8

Contract Overview

Balance:
8.921418016529888866 xDAI

xDAI Value:
$8.92 (@ $1.00/xDAI)
Txn Hash Method
Block
From
To
Value [Txn Fee]
0x36fa97c9a468cdf3259c882d98c11cb7a284d9d0cf6f413ea853513ab559f253Exec Transaction258627622023-01-08 14:47:4082 days 22 hrs ago0x811c2b495389c291a0012fe2b9f4d9b465d57e4d IN  0xd15c36215970106cfc43a8b0ea02200a1244fde80 xDAI0.0001155375
0x9725cc578f18f8f8f32ba1618eae882762b9b8605c1675d6afdb72399a7ca97aTransfer258627392023-01-08 14:45:4582 days 22 hrs ago0x811c2b495389c291a0012fe2b9f4d9b465d57e4d IN  0xd15c36215970106cfc43a8b0ea02200a1244fde81 xDAI0.0000409935
[ Download CSV Export 
Latest 2 internal transactions
Parent Txn Hash Block From To Value
0x36fa97c9a468cdf3259c882d98c11cb7a284d9d0cf6f413ea853513ab559f253258627622023-01-08 14:47:4082 days 22 hrs ago 0xd15c36215970106cfc43a8b0ea02200a1244fde80x811c2b495389c291a0012fe2b9f4d9b465d57e4d0.1 xDAI
0x2dfc6327887141d0420706fda0b45f9da7f8d15688b1b5ae7ca6c1883f80b8cb258627282023-01-08 14:44:4582 days 22 hrs ago 0xa6b71e26c5e0845f74c812102ca7114b6a896ab2  Contract Creation0 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

 Latest 25 blocks (From a total of 1,659 blocks with 8.02 xDAI in fees)

Block Transaction Gas Used Reward
272286342023-04-01 10:28:502 hrs 56 mins ago3568,463 (1.89%)
0.001668604286020759 xDAI
272274842023-04-01 8:45:404 hrs 39 mins ago3656,489 (2.19%)
0.001901733059501878 xDAI
272270182023-04-01 8:03:355 hrs 21 mins ago31,430,852 (4.77%)
0.004292555989984036 xDAI
272261672023-04-01 6:49:156 hrs 36 mins ago156,663 (0.19%)
0.000169988999603359 xDAI
272260722023-04-01 6:40:506 hrs 44 mins ago7531,621 (1.77%)
0.001298204997663057 xDAI
272256982023-04-01 6:07:407 hrs 17 mins ago2585,535 (1.95%)
0.001756604995901255 xDAI
272256932023-04-01 6:07:157 hrs 18 mins ago00 (0.00%)
0 xDAI
272243772023-04-01 4:12:109 hrs 13 mins ago00 (0.00%)
0 xDAI
272237792023-04-01 3:20:3010 hrs 5 mins ago138,062 (0.13%)
0.000137023199733566 xDAI
272234262023-04-01 2:49:5510 hrs 35 mins ago121,000 (0.07%)
0.000062999999853 xDAI
272223102023-04-01 1:12:3012 hrs 13 mins ago1337,202 (1.12%)
0.000981257817639586 xDAI
272199072023-03-31 21:44:2015 hrs 41 mins ago32,015,073 (6.72%)
0.006045218983879416 xDAI
272196112023-03-31 21:18:2516 hrs 7 mins ago3760,802 (2.54%)
0.002599490993617436 xDAI
272175522023-03-31 18:19:2519 hrs 6 mins ago3275,091 (0.92%)
0.000751067665701297 xDAI
272148432023-03-31 14:21:5523 hrs 3 mins ago2239,204 (0.80%)
0.000448498886981572 xDAI
272131502023-03-31 11:53:101 day 1 hr ago2223,681 (0.75%)
0.000225917808620783 xDAI
272128392023-03-31 11:26:301 day 1 hr ago00 (0.00%)
0 xDAI
272126092023-03-31 11:06:301 day 2 hrs ago1123,743 (0.41%)
0.0001856145 xDAI
272107002023-03-31 8:20:551 day 5 hrs ago61,461,819 (4.87%)
0.004403385280167267 xDAI
272105502023-03-31 8:07:251 day 5 hrs ago3681,994 (2.27%)
0.001187840113977304 xDAI
272103922023-03-31 7:53:451 day 5 hrs ago2324,583 (1.08%)
0.000973748997727919 xDAI
272084392023-03-31 5:04:501 day 8 hrs ago3546,595 (1.82%)
0.001639784996173835 xDAI
272080122023-03-31 4:27:401 day 8 hrs ago2149,849 (0.50%)
0.000250771898853 xDAI
272070682023-03-31 3:04:301 day 10 hrs ago4274,327 (0.91%)
0.000913950808079711 xDAI
272053532023-03-31 0:35:501 day 12 hrs ago3340,274 (1.13%)
0.001030400217618082 xDAI
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.