@hypercerts-org/marketplace-sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/LICENSE +4 -0
  2. package/LICENSE-APACHE +10 -0
  3. package/LICENSE-MIT +21 -0
  4. package/README.md +101 -0
  5. package/dist/LooksRare.d.ts +223 -0
  6. package/dist/abis/IERC1155.json +276 -0
  7. package/dist/abis/IERC20.json +185 -0
  8. package/dist/abis/IERC721.json +268 -0
  9. package/dist/abis/ILooksRareProtocol.json +677 -0
  10. package/dist/abis/ITransferManager.json +91 -0
  11. package/dist/abis/IWETH.json +46 -0
  12. package/dist/abis/LooksRareProtocol.json +1924 -0
  13. package/dist/abis/OrderValidatorV2A.json +410 -0
  14. package/dist/abis/ProtocolHelpers.json +366 -0
  15. package/dist/abis/TransferManager.json +492 -0
  16. package/dist/abis/WETH.json +361 -0
  17. package/dist/abis/index.d.ts +7 -0
  18. package/dist/abis/index.ts +7 -0
  19. package/dist/constants/addresses.d.ts +7 -0
  20. package/dist/constants/chains.d.ts +4 -0
  21. package/dist/constants/eip712.d.ts +10 -0
  22. package/dist/constants/index.d.ts +14 -0
  23. package/dist/errors.d.ts +30 -0
  24. package/dist/index.cjs.js +5251 -0
  25. package/dist/index.d.ts +45 -0
  26. package/dist/index.esm.js +5229 -0
  27. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/AffiliateManager.d.ts +210 -0
  28. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry.d.ts +35 -0
  29. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties.d.ts +47 -0
  30. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CurrencyManager.d.ts +247 -0
  31. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/ExecutionManager.d.ts +616 -0
  32. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol.d.ts +1005 -0
  33. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/NonceManager.d.ts +148 -0
  34. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/StrategyManager.d.ts +401 -0
  35. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferManager.d.ts +324 -0
  36. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT.d.ts +620 -0
  37. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy.d.ts +97 -0
  38. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer.d.ts +176 -0
  39. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  40. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A.d.ts +172 -0
  41. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers.d.ts +148 -0
  42. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  43. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/index.d.ts +16 -0
  44. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager.d.ts +65 -0
  45. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager.d.ts +47 -0
  46. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager.d.ts +37 -0
  47. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager.d.ts +64 -0
  48. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol.d.ts +343 -0
  49. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager.d.ts +72 -0
  50. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry.d.ts +41 -0
  51. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy.d.ts +97 -0
  52. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager.d.ts +85 -0
  53. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager.d.ts +80 -0
  54. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  55. package/dist/typechain/@looksrare/contracts-exchange-v2/index.d.ts +4 -0
  56. package/dist/typechain/@looksrare/contracts-exchange-v2/test/index.d.ts +2 -0
  57. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry.d.ts +222 -0
  58. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  59. package/dist/typechain/@looksrare/contracts-libs/contracts/OwnableTwoSteps.d.ts +121 -0
  60. package/dist/typechain/@looksrare/contracts-libs/contracts/PackableReentrancyGuard.d.ts +20 -0
  61. package/dist/typechain/@looksrare/contracts-libs/contracts/index.d.ts +4 -0
  62. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps.d.ts +80 -0
  63. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard.d.ts +20 -0
  64. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155.d.ts +224 -0
  65. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271.d.ts +35 -0
  66. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165.d.ts +29 -0
  67. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20.d.ts +129 -0
  68. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981.d.ts +49 -0
  69. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721.d.ts +191 -0
  70. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH.d.ts +43 -0
  71. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  72. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +4 -0
  73. package/dist/typechain/@looksrare/contracts-libs/index.d.ts +2 -0
  74. package/dist/typechain/@looksrare/index.d.ts +4 -0
  75. package/dist/typechain/common.d.ts +50 -0
  76. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/AffiliateManager__factory.d.ts +264 -0
  77. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry__factory.d.ts +48 -0
  78. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties__factory.d.ts +74 -0
  79. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CurrencyManager__factory.d.ts +307 -0
  80. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/ExecutionManager__factory.d.ts +748 -0
  81. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol__factory.d.ts +1527 -0
  82. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/NonceManager__factory.d.ts +174 -0
  83. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/StrategyManager__factory.d.ts +478 -0
  84. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferManager__factory.d.ts +406 -0
  85. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT__factory.d.ts +766 -0
  86. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy__factory.d.ts +100 -0
  87. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer__factory.d.ts +323 -0
  88. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  89. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A__factory.d.ts +338 -0
  90. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers__factory.d.ts +302 -0
  91. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  92. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/index.d.ts +13 -0
  93. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager__factory.d.ts +50 -0
  94. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager__factory.d.ts +51 -0
  95. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager__factory.d.ts +22 -0
  96. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager__factory.d.ts +61 -0
  97. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol__factory.d.ts +540 -0
  98. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager__factory.d.ts +57 -0
  99. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry__factory.d.ts +29 -0
  100. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager__factory.d.ts +88 -0
  101. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy__factory.d.ts +100 -0
  102. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager__factory.d.ts +77 -0
  103. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  104. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/index.d.ts +2 -0
  105. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/index.d.ts +1 -0
  106. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry__factory.d.ts +278 -0
  107. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  108. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/OwnableTwoSteps__factory.d.ts +130 -0
  109. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/PackableReentrancyGuard__factory.d.ts +11 -0
  110. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/index.d.ts +3 -0
  111. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps__factory.d.ts +66 -0
  112. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard__factory.d.ts +11 -0
  113. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155__factory.d.ts +222 -0
  114. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271__factory.d.ts +25 -0
  115. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165__factory.d.ts +21 -0
  116. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20__factory.d.ts +147 -0
  117. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981__factory.d.ts +43 -0
  118. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721__factory.d.ts +213 -0
  119. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH__factory.d.ts +41 -0
  120. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  121. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +3 -0
  122. package/dist/typechain/factories/@looksrare/contracts-libs/index.d.ts +1 -0
  123. package/dist/typechain/factories/@looksrare/index.d.ts +2 -0
  124. package/dist/typechain/factories/index.d.ts +3 -0
  125. package/dist/typechain/factories/solmate/index.d.ts +1 -0
  126. package/dist/typechain/factories/solmate/src/index.d.ts +1 -0
  127. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver__factory.d.ts +67 -0
  128. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155__factory.d.ts +250 -0
  129. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  130. package/dist/typechain/factories/solmate/src/tokens/ERC20__factory.d.ts +235 -0
  131. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver__factory.d.ts +33 -0
  132. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721__factory.d.ts +261 -0
  133. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  134. package/dist/typechain/factories/solmate/src/tokens/WETH__factory.d.ts +299 -0
  135. package/dist/typechain/factories/solmate/src/tokens/index.d.ts +4 -0
  136. package/dist/typechain/factories/src/contracts/index.d.ts +1 -0
  137. package/dist/typechain/factories/src/contracts/tests/MockERC1155__factory.d.ts +283 -0
  138. package/dist/typechain/factories/src/contracts/tests/MockERC721__factory.d.ts +308 -0
  139. package/dist/typechain/factories/src/contracts/tests/Verifier__factory.d.ts +462 -0
  140. package/dist/typechain/factories/src/contracts/tests/index.d.ts +3 -0
  141. package/dist/typechain/factories/src/index.d.ts +1 -0
  142. package/dist/typechain/index.d.ts +97 -0
  143. package/dist/typechain/solmate/index.d.ts +2 -0
  144. package/dist/typechain/solmate/src/index.d.ts +2 -0
  145. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155.d.ts +236 -0
  146. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver.d.ts +67 -0
  147. package/dist/typechain/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  148. package/dist/typechain/solmate/src/tokens/ERC20.d.ts +181 -0
  149. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721.d.ts +211 -0
  150. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver.d.ts +39 -0
  151. package/dist/typechain/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  152. package/dist/typechain/solmate/src/tokens/WETH.d.ts +219 -0
  153. package/dist/typechain/solmate/src/tokens/index.d.ts +6 -0
  154. package/dist/typechain/src/contracts/index.d.ts +2 -0
  155. package/dist/typechain/src/contracts/tests/MockERC1155.d.ts +252 -0
  156. package/dist/typechain/src/contracts/tests/MockERC721.d.ts +219 -0
  157. package/dist/typechain/src/contracts/tests/Verifier.d.ts +174 -0
  158. package/dist/typechain/src/contracts/tests/index.d.ts +3 -0
  159. package/dist/typechain/src/index.d.ts +2 -0
  160. package/dist/types.d.ts +242 -0
  161. package/dist/utils/Eip712MakerMerkleTree.d.ts +10 -0
  162. package/dist/utils/Eip712MerkleTree.d.ts +40 -0
  163. package/dist/utils/calls/exchange.d.ts +10 -0
  164. package/dist/utils/calls/nonces.d.ts +9 -0
  165. package/dist/utils/calls/orderValidator.d.ts +3 -0
  166. package/dist/utils/calls/strategies.d.ts +3 -0
  167. package/dist/utils/calls/tokens.d.ts +6 -0
  168. package/dist/utils/calls/transferManager.d.ts +6 -0
  169. package/dist/utils/eip712.d.ts +12 -0
  170. package/dist/utils/encodeOrderParams.d.ts +22 -0
  171. package/dist/utils/signMakerOrders.d.ts +18 -0
  172. package/package.json +94 -0
@@ -0,0 +1,620 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
3
+ export interface TransferSelectorNFTInterface extends Interface {
4
+ getFunction(nameOrSignature: "MAGIC_VALUE_ORDER_NONCE_EXECUTED" | "addStrategy" | "affiliateController" | "affiliateRates" | "cancelOrderNonces" | "cancelOwnershipTransfer" | "cancelSubsetNonces" | "confirmOwnershipRenouncement" | "confirmOwnershipTransfer" | "creatorFeeManager" | "incrementBidAskNonces" | "initiateOwnershipRenouncement" | "initiateOwnershipTransfer" | "isAffiliateProgramActive" | "isCurrencyAllowed" | "maxCreatorFeeBp" | "owner" | "ownershipStatus" | "potentialOwner" | "protocolFeeRecipient" | "strategyInfo" | "transferManager" | "updateAffiliateController" | "updateAffiliateProgramStatus" | "updateAffiliateRate" | "updateCreatorFeeManager" | "updateCurrencyStatus" | "updateMaxCreatorFeeBp" | "updateProtocolFeeRecipient" | "updateStrategy" | "userBidAskNonces" | "userOrderNonce" | "userSubsetNonce"): FunctionFragment;
5
+ getEvent(nameOrSignatureOrTopic: "CancelOwnershipTransfer" | "CurrencyStatusUpdated" | "InitiateOwnershipRenouncement" | "InitiateOwnershipTransfer" | "NewAffiliateController" | "NewAffiliateProgramStatus" | "NewAffiliateRate" | "NewBidAskNonces" | "NewCreatorFeeManager" | "NewMaxCreatorFeeBp" | "NewOwner" | "NewProtocolFeeRecipient" | "NewStrategy" | "OrderNoncesCancelled" | "StrategyUpdated" | "SubsetNoncesCancelled"): EventFragment;
6
+ encodeFunctionData(functionFragment: "MAGIC_VALUE_ORDER_NONCE_EXECUTED", values?: undefined): string;
7
+ encodeFunctionData(functionFragment: "addStrategy", values: [
8
+ BigNumberish,
9
+ BigNumberish,
10
+ BigNumberish,
11
+ BytesLike,
12
+ boolean,
13
+ AddressLike
14
+ ]): string;
15
+ encodeFunctionData(functionFragment: "affiliateController", values?: undefined): string;
16
+ encodeFunctionData(functionFragment: "affiliateRates", values: [AddressLike]): string;
17
+ encodeFunctionData(functionFragment: "cancelOrderNonces", values: [BigNumberish[]]): string;
18
+ encodeFunctionData(functionFragment: "cancelOwnershipTransfer", values?: undefined): string;
19
+ encodeFunctionData(functionFragment: "cancelSubsetNonces", values: [BigNumberish[]]): string;
20
+ encodeFunctionData(functionFragment: "confirmOwnershipRenouncement", values?: undefined): string;
21
+ encodeFunctionData(functionFragment: "confirmOwnershipTransfer", values?: undefined): string;
22
+ encodeFunctionData(functionFragment: "creatorFeeManager", values?: undefined): string;
23
+ encodeFunctionData(functionFragment: "incrementBidAskNonces", values: [boolean, boolean]): string;
24
+ encodeFunctionData(functionFragment: "initiateOwnershipRenouncement", values?: undefined): string;
25
+ encodeFunctionData(functionFragment: "initiateOwnershipTransfer", values: [AddressLike]): string;
26
+ encodeFunctionData(functionFragment: "isAffiliateProgramActive", values?: undefined): string;
27
+ encodeFunctionData(functionFragment: "isCurrencyAllowed", values: [AddressLike]): string;
28
+ encodeFunctionData(functionFragment: "maxCreatorFeeBp", values?: undefined): string;
29
+ encodeFunctionData(functionFragment: "owner", values?: undefined): string;
30
+ encodeFunctionData(functionFragment: "ownershipStatus", values?: undefined): string;
31
+ encodeFunctionData(functionFragment: "potentialOwner", values?: undefined): string;
32
+ encodeFunctionData(functionFragment: "protocolFeeRecipient", values?: undefined): string;
33
+ encodeFunctionData(functionFragment: "strategyInfo", values: [BigNumberish]): string;
34
+ encodeFunctionData(functionFragment: "transferManager", values?: undefined): string;
35
+ encodeFunctionData(functionFragment: "updateAffiliateController", values: [AddressLike]): string;
36
+ encodeFunctionData(functionFragment: "updateAffiliateProgramStatus", values: [boolean]): string;
37
+ encodeFunctionData(functionFragment: "updateAffiliateRate", values: [AddressLike, BigNumberish]): string;
38
+ encodeFunctionData(functionFragment: "updateCreatorFeeManager", values: [AddressLike]): string;
39
+ encodeFunctionData(functionFragment: "updateCurrencyStatus", values: [AddressLike, boolean]): string;
40
+ encodeFunctionData(functionFragment: "updateMaxCreatorFeeBp", values: [BigNumberish]): string;
41
+ encodeFunctionData(functionFragment: "updateProtocolFeeRecipient", values: [AddressLike]): string;
42
+ encodeFunctionData(functionFragment: "updateStrategy", values: [BigNumberish, boolean, BigNumberish, BigNumberish]): string;
43
+ encodeFunctionData(functionFragment: "userBidAskNonces", values: [AddressLike]): string;
44
+ encodeFunctionData(functionFragment: "userOrderNonce", values: [AddressLike, BigNumberish]): string;
45
+ encodeFunctionData(functionFragment: "userSubsetNonce", values: [AddressLike, BigNumberish]): string;
46
+ decodeFunctionResult(functionFragment: "MAGIC_VALUE_ORDER_NONCE_EXECUTED", data: BytesLike): Result;
47
+ decodeFunctionResult(functionFragment: "addStrategy", data: BytesLike): Result;
48
+ decodeFunctionResult(functionFragment: "affiliateController", data: BytesLike): Result;
49
+ decodeFunctionResult(functionFragment: "affiliateRates", data: BytesLike): Result;
50
+ decodeFunctionResult(functionFragment: "cancelOrderNonces", data: BytesLike): Result;
51
+ decodeFunctionResult(functionFragment: "cancelOwnershipTransfer", data: BytesLike): Result;
52
+ decodeFunctionResult(functionFragment: "cancelSubsetNonces", data: BytesLike): Result;
53
+ decodeFunctionResult(functionFragment: "confirmOwnershipRenouncement", data: BytesLike): Result;
54
+ decodeFunctionResult(functionFragment: "confirmOwnershipTransfer", data: BytesLike): Result;
55
+ decodeFunctionResult(functionFragment: "creatorFeeManager", data: BytesLike): Result;
56
+ decodeFunctionResult(functionFragment: "incrementBidAskNonces", data: BytesLike): Result;
57
+ decodeFunctionResult(functionFragment: "initiateOwnershipRenouncement", data: BytesLike): Result;
58
+ decodeFunctionResult(functionFragment: "initiateOwnershipTransfer", data: BytesLike): Result;
59
+ decodeFunctionResult(functionFragment: "isAffiliateProgramActive", data: BytesLike): Result;
60
+ decodeFunctionResult(functionFragment: "isCurrencyAllowed", data: BytesLike): Result;
61
+ decodeFunctionResult(functionFragment: "maxCreatorFeeBp", data: BytesLike): Result;
62
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
63
+ decodeFunctionResult(functionFragment: "ownershipStatus", data: BytesLike): Result;
64
+ decodeFunctionResult(functionFragment: "potentialOwner", data: BytesLike): Result;
65
+ decodeFunctionResult(functionFragment: "protocolFeeRecipient", data: BytesLike): Result;
66
+ decodeFunctionResult(functionFragment: "strategyInfo", data: BytesLike): Result;
67
+ decodeFunctionResult(functionFragment: "transferManager", data: BytesLike): Result;
68
+ decodeFunctionResult(functionFragment: "updateAffiliateController", data: BytesLike): Result;
69
+ decodeFunctionResult(functionFragment: "updateAffiliateProgramStatus", data: BytesLike): Result;
70
+ decodeFunctionResult(functionFragment: "updateAffiliateRate", data: BytesLike): Result;
71
+ decodeFunctionResult(functionFragment: "updateCreatorFeeManager", data: BytesLike): Result;
72
+ decodeFunctionResult(functionFragment: "updateCurrencyStatus", data: BytesLike): Result;
73
+ decodeFunctionResult(functionFragment: "updateMaxCreatorFeeBp", data: BytesLike): Result;
74
+ decodeFunctionResult(functionFragment: "updateProtocolFeeRecipient", data: BytesLike): Result;
75
+ decodeFunctionResult(functionFragment: "updateStrategy", data: BytesLike): Result;
76
+ decodeFunctionResult(functionFragment: "userBidAskNonces", data: BytesLike): Result;
77
+ decodeFunctionResult(functionFragment: "userOrderNonce", data: BytesLike): Result;
78
+ decodeFunctionResult(functionFragment: "userSubsetNonce", data: BytesLike): Result;
79
+ }
80
+ export declare namespace CancelOwnershipTransferEvent {
81
+ type InputTuple = [];
82
+ type OutputTuple = [];
83
+ interface OutputObject {
84
+ }
85
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
86
+ type Filter = TypedDeferredTopicFilter<Event>;
87
+ type Log = TypedEventLog<Event>;
88
+ type LogDescription = TypedLogDescription<Event>;
89
+ }
90
+ export declare namespace CurrencyStatusUpdatedEvent {
91
+ type InputTuple = [currency: AddressLike, isAllowed: boolean];
92
+ type OutputTuple = [currency: string, isAllowed: boolean];
93
+ interface OutputObject {
94
+ currency: string;
95
+ isAllowed: boolean;
96
+ }
97
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
98
+ type Filter = TypedDeferredTopicFilter<Event>;
99
+ type Log = TypedEventLog<Event>;
100
+ type LogDescription = TypedLogDescription<Event>;
101
+ }
102
+ export declare namespace InitiateOwnershipRenouncementEvent {
103
+ type InputTuple = [];
104
+ type OutputTuple = [];
105
+ interface OutputObject {
106
+ }
107
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
108
+ type Filter = TypedDeferredTopicFilter<Event>;
109
+ type Log = TypedEventLog<Event>;
110
+ type LogDescription = TypedLogDescription<Event>;
111
+ }
112
+ export declare namespace InitiateOwnershipTransferEvent {
113
+ type InputTuple = [
114
+ previousOwner: AddressLike,
115
+ potentialOwner: AddressLike
116
+ ];
117
+ type OutputTuple = [previousOwner: string, potentialOwner: string];
118
+ interface OutputObject {
119
+ previousOwner: string;
120
+ potentialOwner: string;
121
+ }
122
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
123
+ type Filter = TypedDeferredTopicFilter<Event>;
124
+ type Log = TypedEventLog<Event>;
125
+ type LogDescription = TypedLogDescription<Event>;
126
+ }
127
+ export declare namespace NewAffiliateControllerEvent {
128
+ type InputTuple = [affiliateController: AddressLike];
129
+ type OutputTuple = [affiliateController: string];
130
+ interface OutputObject {
131
+ affiliateController: string;
132
+ }
133
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
134
+ type Filter = TypedDeferredTopicFilter<Event>;
135
+ type Log = TypedEventLog<Event>;
136
+ type LogDescription = TypedLogDescription<Event>;
137
+ }
138
+ export declare namespace NewAffiliateProgramStatusEvent {
139
+ type InputTuple = [isActive: boolean];
140
+ type OutputTuple = [isActive: boolean];
141
+ interface OutputObject {
142
+ isActive: boolean;
143
+ }
144
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
145
+ type Filter = TypedDeferredTopicFilter<Event>;
146
+ type Log = TypedEventLog<Event>;
147
+ type LogDescription = TypedLogDescription<Event>;
148
+ }
149
+ export declare namespace NewAffiliateRateEvent {
150
+ type InputTuple = [affiliate: AddressLike, rate: BigNumberish];
151
+ type OutputTuple = [affiliate: string, rate: bigint];
152
+ interface OutputObject {
153
+ affiliate: string;
154
+ rate: bigint;
155
+ }
156
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
157
+ type Filter = TypedDeferredTopicFilter<Event>;
158
+ type Log = TypedEventLog<Event>;
159
+ type LogDescription = TypedLogDescription<Event>;
160
+ }
161
+ export declare namespace NewBidAskNoncesEvent {
162
+ type InputTuple = [
163
+ user: AddressLike,
164
+ bidNonce: BigNumberish,
165
+ askNonce: BigNumberish
166
+ ];
167
+ type OutputTuple = [user: string, bidNonce: bigint, askNonce: bigint];
168
+ interface OutputObject {
169
+ user: string;
170
+ bidNonce: bigint;
171
+ askNonce: bigint;
172
+ }
173
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
174
+ type Filter = TypedDeferredTopicFilter<Event>;
175
+ type Log = TypedEventLog<Event>;
176
+ type LogDescription = TypedLogDescription<Event>;
177
+ }
178
+ export declare namespace NewCreatorFeeManagerEvent {
179
+ type InputTuple = [creatorFeeManager: AddressLike];
180
+ type OutputTuple = [creatorFeeManager: string];
181
+ interface OutputObject {
182
+ creatorFeeManager: string;
183
+ }
184
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
185
+ type Filter = TypedDeferredTopicFilter<Event>;
186
+ type Log = TypedEventLog<Event>;
187
+ type LogDescription = TypedLogDescription<Event>;
188
+ }
189
+ export declare namespace NewMaxCreatorFeeBpEvent {
190
+ type InputTuple = [maxCreatorFeeBp: BigNumberish];
191
+ type OutputTuple = [maxCreatorFeeBp: bigint];
192
+ interface OutputObject {
193
+ maxCreatorFeeBp: bigint;
194
+ }
195
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
196
+ type Filter = TypedDeferredTopicFilter<Event>;
197
+ type Log = TypedEventLog<Event>;
198
+ type LogDescription = TypedLogDescription<Event>;
199
+ }
200
+ export declare namespace NewOwnerEvent {
201
+ type InputTuple = [newOwner: AddressLike];
202
+ type OutputTuple = [newOwner: string];
203
+ interface OutputObject {
204
+ newOwner: string;
205
+ }
206
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
207
+ type Filter = TypedDeferredTopicFilter<Event>;
208
+ type Log = TypedEventLog<Event>;
209
+ type LogDescription = TypedLogDescription<Event>;
210
+ }
211
+ export declare namespace NewProtocolFeeRecipientEvent {
212
+ type InputTuple = [protocolFeeRecipient: AddressLike];
213
+ type OutputTuple = [protocolFeeRecipient: string];
214
+ interface OutputObject {
215
+ protocolFeeRecipient: string;
216
+ }
217
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
218
+ type Filter = TypedDeferredTopicFilter<Event>;
219
+ type Log = TypedEventLog<Event>;
220
+ type LogDescription = TypedLogDescription<Event>;
221
+ }
222
+ export declare namespace NewStrategyEvent {
223
+ type InputTuple = [
224
+ strategyId: BigNumberish,
225
+ standardProtocolFeeBp: BigNumberish,
226
+ minTotalFeeBp: BigNumberish,
227
+ maxProtocolFeeBp: BigNumberish,
228
+ selector: BytesLike,
229
+ isMakerBid: boolean,
230
+ implementation: AddressLike
231
+ ];
232
+ type OutputTuple = [
233
+ strategyId: bigint,
234
+ standardProtocolFeeBp: bigint,
235
+ minTotalFeeBp: bigint,
236
+ maxProtocolFeeBp: bigint,
237
+ selector: string,
238
+ isMakerBid: boolean,
239
+ implementation: string
240
+ ];
241
+ interface OutputObject {
242
+ strategyId: bigint;
243
+ standardProtocolFeeBp: bigint;
244
+ minTotalFeeBp: bigint;
245
+ maxProtocolFeeBp: bigint;
246
+ selector: string;
247
+ isMakerBid: boolean;
248
+ implementation: string;
249
+ }
250
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
251
+ type Filter = TypedDeferredTopicFilter<Event>;
252
+ type Log = TypedEventLog<Event>;
253
+ type LogDescription = TypedLogDescription<Event>;
254
+ }
255
+ export declare namespace OrderNoncesCancelledEvent {
256
+ type InputTuple = [user: AddressLike, orderNonces: BigNumberish[]];
257
+ type OutputTuple = [user: string, orderNonces: bigint[]];
258
+ interface OutputObject {
259
+ user: string;
260
+ orderNonces: bigint[];
261
+ }
262
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
263
+ type Filter = TypedDeferredTopicFilter<Event>;
264
+ type Log = TypedEventLog<Event>;
265
+ type LogDescription = TypedLogDescription<Event>;
266
+ }
267
+ export declare namespace StrategyUpdatedEvent {
268
+ type InputTuple = [
269
+ strategyId: BigNumberish,
270
+ isActive: boolean,
271
+ standardProtocolFeeBp: BigNumberish,
272
+ minTotalFeeBp: BigNumberish
273
+ ];
274
+ type OutputTuple = [
275
+ strategyId: bigint,
276
+ isActive: boolean,
277
+ standardProtocolFeeBp: bigint,
278
+ minTotalFeeBp: bigint
279
+ ];
280
+ interface OutputObject {
281
+ strategyId: bigint;
282
+ isActive: boolean;
283
+ standardProtocolFeeBp: bigint;
284
+ minTotalFeeBp: bigint;
285
+ }
286
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
287
+ type Filter = TypedDeferredTopicFilter<Event>;
288
+ type Log = TypedEventLog<Event>;
289
+ type LogDescription = TypedLogDescription<Event>;
290
+ }
291
+ export declare namespace SubsetNoncesCancelledEvent {
292
+ type InputTuple = [user: AddressLike, subsetNonces: BigNumberish[]];
293
+ type OutputTuple = [user: string, subsetNonces: bigint[]];
294
+ interface OutputObject {
295
+ user: string;
296
+ subsetNonces: bigint[];
297
+ }
298
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
299
+ type Filter = TypedDeferredTopicFilter<Event>;
300
+ type Log = TypedEventLog<Event>;
301
+ type LogDescription = TypedLogDescription<Event>;
302
+ }
303
+ export interface TransferSelectorNFT extends BaseContract {
304
+ connect(runner?: ContractRunner | null): TransferSelectorNFT;
305
+ waitForDeployment(): Promise<this>;
306
+ interface: TransferSelectorNFTInterface;
307
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
308
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
309
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
310
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
311
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
312
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
313
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
314
+ listeners(eventName?: string): Promise<Array<Listener>>;
315
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
316
+ MAGIC_VALUE_ORDER_NONCE_EXECUTED: TypedContractMethod<[], [string], "view">;
317
+ addStrategy: TypedContractMethod<[
318
+ standardProtocolFeeBp: BigNumberish,
319
+ minTotalFeeBp: BigNumberish,
320
+ maxProtocolFeeBp: BigNumberish,
321
+ selector: BytesLike,
322
+ isMakerBid: boolean,
323
+ implementation: AddressLike
324
+ ], [
325
+ void
326
+ ], "nonpayable">;
327
+ affiliateController: TypedContractMethod<[], [string], "view">;
328
+ affiliateRates: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
329
+ cancelOrderNonces: TypedContractMethod<[
330
+ orderNonces: BigNumberish[]
331
+ ], [
332
+ void
333
+ ], "nonpayable">;
334
+ cancelOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
335
+ cancelSubsetNonces: TypedContractMethod<[
336
+ subsetNonces: BigNumberish[]
337
+ ], [
338
+ void
339
+ ], "nonpayable">;
340
+ confirmOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
341
+ confirmOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
342
+ creatorFeeManager: TypedContractMethod<[], [string], "view">;
343
+ incrementBidAskNonces: TypedContractMethod<[
344
+ bid: boolean,
345
+ ask: boolean
346
+ ], [
347
+ void
348
+ ], "nonpayable">;
349
+ initiateOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
350
+ initiateOwnershipTransfer: TypedContractMethod<[
351
+ newPotentialOwner: AddressLike
352
+ ], [
353
+ void
354
+ ], "nonpayable">;
355
+ isAffiliateProgramActive: TypedContractMethod<[], [boolean], "view">;
356
+ isCurrencyAllowed: TypedContractMethod<[
357
+ arg0: AddressLike
358
+ ], [
359
+ boolean
360
+ ], "view">;
361
+ maxCreatorFeeBp: TypedContractMethod<[], [bigint], "view">;
362
+ owner: TypedContractMethod<[], [string], "view">;
363
+ ownershipStatus: TypedContractMethod<[], [bigint], "view">;
364
+ potentialOwner: TypedContractMethod<[], [string], "view">;
365
+ protocolFeeRecipient: TypedContractMethod<[], [string], "view">;
366
+ strategyInfo: TypedContractMethod<[
367
+ arg0: BigNumberish
368
+ ], [
369
+ [
370
+ boolean,
371
+ bigint,
372
+ bigint,
373
+ bigint,
374
+ string,
375
+ boolean,
376
+ string
377
+ ] & {
378
+ isActive: boolean;
379
+ standardProtocolFeeBp: bigint;
380
+ minTotalFeeBp: bigint;
381
+ maxProtocolFeeBp: bigint;
382
+ selector: string;
383
+ isMakerBid: boolean;
384
+ implementation: string;
385
+ }
386
+ ], "view">;
387
+ transferManager: TypedContractMethod<[], [string], "view">;
388
+ updateAffiliateController: TypedContractMethod<[
389
+ newAffiliateController: AddressLike
390
+ ], [
391
+ void
392
+ ], "nonpayable">;
393
+ updateAffiliateProgramStatus: TypedContractMethod<[
394
+ isActive: boolean
395
+ ], [
396
+ void
397
+ ], "nonpayable">;
398
+ updateAffiliateRate: TypedContractMethod<[
399
+ affiliate: AddressLike,
400
+ bp: BigNumberish
401
+ ], [
402
+ void
403
+ ], "nonpayable">;
404
+ updateCreatorFeeManager: TypedContractMethod<[
405
+ newCreatorFeeManager: AddressLike
406
+ ], [
407
+ void
408
+ ], "nonpayable">;
409
+ updateCurrencyStatus: TypedContractMethod<[
410
+ currency: AddressLike,
411
+ isAllowed: boolean
412
+ ], [
413
+ void
414
+ ], "nonpayable">;
415
+ updateMaxCreatorFeeBp: TypedContractMethod<[
416
+ newMaxCreatorFeeBp: BigNumberish
417
+ ], [
418
+ void
419
+ ], "nonpayable">;
420
+ updateProtocolFeeRecipient: TypedContractMethod<[
421
+ newProtocolFeeRecipient: AddressLike
422
+ ], [
423
+ void
424
+ ], "nonpayable">;
425
+ updateStrategy: TypedContractMethod<[
426
+ strategyId: BigNumberish,
427
+ isActive: boolean,
428
+ newStandardProtocolFee: BigNumberish,
429
+ newMinTotalFee: BigNumberish
430
+ ], [
431
+ void
432
+ ], "nonpayable">;
433
+ userBidAskNonces: TypedContractMethod<[
434
+ arg0: AddressLike
435
+ ], [
436
+ [bigint, bigint] & {
437
+ bidNonce: bigint;
438
+ askNonce: bigint;
439
+ }
440
+ ], "view">;
441
+ userOrderNonce: TypedContractMethod<[
442
+ arg0: AddressLike,
443
+ arg1: BigNumberish
444
+ ], [
445
+ string
446
+ ], "view">;
447
+ userSubsetNonce: TypedContractMethod<[
448
+ arg0: AddressLike,
449
+ arg1: BigNumberish
450
+ ], [
451
+ boolean
452
+ ], "view">;
453
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
454
+ getFunction(nameOrSignature: "MAGIC_VALUE_ORDER_NONCE_EXECUTED"): TypedContractMethod<[], [string], "view">;
455
+ getFunction(nameOrSignature: "addStrategy"): TypedContractMethod<[
456
+ standardProtocolFeeBp: BigNumberish,
457
+ minTotalFeeBp: BigNumberish,
458
+ maxProtocolFeeBp: BigNumberish,
459
+ selector: BytesLike,
460
+ isMakerBid: boolean,
461
+ implementation: AddressLike
462
+ ], [
463
+ void
464
+ ], "nonpayable">;
465
+ getFunction(nameOrSignature: "affiliateController"): TypedContractMethod<[], [string], "view">;
466
+ getFunction(nameOrSignature: "affiliateRates"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
467
+ getFunction(nameOrSignature: "cancelOrderNonces"): TypedContractMethod<[orderNonces: BigNumberish[]], [void], "nonpayable">;
468
+ getFunction(nameOrSignature: "cancelOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
469
+ getFunction(nameOrSignature: "cancelSubsetNonces"): TypedContractMethod<[subsetNonces: BigNumberish[]], [void], "nonpayable">;
470
+ getFunction(nameOrSignature: "confirmOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
471
+ getFunction(nameOrSignature: "confirmOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
472
+ getFunction(nameOrSignature: "creatorFeeManager"): TypedContractMethod<[], [string], "view">;
473
+ getFunction(nameOrSignature: "incrementBidAskNonces"): TypedContractMethod<[bid: boolean, ask: boolean], [void], "nonpayable">;
474
+ getFunction(nameOrSignature: "initiateOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
475
+ getFunction(nameOrSignature: "initiateOwnershipTransfer"): TypedContractMethod<[
476
+ newPotentialOwner: AddressLike
477
+ ], [
478
+ void
479
+ ], "nonpayable">;
480
+ getFunction(nameOrSignature: "isAffiliateProgramActive"): TypedContractMethod<[], [boolean], "view">;
481
+ getFunction(nameOrSignature: "isCurrencyAllowed"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
482
+ getFunction(nameOrSignature: "maxCreatorFeeBp"): TypedContractMethod<[], [bigint], "view">;
483
+ getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
484
+ getFunction(nameOrSignature: "ownershipStatus"): TypedContractMethod<[], [bigint], "view">;
485
+ getFunction(nameOrSignature: "potentialOwner"): TypedContractMethod<[], [string], "view">;
486
+ getFunction(nameOrSignature: "protocolFeeRecipient"): TypedContractMethod<[], [string], "view">;
487
+ getFunction(nameOrSignature: "strategyInfo"): TypedContractMethod<[
488
+ arg0: BigNumberish
489
+ ], [
490
+ [
491
+ boolean,
492
+ bigint,
493
+ bigint,
494
+ bigint,
495
+ string,
496
+ boolean,
497
+ string
498
+ ] & {
499
+ isActive: boolean;
500
+ standardProtocolFeeBp: bigint;
501
+ minTotalFeeBp: bigint;
502
+ maxProtocolFeeBp: bigint;
503
+ selector: string;
504
+ isMakerBid: boolean;
505
+ implementation: string;
506
+ }
507
+ ], "view">;
508
+ getFunction(nameOrSignature: "transferManager"): TypedContractMethod<[], [string], "view">;
509
+ getFunction(nameOrSignature: "updateAffiliateController"): TypedContractMethod<[
510
+ newAffiliateController: AddressLike
511
+ ], [
512
+ void
513
+ ], "nonpayable">;
514
+ getFunction(nameOrSignature: "updateAffiliateProgramStatus"): TypedContractMethod<[isActive: boolean], [void], "nonpayable">;
515
+ getFunction(nameOrSignature: "updateAffiliateRate"): TypedContractMethod<[
516
+ affiliate: AddressLike,
517
+ bp: BigNumberish
518
+ ], [
519
+ void
520
+ ], "nonpayable">;
521
+ getFunction(nameOrSignature: "updateCreatorFeeManager"): TypedContractMethod<[
522
+ newCreatorFeeManager: AddressLike
523
+ ], [
524
+ void
525
+ ], "nonpayable">;
526
+ getFunction(nameOrSignature: "updateCurrencyStatus"): TypedContractMethod<[
527
+ currency: AddressLike,
528
+ isAllowed: boolean
529
+ ], [
530
+ void
531
+ ], "nonpayable">;
532
+ getFunction(nameOrSignature: "updateMaxCreatorFeeBp"): TypedContractMethod<[
533
+ newMaxCreatorFeeBp: BigNumberish
534
+ ], [
535
+ void
536
+ ], "nonpayable">;
537
+ getFunction(nameOrSignature: "updateProtocolFeeRecipient"): TypedContractMethod<[
538
+ newProtocolFeeRecipient: AddressLike
539
+ ], [
540
+ void
541
+ ], "nonpayable">;
542
+ getFunction(nameOrSignature: "updateStrategy"): TypedContractMethod<[
543
+ strategyId: BigNumberish,
544
+ isActive: boolean,
545
+ newStandardProtocolFee: BigNumberish,
546
+ newMinTotalFee: BigNumberish
547
+ ], [
548
+ void
549
+ ], "nonpayable">;
550
+ getFunction(nameOrSignature: "userBidAskNonces"): TypedContractMethod<[
551
+ arg0: AddressLike
552
+ ], [
553
+ [bigint, bigint] & {
554
+ bidNonce: bigint;
555
+ askNonce: bigint;
556
+ }
557
+ ], "view">;
558
+ getFunction(nameOrSignature: "userOrderNonce"): TypedContractMethod<[
559
+ arg0: AddressLike,
560
+ arg1: BigNumberish
561
+ ], [
562
+ string
563
+ ], "view">;
564
+ getFunction(nameOrSignature: "userSubsetNonce"): TypedContractMethod<[
565
+ arg0: AddressLike,
566
+ arg1: BigNumberish
567
+ ], [
568
+ boolean
569
+ ], "view">;
570
+ getEvent(key: "CancelOwnershipTransfer"): TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
571
+ getEvent(key: "CurrencyStatusUpdated"): TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
572
+ getEvent(key: "InitiateOwnershipRenouncement"): TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
573
+ getEvent(key: "InitiateOwnershipTransfer"): TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
574
+ getEvent(key: "NewAffiliateController"): TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
575
+ getEvent(key: "NewAffiliateProgramStatus"): TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
576
+ getEvent(key: "NewAffiliateRate"): TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
577
+ getEvent(key: "NewBidAskNonces"): TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
578
+ getEvent(key: "NewCreatorFeeManager"): TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
579
+ getEvent(key: "NewMaxCreatorFeeBp"): TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
580
+ getEvent(key: "NewOwner"): TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
581
+ getEvent(key: "NewProtocolFeeRecipient"): TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
582
+ getEvent(key: "NewStrategy"): TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
583
+ getEvent(key: "OrderNoncesCancelled"): TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
584
+ getEvent(key: "StrategyUpdated"): TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
585
+ getEvent(key: "SubsetNoncesCancelled"): TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
586
+ filters: {
587
+ "CancelOwnershipTransfer()": TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
588
+ CancelOwnershipTransfer: TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
589
+ "CurrencyStatusUpdated(address,bool)": TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
590
+ CurrencyStatusUpdated: TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
591
+ "InitiateOwnershipRenouncement()": TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
592
+ InitiateOwnershipRenouncement: TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
593
+ "InitiateOwnershipTransfer(address,address)": TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
594
+ InitiateOwnershipTransfer: TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
595
+ "NewAffiliateController(address)": TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
596
+ NewAffiliateController: TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
597
+ "NewAffiliateProgramStatus(bool)": TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
598
+ NewAffiliateProgramStatus: TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
599
+ "NewAffiliateRate(address,uint256)": TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
600
+ NewAffiliateRate: TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
601
+ "NewBidAskNonces(address,uint256,uint256)": TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
602
+ NewBidAskNonces: TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
603
+ "NewCreatorFeeManager(address)": TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
604
+ NewCreatorFeeManager: TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
605
+ "NewMaxCreatorFeeBp(uint256)": TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
606
+ NewMaxCreatorFeeBp: TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
607
+ "NewOwner(address)": TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
608
+ NewOwner: TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
609
+ "NewProtocolFeeRecipient(address)": TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
610
+ NewProtocolFeeRecipient: TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
611
+ "NewStrategy(uint256,uint16,uint16,uint16,bytes4,bool,address)": TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
612
+ NewStrategy: TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
613
+ "OrderNoncesCancelled(address,uint256[])": TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
614
+ OrderNoncesCancelled: TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
615
+ "StrategyUpdated(uint256,bool,uint16,uint16)": TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
616
+ StrategyUpdated: TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
617
+ "SubsetNoncesCancelled(address,uint256[])": TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
618
+ SubsetNoncesCancelled: TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
619
+ };
620
+ }