xDAI Price: $0.999939 (-0.01%)
Gas: 1.1 GWei

Contract

0xbC40A2DA123edbB5D7358D162928F9a7D4999e99

Overview

xDAI Balance

Gnosis Chain LogoGnosis Chain LogoGnosis Chain Logo1,609.992891314920206621 xDAI

xDAI Value

$1,609.89 (@ $1.00/xDAI)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction260614612023-01-20 15:49:45818 days ago1674229785IN
0xbC40A2DA...7D4999e99
0 xDAI0.000720041.5
Exec Transaction260612332023-01-20 15:29:30818 days ago1674228570IN
0xbC40A2DA...7D4999e99
0 xDAI0.009868161.5
Exec Transaction260510532023-01-20 0:38:15819 days ago1674175095IN
0xbC40A2DA...7D4999e99
0 xDAI0.009882681.5
Exec Transaction260510342023-01-20 0:36:35819 days ago1674174995IN
0xbC40A2DA...7D4999e99
0 xDAI0.009868181.5
Exec Transaction260510072023-01-20 0:34:10819 days ago1674174850IN
0xbC40A2DA...7D4999e99
0 xDAI0.009873231.5
Exec Transaction260509842023-01-20 0:32:15819 days ago1674174735IN
0xbC40A2DA...7D4999e99
0 xDAI0.009868051.5
Exec Transaction260509352023-01-20 0:27:40819 days ago1674174460IN
0xbC40A2DA...7D4999e99
0 xDAI0.009903481.5

Latest 3 internal transactions

Parent Transaction Hash Block From To
311484012023-11-26 23:35:00508 days ago1701041700
0xbC40A2DA...7D4999e99
100 xDAI
311456702023-11-26 19:35:00508 days ago1701027300
0xbC40A2DA...7D4999e99
50 xDAI
252333322022-11-30 16:12:05869 days ago1669824725  Contract Creation0 xDAI
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

 Latest 25 blocks (From a total of 70,615 blocks with 1,759.99 xDAI in fees)

Block Transaction Gas Used Reward
396152812025-04-18 1:26:0017 mins ago1744939560101,509,782 (8.88%)
0.001539094999853 xDAI
396140882025-04-17 23:44:351 hr ago1744933475112,759,730 (16.23%)
0.002818459001079905 xDAI
396140572025-04-17 23:41:502 hrs ago1744933310123,284,140 (19.30%)
0.003316246149867445 xDAI
396138742025-04-17 23:26:202 hrs ago1744932380111,571,482 (9.24%)
0.002090653350322083 xDAI
396134062025-04-17 22:46:352 hrs ago1744929995112,405,012 (14.15%)
0.002405012 xDAI
396133952025-04-17 22:45:402 hrs ago1744929940172,631,195 (15.48%)
0.003218423 xDAI
396123602025-04-17 21:18:104 hrs ago1744924690122,100,290 (12.35%)
0.003007076 xDAI
396122452025-04-17 21:08:254 hrs ago1744924105164,402,022 (25.89%)
0.00556731800376048 xDAI
396121682025-04-17 21:02:004 hrs ago1744923720181,845,485 (10.86%)
0.003501203155843732 xDAI
396114652025-04-17 20:02:155 hrs ago1744920135164,169,650 (24.53%)
0.004850209360509077 xDAI
396112412025-04-17 19:43:356 hrs ago1744919015143,946,595 (23.22%)
0.004381043496623171 xDAI
396112032025-04-17 19:40:256 hrs ago1744918825478,043,312 (47.31%)
0.014045696015032846 xDAI
396107112025-04-17 18:58:206 hrs ago1744916300171,738,676 (10.23%)
0.003184185341834917 xDAI
396104112025-04-17 18:32:557 hrs ago1744914775225,377,278 (31.63%)
0.008132854763590043 xDAI
396097422025-04-17 17:35:408 hrs ago1744911340173,510,874 (20.65%)
0.004354736091695447 xDAI
396095182025-04-17 17:16:408 hrs ago1744910200112,340,907 (13.77%)
0.003558798413633189 xDAI
396080932025-04-17 15:16:1010 hrs ago174490297081,852,488 (10.90%)
0.002340880440703944 xDAI
396078002025-04-17 14:51:3510 hrs ago1744901495153,470,047 (20.41%)
0.003949705500926088 xDAI
396075232025-04-17 14:27:4011 hrs ago1744900060172,695,066 (15.85%)
0.00294192156503384 xDAI
396075072025-04-17 14:26:2011 hrs ago1744899980172,492,730 (14.65%)
0.00250808117489978 xDAI
396074832025-04-17 14:24:2011 hrs ago174489986092,843,462 (16.73%)
0.003232966144503342 xDAI
396074802025-04-17 14:24:0511 hrs ago17448998452357,674 (2.10%)
0.000357673999958 xDAI
396071402025-04-17 13:54:5511 hrs ago1744898095182,090,512 (12.30%)
0.003245241302792462 xDAI
396068482025-04-17 13:30:1512 hrs ago17448966157634,181 (3.73%)
0.00112268700024228 xDAI
396064342025-04-17 12:55:1012 hrs ago1744894510162,284,974 (13.44%)
0.008061135784758428 xDAI
view all blocks validated

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Latest 25 from a total of 399342 withdrawals (7,586.818974191 xDAI withdrawn)

Validator Index Block Amount
179278395980232025-04-17 0:58:4024 hrs ago17448515200.014532778 xDAI
179277395980232025-04-17 0:58:4024 hrs ago17448515200.014602072 xDAI
179276395980232025-04-17 0:58:4024 hrs ago17448515200.014346957 xDAI
179275395980232025-04-17 0:58:4024 hrs ago17448515200.014363584 xDAI
179274395980222025-04-17 0:58:3524 hrs ago17448515150.014566531 xDAI
179273395980222025-04-17 0:58:3524 hrs ago17448515150.014479311 xDAI
179272395980222025-04-17 0:58:3524 hrs ago17448515150.014666245 xDAI
179271395980222025-04-17 0:58:3524 hrs ago17448515150.014429092 xDAI
179270395980222025-04-17 0:58:3524 hrs ago17448515150.014612927 xDAI
179269395980222025-04-17 0:58:3524 hrs ago17448515150.014400508 xDAI
179268395980222025-04-17 0:58:3524 hrs ago17448515150.035285978 xDAI
179267395980222025-04-17 0:58:3524 hrs ago17448515150.014676416 xDAI
179266395980212025-04-17 0:58:3024 hrs ago17448515100.014489279 xDAI
179265395980212025-04-17 0:58:3024 hrs ago17448515100.014432279 xDAI
179264395980212025-04-17 0:58:3024 hrs ago17448515100.014361525 xDAI
179263395980212025-04-17 0:58:3024 hrs ago17448515100.014397158 xDAI
179262395980212025-04-17 0:58:3024 hrs ago17448515100.014344328 xDAI
179261395980212025-04-17 0:58:3024 hrs ago17448515100.01468255 xDAI
179260395980212025-04-17 0:58:3024 hrs ago17448515100.014249165 xDAI
179259395980212025-04-17 0:58:3024 hrs ago17448515100.014271835 xDAI
179258395980202025-04-17 0:58:2524 hrs ago17448515050.014164587 xDAI
179257395980202025-04-17 0:58:2524 hrs ago17448515050.014561116 xDAI
179256395980202025-04-17 0:58:2524 hrs ago17448515050.014518444 xDAI
179255395980202025-04-17 0:58:2524 hrs ago17448515050.01435568 xDAI
179254395980202025-04-17 0:58:2524 hrs ago17448515050.014605242 xDAI
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.