ETH Price: $2,039.39 (+6.70%)
 

Overview

ETH Balance

0.05 ETH

Eth Value

$101.97 (@ $2,039.39/ETH)

Token Holdings

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction218951212025-02-21 13:49:5926 days ago1740145799IN
0x55E1e020...45a400f97
0 ETH0.00020281.68732903
Exec Transaction218242882025-02-11 15:51:2336 days ago1739289083IN
0x55E1e020...45a400f97
0 ETH0.000503652.73655733
Exec Transaction218240832025-02-11 15:09:3536 days ago1739286575IN
0x55E1e020...45a400f97
0 ETH0.000232352.53929579
Exec Transaction215380172025-01-02 16:35:1176 days ago1735835711IN
0x55E1e020...45a400f97
0 ETH0.0009490412.18389893
Exec Transaction214680292024-12-23 22:01:3585 days ago1734991295IN
0x55E1e020...45a400f97
0 ETH0.0015278914.13410639
Exec Transaction214304432024-12-18 15:54:5991 days ago1734537299IN
0x55E1e020...45a400f97
0 ETH0.0029522332.25960508
Exec Transaction214262842024-12-18 1:58:1191 days ago1734487091IN
0x55E1e020...45a400f97
0 ETH0.001297819.25029064
Exec Transaction213761902024-12-11 2:09:1198 days ago1733882951IN
0x55E1e020...45a400f97
0 ETH0.0011904115.28739523
Exec Transaction212727542024-11-26 15:15:35113 days ago1732634135IN
0x55E1e020...45a400f97
0 ETH0.0020177818.66594097
Exec Transaction212721152024-11-26 13:07:11113 days ago1732626431IN
0x55E1e020...45a400f97
0 ETH0.0012690613.86915936
Exec Transaction212443862024-11-22 16:12:23117 days ago1732291943IN
0x55E1e020...45a400f97
0 ETH0.0021763315.94456224
Exec Transaction211741392024-11-12 20:57:59127 days ago1731445079IN
0x55E1e020...45a400f97
0 ETH0.0023119935.39111424
Exec Transaction211741312024-11-12 20:56:23127 days ago1731444983IN
0x55E1e020...45a400f97
0 ETH0.003257932.83516371
Exec Transaction210718712024-10-29 14:25:11141 days ago1730211911IN
0x55E1e020...45a400f97
0 ETH0.0018123916.7658837
Exec Transaction210718582024-10-29 14:22:35141 days ago1730211755IN
0x55E1e020...45a400f97
0 ETH0.0016459817.99067525
Exec Transaction210657472024-10-28 17:53:35142 days ago1730138015IN
0x55E1e020...45a400f97
0 ETH0.0029146915.87567846
Exec Transaction210650522024-10-28 15:33:47142 days ago1730129627IN
0x55E1e020...45a400f97
0 ETH0.001439919.3497058
Exec Transaction208424122024-09-27 13:58:59173 days ago1727445539IN
0x55E1e020...45a400f97
0 ETH0.0021426119.25080202
Exec Transaction208423072024-09-27 13:37:59173 days ago1727444279IN
0x55E1e020...45a400f97
0 ETH0.001671519.05743327
Exec Transaction207439492024-09-13 20:02:11187 days ago1726257731IN
0x55E1e020...45a400f97
0 ETH0.0015263210.87898287
Exec Transaction207420512024-09-13 13:40:11187 days ago1726234811IN
0x55E1e020...45a400f97
0 ETH0.000182442.79433355
Exec Transaction207420322024-09-13 13:36:23187 days ago1726234583IN
0x55E1e020...45a400f97
0 ETH0.00008032.5095742
Exec Transaction207420262024-09-13 13:35:11187 days ago1726234511IN
0x55E1e020...45a400f97
0 ETH0.000077252.75894959
Exec Transaction206628042024-09-02 12:12:23198 days ago1725279143IN
0x55E1e020...45a400f97
0 ETH0.000225842.97676486
Exec Transaction205425552024-08-16 17:02:23215 days ago1723827743IN
0x55E1e020...45a400f97
0 ETH0.000229852.31694267
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer166497412023-02-17 16:55:11761 days ago1676652911
0x55E1e020...45a400f97
0.0001 ETH
-130605512021-08-20 6:25:441307 days ago1629440744  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

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 Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH28.64%$0.002461173,000,000$425,820.47
ETH20.65%$0.2047221,500,000$307,083
ETH11.39%$0.0669042,531,802$169,386.99
ETH8.49%$0.0673451,875,000$126,272.26
ETH6.90%$0.0086111,920,000$102,631.56
ETH5.58%$0.0331652,500,000$82,911.63
ETH5.42%$0.0209683,846,153.85$80,646.85
ETH3.03%$0.81289555,428.8695$45,057.85
ETH2.39%$1.4225,000.1$35,500.14
ETH1.74%$0.0234221,103,047.62$25,835.04
ETH1.15%$0.42740239,876.4264$17,043.26
ETH0.67%$0.9998899,900$9,898.9
ETH0.63%$0.2290341,087.963$9,410.38
ETH0.29%$0.0009544,583,334.32$4,370.94
ETH0.28%$0.0008385,000,000$4,189.95
ETH0.22%$0.0017941,790,558$3,211.67
ETH0.20%$0.00022813,333,332$3,045.47
ETH0.17%$0.003524700,001$2,466.78
ETH0.14%$0.006464333,333.3265$2,154.83
ETH0.14%$0.02385184,210.5263$2,008.5
ETH0.09%$0.00008216,666,666.667$1,366.17
ETH0.05%$0.03639918,459.2344$671.89
ETH0.04%$0.0002842,000,002$568.48
ETH0.03%$0.0266216,777.1844$446.61
ETH
Ether (ETH)
<0.01%$2,037.430.05$101.87
ETH<0.01%$0.0000272,000,000$53.58
ETH<0.01%$0.005841100$0.5841
POL1.59%$0.0029538,000,000$23,620.24
POL0.08%$0.002061599,999.97$1,236.35
BASE<0.01%$0.004464200$0.8927
BASE<0.01%$0.01031218$0.1856
Loading...
Loading
Loading...
Loading
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.