ETH Price: $2,538.61 (-0.60%)

Transaction Decoder

Block:
16925049 at Mar-28-2023 09:49:23 AM +UTC
Transaction Fee:
0.003645196342240572 ETH $9.25
Gas Used:
138,972 Gas / 26.229717801 Gwei

Emitted Events:

192 ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x00000000000000000000000052d9ac072c5456d9547d73e5138b8395dbcb4614, 0x000000000000000000000000000000000000000000000000000000000000bdd0 )
193 GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000002bd938cf96430b7b0879f76b010b589aeec2127c, 00000000000000000000000000000000000000000000000000031742a8f46000 )
194 ERC1967Proxy.0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f( 0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f, 00000000000000000000000052d9ac072c5456d9547d73e5138b8395dbcb4614, 0000000000000000000000000000000000000000000000000000000000000002, 0000000000000000000000000000000000000000000000000000000000000001 )

Account State Difference:

  Address   Before After State Difference Code
0x2Bd938Cf...aeEc2127C
0x52D9AC07...5DBCB4614
0.008217833626669157 Eth
Nonce: 107
0.003702637284428585 Eth
Nonce: 108
0.004515196342240572
0xC5A2f45f...6E187d8C0 48.2393242 Eth48.2401942 Eth0.00087
(Flashbots: Builder)
1.200478586450043818 Eth1.200492483650043818 Eth0.0000138972

Execution Trace

ETH 0.00087 ERC1967Proxy.2955a21d( )
  • ETH 0.00087 FairxyzPolygonzkEVM.mint( signature=0xEDEE55979EBBB8E0108A011B37BC4C47CDD91FFD9C8D54154B9FAB37CE9B1D260DFBDFD6AF6C0B1AC222CE2EBD4D1485F6B96EE74A174300EFEC005F1ECA11321C, nonce=16925047, numberOfTokens=1, maxMintsPerWallet=0, recipient=0x52D9AC072C5456D9547d73e5138b8395DBCB4614 )
    • Null: 0x000...001.4b9aa27d( )
    • 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