ETH Price: $3,972.25 (-1.55%)

Contract

0xC669B5F25F03be2ac0323037CB57f49eB543657a
 

Overview

ETH Balance

19.376827540292792986 ETH

Eth Value

$76,969.61 (@ $3,972.25/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Exec Transaction194928782024-03-22 21:36:35269 days ago1711143395IN
0xC669B5F2...eB543657a
0 ETH0.0046149527.99625045
Exec Transaction187731422023-12-12 22:40:35370 days ago1702420835IN
0xC669B5F2...eB543657a
0 ETH0.0055417251.00150122
Exec Transaction186716682023-11-28 17:40:23385 days ago1701193223IN
0xC669B5F2...eB543657a
0 ETH0.0053817250.36618743
Exec Transaction180427992023-09-01 16:08:59473 days ago1693584539IN
0xC669B5F2...eB543657a
0 ETH0.0063462938.96492928
Exec Transaction174255222023-06-07 2:24:23559 days ago1686104663IN
0xC669B5F2...eB543657a
0 ETH0.002879221
Exec Transaction172682862023-05-15 22:59:23581 days ago1684191563IN
0xC669B5F2...eB543657a
0 ETH0.0077675768
Exec Transaction172467352023-05-12 21:50:59584 days ago1683928259IN
0xC669B5F2...eB543657a
0 ETH0.0065166361
Exec Transaction172448342023-05-12 14:50:47585 days ago1683903047IN
0xC669B5F2...eB543657a
0 ETH0.0089225281.9768719
Exec Transaction172255722023-05-09 21:32:23587 days ago1683667943IN
0xC669B5F2...eB543657a
0 ETH0.01846089102.21073983
Exec Transaction171626142023-05-01 1:06:35596 days ago1682903195IN
0xC669B5F2...eB543657a
0 ETH0.0064200438.86458475
Exec Transaction166930332023-02-23 18:59:23662 days ago1677178763IN
0xC669B5F2...eB543657a
0 ETH0.0084426751.2093428
Exec Transaction166502652023-02-17 18:41:23668 days ago1676659283IN
0xC669B5F2...eB543657a
0 ETH0.0048299541.98974769
Exec Transaction157898662022-10-20 14:20:47789 days ago1666275647IN
0xC669B5F2...eB543657a
0 ETH0.0043780545
Exec Transaction153471252022-08-15 16:45:43855 days ago1660581943IN
0xC669B5F2...eB543657a
0 ETH0.0044888526.55813622
Exec Transaction153292922022-08-12 21:05:49857 days ago1660338349IN
0xC669B5F2...eB543657a
0 ETH0.0027732329.48398598
Exec Transaction153292322022-08-12 20:50:23857 days ago1660337423IN
0xC669B5F2...eB543657a
0 ETH0.000756468.91127779
Exec Transaction153292202022-08-12 20:48:36857 days ago1660337316IN
0xC669B5F2...eB543657a
0 ETH0.0012305611.19971919
Exec Transaction153292152022-08-12 20:47:58857 days ago1660337278IN
0xC669B5F2...eB543657a
0 ETH0.0013896312.64884163
Exec Transaction153292042022-08-12 20:46:55857 days ago1660337215IN
0xC669B5F2...eB543657a
0 ETH0.0021691919.73805689
Exec Transaction153291872022-08-12 20:41:04857 days ago1660336864IN
0xC669B5F2...eB543657a
0 ETH0.0020806618.93255731
Exec Transaction153291802022-08-12 20:39:18857 days ago1660336758IN
0xC669B5F2...eB543657a
0 ETH0.0023175221.09241016
Exec Transaction153291762022-08-12 20:38:11857 days ago1660336691IN
0xC669B5F2...eB543657a
0 ETH0.0016581121.87022157
Exec Transaction153291682022-08-12 20:35:52857 days ago1660336552IN
0xC669B5F2...eB543657a
0 ETH0.0023403421.31865704
Transfer153044272022-08-08 23:03:43861 days ago1659999823IN
0xC669B5F2...eB543657a
6.4 ETH0.0004859917.78307775
Transfer153040442022-08-08 21:35:14861 days ago1659994514IN
0xC669B5F2...eB543657a
0.11983744 ETH0.0004336115.86665677
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
151353752022-07-13 16:39:39888 days ago1657730379  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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH42.68%$0.7036281,219,370.4782$857,983.21
ETH18.93%$0.0458748,295,274.4941$380,538.17
ETH16.86%$0.585939578,353.8185$338,880.18
ETH8.47%$1169,921.6868$170,261.53
ETH4.06%$0.597576136,497.0519$81,567.36
ETH
Ether (ETH)
3.83%$3,976.4119.3768$77,050.29
ETH2.52%$1.5233,355.3264$50,700.1
ETH0.83%$0.79354720,920.5464$16,601.44
ETH0.58%$0.000027427,050,887.7918$11,598.7
ETH0.39%$0.0054611,446,836.6977$7,900.58
ETH0.15%$12,982.9205$2,985.9
ETH0.13%$1.811,483.998$2,691.04
ETH0.12%$16.25151.2983$2,458.6
ETH0.10%$0.7770092,688.242$2,088.79
ETH0.09%$0.2847586,105.1761$1,738.5
ETH0.05%$0.7913681,387.8335$1,098.29
ETH0.05%$20.8850.9429$1,063.69
ETH0.04%$2.91279.9852$814.76
ETH0.04%$0.01901537,985.873$722.29
ETH0.03%$0.00957466,997.165$641.43
ETH0.02%$0.001947172,008.29$334.82
ETH<0.01%$28.096.7125$188.55
ETH<0.01%$883.050.1125$99.38
ETH<0.01%$1.3550$67.5
ETH<0.01%$0.0169163,598.324$60.87
ETH<0.01%$0.03252857.3092$27.88
ETH<0.01%$0.114148227.9978$26.03
ETH<0.01%$0.150545137.316$20.67
ETH<0.01%$0.138621145.5792$20.18
ETH<0.01%$0.104111173.0958$18.02
ETH<0.01%$0.18249896.175$17.55
ETH<0.01%$0.19748262.5$12.34
ETH<0.01%$0.12450156.2748$7.01
ETH<0.01%$0.05538120$6.65
ETH<0.01%$0.0003220,387$6.52
ETH<0.01%$0.0008937,072.3185$6.31
ETH<0.01%$0.0014024,114.625$5.77
ETH<0.01%$0.853516.3$5.38
ETH<0.01%$0.00024420,129.8915$4.91
ETH<0.01%$0.32062412.9763$4.16
ETH<0.01%$0.002397977.6653$2.34
ETH<0.01%$0.0008791,000$0.8788
ETH<0.01%$0.7817521.05$0.8208
ETH<0.01%$0.1467214.0338$0.5918
ETH<0.01%$0.1916381.8354$0.3517
ETH<0.01%$0.02694112.595$0.3393
ETH<0.01%$0.0001071,623.9445$0.1731
BASE<0.01%$0.034693200$6.94
POL<0.01%$0.00337448.2861$0.1629
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.