ETH Price: $3,323.88 (+1.60%)
 

Overview

ETH Balance

7.848399495 ETH

Eth Value

$26,087.12 (@ $3,323.88/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction193368912024-03-01 0:57:47336 days ago1709254667IN
0x1cD9F4E1...B104562ed
0 ETH0.0045864150.17138565
Transfer192758572024-02-21 11:52:47345 days ago1708516367IN
0x1cD9F4E1...B104562ed
176.98332424 ETH0.0010752839.34605515
Exec Transaction177391082023-07-21 4:22:47560 days ago1689913367IN
0x1cD9F4E1...B104562ed
0 ETH0.001310718
Exec Transaction176688742023-07-11 7:25:11570 days ago1689060311IN
0x1cD9F4E1...B104562ed
0 ETH0.0012848517.64493942
Exec Transaction176687562023-07-11 7:01:11570 days ago1689058871IN
0x1cD9F4E1...B104562ed
0 ETH0.001165915.78142379
Exec Transaction176411792023-07-07 9:57:11574 days ago1688723831IN
0x1cD9F4E1...B104562ed
0 ETH0.0017025922.22385832
Exec Transaction176355162023-07-06 14:52:47575 days ago1688655167IN
0x1cD9F4E1...B104562ed
0 ETH0.0027499237.77105067
Exec Transaction176339912023-07-06 9:42:59575 days ago1688636579IN
0x1cD9F4E1...B104562ed
0 ETH0.0022439630.8266215
Exec Transaction175275832023-06-21 10:56:59590 days ago1687345019IN
0x1cD9F4E1...B104562ed
0 ETH0.0011149215.28238334
Exec Transaction175217972023-06-20 15:27:59591 days ago1687274879IN
0x1cD9F4E1...B104562ed
0 ETH0.0026482223.83901834

Latest 11 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
193368912024-03-01 0:57:47336 days ago1709254667
0x1cD9F4E1...B104562ed
176.88 ETH
177391082023-07-21 4:22:47560 days ago1689913367
0x1cD9F4E1...B104562ed
2,848 ETH
176688742023-07-11 7:25:11570 days ago1689060311
0x1cD9F4E1...B104562ed
12,800 ETH
176687562023-07-11 7:01:11570 days ago1689058871
0x1cD9F4E1...B104562ed
6,400 ETH
176411792023-07-07 9:57:11574 days ago1688723831
0x1cD9F4E1...B104562ed
3,200 ETH
176355162023-07-06 14:52:47575 days ago1688655167
0x1cD9F4E1...B104562ed
2,880 ETH
176339912023-07-06 9:42:59575 days ago1688636579
0x1cD9F4E1...B104562ed
320 ETH
175275832023-06-21 10:56:59590 days ago1687345019
0x1cD9F4E1...B104562ed
1 ETH
175217972023-06-20 15:27:59591 days ago1687274879
0x1cD9F4E1...B104562ed
32 ETH
170646612023-04-17 6:14:47655 days ago1681712087
0x1cD9F4E1...B104562ed
36.5233408 ETH
170375032023-04-13 8:35:47659 days ago1681374947  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xDaB5dc22...0ba42d2a6
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 Etherscan.io on 2021-07-09
*/

// 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())
        }
    }
}

/// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
/// @author Stefan George - <[email protected]>
contract GnosisSafeProxyFactory {
    event ProxyCreation(GnosisSafeProxy proxy, address singleton);

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param singleton Address of singleton contract.
    /// @param data Payload for message call sent to new proxy contract.
    function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) {
        proxy = new GnosisSafeProxy(singleton);
        if (data.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, singleton);
    }

    /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed.
    function proxyRuntimeCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).runtimeCode;
    }

    /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address.
    function proxyCreationCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).creationCode;
    }

    /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer.
    ///      This method is only meant as an utility to be called from other methods
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function deployProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) internal returns (GnosisSafeProxy proxy) {
        // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it
        bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce));
        bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton)));
        // solhint-disable-next-line no-inline-assembly
        assembly {
            proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt)
        }
        require(address(proxy) != address(0), "Create2 call failed");
    }

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function createProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) public returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        if (initializer.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, _singleton);
    }

    /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized.
    function createProxyWithCallback(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce,
        IProxyCreationCallback callback
    ) public returns (GnosisSafeProxy proxy) {
        uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback)));
        proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback);
        if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce);
    }

    /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce`
    ///      This method is only meant for address calculation purpose when you use an initializer that would revert,
    ///      therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function calculateCreateProxyWithNonceAddress(
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        revert(string(abi.encodePacked(proxy)));
    }
}

interface IProxyCreationCallback {
    function proxyCreated(
        GnosisSafeProxy proxy,
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external;
}

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

Latest 25 from a total of 792 withdrawals (28,452.221734452 ETH withdrawn)

Validator Index Block Amount
18691172090232023-05-07 13:40:47635 days ago168346684732 ETH
18684172090232023-05-07 13:40:47635 days ago168346684732 ETH
18691171773642023-05-03 2:53:11639 days ago16830823910.012138126 ETH
18684171773642023-05-03 2:53:11639 days ago16830823910.012066206 ETH
18691171458682023-04-28 16:39:35644 days ago16826999750.012455165 ETH
18684171458682023-04-28 16:39:35644 days ago16826999750.012519438 ETH
97622171172142023-04-24 16:04:23648 days ago168235226335.20756677 ETH
97621171172142023-04-24 16:04:23648 days ago168235226335.355934919 ETH
97620171172142023-04-24 16:04:23648 days ago168235226335.301836746 ETH
97619171172142023-04-24 16:04:23648 days ago168235226335.473805011 ETH
97618171172142023-04-24 16:04:23648 days ago168235226335.410229374 ETH
66052171161492023-04-24 12:28:47648 days ago168233932735.716894726 ETH
66051171161492023-04-24 12:28:47648 days ago168233932735.744674278 ETH
66050171161492023-04-24 12:28:47648 days ago168233932735.639775409 ETH
66049171161492023-04-24 12:28:47648 days ago168233932735.759307964 ETH
66048171161492023-04-24 12:28:47648 days ago168233932735.612079679 ETH
66047171161482023-04-24 12:28:35648 days ago168233931535.592389698 ETH
66046171161482023-04-24 12:28:35648 days ago168233931535.609216761 ETH
66045171161482023-04-24 12:28:35648 days ago168233931535.72906567 ETH
66044171161482023-04-24 12:28:35648 days ago168233931535.582955884 ETH
66043171161482023-04-24 12:28:35648 days ago168233931535.741113138 ETH
42993171151672023-04-24 9:10:23648 days ago168232742335.857080368 ETH
42992171151662023-04-24 9:10:11648 days ago168232741135.995987881 ETH
42991171151662023-04-24 9:10:11648 days ago168232741136.092893752 ETH
42990171151662023-04-24 9:10:11648 days ago168232741136.048796446 ETH
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.