ETH Price: $3,935.72 (-1.42%)

Contract

0x1890F9204882dfa1B8f0AEaF56ae9b2ed149D18d

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction493650452024-11-20 4:40:3418 days ago1732077634IN
0x1890F920...ed149D18d
0 ETH0.000037340.047
Exec Transaction492627962024-11-18 19:43:4020 days ago1731959020IN
0x1890F920...ed149D18d
0 ETH0.000009540.047
Exec Transaction492627762024-11-18 19:43:2020 days ago1731959000IN
0x1890F920...ed149D18d
0 ETH0.000013240.047
Exec Transaction492626792024-11-18 19:41:4120 days ago1731958901IN
0x1890F920...ed149D18d
0 ETH0.000015050.047
Exec Transaction475878572024-10-28 10:48:3741 days ago1730112517IN
0x1890F920...ed149D18d
0 ETH0.00000620.047
Exec Transaction475875842024-10-28 10:43:3741 days ago1730112217IN
0x1890F920...ed149D18d
0 ETH0.000013880.047
Exec Transaction394394642024-07-18 20:15:56143 days ago1721333756IN
0x1890F920...ed149D18d
0 ETH0.000005670.04525
Exec Transaction394389662024-07-18 20:07:17143 days ago1721333237IN
0x1890F920...ed149D18d
0 ETH0.000012430.04525
Exec Transaction394389292024-07-18 20:06:39143 days ago1721333199IN
0x1890F920...ed149D18d
0 ETH0.000008570.04525
Exec Transaction366396152024-06-15 11:47:20176 days ago1718452040IN
0x1890F920...ed149D18d
0 ETH0.000003740.025
Exec Transaction366388392024-06-15 11:34:05176 days ago1718451245IN
0x1890F920...ed149D18d
0 ETH0.000003230.025
Exec Transaction366387692024-06-15 11:32:55176 days ago1718451175IN
0x1890F920...ed149D18d
0 ETH0.000004890.025
Exec Transaction362637902024-06-10 22:59:05181 days ago1718060345IN
0x1890F920...ed149D18d
0 ETH0.000004890.025
Exec Transaction362636162024-06-10 22:56:10181 days ago1718060170IN
0x1890F920...ed149D18d
0 ETH0.00001130.025
Exec Transaction340788262024-05-15 21:21:49207 days ago1715808109IN
0x1890F920...ed149D18d
0 ETH0.000005310.025
Exec Transaction340786032024-05-15 21:18:06207 days ago1715807886IN
0x1890F920...ed149D18d
0 ETH0.000010350.025
Exec Transaction340770282024-05-15 20:51:22207 days ago1715806282IN
0x1890F920...ed149D18d
0 ETH0.000006420.025
Exec Transaction300804062024-03-28 12:59:35255 days ago1711630775IN
0x1890F920...ed149D18d
0 ETH0.000007450.025
Exec Transaction300766092024-03-28 11:52:28255 days ago1711626748IN0 ETH0.000374820.025
Exec Transaction300761772024-03-28 11:44:49255 days ago1711626289IN0 ETH0.000381480.025
Exec Transaction295623842024-03-22 3:56:19261 days ago1711079779IN
0x1890F920...ed149D18d
0 ETH0.000019930.025
Exec Transaction279166242024-03-02 3:28:31282 days ago1709350111IN
0x1890F920...ed149D18d
0 ETH0.000064650.1
Exec Transaction279165362024-03-02 3:27:03282 days ago1709350023IN
0x1890F920...ed149D18d
0 ETH0.000092990.1
Exec Transaction263592992024-02-11 21:42:16301 days ago1707687736IN
0x1890F920...ed149D18d
0 ETH0.000085910.1
Exec Transaction263592442024-02-11 21:41:15301 days ago1707687675IN
0x1890F920...ed149D18d
0 ETH0.000101580.1
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
137196722023-09-13 4:28:03452 days ago1694579283  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x605c6cb4...71bdb23D9
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

ZkSolc Version
v1.3.8

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
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
{
  "compilerPath": "",
  "experimental": {},
  "isSystem": true,
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x000400000000000200000000030100190000006003300270000000360430019700030000004103550002000000010355000000360030019d000100000000001f0000008001000039000000400010043f0000000101200190000000150000c13d000000000100041a00000037021001970000000201000367000000000301043b0000003d0330009c000000590000c13d00000000002004350000003e01000041000000d20001042e0000000001000416000000000110004c000000570000c13d0000000203000367000000400100043d00000000020000310000001f0420018f0000000505200272000000270000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b0000001f0000413d000000000640004c000000360000613d0000000505500210000000000353034f00000000055100190000000304400210000000000605043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003120019000000400030043f000000200220008c000000570000413d00000000010104330000003701100198000000bd0000c13d00000064013000390000003a02000041000000000021043500000044013000390000003b0200004100000000002104350000002401300039000000220200003900000000002104350000003c010000410000000000130435000000040130003900000020020000390000000000210435000000400100043d000000000213004900000084022000390000003603000041000000360420009c0000000002038019000000360410009c000000000103801900000040011002100000006002200210000000000112019f000000d3000104300000000001000019000000d30001043000000000030000310000001f0430018f0000000503300272000000650000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b0000005e0000413d000000000540004c000000730000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000000010000310000000003000414000000040420008c000000930000c13d000000030100036700000001020000310000001f0320018f0000000502200272000000840000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b0000007d0000413d000000000430004c000000ba0000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000ba0000013d0000003604000041000000360530009c0000000003048019000000c0033002100000006001100210000000000113001900d100cc0000040f0003000000010355000000000301001900000060043002700000001f0340018f000100360040019d00000036044001970000000504400272000000aa0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000000a30000413d000000000530004c000000b80000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000000c60000613d000000600100003900000001011001ff000000d20001042e000000000200041a0000003802200197000000000112019f000000000010041b0000002001000039000001000010044300000120000004430000003901000041000000d20001042e00000036010000410000000102000031000000360320009c00000000010240190000006001100210000000d300010430000000cf002104250000000102000039000000000001042d0000000002000019000000000001042d000000d100000432000000d20001042e000000d300010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000002000000000000000000000000000000400000010000000000000000006564000000000000000000000000000000000000000000000000000000000000496e76616c69642073696e676c65746f6e20616464726573732070726f76696408c379a000000000000000000000000000000000000000000000000000000000a619486e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000acbe897875bb4f3e88089713fab44968f091fdeb912d0afadd2fe5700e4e0cc6

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.