ETH Price: $1,794.85 (+10.21%)

Contract

0x4a183b7ED67B9E14b3f45Abfb2Cf44ed22c29E54
 

Overview

ETH Balance

4.373931216667679497 ETH

ETH Value

$7,850.56 (@ $1,794.85/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
182959822025-04-23 9:49:3939 mins ago1745401779
0x4a183b7E...d22c29E54
0.00005259 ETH
182828242025-04-23 2:31:037 hrs ago1745375463
0x4a183b7E...d22c29E54
0.000104 ETH
182821352025-04-23 2:08:058 hrs ago1745374085
0x4a183b7E...d22c29E54
0.00010553 ETH
182759462025-04-22 22:41:4711 hrs ago1745361707
0x4a183b7E...d22c29E54
0.0000024 ETH
182730492025-04-22 21:05:1313 hrs ago1745355913
0x4a183b7E...d22c29E54
0.00000392 ETH
182651682025-04-22 16:42:3117 hrs ago1745340151
0x4a183b7E...d22c29E54
0.00000477 ETH
182626882025-04-22 15:19:5119 hrs ago1745335191
0x4a183b7E...d22c29E54
0.00006994 ETH
182557282025-04-22 11:27:5123 hrs ago1745321271
0x4a183b7E...d22c29E54
0.00000857 ETH
182552222025-04-22 11:10:5923 hrs ago1745320259
0x4a183b7E...d22c29E54
0.00001748 ETH
182544062025-04-22 10:43:4723 hrs ago1745318627
0x4a183b7E...d22c29E54
0.00000784 ETH
182543902025-04-22 10:43:1523 hrs ago1745318595
0x4a183b7E...d22c29E54
0.00000589 ETH
182535562025-04-22 10:15:2724 hrs ago1745316927
0x4a183b7E...d22c29E54
0.00000712 ETH
182535242025-04-22 10:14:2324 hrs ago1745316863
0x4a183b7E...d22c29E54
0.00000682 ETH
182507092025-04-22 8:40:3325 hrs ago1745311233
0x4a183b7E...d22c29E54
0.000368 ETH
182506232025-04-22 8:37:4125 hrs ago1745311061
0x4a183b7E...d22c29E54
0.00004 ETH
182389002025-04-22 2:06:5532 hrs ago1745287615
0x4a183b7E...d22c29E54
0.00012731 ETH
182352312025-04-22 0:04:3734 hrs ago1745280277
0x4a183b7E...d22c29E54
0.0000076 ETH
182233712025-04-21 17:29:1740 hrs ago1745256557
0x4a183b7E...d22c29E54
0.000008 ETH
182233072025-04-21 17:27:0941 hrs ago1745256429
0x4a183b7E...d22c29E54
0.000048 ETH
182230212025-04-21 17:17:3741 hrs ago1745255857
0x4a183b7E...d22c29E54
0.00105411 ETH
182204852025-04-21 15:53:0542 hrs ago1745250785
0x4a183b7E...d22c29E54
0.00000394 ETH
182149422025-04-21 12:48:1945 hrs ago1745239699
0x4a183b7E...d22c29E54
0.00009813 ETH
182091092025-04-21 9:33:532 days ago1745228033
0x4a183b7E...d22c29E54
0.00000687 ETH
182068182025-04-21 8:17:312 days ago1745223451
0x4a183b7E...d22c29E54
0.000032 ETH
182067912025-04-21 8:16:372 days ago1745223397
0x4a183b7E...d22c29E54
0.00002251 ETH
View All Internal Transactions

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

API
[{"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
Loading...
Loading
Loading...
Loading
[ 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.