ETH Price: $2,523.03 (-0.56%)

Transaction Decoder

Block:
22537318 at May-22-2025 08:47:59 AM +UTC
Transaction Fee:
0.00096673010615016 ETH $2.44
Gas Used:
305,520 Gas / 3.164212183 Gwei

Emitted Events:

318 GnosisSafeProxy.0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8( 0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8, 0x000000000000000000000000a6b71e26c5e0845f74c812102ca7114b6a896ab2, 0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000002, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4, 0000000000000000000000000000000000000000000000000000000000000003, 00000000000000000000000022cf0e02517e5a531ca0e65dd91afff515ad68cb, 00000000000000000000000043d882ac90eed8d4b2d8a54c5279de379efea54a, 00000000000000000000000010b40fe6ea86b079af22a2f12216438856fb9657 )
319 GnosisSafeProxyFactory.ProxyCreation( proxy=GnosisSafeProxy, singleton=GnosisSafeL2 )

Account State Difference:

  Address   Before After State Difference Code
0x10b40FE6...856fb9657
(Fee Recipient: 0x10b...657)
0.003707285785465091 Eth
Nonce: 129
0.002740555679314931 Eth
Nonce: 130
0.00096673010615016
(Titan Builder)
12.707726779095288098 Eth12.707823637280261378 Eth0.00009685818497328
0xa6B71E26...b6a896AB2
(Safe: Proxy Factory 1.3.0 Default)
0xF0c1A4E2...1eA5bBD15
0 Eth
Nonce: 0
0 Eth
Nonce: 1
From: 0 To: 2428443625105081582559204222041278247441700609795002665090055939283027467997641458691785997361476925183291499207336642763346590243745492380720635885219447537792976952551989114034525862470838559734956624223602344484460523390253307270174272155235234202969395821539804621800291071303890788251503181826836738595692199058491516848780521398593510200695595558485912431339701413565763187183244164254117324631184440164403

Execution Trace

GnosisSafeProxyFactory.createProxyWithNonce( _singleton=0x3E5c63644E683549055b9Be8653de26E0B4CD36E, initializer=0xB63E800D0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000F48F2B2D2A534E402487B3EE7C18C33AEC0FE5E4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000022CF0E02517E5A531CA0E65DD91AFFF515AD68CB00000000000000000000000043D882AC90EED8D4B2D8A54C5279DE379EFEA54A00000000000000000000000010B40FE6EA86B079AF22A2F12216438856FB96570000000000000000000000000000000000000000000000000000000000000000, saltNonce=0 ) => ( proxy=0xF0c1A4E24E5993982aCCAEF1374889a1eA5bBD15 )
  • GnosisSafeProxy.60806040( )
  • GnosisSafeProxy.b63e800d( )
    • GnosisSafeL2.setup( _owners=[0x22CF0e02517e5a531Ca0E65dd91aFFf515AD68cb, 0x43d882aC90eEd8D4B2D8A54c5279de379eFea54a, 0x10b40FE6EA86B079aF22A2F12216438856fb9657], _threshold=2, to=0x0000000000000000000000000000000000000000, data=0x, fallbackHandler=0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4, paymentToken=0x0000000000000000000000000000000000000000, payment=0, paymentReceiver=0x0000000000000000000000000000000000000000 )
      File 1 of 3: GnosisSafeProxyFactory
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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 - <richard@gnosis.io>
      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 - <stefan@gnosis.io>
      /// @author Richard Meissner - <richard@gnosis.io>
      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.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: GnosisSafeProxy
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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 - <richard@gnosis.io>
      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 - <stefan@gnosis.io>
      /// @author Richard Meissner - <richard@gnosis.io>
      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;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: GnosisSafeL2
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: LGPL-3.0-only
      pragma solidity >=0.7.0 <0.9.0;
      import "./base/ModuleManager.sol";
      import "./base/OwnerManager.sol";
      import "./base/FallbackManager.sol";
      import "./base/GuardManager.sol";
      import "./common/EtherPaymentFallback.sol";
      import "./common/Singleton.sol";
      import "./common/SignatureDecoder.sol";
      import "./common/SecuredTokenTransfer.sol";
      import "./common/StorageAccessible.sol";
      import "./interfaces/ISignatureValidator.sol";
      import "./external/GnosisSafeMath.sol";
      /// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191.
      /// @author Stefan George - <stefan@gnosis.io>
      /// @author Richard Meissner - <richard@gnosis.io>
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX