ETH Price: $2,740.58 (+2.73%)

Contract

0x0030d7e1922Ff2227a77B04b075bdEa763D3551a
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction153232552025-02-13 14:18:4531 hrs ago1739456325IN
0x0030d7e1...763D3551a
0 ETH0.000000470.00136111
Exec Transaction153224302025-02-13 13:51:1531 hrs ago1739454675IN
0x0030d7e1...763D3551a
0 ETH0.000000480.00158882
Exec Transaction150211302025-02-06 14:27:558 days ago1738852075IN
0x0030d7e1...763D3551a
0 ETH0.000000790.00341045
Exec Transaction150209892025-02-06 14:23:138 days ago1738851793IN
0x0030d7e1...763D3551a
0 ETH0.000001130.00348502
Exec Transaction150205562025-02-06 14:08:478 days ago1738850927IN
0x0030d7e1...763D3551a
0 ETH0.000001230.0033068
Exec Transaction147182492025-01-30 14:11:5315 days ago1738246313IN
0x0030d7e1...763D3551a
0 ETH0.000000580.00166892
Exec Transaction144159592025-01-23 14:15:3322 days ago1737641733IN
0x0030d7e1...763D3551a
0 ETH0.000000390.00100357
Exec Transaction142424422025-01-19 13:51:3926 days ago1737294699IN
0x0030d7e1...763D3551a
0 ETH0.000000330.00111449
Exec Transaction141134242025-01-16 14:11:0329 days ago1737036663IN
0x0030d7e1...763D3551a
0 ETH0.000000360.00100028
Exec Transaction139855192025-01-13 15:07:3332 days ago1736780853IN
0x0030d7e1...763D3551a
0 ETH0.000000330.0010209
Exec Transaction137678652025-01-08 14:12:2537 days ago1736345545IN
0x0030d7e1...763D3551a
0 ETH0.00000040.00113155
Exec Transaction122992352024-12-05 14:18:0571 days ago1733408285IN
0x0030d7e1...763D3551a
0 ETH0.000000660.00139616
Exec Transaction107865092024-10-31 13:53:53106 days ago1730382833IN
0x0030d7e1...763D3551a
0 ETH0.00000120.00151876
Exec Transaction104841042024-10-24 13:53:43113 days ago1729778023IN
0x0030d7e1...763D3551a
0 ETH0.000002010.00327244
Exec Transaction104026472024-10-22 16:38:29115 days ago1729615109IN
0x0030d7e1...763D3551a
0 ETH0.000000710.0021667
Exec Transaction100520602024-10-14 13:52:15123 days ago1728913935IN
0x0030d7e1...763D3551a
0 ETH0.00000220.00622306
Exec Transaction97501272024-10-07 14:07:49130 days ago1728310069IN
0x0030d7e1...763D3551a
0 ETH0.000001180.00318049
Exec Transaction86701552024-09-12 14:08:45155 days ago1726150125IN
0x0030d7e1...763D3551a
0 ETH0.000003940.01108098
Exec Transaction79793972024-08-27 14:23:29171 days ago1724768609IN
0x0030d7e1...763D3551a
0 ETH0.000002920.03128894
Exec Transaction79793562024-08-27 14:22:07171 days ago1724768527IN
0x0030d7e1...763D3551a
0 ETH0.000003630.03242732
Exec Transaction77639502024-08-22 14:41:55176 days ago1724337715IN
0x0030d7e1...763D3551a
0 ETH0.000003240.02864496
Exec Transaction77629742024-08-22 14:09:23176 days ago1724335763IN
0x0030d7e1...763D3551a
0 ETH0.000016490.04785259
Exec Transaction77621222024-08-22 13:40:59176 days ago1724334059IN
0x0030d7e1...763D3551a
0 ETH0.000001940.02767239
Exec Transaction68557462024-08-01 14:08:27197 days ago1722521307IN
0x0030d7e1...763D3551a
0 ETH0.000001250.00283486
Exec Transaction66336702024-07-27 10:45:55202 days ago1722077155IN
0x0030d7e1...763D3551a
0 ETH0.000001290.00399097
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
1896482024-02-29 6:45:11351 days ago1709189111  Contract Creation0 ETH

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xF60849FF...C074b5B91
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 blastscan.io on 2024-03-12
*/

// 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())
        }
    }
}

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