ETH Price: $3,216.23 (+4.07%)

Contract

0xa3A5Ef800b47D503E61EE7f0bAF7Ee80BCC5fbFb
 

Overview

ETH Balance

21.971553042576329054 ETH

Eth Value

$70,665.65 (@ $3,216.23/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer208292262024-09-25 17:51:35111 days ago1727286695IN
Fee Recipient: 0xa3...bFb
0.00004537 ETH0.0006883725.18855179
Exec Transaction208292242024-09-25 17:51:11111 days ago1727286671IN
Fee Recipient: 0xa3...bFb
0 ETH0.0016765825.43669693
Exec Transaction208288152024-09-25 16:28:47111 days ago1727281727IN
Fee Recipient: 0xa3...bFb
0 ETH0.003710840.26301051
Transfer208288112024-09-25 16:27:59111 days ago1727281679IN
Fee Recipient: 0xa3...bFb
0 ETH0.0011048440.42764556
Exec Transaction208288082024-09-25 16:27:23111 days ago1727281643IN
Fee Recipient: 0xa3...bFb
0 ETH0.0036184543.69901953

Latest 14 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
208292242024-09-25 17:51:11111 days ago1727286671
Fee Recipient: 0xa3...bFb
453.73916992 ETH
208288082024-09-25 16:27:23111 days ago1727281643
Fee Recipient: 0xa3...bFb
0.01 ETH
193027492024-02-25 6:16:35324 days ago1708841795
Fee Recipient: 0xa3...bFb
0.0055887 ETH
185775002023-11-15 13:11:11426 days ago1700053871
Fee Recipient: 0xa3...bFb
0.005 ETH
175320012023-06-22 1:48:59572 days ago1687398539
Fee Recipient: 0xa3...bFb
0.00112644 ETH
174817412023-06-15 0:30:23579 days ago1686789023
Fee Recipient: 0xa3...bFb
0.00043904 ETH
174661562023-06-12 19:51:11582 days ago1686599471
Fee Recipient: 0xa3...bFb
0.00056042 ETH
174278732023-06-07 10:22:11587 days ago1686133331
Fee Recipient: 0xa3...bFb
0.00003353 ETH
172619742023-05-15 1:35:59610 days ago1684114559
Fee Recipient: 0xa3...bFb
0.00134288 ETH
172539592023-05-13 22:19:11611 days ago1684016351
Fee Recipient: 0xa3...bFb
0.00171248 ETH
170652372023-04-17 8:10:59638 days ago1681719059
Fee Recipient: 0xa3...bFb
0.001288 ETH
157392192022-10-13 12:32:59824 days ago1665664379
Fee Recipient: 0xa3...bFb
0.00260921 ETH
157392192022-10-13 12:32:59824 days ago1665664379
Fee Recipient: 0xa3...bFb
0.00438667 ETH
152774242022-08-04 18:21:41894 days ago1659637301  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 25 blocks (From a total of 1,242 blocks with 32.65 Ether produced)

Block Transaction Difficulty Gas Used Reward
216203792025-01-14 4:37:3516 hrs ago1736829455880.00 TH7,854,846 (26.18%)
0.006069445140548408 ETH
216185552025-01-13 22:29:4722 hrs ago1736807387820.00 TH6,877,046 (22.88%)
0.00829436678219638 ETH
216130002025-01-13 3:51:2341 hrs ago1736740283770.00 TH4,622,471 (15.41%)
0.004249929332931671 ETH
216042102025-01-11 22:25:232 days ago1736634323900.00 TH7,635,271 (25.45%)
0.006309931880545852 ETH
215894062025-01-09 20:48:115 days ago17364556911220.00 TH9,277,286 (30.92%)
0.012548651199095559 ETH
215824542025-01-08 21:29:595 days ago1736371799800.00 TH6,116,527 (20.39%)
0.006615329710289371 ETH
215733442025-01-07 14:59:237 days ago17362619632260.00 TH21,549,244 (71.83%)
0.05425908112004123 ETH
215707612025-01-07 6:19:597 days ago17362307992150.00 TH17,872,515 (59.58%)
0.012845318619652152 ETH
215676032025-01-06 19:47:118 days ago17361928311240.00 TH6,839,545 (22.80%)
0.011348567714175693 ETH
215657342025-01-06 13:31:238 days ago1736170283880.00 TH5,687,972 (18.96%)
0.014549610428805127 ETH
215529532025-01-04 18:37:4710 days ago1736015867960.00 TH7,425,813 (24.75%)
0.013297527898862747 ETH
215485492025-01-04 3:52:3510 days ago1735962755730.00 TH7,174,171 (23.91%)
0.007651913380334827 ETH
215465602025-01-03 21:11:5910 days ago1735938719940.00 TH6,082,817 (20.28%)
0.013341797562698677 ETH
215451392025-01-03 16:26:1111 days ago1735921571960.00 TH7,633,083 (25.44%)
0.023122830475328946 ETH
215443172025-01-03 13:40:5911 days ago1735911659980.00 TH21,716,205 (72.39%)
0.005093054327478228 ETH
215378712025-01-02 16:05:5912 days ago1735833959950.00 TH6,551,172 (21.84%)
0.008692242047954352 ETH
215289162025-01-01 10:07:4713 days ago1735726067540.00 TH4,488,620 (14.96%)
0.004538809373995646 ETH
215245972024-12-31 19:40:1114 days ago1735674011910.00 TH5,621,000 (18.74%)
0.015834484576691749 ETH
215217512024-12-31 10:06:2314 days ago1735639583910.00 TH6,807,186 (22.69%)
0.011029062557214831 ETH
215159232024-12-30 14:35:2315 days ago17355693232070.00 TH12,407,639 (41.36%)
0.021742620862015758 ETH
215130052024-12-30 4:48:1115 days ago17355340911170.00 TH7,269,175 (24.23%)
0.010157500115057462 ETH
214942752024-12-27 14:04:4718 days ago1735308287760.00 TH6,409,465 (21.36%)
0.006769898324228619 ETH
214918572024-12-27 5:58:1118 days ago1735279091800.00 TH5,524,544 (18.42%)
0.005535220173875973 ETH
214894682024-12-26 21:57:1118 days ago17352502311090.00 TH12,245,125 (40.82%)
0.0080395177478688 ETH
214883392024-12-26 18:09:4719 days ago17352365871470.00 TH9,036,924 (30.12%)
0.020846585102930089 ETH
View All Blocks Produced

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

Latest 25 from a total of 3720 withdrawals (443.059370348 ETH withdrawn)

Validator Index Block Amount
6181215801222025-01-08 13:41:596 days ago17363437190.019280502 ETH
6180215801222025-01-08 13:41:596 days ago17363437190.019298947 ETH
6179215801222025-01-08 13:41:596 days ago17363437190.019287232 ETH
6178215801222025-01-08 13:41:596 days ago17363437190.019267175 ETH
6177215801222025-01-08 13:41:596 days ago17363437190.065173571 ETH
6176215801222025-01-08 13:41:596 days ago17363437190.065145363 ETH
6175215801222025-01-08 13:41:596 days ago17363437190.019300588 ETH
6174215801212025-01-08 13:41:476 days ago17363437070.019274075 ETH
6172215801212025-01-08 13:41:476 days ago17363437070.019291874 ETH
6171215801212025-01-08 13:41:476 days ago17363437070.064939862 ETH
6170215801212025-01-08 13:41:476 days ago17363437070.019260365 ETH
6169215801212025-01-08 13:41:476 days ago17363437070.019259782 ETH
6168215801212025-01-08 13:41:476 days ago17363437070.01928959 ETH
6167215801212025-01-08 13:41:476 days ago17363437070.019253357 ETH
6166215801212025-01-08 13:41:476 days ago17363437070.019298635 ETH
6165215801212025-01-08 13:41:476 days ago17363437070.01932599 ETH
6164215801212025-01-08 13:41:476 days ago17363437070.019308177 ETH
6163215801212025-01-08 13:41:476 days ago17363437070.019277611 ETH
6162215801212025-01-08 13:41:476 days ago17363437070.065124014 ETH
6161215801212025-01-08 13:41:476 days ago17363437070.019273714 ETH
6160215801212025-01-08 13:41:476 days ago17363437070.019278532 ETH
6159215801212025-01-08 13:41:476 days ago17363437070.01930294 ETH
6158215801212025-01-08 13:41:476 days ago17363437070.019239543 ETH
6157215801202025-01-08 13:41:356 days ago17363436950.065168065 ETH
6156215801202025-01-08 13:41:356 days ago17363436950.019269185 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.