ETH Price: $2,724.06 (+1.01%)

Contract

0x9060C482AB7d1b99504FC7D5f597fF61818B4F77
Transaction Hash
Method
Block
From
To
Exec Transaction85517112023-12-12 21:19:41434 days ago1702415981IN
0x9060C482...1818B4F77
0 ETH0.000373993.74

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
198658602025-02-11 5:10:348 days ago1739250634
0x9060C482...1818B4F77
0 ETH
198641832025-02-11 3:36:438 days ago1739245003
0x9060C482...1818B4F77
0 ETH
198613612025-02-11 1:01:088 days ago1739235668
0x9060C482...1818B4F77
0.00000013 ETH
198534102025-02-10 17:32:558 days ago1739208775
0x9060C482...1818B4F77
0.00000094 ETH
198498282025-02-10 14:06:578 days ago1739196417
0x9060C482...1818B4F77
0.00000169 ETH
198445272025-02-10 9:07:339 days ago1739178453
0x9060C482...1818B4F77
0.00000005 ETH
198391092025-02-10 4:01:299 days ago1739160089
0x9060C482...1818B4F77
0.00000103 ETH
198387792025-02-10 3:43:009 days ago1739158980
0x9060C482...1818B4F77
0.00000008 ETH
198060052025-02-08 21:11:5210 days ago1739049112
0x9060C482...1818B4F77
0.00000401 ETH
197981082025-02-08 13:51:2010 days ago1739022680
0x9060C482...1818B4F77
0.00000036 ETH
197852662025-02-08 1:50:5911 days ago1738979459
0x9060C482...1818B4F77
0 ETH
197694662025-02-07 10:53:0311 days ago1738925583
0x9060C482...1818B4F77
0.00000008 ETH
197604422025-02-07 2:32:4012 days ago1738895560
0x9060C482...1818B4F77
0.00000011 ETH
197399192025-02-06 7:26:1613 days ago1738826776
0x9060C482...1818B4F77
0.00000011 ETH
197348142025-02-06 2:45:0513 days ago1738809905
0x9060C482...1818B4F77
0 ETH
197303422025-02-05 22:36:4713 days ago1738795007
0x9060C482...1818B4F77
0.0000003 ETH
197295142025-02-05 21:49:3513 days ago1738792175
0x9060C482...1818B4F77
0.00000005 ETH
197270152025-02-05 19:30:0413 days ago1738783804
0x9060C482...1818B4F77
0 ETH
197269462025-02-05 19:26:1213 days ago1738783572
0x9060C482...1818B4F77
0.00004719 ETH
197268942025-02-05 19:23:2113 days ago1738783401
0x9060C482...1818B4F77
0.00000001 ETH
197265002025-02-05 19:01:1413 days ago1738782074
0x9060C482...1818B4F77
0.00000334 ETH
197253122025-02-05 17:54:4013 days ago1738778080
0x9060C482...1818B4F77
0.00000223 ETH
197251502025-02-05 17:45:3513 days ago1738777535
0x9060C482...1818B4F77
0.00000006 ETH
197249752025-02-05 17:35:3313 days ago1738776933
0x9060C482...1818B4F77
0.00000088 ETH
197172952025-02-05 10:19:0713 days ago1738750747
0x9060C482...1818B4F77
0.00000002 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5273604B...6e3Dfe715
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
File 1 of 1 : GnosisSafeProxy.sol
// 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())
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Block Transaction Gas Used Reward
view all blocks sequenced

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
Chain Token Portfolio % Price Amount Value
ZKEVM47.68%$2,719.280.5331$1,449.75
ZKEVM
Ether (ETH)
17.39%$2,724.060.1941$528.66
ZKEVM16.76%$0.999945509.7851$509.76
ZKEVM5.42%$95,5720.0017237$164.74
ZKEVM4.32%$0.999945131.4258$131.42
ZKEVM3.66%$0.99966111.1965$111.16
ZKEVM2.75%$0.305257273.956$83.63
ZKEVM0.67%$0.99983920.3682$20.36
ZKEVM0.45%$17.920.7699$13.8
ZKEVM0.40%$253.640.0481$12.19
ZKEVM0.13%$0.5025828.1603$4.1
ZKEVM0.13%$0.30488113.1997$4.02
ZKEVM0.12%$2,713.650.00140025$3.8
ZKEVM0.05%$0.9957391.4024$1.4
ZKEVM0.04%$0.9907891.2645$1.25
ZKEVM0.03%$0.3503752.3113$0.8098
[ 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.