ETH Price: $2,515.99 (-1.56%)

Transaction Decoder

Block:
16963145 at Apr-02-2023 06:21:35 PM +UTC
Transaction Fee:
0.002659389007573584 ETH $6.69
Gas Used:
138,996 Gas / 19.132845604 Gwei

Emitted Events:

155 ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x00000000000000000000000068f697130e9626d1ccbaabde9a19a2789492071b, 0x000000000000000000000000000000000000000000000000000000000002615f )
156 GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000002bd938cf96430b7b0879f76b010b589aeec2127c, 00000000000000000000000000000000000000000000000000031742a8f46000 )
157 ERC1967Proxy.0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f( 0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f, 00000000000000000000000068f697130e9626d1ccbaabde9a19a2789492071b, 0000000000000000000000000000000000000000000000000000000000000002, 0000000000000000000000000000000000000000000000000000000000000001 )

Account State Difference:

  Address   Before After State Difference Code
0x2Bd938Cf...aeEc2127C
0x68F69713...89492071b
0.01194835958298164 Eth
Nonce: 45
0.008418970575408056 Eth
Nonce: 46
0.003529389007573584
0xC5A2f45f...6E187d8C0 144.8753684425 Eth144.8762384425 Eth0.00087
(Fee Recipient: 0xE1...91b)
8.636450404679225253 Eth8.636464304279225253 Eth0.0000138996

Execution Trace

ETH 0.00087 ERC1967Proxy.2955a21d( )
  • ETH 0.00087 FairxyzPolygonzkEVM.mint( signature=0x8DDBFBAF40F87C650BC5C501FD9980A80DC229439FE45DD66D705E9D25E8D1163DFBE8F3EF56305EAF7AFDC067D643AC9A9FD0A0DEF396A06CDC60D2932CBC611B, nonce=16963142, numberOfTokens=1, maxMintsPerWallet=0, recipient=0x68F697130E9626d1cCBAaBde9a19a2789492071b )
    • Null: 0x000...001.d72e3614( )
    • ETH 0.00087 GnosisSafeProxy.CALL( )
      • ETH 0.00087 GnosisSafe.DELEGATECALL( )
        File 1 of 4: ERC1967Proxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)
        pragma solidity 0.8.17;
        import "Proxy.sol";
        import "ERC1967Upgrade.sol";
        /**
        * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
        * implementation address that can be changed. This address is stored in storage in the location specified by
        * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
        * implementation behind the proxy.
        */
        contract ERC1967Proxy is Proxy, ERC1967Upgrade {
        /**
        * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
        *
        * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 4: 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 4: FairxyzPolygonzkEVM
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        // @author: Fair.xyz dev
        // A love letter to Ethereum
        pragma solidity 0.8.17;
        import "ERC721xyzUpgradeable.sol";
        import "FairXYZDeployerErrorsAndEvents.sol";
        import "IFairXYZWallets.sol";
        import "AccessControlUpgradeable.sol";
        import "OwnableUpgradeable.sol";
        import "ReentrancyGuardUpgradeable.sol";
        import "ECDSAUpgradeable.sol";
        import "MerkleProofUpgradeable.sol";
        import "UUPSUpgradeable.sol";
        contract FairxyzPolygonzkEVM is
        ERC721xyzUpgradeable,
        AccessControlUpgradeable,
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 4: GnosisSafe
        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