S Price: $0.487885 (+0.10%)

Contract

0x43410B419191AB7Df9d2e943995699f80898A058
Transaction Hash
Method
Block
From
To
Exec Transaction161059912025-03-26 14:25:384 days ago1742999138IN
0x43410B41...80898A058
0 S0.0054783164.78692159
Exec Transaction161045212025-03-26 14:17:454 days ago1742998665IN
0x43410B41...80898A058
0 S0.004265550.37081707
Exec Transaction160574502025-03-26 9:22:004 days ago1742980920IN
0x43410B41...80898A058
0 S0.0047707550
Exec Transaction158191292025-03-25 7:32:065 days ago1742887926IN
0x43410B41...80898A058
0 S0.0052282550
Exec Transaction157918062025-03-25 3:56:125 days ago1742874972IN
0x43410B41...80898A058
0 S0.0052276550
Exec Transaction156637432025-03-24 14:16:116 days ago1742825771IN
0x43410B41...80898A058
0 S0.0102882550.90096459
Exec Transaction151913052025-03-22 8:51:488 days ago1742633508IN
0x43410B41...80898A058
0 S0.019212950
Exec Transaction150456142025-03-21 15:40:348 days ago1742571634IN
0x43410B41...80898A058
0 S0.0178777550
Exec Transaction148601772025-03-20 15:50:239 days ago1742485823IN
0x43410B41...80898A058
0 S0.0045655354
Exec Transaction145489112025-03-19 2:08:1111 days ago1742350091IN
0x43410B41...80898A058
0 S0.004232350
Exec Transaction142710092025-03-17 16:07:4212 days ago1742227662IN
0x43410B41...80898A058
0 S0.005413450
Exec Transaction140817132025-03-16 15:36:4813 days ago1742139408IN
0x43410B41...80898A058
0 S0.003519250
Exec Transaction140777552025-03-16 15:09:0813 days ago1742137748IN
0x43410B41...80898A058
0 S0.0245624550
Exec Transaction136380502025-03-14 9:19:5416 days ago1741943994IN
0x43410B41...80898A058
0 S0.0144909987.70460032
Exec Transaction134886922025-03-13 16:22:2516 days ago1741882945IN
0x43410B41...80898A058
0 S0.007518550
Exec Transaction132726742025-03-12 15:34:1317 days ago1741793653IN
0x43410B41...80898A058
0 S0.0197797550
Exec Transaction132558112025-03-12 13:44:0118 days ago1741787041IN
0x43410B41...80898A058
0 S0.0037160150.1
Exec Transaction128757842025-03-10 16:12:0319 days ago1741623123IN
0x43410B41...80898A058
0 S0.005413450
Exec Transaction128724362025-03-10 15:49:3419 days ago1741621774IN
0x43410B41...80898A058
0 S0.017817450
Exec Transaction126018202025-03-09 7:56:5021 days ago1741507010IN
0x43410B41...80898A058
0 S0.00546350
Exec Transaction126017972025-03-09 7:56:3921 days ago1741506999IN
0x43410B41...80898A058
0 S0.0194571550
Exec Transaction123947872025-03-08 4:29:5822 days ago1741408198IN
0x43410B41...80898A058
0 S0.0176274550
Exec Transaction123038652025-03-07 17:11:3522 days ago1741367495IN
0x43410B41...80898A058
0 S0.0042291550
Exec Transaction118575762025-03-05 16:00:3124 days ago1741190431IN
0x43410B41...80898A058
0 S0.004872555
Transfer109648082025-03-01 11:30:0929 days ago1740828609IN
0x43410B41...80898A058
7,668 S0.0015785155.01
View all transactions

Latest 10 internal transactions

Parent Transaction Hash Block From To
140817132025-03-16 15:36:4813 days ago1742139408
0x43410B41...80898A058
13,500 S
140777552025-03-16 15:09:0813 days ago1742137748
0x43410B41...80898A058
8,768 S
132558112025-03-12 13:44:0118 days ago1741787041
0x43410B41...80898A058
25 S
77008872025-02-13 13:04:3945 days ago1739451879
0x43410B41...80898A058
25 S
71474962025-02-09 14:39:0249 days ago1739111942
0x43410B41...80898A058
1,200 S
71444972025-02-09 14:03:1249 days ago1739109792
0x43410B41...80898A058
5,000 S
69094742025-02-07 15:06:1050 days ago1738940770
0x43410B41...80898A058
6,974.8056603 S
42761352025-01-17 14:59:1472 days ago1737125954
0x43410B41...80898A058
500 S
19997152024-12-30 14:07:0490 days ago1735567624
0x43410B41...80898A058
3,000 S
19947782024-12-30 13:21:2590 days ago1735564885  Contract Creation0 S
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2C14c3Cb...B98B7445b
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 GPLv3 license
/**
 *Submitted for verification at SonicScan.org on 2024-12-31
*/

/**
 *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

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

Deployed Bytecode Sourcemap

595:1528:0:-:0;;;1447:42;1443:1;1437:8;1433:57;1627:66;1623:1;1610:15;1607:87;1604:2;;;1724:10;1721:1;1714:21;1763:4;1760:1;1753:15;1604:2;1816:14;1813:1;1810;1797:34;1914:1;1911;1895:14;1892:1;1880:10;1873:5;1860:56;1951:16;1948:1;1945;1930:38;1997:1;1988:7;1985:14;1982:2;;;2029:16;2026:1;2019:27;1982:2;2085:16;2082:1;2075:27

Swarm Source

ipfs://03d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f314413

Block Transaction 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
[ 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.