ETH Price: $2,658.85 (+0.61%)

Contract

0x075745B89B34A2579AC71dE73d0167e4858c5A83
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction205556562024-08-18 12:57:114 days ago1723985831IN
0x075745B8...4858c5A83
0 ETH0.000140092.13219434
Exec Transaction205499072024-08-17 17:43:115 days ago1723916591IN
0x075745B8...4858c5A83
0 ETH0.000289112.52381809
Exec Transaction205058222024-08-11 13:59:3511 days ago1723384775IN
0x075745B8...4858c5A83
0 ETH0.001031724
Exec Transaction204570182024-08-04 18:35:2318 days ago1722796523IN
0x075745B8...4858c5A83
0 ETH0.0019902219.24741875
Exec Transaction184550102023-10-29 9:40:35299 days ago1698572435IN
0x075745B8...4858c5A83
0 ETH0.0017974513
Exec Transaction184549802023-10-29 9:34:35299 days ago1698572075IN
0x075745B8...4858c5A83
0 ETH0.0016079713.40641663
Exec Transaction184548662023-10-29 9:11:47299 days ago1698570707IN
0x075745B8...4858c5A83
0 ETH0.0007625314
Exec Transaction184548602023-10-29 9:10:35299 days ago1698570635IN
0x075745B8...4858c5A83
0 ETH0.0008166415
Exec Transaction184548392023-10-29 9:06:11299 days ago1698570371IN
0x075745B8...4858c5A83
0 ETH0.0018345517.39807591

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
205556562024-08-18 12:57:114 days ago1723985831
0x075745B8...4858c5A83
3 ETH
205499072024-08-17 17:43:115 days ago1723916591
0x075745B8...4858c5A83
3 ETH
184550102023-10-29 9:40:35299 days ago1698572435
0x075745B8...4858c5A83
3.61906374 ETH
171540572023-04-29 20:17:11481 days ago1682799431  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

 Latest 7 blocks produced

Block Transaction Difficulty Gas Used Reward
202925262024-07-12 19:30:1141 days ago17208126112100.00 TH12,711,618 (42.37%)
0.014177103956449632 ETH
192667162024-02-20 5:04:23185 days ago17084054634770.00 TH19,667,892 (65.56%)
0.016952124770172266 ETH
191735012024-02-07 2:59:11198 days ago17072747511250.00 TH9,933,790 (33.11%)
0.011601477537358374 ETH
190145322024-01-15 20:00:47220 days ago17053488471750.00 TH9,656,390 (32.19%)
0.023658404663583496 ETH
185742432023-11-15 2:13:35282 days ago1700014415920.00 TH11,036,985 (36.79%)
0.010942650306189201 ETH
183444612023-10-13 22:30:35314 days ago1697236235810.00 TH7,723,944 (25.75%)
0.014662153093109339 ETH
183390932023-10-13 4:29:11315 days ago1697171351860.00 TH7,404,357 (24.68%)
0.004809938254060475 ETH

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

Latest 25 from a total of 64 withdrawals (4.458431233 ETH withdrawn)

Validator Index Block Amount
128394205739242024-08-21 2:10:592 days ago17242062590.019100063 ETH
128394205077252024-08-11 20:21:4711 days ago17234077070.019030398 ETH
128394204416782024-08-02 15:12:4720 days ago17226115670.019033516 ETH
128394203761872024-07-24 11:44:5929 days ago17218214990.018871132 ETH
128394203114392024-07-15 10:53:3539 days ago17210408150.06421487 ETH
128394202466782024-07-06 9:49:4748 days ago17202593870.018812607 ETH
128394201821972024-06-27 9:41:4757 days ago17194813070.018579998 ETH
128394201178422024-06-18 9:45:4766 days ago17187039470.017847041 ETH
128394200538912024-06-09 11:12:4774 days ago17179315670.01862772 ETH
128394199905492024-05-31 14:57:1183 days ago17171674310.01849332 ETH
128394199275702024-05-22 19:40:4792 days ago17164068470.01851803 ETH
128394198645032024-05-13 23:53:59101 days ago17156444390.018485723 ETH
128394198015902024-05-05 4:44:47110 days ago17148842870.018364523 ETH
128394197392492024-04-26 11:31:35118 days ago17141310950.018315539 ETH
128394196772722024-04-17 19:26:11127 days ago17133819710.018367432 ETH
128394196155492024-04-09 3:56:35136 days ago17126349950.018131908 ETH
128394195538572024-03-31 12:24:59144 days ago17118878990.017855565 ETH
128394194922492024-03-22 19:28:35153 days ago17111357150.01824264 ETH
128394194305142024-03-14 3:14:23162 days ago17103860630.018427932 ETH
128394193689322024-03-05 12:21:47170 days ago17096413070.016349493 ETH
128394193080592024-02-26 0:05:59179 days ago17089059590.061584145 ETH
128394192481132024-02-17 14:16:11187 days ago17081793710.017920342 ETH
128394191892052024-02-09 7:52:23196 days ago17074651430.060049134 ETH
128394191314732024-02-01 5:21:59204 days ago17067649190.017709972 ETH
128394190745572024-01-24 5:56:59212 days ago17060758190.016031789 ETH
View All Withdrawals

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