@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,616 @@
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 ExecutionManagerInterface 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" | "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: "updateAffiliateController", values: [AddressLike]): string;
35
+ encodeFunctionData(functionFragment: "updateAffiliateProgramStatus", values: [boolean]): string;
36
+ encodeFunctionData(functionFragment: "updateAffiliateRate", values: [AddressLike, BigNumberish]): string;
37
+ encodeFunctionData(functionFragment: "updateCreatorFeeManager", values: [AddressLike]): string;
38
+ encodeFunctionData(functionFragment: "updateCurrencyStatus", values: [AddressLike, boolean]): string;
39
+ encodeFunctionData(functionFragment: "updateMaxCreatorFeeBp", values: [BigNumberish]): string;
40
+ encodeFunctionData(functionFragment: "updateProtocolFeeRecipient", values: [AddressLike]): string;
41
+ encodeFunctionData(functionFragment: "updateStrategy", values: [BigNumberish, boolean, BigNumberish, BigNumberish]): string;
42
+ encodeFunctionData(functionFragment: "userBidAskNonces", values: [AddressLike]): string;
43
+ encodeFunctionData(functionFragment: "userOrderNonce", values: [AddressLike, BigNumberish]): string;
44
+ encodeFunctionData(functionFragment: "userSubsetNonce", values: [AddressLike, BigNumberish]): string;
45
+ decodeFunctionResult(functionFragment: "MAGIC_VALUE_ORDER_NONCE_EXECUTED", data: BytesLike): Result;
46
+ decodeFunctionResult(functionFragment: "addStrategy", data: BytesLike): Result;
47
+ decodeFunctionResult(functionFragment: "affiliateController", data: BytesLike): Result;
48
+ decodeFunctionResult(functionFragment: "affiliateRates", data: BytesLike): Result;
49
+ decodeFunctionResult(functionFragment: "cancelOrderNonces", data: BytesLike): Result;
50
+ decodeFunctionResult(functionFragment: "cancelOwnershipTransfer", data: BytesLike): Result;
51
+ decodeFunctionResult(functionFragment: "cancelSubsetNonces", data: BytesLike): Result;
52
+ decodeFunctionResult(functionFragment: "confirmOwnershipRenouncement", data: BytesLike): Result;
53
+ decodeFunctionResult(functionFragment: "confirmOwnershipTransfer", data: BytesLike): Result;
54
+ decodeFunctionResult(functionFragment: "creatorFeeManager", data: BytesLike): Result;
55
+ decodeFunctionResult(functionFragment: "incrementBidAskNonces", data: BytesLike): Result;
56
+ decodeFunctionResult(functionFragment: "initiateOwnershipRenouncement", data: BytesLike): Result;
57
+ decodeFunctionResult(functionFragment: "initiateOwnershipTransfer", data: BytesLike): Result;
58
+ decodeFunctionResult(functionFragment: "isAffiliateProgramActive", data: BytesLike): Result;
59
+ decodeFunctionResult(functionFragment: "isCurrencyAllowed", data: BytesLike): Result;
60
+ decodeFunctionResult(functionFragment: "maxCreatorFeeBp", data: BytesLike): Result;
61
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
62
+ decodeFunctionResult(functionFragment: "ownershipStatus", data: BytesLike): Result;
63
+ decodeFunctionResult(functionFragment: "potentialOwner", data: BytesLike): Result;
64
+ decodeFunctionResult(functionFragment: "protocolFeeRecipient", data: BytesLike): Result;
65
+ decodeFunctionResult(functionFragment: "strategyInfo", data: BytesLike): Result;
66
+ decodeFunctionResult(functionFragment: "updateAffiliateController", data: BytesLike): Result;
67
+ decodeFunctionResult(functionFragment: "updateAffiliateProgramStatus", data: BytesLike): Result;
68
+ decodeFunctionResult(functionFragment: "updateAffiliateRate", data: BytesLike): Result;
69
+ decodeFunctionResult(functionFragment: "updateCreatorFeeManager", data: BytesLike): Result;
70
+ decodeFunctionResult(functionFragment: "updateCurrencyStatus", data: BytesLike): Result;
71
+ decodeFunctionResult(functionFragment: "updateMaxCreatorFeeBp", data: BytesLike): Result;
72
+ decodeFunctionResult(functionFragment: "updateProtocolFeeRecipient", data: BytesLike): Result;
73
+ decodeFunctionResult(functionFragment: "updateStrategy", data: BytesLike): Result;
74
+ decodeFunctionResult(functionFragment: "userBidAskNonces", data: BytesLike): Result;
75
+ decodeFunctionResult(functionFragment: "userOrderNonce", data: BytesLike): Result;
76
+ decodeFunctionResult(functionFragment: "userSubsetNonce", data: BytesLike): Result;
77
+ }
78
+ export declare namespace CancelOwnershipTransferEvent {
79
+ type InputTuple = [];
80
+ type OutputTuple = [];
81
+ interface OutputObject {
82
+ }
83
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
84
+ type Filter = TypedDeferredTopicFilter<Event>;
85
+ type Log = TypedEventLog<Event>;
86
+ type LogDescription = TypedLogDescription<Event>;
87
+ }
88
+ export declare namespace CurrencyStatusUpdatedEvent {
89
+ type InputTuple = [currency: AddressLike, isAllowed: boolean];
90
+ type OutputTuple = [currency: string, isAllowed: boolean];
91
+ interface OutputObject {
92
+ currency: string;
93
+ isAllowed: boolean;
94
+ }
95
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
96
+ type Filter = TypedDeferredTopicFilter<Event>;
97
+ type Log = TypedEventLog<Event>;
98
+ type LogDescription = TypedLogDescription<Event>;
99
+ }
100
+ export declare namespace InitiateOwnershipRenouncementEvent {
101
+ type InputTuple = [];
102
+ type OutputTuple = [];
103
+ interface OutputObject {
104
+ }
105
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
106
+ type Filter = TypedDeferredTopicFilter<Event>;
107
+ type Log = TypedEventLog<Event>;
108
+ type LogDescription = TypedLogDescription<Event>;
109
+ }
110
+ export declare namespace InitiateOwnershipTransferEvent {
111
+ type InputTuple = [
112
+ previousOwner: AddressLike,
113
+ potentialOwner: AddressLike
114
+ ];
115
+ type OutputTuple = [previousOwner: string, potentialOwner: string];
116
+ interface OutputObject {
117
+ previousOwner: string;
118
+ potentialOwner: string;
119
+ }
120
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
121
+ type Filter = TypedDeferredTopicFilter<Event>;
122
+ type Log = TypedEventLog<Event>;
123
+ type LogDescription = TypedLogDescription<Event>;
124
+ }
125
+ export declare namespace NewAffiliateControllerEvent {
126
+ type InputTuple = [affiliateController: AddressLike];
127
+ type OutputTuple = [affiliateController: string];
128
+ interface OutputObject {
129
+ affiliateController: string;
130
+ }
131
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
132
+ type Filter = TypedDeferredTopicFilter<Event>;
133
+ type Log = TypedEventLog<Event>;
134
+ type LogDescription = TypedLogDescription<Event>;
135
+ }
136
+ export declare namespace NewAffiliateProgramStatusEvent {
137
+ type InputTuple = [isActive: boolean];
138
+ type OutputTuple = [isActive: boolean];
139
+ interface OutputObject {
140
+ isActive: boolean;
141
+ }
142
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
143
+ type Filter = TypedDeferredTopicFilter<Event>;
144
+ type Log = TypedEventLog<Event>;
145
+ type LogDescription = TypedLogDescription<Event>;
146
+ }
147
+ export declare namespace NewAffiliateRateEvent {
148
+ type InputTuple = [affiliate: AddressLike, rate: BigNumberish];
149
+ type OutputTuple = [affiliate: string, rate: bigint];
150
+ interface OutputObject {
151
+ affiliate: string;
152
+ rate: bigint;
153
+ }
154
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
155
+ type Filter = TypedDeferredTopicFilter<Event>;
156
+ type Log = TypedEventLog<Event>;
157
+ type LogDescription = TypedLogDescription<Event>;
158
+ }
159
+ export declare namespace NewBidAskNoncesEvent {
160
+ type InputTuple = [
161
+ user: AddressLike,
162
+ bidNonce: BigNumberish,
163
+ askNonce: BigNumberish
164
+ ];
165
+ type OutputTuple = [user: string, bidNonce: bigint, askNonce: bigint];
166
+ interface OutputObject {
167
+ user: string;
168
+ bidNonce: bigint;
169
+ askNonce: bigint;
170
+ }
171
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
172
+ type Filter = TypedDeferredTopicFilter<Event>;
173
+ type Log = TypedEventLog<Event>;
174
+ type LogDescription = TypedLogDescription<Event>;
175
+ }
176
+ export declare namespace NewCreatorFeeManagerEvent {
177
+ type InputTuple = [creatorFeeManager: AddressLike];
178
+ type OutputTuple = [creatorFeeManager: string];
179
+ interface OutputObject {
180
+ creatorFeeManager: string;
181
+ }
182
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
183
+ type Filter = TypedDeferredTopicFilter<Event>;
184
+ type Log = TypedEventLog<Event>;
185
+ type LogDescription = TypedLogDescription<Event>;
186
+ }
187
+ export declare namespace NewMaxCreatorFeeBpEvent {
188
+ type InputTuple = [maxCreatorFeeBp: BigNumberish];
189
+ type OutputTuple = [maxCreatorFeeBp: bigint];
190
+ interface OutputObject {
191
+ maxCreatorFeeBp: bigint;
192
+ }
193
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
194
+ type Filter = TypedDeferredTopicFilter<Event>;
195
+ type Log = TypedEventLog<Event>;
196
+ type LogDescription = TypedLogDescription<Event>;
197
+ }
198
+ export declare namespace NewOwnerEvent {
199
+ type InputTuple = [newOwner: AddressLike];
200
+ type OutputTuple = [newOwner: string];
201
+ interface OutputObject {
202
+ newOwner: string;
203
+ }
204
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
205
+ type Filter = TypedDeferredTopicFilter<Event>;
206
+ type Log = TypedEventLog<Event>;
207
+ type LogDescription = TypedLogDescription<Event>;
208
+ }
209
+ export declare namespace NewProtocolFeeRecipientEvent {
210
+ type InputTuple = [protocolFeeRecipient: AddressLike];
211
+ type OutputTuple = [protocolFeeRecipient: string];
212
+ interface OutputObject {
213
+ protocolFeeRecipient: string;
214
+ }
215
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
216
+ type Filter = TypedDeferredTopicFilter<Event>;
217
+ type Log = TypedEventLog<Event>;
218
+ type LogDescription = TypedLogDescription<Event>;
219
+ }
220
+ export declare namespace NewStrategyEvent {
221
+ type InputTuple = [
222
+ strategyId: BigNumberish,
223
+ standardProtocolFeeBp: BigNumberish,
224
+ minTotalFeeBp: BigNumberish,
225
+ maxProtocolFeeBp: BigNumberish,
226
+ selector: BytesLike,
227
+ isMakerBid: boolean,
228
+ implementation: AddressLike
229
+ ];
230
+ type OutputTuple = [
231
+ strategyId: bigint,
232
+ standardProtocolFeeBp: bigint,
233
+ minTotalFeeBp: bigint,
234
+ maxProtocolFeeBp: bigint,
235
+ selector: string,
236
+ isMakerBid: boolean,
237
+ implementation: string
238
+ ];
239
+ interface OutputObject {
240
+ strategyId: bigint;
241
+ standardProtocolFeeBp: bigint;
242
+ minTotalFeeBp: bigint;
243
+ maxProtocolFeeBp: bigint;
244
+ selector: string;
245
+ isMakerBid: boolean;
246
+ implementation: string;
247
+ }
248
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
249
+ type Filter = TypedDeferredTopicFilter<Event>;
250
+ type Log = TypedEventLog<Event>;
251
+ type LogDescription = TypedLogDescription<Event>;
252
+ }
253
+ export declare namespace OrderNoncesCancelledEvent {
254
+ type InputTuple = [user: AddressLike, orderNonces: BigNumberish[]];
255
+ type OutputTuple = [user: string, orderNonces: bigint[]];
256
+ interface OutputObject {
257
+ user: string;
258
+ orderNonces: bigint[];
259
+ }
260
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
261
+ type Filter = TypedDeferredTopicFilter<Event>;
262
+ type Log = TypedEventLog<Event>;
263
+ type LogDescription = TypedLogDescription<Event>;
264
+ }
265
+ export declare namespace StrategyUpdatedEvent {
266
+ type InputTuple = [
267
+ strategyId: BigNumberish,
268
+ isActive: boolean,
269
+ standardProtocolFeeBp: BigNumberish,
270
+ minTotalFeeBp: BigNumberish
271
+ ];
272
+ type OutputTuple = [
273
+ strategyId: bigint,
274
+ isActive: boolean,
275
+ standardProtocolFeeBp: bigint,
276
+ minTotalFeeBp: bigint
277
+ ];
278
+ interface OutputObject {
279
+ strategyId: bigint;
280
+ isActive: boolean;
281
+ standardProtocolFeeBp: bigint;
282
+ minTotalFeeBp: bigint;
283
+ }
284
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
285
+ type Filter = TypedDeferredTopicFilter<Event>;
286
+ type Log = TypedEventLog<Event>;
287
+ type LogDescription = TypedLogDescription<Event>;
288
+ }
289
+ export declare namespace SubsetNoncesCancelledEvent {
290
+ type InputTuple = [user: AddressLike, subsetNonces: BigNumberish[]];
291
+ type OutputTuple = [user: string, subsetNonces: bigint[]];
292
+ interface OutputObject {
293
+ user: string;
294
+ subsetNonces: bigint[];
295
+ }
296
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
297
+ type Filter = TypedDeferredTopicFilter<Event>;
298
+ type Log = TypedEventLog<Event>;
299
+ type LogDescription = TypedLogDescription<Event>;
300
+ }
301
+ export interface ExecutionManager extends BaseContract {
302
+ connect(runner?: ContractRunner | null): ExecutionManager;
303
+ waitForDeployment(): Promise<this>;
304
+ interface: ExecutionManagerInterface;
305
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
306
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
307
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
308
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
309
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
310
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
311
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
312
+ listeners(eventName?: string): Promise<Array<Listener>>;
313
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
314
+ MAGIC_VALUE_ORDER_NONCE_EXECUTED: TypedContractMethod<[], [string], "view">;
315
+ addStrategy: TypedContractMethod<[
316
+ standardProtocolFeeBp: BigNumberish,
317
+ minTotalFeeBp: BigNumberish,
318
+ maxProtocolFeeBp: BigNumberish,
319
+ selector: BytesLike,
320
+ isMakerBid: boolean,
321
+ implementation: AddressLike
322
+ ], [
323
+ void
324
+ ], "nonpayable">;
325
+ affiliateController: TypedContractMethod<[], [string], "view">;
326
+ affiliateRates: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
327
+ cancelOrderNonces: TypedContractMethod<[
328
+ orderNonces: BigNumberish[]
329
+ ], [
330
+ void
331
+ ], "nonpayable">;
332
+ cancelOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
333
+ cancelSubsetNonces: TypedContractMethod<[
334
+ subsetNonces: BigNumberish[]
335
+ ], [
336
+ void
337
+ ], "nonpayable">;
338
+ confirmOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
339
+ confirmOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
340
+ creatorFeeManager: TypedContractMethod<[], [string], "view">;
341
+ incrementBidAskNonces: TypedContractMethod<[
342
+ bid: boolean,
343
+ ask: boolean
344
+ ], [
345
+ void
346
+ ], "nonpayable">;
347
+ initiateOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
348
+ initiateOwnershipTransfer: TypedContractMethod<[
349
+ newPotentialOwner: AddressLike
350
+ ], [
351
+ void
352
+ ], "nonpayable">;
353
+ isAffiliateProgramActive: TypedContractMethod<[], [boolean], "view">;
354
+ isCurrencyAllowed: TypedContractMethod<[
355
+ arg0: AddressLike
356
+ ], [
357
+ boolean
358
+ ], "view">;
359
+ maxCreatorFeeBp: TypedContractMethod<[], [bigint], "view">;
360
+ owner: TypedContractMethod<[], [string], "view">;
361
+ ownershipStatus: TypedContractMethod<[], [bigint], "view">;
362
+ potentialOwner: TypedContractMethod<[], [string], "view">;
363
+ protocolFeeRecipient: TypedContractMethod<[], [string], "view">;
364
+ strategyInfo: TypedContractMethod<[
365
+ arg0: BigNumberish
366
+ ], [
367
+ [
368
+ boolean,
369
+ bigint,
370
+ bigint,
371
+ bigint,
372
+ string,
373
+ boolean,
374
+ string
375
+ ] & {
376
+ isActive: boolean;
377
+ standardProtocolFeeBp: bigint;
378
+ minTotalFeeBp: bigint;
379
+ maxProtocolFeeBp: bigint;
380
+ selector: string;
381
+ isMakerBid: boolean;
382
+ implementation: string;
383
+ }
384
+ ], "view">;
385
+ updateAffiliateController: TypedContractMethod<[
386
+ newAffiliateController: AddressLike
387
+ ], [
388
+ void
389
+ ], "nonpayable">;
390
+ updateAffiliateProgramStatus: TypedContractMethod<[
391
+ isActive: boolean
392
+ ], [
393
+ void
394
+ ], "nonpayable">;
395
+ updateAffiliateRate: TypedContractMethod<[
396
+ affiliate: AddressLike,
397
+ bp: BigNumberish
398
+ ], [
399
+ void
400
+ ], "nonpayable">;
401
+ updateCreatorFeeManager: TypedContractMethod<[
402
+ newCreatorFeeManager: AddressLike
403
+ ], [
404
+ void
405
+ ], "nonpayable">;
406
+ updateCurrencyStatus: TypedContractMethod<[
407
+ currency: AddressLike,
408
+ isAllowed: boolean
409
+ ], [
410
+ void
411
+ ], "nonpayable">;
412
+ updateMaxCreatorFeeBp: TypedContractMethod<[
413
+ newMaxCreatorFeeBp: BigNumberish
414
+ ], [
415
+ void
416
+ ], "nonpayable">;
417
+ updateProtocolFeeRecipient: TypedContractMethod<[
418
+ newProtocolFeeRecipient: AddressLike
419
+ ], [
420
+ void
421
+ ], "nonpayable">;
422
+ updateStrategy: TypedContractMethod<[
423
+ strategyId: BigNumberish,
424
+ isActive: boolean,
425
+ newStandardProtocolFee: BigNumberish,
426
+ newMinTotalFee: BigNumberish
427
+ ], [
428
+ void
429
+ ], "nonpayable">;
430
+ userBidAskNonces: TypedContractMethod<[
431
+ arg0: AddressLike
432
+ ], [
433
+ [bigint, bigint] & {
434
+ bidNonce: bigint;
435
+ askNonce: bigint;
436
+ }
437
+ ], "view">;
438
+ userOrderNonce: TypedContractMethod<[
439
+ arg0: AddressLike,
440
+ arg1: BigNumberish
441
+ ], [
442
+ string
443
+ ], "view">;
444
+ userSubsetNonce: TypedContractMethod<[
445
+ arg0: AddressLike,
446
+ arg1: BigNumberish
447
+ ], [
448
+ boolean
449
+ ], "view">;
450
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
451
+ getFunction(nameOrSignature: "MAGIC_VALUE_ORDER_NONCE_EXECUTED"): TypedContractMethod<[], [string], "view">;
452
+ getFunction(nameOrSignature: "addStrategy"): TypedContractMethod<[
453
+ standardProtocolFeeBp: BigNumberish,
454
+ minTotalFeeBp: BigNumberish,
455
+ maxProtocolFeeBp: BigNumberish,
456
+ selector: BytesLike,
457
+ isMakerBid: boolean,
458
+ implementation: AddressLike
459
+ ], [
460
+ void
461
+ ], "nonpayable">;
462
+ getFunction(nameOrSignature: "affiliateController"): TypedContractMethod<[], [string], "view">;
463
+ getFunction(nameOrSignature: "affiliateRates"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
464
+ getFunction(nameOrSignature: "cancelOrderNonces"): TypedContractMethod<[orderNonces: BigNumberish[]], [void], "nonpayable">;
465
+ getFunction(nameOrSignature: "cancelOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
466
+ getFunction(nameOrSignature: "cancelSubsetNonces"): TypedContractMethod<[subsetNonces: BigNumberish[]], [void], "nonpayable">;
467
+ getFunction(nameOrSignature: "confirmOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
468
+ getFunction(nameOrSignature: "confirmOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
469
+ getFunction(nameOrSignature: "creatorFeeManager"): TypedContractMethod<[], [string], "view">;
470
+ getFunction(nameOrSignature: "incrementBidAskNonces"): TypedContractMethod<[bid: boolean, ask: boolean], [void], "nonpayable">;
471
+ getFunction(nameOrSignature: "initiateOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
472
+ getFunction(nameOrSignature: "initiateOwnershipTransfer"): TypedContractMethod<[
473
+ newPotentialOwner: AddressLike
474
+ ], [
475
+ void
476
+ ], "nonpayable">;
477
+ getFunction(nameOrSignature: "isAffiliateProgramActive"): TypedContractMethod<[], [boolean], "view">;
478
+ getFunction(nameOrSignature: "isCurrencyAllowed"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
479
+ getFunction(nameOrSignature: "maxCreatorFeeBp"): TypedContractMethod<[], [bigint], "view">;
480
+ getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
481
+ getFunction(nameOrSignature: "ownershipStatus"): TypedContractMethod<[], [bigint], "view">;
482
+ getFunction(nameOrSignature: "potentialOwner"): TypedContractMethod<[], [string], "view">;
483
+ getFunction(nameOrSignature: "protocolFeeRecipient"): TypedContractMethod<[], [string], "view">;
484
+ getFunction(nameOrSignature: "strategyInfo"): TypedContractMethod<[
485
+ arg0: BigNumberish
486
+ ], [
487
+ [
488
+ boolean,
489
+ bigint,
490
+ bigint,
491
+ bigint,
492
+ string,
493
+ boolean,
494
+ string
495
+ ] & {
496
+ isActive: boolean;
497
+ standardProtocolFeeBp: bigint;
498
+ minTotalFeeBp: bigint;
499
+ maxProtocolFeeBp: bigint;
500
+ selector: string;
501
+ isMakerBid: boolean;
502
+ implementation: string;
503
+ }
504
+ ], "view">;
505
+ getFunction(nameOrSignature: "updateAffiliateController"): TypedContractMethod<[
506
+ newAffiliateController: AddressLike
507
+ ], [
508
+ void
509
+ ], "nonpayable">;
510
+ getFunction(nameOrSignature: "updateAffiliateProgramStatus"): TypedContractMethod<[isActive: boolean], [void], "nonpayable">;
511
+ getFunction(nameOrSignature: "updateAffiliateRate"): TypedContractMethod<[
512
+ affiliate: AddressLike,
513
+ bp: BigNumberish
514
+ ], [
515
+ void
516
+ ], "nonpayable">;
517
+ getFunction(nameOrSignature: "updateCreatorFeeManager"): TypedContractMethod<[
518
+ newCreatorFeeManager: AddressLike
519
+ ], [
520
+ void
521
+ ], "nonpayable">;
522
+ getFunction(nameOrSignature: "updateCurrencyStatus"): TypedContractMethod<[
523
+ currency: AddressLike,
524
+ isAllowed: boolean
525
+ ], [
526
+ void
527
+ ], "nonpayable">;
528
+ getFunction(nameOrSignature: "updateMaxCreatorFeeBp"): TypedContractMethod<[
529
+ newMaxCreatorFeeBp: BigNumberish
530
+ ], [
531
+ void
532
+ ], "nonpayable">;
533
+ getFunction(nameOrSignature: "updateProtocolFeeRecipient"): TypedContractMethod<[
534
+ newProtocolFeeRecipient: AddressLike
535
+ ], [
536
+ void
537
+ ], "nonpayable">;
538
+ getFunction(nameOrSignature: "updateStrategy"): TypedContractMethod<[
539
+ strategyId: BigNumberish,
540
+ isActive: boolean,
541
+ newStandardProtocolFee: BigNumberish,
542
+ newMinTotalFee: BigNumberish
543
+ ], [
544
+ void
545
+ ], "nonpayable">;
546
+ getFunction(nameOrSignature: "userBidAskNonces"): TypedContractMethod<[
547
+ arg0: AddressLike
548
+ ], [
549
+ [bigint, bigint] & {
550
+ bidNonce: bigint;
551
+ askNonce: bigint;
552
+ }
553
+ ], "view">;
554
+ getFunction(nameOrSignature: "userOrderNonce"): TypedContractMethod<[
555
+ arg0: AddressLike,
556
+ arg1: BigNumberish
557
+ ], [
558
+ string
559
+ ], "view">;
560
+ getFunction(nameOrSignature: "userSubsetNonce"): TypedContractMethod<[
561
+ arg0: AddressLike,
562
+ arg1: BigNumberish
563
+ ], [
564
+ boolean
565
+ ], "view">;
566
+ getEvent(key: "CancelOwnershipTransfer"): TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
567
+ getEvent(key: "CurrencyStatusUpdated"): TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
568
+ getEvent(key: "InitiateOwnershipRenouncement"): TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
569
+ getEvent(key: "InitiateOwnershipTransfer"): TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
570
+ getEvent(key: "NewAffiliateController"): TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
571
+ getEvent(key: "NewAffiliateProgramStatus"): TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
572
+ getEvent(key: "NewAffiliateRate"): TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
573
+ getEvent(key: "NewBidAskNonces"): TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
574
+ getEvent(key: "NewCreatorFeeManager"): TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
575
+ getEvent(key: "NewMaxCreatorFeeBp"): TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
576
+ getEvent(key: "NewOwner"): TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
577
+ getEvent(key: "NewProtocolFeeRecipient"): TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
578
+ getEvent(key: "NewStrategy"): TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
579
+ getEvent(key: "OrderNoncesCancelled"): TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
580
+ getEvent(key: "StrategyUpdated"): TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
581
+ getEvent(key: "SubsetNoncesCancelled"): TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
582
+ filters: {
583
+ "CancelOwnershipTransfer()": TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
584
+ CancelOwnershipTransfer: TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
585
+ "CurrencyStatusUpdated(address,bool)": TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
586
+ CurrencyStatusUpdated: TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
587
+ "InitiateOwnershipRenouncement()": TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
588
+ InitiateOwnershipRenouncement: TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
589
+ "InitiateOwnershipTransfer(address,address)": TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
590
+ InitiateOwnershipTransfer: TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
591
+ "NewAffiliateController(address)": TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
592
+ NewAffiliateController: TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
593
+ "NewAffiliateProgramStatus(bool)": TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
594
+ NewAffiliateProgramStatus: TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
595
+ "NewAffiliateRate(address,uint256)": TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
596
+ NewAffiliateRate: TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
597
+ "NewBidAskNonces(address,uint256,uint256)": TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
598
+ NewBidAskNonces: TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
599
+ "NewCreatorFeeManager(address)": TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
600
+ NewCreatorFeeManager: TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
601
+ "NewMaxCreatorFeeBp(uint256)": TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
602
+ NewMaxCreatorFeeBp: TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
603
+ "NewOwner(address)": TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
604
+ NewOwner: TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
605
+ "NewProtocolFeeRecipient(address)": TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
606
+ NewProtocolFeeRecipient: TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
607
+ "NewStrategy(uint256,uint16,uint16,uint16,bytes4,bool,address)": TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
608
+ NewStrategy: TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
609
+ "OrderNoncesCancelled(address,uint256[])": TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
610
+ OrderNoncesCancelled: TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
611
+ "StrategyUpdated(uint256,bool,uint16,uint16)": TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
612
+ StrategyUpdated: TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
613
+ "SubsetNoncesCancelled(address,uint256[])": TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
614
+ SubsetNoncesCancelled: TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
615
+ };
616
+ }