xDAI Price: $1.00 (+0.01%)
Gas: 1.1 GWei

Contract

0xDc657fac185d00cDfA34a8378Bb87d586bf998F7

Overview

xDAI Balance

Gnosis Chain LogoGnosis Chain LogoGnosis Chain Logo109,299.564432321045299064 xDAI

xDAI Value

$109,314.43 (@ $1.00/xDAI)

Token Holdings

Transaction Hash
Method
Block
From
To
Transfer393395972025-04-01 19:06:4021 days ago1743534400IN
0xDc657fac...86bf998F7
130,000 xDAI0.00002650.97
Transfer337425962024-05-02 17:20:45355 days ago1714670445IN
0xDc657fac...86bf998F7
29,000 xDAI0.000041351.51320002
Transfer332418902024-04-02 15:30:10385 days ago1712071810IN
0xDc657fac...86bf998F7
5,000 xDAI0.000095433.49200001
Transfer303056392023-10-05 8:17:55566 days ago1696493875IN
0xDc657fac...86bf998F7
4,000 xDAI0.000054872.0078806
Transfer282186172023-05-31 12:11:50693 days ago1685535110IN
0xDc657fac...86bf998F7
11 xDAI0.000040991.5
VIEW ADVANCED FILTER

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
393528602025-04-02 13:56:2020 days ago1743602180
0xDc657fac...86bf998F7
61.95901102 xDAI
393528602025-04-02 13:56:2020 days ago1743602180
0xDc657fac...86bf998F7
35,925.65880138 xDAI
393180262025-03-31 12:21:5523 days ago1743423715
0xDc657fac...86bf998F7
6,000 xDAI
383725772025-02-03 11:52:0579 days ago1738583525
0xDc657fac...86bf998F7
6,500 xDAI
366888692024-10-25 18:55:25179 days ago1729882525
0xDc657fac...86bf998F7
3,000 xDAI
365493452024-10-17 10:38:25188 days ago1729161505
0xDc657fac...86bf998F7
948 xDAI
365000862024-10-14 11:13:00191 days ago1728904380
0xDc657fac...86bf998F7
1,182 xDAI
362982382024-10-02 10:53:40203 days ago1727866420
0xDc657fac...86bf998F7
33,467.4964 xDAI
357965302024-09-02 15:01:05232 days ago1725289265
0xDc657fac...86bf998F7
33,962.0664 xDAI
353479732024-08-06 15:24:15259 days ago1722957855
0xDc657fac...86bf998F7
2,000 xDAI
352653422024-08-01 16:40:55264 days ago1722530455
0xDc657fac...86bf998F7
29,307.3064 xDAI
352135012024-07-29 14:28:55267 days ago1722263335
0xDc657fac...86bf998F7
109,931.23965372 xDAI
351175652024-07-23 20:40:15273 days ago1721767215
0xDc657fac...86bf998F7
70,000 xDAI
347782242024-07-03 13:22:55293 days ago1720012975
0xDc657fac...86bf998F7
15,000 xDAI
347745122024-07-03 8:02:25294 days ago1719993745
0xDc657fac...86bf998F7
35,664.7464 xDAI
347628852024-07-02 15:13:40294 days ago1719933220
0xDc657fac...86bf998F7
140,000 xDAI
347465222024-07-01 15:39:45295 days ago1719848385
0xDc657fac...86bf998F7
15,000 xDAI
346931662024-06-28 10:58:00299 days ago1719572280
0xDc657fac...86bf998F7
500 xDAI
346931572024-06-28 10:57:15299 days ago1719572235
0xDc657fac...86bf998F7
1,000 xDAI
344609092024-06-14 13:50:00312 days ago1718373000
0xDc657fac...86bf998F7
15,000 xDAI
342895732024-06-04 7:52:05323 days ago1717487525
0xDc657fac...86bf998F7
4,583 xDAI
342895582024-06-04 7:50:45323 days ago1717487445
0xDc657fac...86bf998F7
42,745.8364 xDAI
341654362024-05-27 22:13:10330 days ago1716847990
0xDc657fac...86bf998F7
81,092.47656894 xDAI
339573192024-05-15 12:31:45343 days ago1715776305
0xDc657fac...86bf998F7
17,069.10151112 xDAI
339244022024-05-13 13:27:10344 days ago1715606830
0xDc657fac...86bf998F7
59.2 xDAI
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xb4c57530...10d7b000A
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 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 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 Gas Used Reward
view all blocks validated

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.