@hypercerts-org/marketplace-sdk 0.0.14 → 0.0.15

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 (139) hide show
  1. package/dist/LooksRare.d.ts +3 -3
  2. package/dist/index.cjs.js +1 -1
  3. package/dist/index.d.ts +6 -6
  4. package/dist/index.esm.js +1 -1
  5. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/AffiliateManager.d.ts +210 -0
  6. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry.d.ts +35 -0
  7. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties.d.ts +47 -0
  8. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CurrencyManager.d.ts +247 -0
  9. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/ExecutionManager.d.ts +616 -0
  10. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol.d.ts +1005 -0
  11. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/NonceManager.d.ts +148 -0
  12. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/StrategyManager.d.ts +401 -0
  13. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferManager.d.ts +324 -0
  14. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT.d.ts +620 -0
  15. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy.d.ts +97 -0
  16. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer.d.ts +176 -0
  17. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  18. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A.d.ts +172 -0
  19. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers.d.ts +148 -0
  20. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  21. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/index.d.ts +16 -0
  22. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager.d.ts +65 -0
  23. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager.d.ts +47 -0
  24. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager.d.ts +37 -0
  25. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager.d.ts +64 -0
  26. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol.d.ts +343 -0
  27. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager.d.ts +72 -0
  28. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry.d.ts +41 -0
  29. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy.d.ts +97 -0
  30. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager.d.ts +85 -0
  31. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager.d.ts +80 -0
  32. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  33. package/dist/typechain/@looksrare/contracts-exchange-v2/index.d.ts +4 -0
  34. package/dist/typechain/@looksrare/contracts-exchange-v2/test/index.d.ts +2 -0
  35. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry.d.ts +222 -0
  36. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  37. package/dist/typechain/@looksrare/contracts-libs/contracts/OwnableTwoSteps.d.ts +121 -0
  38. package/dist/typechain/@looksrare/contracts-libs/contracts/PackableReentrancyGuard.d.ts +20 -0
  39. package/dist/typechain/@looksrare/contracts-libs/contracts/index.d.ts +4 -0
  40. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps.d.ts +80 -0
  41. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard.d.ts +20 -0
  42. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155.d.ts +224 -0
  43. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271.d.ts +35 -0
  44. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165.d.ts +29 -0
  45. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20.d.ts +129 -0
  46. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981.d.ts +49 -0
  47. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721.d.ts +191 -0
  48. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH.d.ts +43 -0
  49. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  50. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +4 -0
  51. package/dist/typechain/@looksrare/contracts-libs/index.d.ts +2 -0
  52. package/dist/typechain/@looksrare/index.d.ts +4 -0
  53. package/dist/typechain/common.d.ts +50 -0
  54. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/AffiliateManager__factory.d.ts +264 -0
  55. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry__factory.d.ts +48 -0
  56. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties__factory.d.ts +74 -0
  57. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CurrencyManager__factory.d.ts +307 -0
  58. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/ExecutionManager__factory.d.ts +748 -0
  59. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol__factory.d.ts +1527 -0
  60. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/NonceManager__factory.d.ts +174 -0
  61. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/StrategyManager__factory.d.ts +478 -0
  62. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferManager__factory.d.ts +406 -0
  63. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT__factory.d.ts +766 -0
  64. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy__factory.d.ts +100 -0
  65. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer__factory.d.ts +323 -0
  66. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  67. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A__factory.d.ts +338 -0
  68. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers__factory.d.ts +302 -0
  69. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  70. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/index.d.ts +13 -0
  71. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager__factory.d.ts +50 -0
  72. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager__factory.d.ts +51 -0
  73. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager__factory.d.ts +22 -0
  74. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager__factory.d.ts +61 -0
  75. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol__factory.d.ts +540 -0
  76. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager__factory.d.ts +57 -0
  77. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry__factory.d.ts +29 -0
  78. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager__factory.d.ts +88 -0
  79. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy__factory.d.ts +100 -0
  80. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager__factory.d.ts +77 -0
  81. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  82. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/index.d.ts +2 -0
  83. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/index.d.ts +1 -0
  84. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry__factory.d.ts +278 -0
  85. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  86. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/OwnableTwoSteps__factory.d.ts +130 -0
  87. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/PackableReentrancyGuard__factory.d.ts +11 -0
  88. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/index.d.ts +3 -0
  89. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps__factory.d.ts +66 -0
  90. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard__factory.d.ts +11 -0
  91. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155__factory.d.ts +222 -0
  92. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271__factory.d.ts +25 -0
  93. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165__factory.d.ts +21 -0
  94. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20__factory.d.ts +147 -0
  95. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981__factory.d.ts +43 -0
  96. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721__factory.d.ts +213 -0
  97. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH__factory.d.ts +41 -0
  98. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  99. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +3 -0
  100. package/dist/typechain/factories/@looksrare/contracts-libs/index.d.ts +1 -0
  101. package/dist/typechain/factories/@looksrare/index.d.ts +2 -0
  102. package/dist/typechain/factories/index.d.ts +3 -0
  103. package/dist/typechain/factories/solmate/index.d.ts +1 -0
  104. package/dist/typechain/factories/solmate/src/index.d.ts +1 -0
  105. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver__factory.d.ts +67 -0
  106. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155__factory.d.ts +250 -0
  107. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  108. package/dist/typechain/factories/solmate/src/tokens/ERC20__factory.d.ts +235 -0
  109. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver__factory.d.ts +33 -0
  110. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721__factory.d.ts +261 -0
  111. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  112. package/dist/typechain/factories/solmate/src/tokens/WETH__factory.d.ts +299 -0
  113. package/dist/typechain/factories/solmate/src/tokens/index.d.ts +4 -0
  114. package/dist/typechain/factories/src/contracts/index.d.ts +1 -0
  115. package/dist/typechain/factories/src/contracts/tests/MockERC1155__factory.d.ts +283 -0
  116. package/dist/typechain/factories/src/contracts/tests/MockERC721__factory.d.ts +308 -0
  117. package/dist/typechain/factories/src/contracts/tests/Verifier__factory.d.ts +462 -0
  118. package/dist/typechain/factories/src/contracts/tests/index.d.ts +3 -0
  119. package/dist/typechain/factories/src/index.d.ts +1 -0
  120. package/dist/typechain/index.d.ts +97 -0
  121. package/dist/typechain/solmate/index.d.ts +2 -0
  122. package/dist/typechain/solmate/src/index.d.ts +2 -0
  123. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155.d.ts +236 -0
  124. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver.d.ts +67 -0
  125. package/dist/typechain/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  126. package/dist/typechain/solmate/src/tokens/ERC20.d.ts +181 -0
  127. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721.d.ts +211 -0
  128. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver.d.ts +39 -0
  129. package/dist/typechain/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  130. package/dist/typechain/solmate/src/tokens/WETH.d.ts +219 -0
  131. package/dist/typechain/solmate/src/tokens/index.d.ts +6 -0
  132. package/dist/typechain/src/contracts/index.d.ts +2 -0
  133. package/dist/typechain/src/contracts/tests/MockERC1155.d.ts +252 -0
  134. package/dist/typechain/src/contracts/tests/MockERC721.d.ts +219 -0
  135. package/dist/typechain/src/contracts/tests/Verifier.d.ts +174 -0
  136. package/dist/typechain/src/contracts/tests/index.d.ts +3 -0
  137. package/dist/typechain/src/index.d.ts +2 -0
  138. package/dist/utils/calls/exchange.d.ts +7 -6
  139. package/package.json +1 -1
@@ -0,0 +1,1005 @@
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 declare namespace ILooksRareProtocol {
4
+ type NonceInvalidationParametersStruct = {
5
+ orderHash: BytesLike;
6
+ orderNonce: BigNumberish;
7
+ isNonceInvalidated: boolean;
8
+ };
9
+ type NonceInvalidationParametersStructOutput = [
10
+ orderHash: string,
11
+ orderNonce: bigint,
12
+ isNonceInvalidated: boolean
13
+ ] & {
14
+ orderHash: string;
15
+ orderNonce: bigint;
16
+ isNonceInvalidated: boolean;
17
+ };
18
+ }
19
+ export declare namespace OrderStructs {
20
+ type TakerStruct = {
21
+ recipient: AddressLike;
22
+ additionalParameters: BytesLike;
23
+ };
24
+ type TakerStructOutput = [
25
+ recipient: string,
26
+ additionalParameters: string
27
+ ] & {
28
+ recipient: string;
29
+ additionalParameters: string;
30
+ };
31
+ type MakerStruct = {
32
+ quoteType: BigNumberish;
33
+ globalNonce: BigNumberish;
34
+ subsetNonce: BigNumberish;
35
+ orderNonce: BigNumberish;
36
+ strategyId: BigNumberish;
37
+ collectionType: BigNumberish;
38
+ collection: AddressLike;
39
+ currency: AddressLike;
40
+ signer: AddressLike;
41
+ startTime: BigNumberish;
42
+ endTime: BigNumberish;
43
+ price: BigNumberish;
44
+ itemIds: BigNumberish[];
45
+ amounts: BigNumberish[];
46
+ additionalParameters: BytesLike;
47
+ };
48
+ type MakerStructOutput = [
49
+ quoteType: bigint,
50
+ globalNonce: bigint,
51
+ subsetNonce: bigint,
52
+ orderNonce: bigint,
53
+ strategyId: bigint,
54
+ collectionType: bigint,
55
+ collection: string,
56
+ currency: string,
57
+ signer: string,
58
+ startTime: bigint,
59
+ endTime: bigint,
60
+ price: bigint,
61
+ itemIds: bigint[],
62
+ amounts: bigint[],
63
+ additionalParameters: string
64
+ ] & {
65
+ quoteType: bigint;
66
+ globalNonce: bigint;
67
+ subsetNonce: bigint;
68
+ orderNonce: bigint;
69
+ strategyId: bigint;
70
+ collectionType: bigint;
71
+ collection: string;
72
+ currency: string;
73
+ signer: string;
74
+ startTime: bigint;
75
+ endTime: bigint;
76
+ price: bigint;
77
+ itemIds: bigint[];
78
+ amounts: bigint[];
79
+ additionalParameters: string;
80
+ };
81
+ type MerkleTreeNodeStruct = {
82
+ value: BytesLike;
83
+ position: BigNumberish;
84
+ };
85
+ type MerkleTreeNodeStructOutput = [value: string, position: bigint] & {
86
+ value: string;
87
+ position: bigint;
88
+ };
89
+ type MerkleTreeStruct = {
90
+ root: BytesLike;
91
+ proof: OrderStructs.MerkleTreeNodeStruct[];
92
+ };
93
+ type MerkleTreeStructOutput = [
94
+ root: string,
95
+ proof: OrderStructs.MerkleTreeNodeStructOutput[]
96
+ ] & {
97
+ root: string;
98
+ proof: OrderStructs.MerkleTreeNodeStructOutput[];
99
+ };
100
+ }
101
+ export interface LooksRareProtocolInterface extends Interface {
102
+ getFunction(nameOrSignature: "MAGIC_VALUE_ORDER_NONCE_EXECUTED" | "WETH" | "addStrategy" | "affiliateController" | "affiliateRates" | "cancelOrderNonces" | "cancelOwnershipTransfer" | "cancelSubsetNonces" | "chainId" | "confirmOwnershipRenouncement" | "confirmOwnershipTransfer" | "creatorFeeManager" | "domainSeparator" | "executeMultipleTakerBids" | "executeTakerAsk" | "executeTakerBid" | "hashBatchOrder" | "incrementBidAskNonces" | "initiateOwnershipRenouncement" | "initiateOwnershipTransfer" | "isAffiliateProgramActive" | "isCurrencyAllowed" | "maxCreatorFeeBp" | "owner" | "ownershipStatus" | "potentialOwner" | "protocolFeeRecipient" | "restrictedExecuteTakerBid" | "strategyInfo" | "transferManager" | "updateAffiliateController" | "updateAffiliateProgramStatus" | "updateAffiliateRate" | "updateCreatorFeeManager" | "updateCurrencyStatus" | "updateDomainSeparator" | "updateETHGasLimitForTransfer" | "updateMaxCreatorFeeBp" | "updateProtocolFeeRecipient" | "updateStrategy" | "userBidAskNonces" | "userOrderNonce" | "userSubsetNonce"): FunctionFragment;
103
+ getEvent(nameOrSignatureOrTopic: "AffiliatePayment" | "CancelOwnershipTransfer" | "CurrencyStatusUpdated" | "InitiateOwnershipRenouncement" | "InitiateOwnershipTransfer" | "NewAffiliateController" | "NewAffiliateProgramStatus" | "NewAffiliateRate" | "NewBidAskNonces" | "NewCreatorFeeManager" | "NewDomainSeparator" | "NewGasLimitETHTransfer" | "NewMaxCreatorFeeBp" | "NewOwner" | "NewProtocolFeeRecipient" | "NewStrategy" | "OrderNoncesCancelled" | "StrategyUpdated" | "SubsetNoncesCancelled" | "TakerAsk" | "TakerBid"): EventFragment;
104
+ encodeFunctionData(functionFragment: "MAGIC_VALUE_ORDER_NONCE_EXECUTED", values?: undefined): string;
105
+ encodeFunctionData(functionFragment: "WETH", values?: undefined): string;
106
+ encodeFunctionData(functionFragment: "addStrategy", values: [
107
+ BigNumberish,
108
+ BigNumberish,
109
+ BigNumberish,
110
+ BytesLike,
111
+ boolean,
112
+ AddressLike
113
+ ]): string;
114
+ encodeFunctionData(functionFragment: "affiliateController", values?: undefined): string;
115
+ encodeFunctionData(functionFragment: "affiliateRates", values: [AddressLike]): string;
116
+ encodeFunctionData(functionFragment: "cancelOrderNonces", values: [BigNumberish[]]): string;
117
+ encodeFunctionData(functionFragment: "cancelOwnershipTransfer", values?: undefined): string;
118
+ encodeFunctionData(functionFragment: "cancelSubsetNonces", values: [BigNumberish[]]): string;
119
+ encodeFunctionData(functionFragment: "chainId", values?: undefined): string;
120
+ encodeFunctionData(functionFragment: "confirmOwnershipRenouncement", values?: undefined): string;
121
+ encodeFunctionData(functionFragment: "confirmOwnershipTransfer", values?: undefined): string;
122
+ encodeFunctionData(functionFragment: "creatorFeeManager", values?: undefined): string;
123
+ encodeFunctionData(functionFragment: "domainSeparator", values?: undefined): string;
124
+ encodeFunctionData(functionFragment: "executeMultipleTakerBids", values: [
125
+ OrderStructs.TakerStruct[],
126
+ OrderStructs.MakerStruct[],
127
+ BytesLike[],
128
+ OrderStructs.MerkleTreeStruct[],
129
+ AddressLike,
130
+ boolean
131
+ ]): string;
132
+ encodeFunctionData(functionFragment: "executeTakerAsk", values: [
133
+ OrderStructs.TakerStruct,
134
+ OrderStructs.MakerStruct,
135
+ BytesLike,
136
+ OrderStructs.MerkleTreeStruct,
137
+ AddressLike
138
+ ]): string;
139
+ encodeFunctionData(functionFragment: "executeTakerBid", values: [
140
+ OrderStructs.TakerStruct,
141
+ OrderStructs.MakerStruct,
142
+ BytesLike,
143
+ OrderStructs.MerkleTreeStruct,
144
+ AddressLike
145
+ ]): string;
146
+ encodeFunctionData(functionFragment: "hashBatchOrder", values: [BytesLike, BigNumberish]): string;
147
+ encodeFunctionData(functionFragment: "incrementBidAskNonces", values: [boolean, boolean]): string;
148
+ encodeFunctionData(functionFragment: "initiateOwnershipRenouncement", values?: undefined): string;
149
+ encodeFunctionData(functionFragment: "initiateOwnershipTransfer", values: [AddressLike]): string;
150
+ encodeFunctionData(functionFragment: "isAffiliateProgramActive", values?: undefined): string;
151
+ encodeFunctionData(functionFragment: "isCurrencyAllowed", values: [AddressLike]): string;
152
+ encodeFunctionData(functionFragment: "maxCreatorFeeBp", values?: undefined): string;
153
+ encodeFunctionData(functionFragment: "owner", values?: undefined): string;
154
+ encodeFunctionData(functionFragment: "ownershipStatus", values?: undefined): string;
155
+ encodeFunctionData(functionFragment: "potentialOwner", values?: undefined): string;
156
+ encodeFunctionData(functionFragment: "protocolFeeRecipient", values?: undefined): string;
157
+ encodeFunctionData(functionFragment: "restrictedExecuteTakerBid", values: [
158
+ OrderStructs.TakerStruct,
159
+ OrderStructs.MakerStruct,
160
+ AddressLike,
161
+ BytesLike
162
+ ]): string;
163
+ encodeFunctionData(functionFragment: "strategyInfo", values: [BigNumberish]): string;
164
+ encodeFunctionData(functionFragment: "transferManager", values?: undefined): string;
165
+ encodeFunctionData(functionFragment: "updateAffiliateController", values: [AddressLike]): string;
166
+ encodeFunctionData(functionFragment: "updateAffiliateProgramStatus", values: [boolean]): string;
167
+ encodeFunctionData(functionFragment: "updateAffiliateRate", values: [AddressLike, BigNumberish]): string;
168
+ encodeFunctionData(functionFragment: "updateCreatorFeeManager", values: [AddressLike]): string;
169
+ encodeFunctionData(functionFragment: "updateCurrencyStatus", values: [AddressLike, boolean]): string;
170
+ encodeFunctionData(functionFragment: "updateDomainSeparator", values?: undefined): string;
171
+ encodeFunctionData(functionFragment: "updateETHGasLimitForTransfer", values: [BigNumberish]): string;
172
+ encodeFunctionData(functionFragment: "updateMaxCreatorFeeBp", values: [BigNumberish]): string;
173
+ encodeFunctionData(functionFragment: "updateProtocolFeeRecipient", values: [AddressLike]): string;
174
+ encodeFunctionData(functionFragment: "updateStrategy", values: [BigNumberish, boolean, BigNumberish, BigNumberish]): string;
175
+ encodeFunctionData(functionFragment: "userBidAskNonces", values: [AddressLike]): string;
176
+ encodeFunctionData(functionFragment: "userOrderNonce", values: [AddressLike, BigNumberish]): string;
177
+ encodeFunctionData(functionFragment: "userSubsetNonce", values: [AddressLike, BigNumberish]): string;
178
+ decodeFunctionResult(functionFragment: "MAGIC_VALUE_ORDER_NONCE_EXECUTED", data: BytesLike): Result;
179
+ decodeFunctionResult(functionFragment: "WETH", data: BytesLike): Result;
180
+ decodeFunctionResult(functionFragment: "addStrategy", data: BytesLike): Result;
181
+ decodeFunctionResult(functionFragment: "affiliateController", data: BytesLike): Result;
182
+ decodeFunctionResult(functionFragment: "affiliateRates", data: BytesLike): Result;
183
+ decodeFunctionResult(functionFragment: "cancelOrderNonces", data: BytesLike): Result;
184
+ decodeFunctionResult(functionFragment: "cancelOwnershipTransfer", data: BytesLike): Result;
185
+ decodeFunctionResult(functionFragment: "cancelSubsetNonces", data: BytesLike): Result;
186
+ decodeFunctionResult(functionFragment: "chainId", data: BytesLike): Result;
187
+ decodeFunctionResult(functionFragment: "confirmOwnershipRenouncement", data: BytesLike): Result;
188
+ decodeFunctionResult(functionFragment: "confirmOwnershipTransfer", data: BytesLike): Result;
189
+ decodeFunctionResult(functionFragment: "creatorFeeManager", data: BytesLike): Result;
190
+ decodeFunctionResult(functionFragment: "domainSeparator", data: BytesLike): Result;
191
+ decodeFunctionResult(functionFragment: "executeMultipleTakerBids", data: BytesLike): Result;
192
+ decodeFunctionResult(functionFragment: "executeTakerAsk", data: BytesLike): Result;
193
+ decodeFunctionResult(functionFragment: "executeTakerBid", data: BytesLike): Result;
194
+ decodeFunctionResult(functionFragment: "hashBatchOrder", data: BytesLike): Result;
195
+ decodeFunctionResult(functionFragment: "incrementBidAskNonces", data: BytesLike): Result;
196
+ decodeFunctionResult(functionFragment: "initiateOwnershipRenouncement", data: BytesLike): Result;
197
+ decodeFunctionResult(functionFragment: "initiateOwnershipTransfer", data: BytesLike): Result;
198
+ decodeFunctionResult(functionFragment: "isAffiliateProgramActive", data: BytesLike): Result;
199
+ decodeFunctionResult(functionFragment: "isCurrencyAllowed", data: BytesLike): Result;
200
+ decodeFunctionResult(functionFragment: "maxCreatorFeeBp", data: BytesLike): Result;
201
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
202
+ decodeFunctionResult(functionFragment: "ownershipStatus", data: BytesLike): Result;
203
+ decodeFunctionResult(functionFragment: "potentialOwner", data: BytesLike): Result;
204
+ decodeFunctionResult(functionFragment: "protocolFeeRecipient", data: BytesLike): Result;
205
+ decodeFunctionResult(functionFragment: "restrictedExecuteTakerBid", data: BytesLike): Result;
206
+ decodeFunctionResult(functionFragment: "strategyInfo", data: BytesLike): Result;
207
+ decodeFunctionResult(functionFragment: "transferManager", data: BytesLike): Result;
208
+ decodeFunctionResult(functionFragment: "updateAffiliateController", data: BytesLike): Result;
209
+ decodeFunctionResult(functionFragment: "updateAffiliateProgramStatus", data: BytesLike): Result;
210
+ decodeFunctionResult(functionFragment: "updateAffiliateRate", data: BytesLike): Result;
211
+ decodeFunctionResult(functionFragment: "updateCreatorFeeManager", data: BytesLike): Result;
212
+ decodeFunctionResult(functionFragment: "updateCurrencyStatus", data: BytesLike): Result;
213
+ decodeFunctionResult(functionFragment: "updateDomainSeparator", data: BytesLike): Result;
214
+ decodeFunctionResult(functionFragment: "updateETHGasLimitForTransfer", data: BytesLike): Result;
215
+ decodeFunctionResult(functionFragment: "updateMaxCreatorFeeBp", data: BytesLike): Result;
216
+ decodeFunctionResult(functionFragment: "updateProtocolFeeRecipient", data: BytesLike): Result;
217
+ decodeFunctionResult(functionFragment: "updateStrategy", data: BytesLike): Result;
218
+ decodeFunctionResult(functionFragment: "userBidAskNonces", data: BytesLike): Result;
219
+ decodeFunctionResult(functionFragment: "userOrderNonce", data: BytesLike): Result;
220
+ decodeFunctionResult(functionFragment: "userSubsetNonce", data: BytesLike): Result;
221
+ }
222
+ export declare namespace AffiliatePaymentEvent {
223
+ type InputTuple = [
224
+ affiliate: AddressLike,
225
+ currency: AddressLike,
226
+ affiliateFee: BigNumberish
227
+ ];
228
+ type OutputTuple = [
229
+ affiliate: string,
230
+ currency: string,
231
+ affiliateFee: bigint
232
+ ];
233
+ interface OutputObject {
234
+ affiliate: string;
235
+ currency: string;
236
+ affiliateFee: bigint;
237
+ }
238
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
239
+ type Filter = TypedDeferredTopicFilter<Event>;
240
+ type Log = TypedEventLog<Event>;
241
+ type LogDescription = TypedLogDescription<Event>;
242
+ }
243
+ export declare namespace CancelOwnershipTransferEvent {
244
+ type InputTuple = [];
245
+ type OutputTuple = [];
246
+ interface OutputObject {
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 CurrencyStatusUpdatedEvent {
254
+ type InputTuple = [currency: AddressLike, isAllowed: boolean];
255
+ type OutputTuple = [currency: string, isAllowed: boolean];
256
+ interface OutputObject {
257
+ currency: string;
258
+ isAllowed: boolean;
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 InitiateOwnershipRenouncementEvent {
266
+ type InputTuple = [];
267
+ type OutputTuple = [];
268
+ interface OutputObject {
269
+ }
270
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
271
+ type Filter = TypedDeferredTopicFilter<Event>;
272
+ type Log = TypedEventLog<Event>;
273
+ type LogDescription = TypedLogDescription<Event>;
274
+ }
275
+ export declare namespace InitiateOwnershipTransferEvent {
276
+ type InputTuple = [
277
+ previousOwner: AddressLike,
278
+ potentialOwner: AddressLike
279
+ ];
280
+ type OutputTuple = [previousOwner: string, potentialOwner: string];
281
+ interface OutputObject {
282
+ previousOwner: string;
283
+ potentialOwner: string;
284
+ }
285
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
286
+ type Filter = TypedDeferredTopicFilter<Event>;
287
+ type Log = TypedEventLog<Event>;
288
+ type LogDescription = TypedLogDescription<Event>;
289
+ }
290
+ export declare namespace NewAffiliateControllerEvent {
291
+ type InputTuple = [affiliateController: AddressLike];
292
+ type OutputTuple = [affiliateController: string];
293
+ interface OutputObject {
294
+ affiliateController: string;
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 declare namespace NewAffiliateProgramStatusEvent {
302
+ type InputTuple = [isActive: boolean];
303
+ type OutputTuple = [isActive: boolean];
304
+ interface OutputObject {
305
+ isActive: boolean;
306
+ }
307
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
308
+ type Filter = TypedDeferredTopicFilter<Event>;
309
+ type Log = TypedEventLog<Event>;
310
+ type LogDescription = TypedLogDescription<Event>;
311
+ }
312
+ export declare namespace NewAffiliateRateEvent {
313
+ type InputTuple = [affiliate: AddressLike, rate: BigNumberish];
314
+ type OutputTuple = [affiliate: string, rate: bigint];
315
+ interface OutputObject {
316
+ affiliate: string;
317
+ rate: bigint;
318
+ }
319
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
320
+ type Filter = TypedDeferredTopicFilter<Event>;
321
+ type Log = TypedEventLog<Event>;
322
+ type LogDescription = TypedLogDescription<Event>;
323
+ }
324
+ export declare namespace NewBidAskNoncesEvent {
325
+ type InputTuple = [
326
+ user: AddressLike,
327
+ bidNonce: BigNumberish,
328
+ askNonce: BigNumberish
329
+ ];
330
+ type OutputTuple = [user: string, bidNonce: bigint, askNonce: bigint];
331
+ interface OutputObject {
332
+ user: string;
333
+ bidNonce: bigint;
334
+ askNonce: bigint;
335
+ }
336
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
337
+ type Filter = TypedDeferredTopicFilter<Event>;
338
+ type Log = TypedEventLog<Event>;
339
+ type LogDescription = TypedLogDescription<Event>;
340
+ }
341
+ export declare namespace NewCreatorFeeManagerEvent {
342
+ type InputTuple = [creatorFeeManager: AddressLike];
343
+ type OutputTuple = [creatorFeeManager: string];
344
+ interface OutputObject {
345
+ creatorFeeManager: string;
346
+ }
347
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
348
+ type Filter = TypedDeferredTopicFilter<Event>;
349
+ type Log = TypedEventLog<Event>;
350
+ type LogDescription = TypedLogDescription<Event>;
351
+ }
352
+ export declare namespace NewDomainSeparatorEvent {
353
+ type InputTuple = [];
354
+ type OutputTuple = [];
355
+ interface OutputObject {
356
+ }
357
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
358
+ type Filter = TypedDeferredTopicFilter<Event>;
359
+ type Log = TypedEventLog<Event>;
360
+ type LogDescription = TypedLogDescription<Event>;
361
+ }
362
+ export declare namespace NewGasLimitETHTransferEvent {
363
+ type InputTuple = [gasLimitETHTransfer: BigNumberish];
364
+ type OutputTuple = [gasLimitETHTransfer: bigint];
365
+ interface OutputObject {
366
+ gasLimitETHTransfer: bigint;
367
+ }
368
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
369
+ type Filter = TypedDeferredTopicFilter<Event>;
370
+ type Log = TypedEventLog<Event>;
371
+ type LogDescription = TypedLogDescription<Event>;
372
+ }
373
+ export declare namespace NewMaxCreatorFeeBpEvent {
374
+ type InputTuple = [maxCreatorFeeBp: BigNumberish];
375
+ type OutputTuple = [maxCreatorFeeBp: bigint];
376
+ interface OutputObject {
377
+ maxCreatorFeeBp: bigint;
378
+ }
379
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
380
+ type Filter = TypedDeferredTopicFilter<Event>;
381
+ type Log = TypedEventLog<Event>;
382
+ type LogDescription = TypedLogDescription<Event>;
383
+ }
384
+ export declare namespace NewOwnerEvent {
385
+ type InputTuple = [newOwner: AddressLike];
386
+ type OutputTuple = [newOwner: string];
387
+ interface OutputObject {
388
+ newOwner: string;
389
+ }
390
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
391
+ type Filter = TypedDeferredTopicFilter<Event>;
392
+ type Log = TypedEventLog<Event>;
393
+ type LogDescription = TypedLogDescription<Event>;
394
+ }
395
+ export declare namespace NewProtocolFeeRecipientEvent {
396
+ type InputTuple = [protocolFeeRecipient: AddressLike];
397
+ type OutputTuple = [protocolFeeRecipient: string];
398
+ interface OutputObject {
399
+ protocolFeeRecipient: string;
400
+ }
401
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
402
+ type Filter = TypedDeferredTopicFilter<Event>;
403
+ type Log = TypedEventLog<Event>;
404
+ type LogDescription = TypedLogDescription<Event>;
405
+ }
406
+ export declare namespace NewStrategyEvent {
407
+ type InputTuple = [
408
+ strategyId: BigNumberish,
409
+ standardProtocolFeeBp: BigNumberish,
410
+ minTotalFeeBp: BigNumberish,
411
+ maxProtocolFeeBp: BigNumberish,
412
+ selector: BytesLike,
413
+ isMakerBid: boolean,
414
+ implementation: AddressLike
415
+ ];
416
+ type OutputTuple = [
417
+ strategyId: bigint,
418
+ standardProtocolFeeBp: bigint,
419
+ minTotalFeeBp: bigint,
420
+ maxProtocolFeeBp: bigint,
421
+ selector: string,
422
+ isMakerBid: boolean,
423
+ implementation: string
424
+ ];
425
+ interface OutputObject {
426
+ strategyId: bigint;
427
+ standardProtocolFeeBp: bigint;
428
+ minTotalFeeBp: bigint;
429
+ maxProtocolFeeBp: bigint;
430
+ selector: string;
431
+ isMakerBid: boolean;
432
+ implementation: string;
433
+ }
434
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
435
+ type Filter = TypedDeferredTopicFilter<Event>;
436
+ type Log = TypedEventLog<Event>;
437
+ type LogDescription = TypedLogDescription<Event>;
438
+ }
439
+ export declare namespace OrderNoncesCancelledEvent {
440
+ type InputTuple = [user: AddressLike, orderNonces: BigNumberish[]];
441
+ type OutputTuple = [user: string, orderNonces: bigint[]];
442
+ interface OutputObject {
443
+ user: string;
444
+ orderNonces: bigint[];
445
+ }
446
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
447
+ type Filter = TypedDeferredTopicFilter<Event>;
448
+ type Log = TypedEventLog<Event>;
449
+ type LogDescription = TypedLogDescription<Event>;
450
+ }
451
+ export declare namespace StrategyUpdatedEvent {
452
+ type InputTuple = [
453
+ strategyId: BigNumberish,
454
+ isActive: boolean,
455
+ standardProtocolFeeBp: BigNumberish,
456
+ minTotalFeeBp: BigNumberish
457
+ ];
458
+ type OutputTuple = [
459
+ strategyId: bigint,
460
+ isActive: boolean,
461
+ standardProtocolFeeBp: bigint,
462
+ minTotalFeeBp: bigint
463
+ ];
464
+ interface OutputObject {
465
+ strategyId: bigint;
466
+ isActive: boolean;
467
+ standardProtocolFeeBp: bigint;
468
+ minTotalFeeBp: bigint;
469
+ }
470
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
471
+ type Filter = TypedDeferredTopicFilter<Event>;
472
+ type Log = TypedEventLog<Event>;
473
+ type LogDescription = TypedLogDescription<Event>;
474
+ }
475
+ export declare namespace SubsetNoncesCancelledEvent {
476
+ type InputTuple = [user: AddressLike, subsetNonces: BigNumberish[]];
477
+ type OutputTuple = [user: string, subsetNonces: bigint[]];
478
+ interface OutputObject {
479
+ user: string;
480
+ subsetNonces: bigint[];
481
+ }
482
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
483
+ type Filter = TypedDeferredTopicFilter<Event>;
484
+ type Log = TypedEventLog<Event>;
485
+ type LogDescription = TypedLogDescription<Event>;
486
+ }
487
+ export declare namespace TakerAskEvent {
488
+ type InputTuple = [
489
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStruct,
490
+ askUser: AddressLike,
491
+ bidUser: AddressLike,
492
+ strategyId: BigNumberish,
493
+ currency: AddressLike,
494
+ collection: AddressLike,
495
+ itemIds: BigNumberish[],
496
+ amounts: BigNumberish[],
497
+ feeRecipients: [AddressLike, AddressLike],
498
+ feeAmounts: [BigNumberish, BigNumberish, BigNumberish]
499
+ ];
500
+ type OutputTuple = [
501
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStructOutput,
502
+ askUser: string,
503
+ bidUser: string,
504
+ strategyId: bigint,
505
+ currency: string,
506
+ collection: string,
507
+ itemIds: bigint[],
508
+ amounts: bigint[],
509
+ feeRecipients: [string, string],
510
+ feeAmounts: [bigint, bigint, bigint]
511
+ ];
512
+ interface OutputObject {
513
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStructOutput;
514
+ askUser: string;
515
+ bidUser: string;
516
+ strategyId: bigint;
517
+ currency: string;
518
+ collection: string;
519
+ itemIds: bigint[];
520
+ amounts: bigint[];
521
+ feeRecipients: [string, string];
522
+ feeAmounts: [bigint, bigint, bigint];
523
+ }
524
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
525
+ type Filter = TypedDeferredTopicFilter<Event>;
526
+ type Log = TypedEventLog<Event>;
527
+ type LogDescription = TypedLogDescription<Event>;
528
+ }
529
+ export declare namespace TakerBidEvent {
530
+ type InputTuple = [
531
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStruct,
532
+ bidUser: AddressLike,
533
+ bidRecipient: AddressLike,
534
+ strategyId: BigNumberish,
535
+ currency: AddressLike,
536
+ collection: AddressLike,
537
+ itemIds: BigNumberish[],
538
+ amounts: BigNumberish[],
539
+ feeRecipients: [AddressLike, AddressLike],
540
+ feeAmounts: [BigNumberish, BigNumberish, BigNumberish]
541
+ ];
542
+ type OutputTuple = [
543
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStructOutput,
544
+ bidUser: string,
545
+ bidRecipient: string,
546
+ strategyId: bigint,
547
+ currency: string,
548
+ collection: string,
549
+ itemIds: bigint[],
550
+ amounts: bigint[],
551
+ feeRecipients: [string, string],
552
+ feeAmounts: [bigint, bigint, bigint]
553
+ ];
554
+ interface OutputObject {
555
+ nonceInvalidationParameters: ILooksRareProtocol.NonceInvalidationParametersStructOutput;
556
+ bidUser: string;
557
+ bidRecipient: string;
558
+ strategyId: bigint;
559
+ currency: string;
560
+ collection: string;
561
+ itemIds: bigint[];
562
+ amounts: bigint[];
563
+ feeRecipients: [string, string];
564
+ feeAmounts: [bigint, bigint, bigint];
565
+ }
566
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
567
+ type Filter = TypedDeferredTopicFilter<Event>;
568
+ type Log = TypedEventLog<Event>;
569
+ type LogDescription = TypedLogDescription<Event>;
570
+ }
571
+ export interface LooksRareProtocol extends BaseContract {
572
+ connect(runner?: ContractRunner | null): LooksRareProtocol;
573
+ waitForDeployment(): Promise<this>;
574
+ interface: LooksRareProtocolInterface;
575
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
576
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
577
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
578
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
579
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
580
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
581
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
582
+ listeners(eventName?: string): Promise<Array<Listener>>;
583
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
584
+ MAGIC_VALUE_ORDER_NONCE_EXECUTED: TypedContractMethod<[], [string], "view">;
585
+ WETH: TypedContractMethod<[], [string], "view">;
586
+ addStrategy: TypedContractMethod<[
587
+ standardProtocolFeeBp: BigNumberish,
588
+ minTotalFeeBp: BigNumberish,
589
+ maxProtocolFeeBp: BigNumberish,
590
+ selector: BytesLike,
591
+ isMakerBid: boolean,
592
+ implementation: AddressLike
593
+ ], [
594
+ void
595
+ ], "nonpayable">;
596
+ affiliateController: TypedContractMethod<[], [string], "view">;
597
+ affiliateRates: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
598
+ cancelOrderNonces: TypedContractMethod<[
599
+ orderNonces: BigNumberish[]
600
+ ], [
601
+ void
602
+ ], "nonpayable">;
603
+ cancelOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
604
+ cancelSubsetNonces: TypedContractMethod<[
605
+ subsetNonces: BigNumberish[]
606
+ ], [
607
+ void
608
+ ], "nonpayable">;
609
+ chainId: TypedContractMethod<[], [bigint], "view">;
610
+ confirmOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
611
+ confirmOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
612
+ creatorFeeManager: TypedContractMethod<[], [string], "view">;
613
+ domainSeparator: TypedContractMethod<[], [string], "view">;
614
+ executeMultipleTakerBids: TypedContractMethod<[
615
+ takerBids: OrderStructs.TakerStruct[],
616
+ makerAsks: OrderStructs.MakerStruct[],
617
+ makerSignatures: BytesLike[],
618
+ merkleTrees: OrderStructs.MerkleTreeStruct[],
619
+ affiliate: AddressLike,
620
+ isAtomic: boolean
621
+ ], [
622
+ void
623
+ ], "payable">;
624
+ executeTakerAsk: TypedContractMethod<[
625
+ takerAsk: OrderStructs.TakerStruct,
626
+ makerBid: OrderStructs.MakerStruct,
627
+ makerSignature: BytesLike,
628
+ merkleTree: OrderStructs.MerkleTreeStruct,
629
+ affiliate: AddressLike
630
+ ], [
631
+ void
632
+ ], "nonpayable">;
633
+ executeTakerBid: TypedContractMethod<[
634
+ takerBid: OrderStructs.TakerStruct,
635
+ makerAsk: OrderStructs.MakerStruct,
636
+ makerSignature: BytesLike,
637
+ merkleTree: OrderStructs.MerkleTreeStruct,
638
+ affiliate: AddressLike
639
+ ], [
640
+ void
641
+ ], "payable">;
642
+ hashBatchOrder: TypedContractMethod<[
643
+ root: BytesLike,
644
+ proofLength: BigNumberish
645
+ ], [
646
+ string
647
+ ], "view">;
648
+ incrementBidAskNonces: TypedContractMethod<[
649
+ bid: boolean,
650
+ ask: boolean
651
+ ], [
652
+ void
653
+ ], "nonpayable">;
654
+ initiateOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
655
+ initiateOwnershipTransfer: TypedContractMethod<[
656
+ newPotentialOwner: AddressLike
657
+ ], [
658
+ void
659
+ ], "nonpayable">;
660
+ isAffiliateProgramActive: TypedContractMethod<[], [boolean], "view">;
661
+ isCurrencyAllowed: TypedContractMethod<[
662
+ arg0: AddressLike
663
+ ], [
664
+ boolean
665
+ ], "view">;
666
+ maxCreatorFeeBp: TypedContractMethod<[], [bigint], "view">;
667
+ owner: TypedContractMethod<[], [string], "view">;
668
+ ownershipStatus: TypedContractMethod<[], [bigint], "view">;
669
+ potentialOwner: TypedContractMethod<[], [string], "view">;
670
+ protocolFeeRecipient: TypedContractMethod<[], [string], "view">;
671
+ restrictedExecuteTakerBid: TypedContractMethod<[
672
+ takerBid: OrderStructs.TakerStruct,
673
+ makerAsk: OrderStructs.MakerStruct,
674
+ sender: AddressLike,
675
+ orderHash: BytesLike
676
+ ], [
677
+ bigint
678
+ ], "nonpayable">;
679
+ strategyInfo: TypedContractMethod<[
680
+ arg0: BigNumberish
681
+ ], [
682
+ [
683
+ boolean,
684
+ bigint,
685
+ bigint,
686
+ bigint,
687
+ string,
688
+ boolean,
689
+ string
690
+ ] & {
691
+ isActive: boolean;
692
+ standardProtocolFeeBp: bigint;
693
+ minTotalFeeBp: bigint;
694
+ maxProtocolFeeBp: bigint;
695
+ selector: string;
696
+ isMakerBid: boolean;
697
+ implementation: string;
698
+ }
699
+ ], "view">;
700
+ transferManager: TypedContractMethod<[], [string], "view">;
701
+ updateAffiliateController: TypedContractMethod<[
702
+ newAffiliateController: AddressLike
703
+ ], [
704
+ void
705
+ ], "nonpayable">;
706
+ updateAffiliateProgramStatus: TypedContractMethod<[
707
+ isActive: boolean
708
+ ], [
709
+ void
710
+ ], "nonpayable">;
711
+ updateAffiliateRate: TypedContractMethod<[
712
+ affiliate: AddressLike,
713
+ bp: BigNumberish
714
+ ], [
715
+ void
716
+ ], "nonpayable">;
717
+ updateCreatorFeeManager: TypedContractMethod<[
718
+ newCreatorFeeManager: AddressLike
719
+ ], [
720
+ void
721
+ ], "nonpayable">;
722
+ updateCurrencyStatus: TypedContractMethod<[
723
+ currency: AddressLike,
724
+ isAllowed: boolean
725
+ ], [
726
+ void
727
+ ], "nonpayable">;
728
+ updateDomainSeparator: TypedContractMethod<[], [void], "nonpayable">;
729
+ updateETHGasLimitForTransfer: TypedContractMethod<[
730
+ newGasLimitETHTransfer: BigNumberish
731
+ ], [
732
+ void
733
+ ], "nonpayable">;
734
+ updateMaxCreatorFeeBp: TypedContractMethod<[
735
+ newMaxCreatorFeeBp: BigNumberish
736
+ ], [
737
+ void
738
+ ], "nonpayable">;
739
+ updateProtocolFeeRecipient: TypedContractMethod<[
740
+ newProtocolFeeRecipient: AddressLike
741
+ ], [
742
+ void
743
+ ], "nonpayable">;
744
+ updateStrategy: TypedContractMethod<[
745
+ strategyId: BigNumberish,
746
+ isActive: boolean,
747
+ newStandardProtocolFee: BigNumberish,
748
+ newMinTotalFee: BigNumberish
749
+ ], [
750
+ void
751
+ ], "nonpayable">;
752
+ userBidAskNonces: TypedContractMethod<[
753
+ arg0: AddressLike
754
+ ], [
755
+ [bigint, bigint] & {
756
+ bidNonce: bigint;
757
+ askNonce: bigint;
758
+ }
759
+ ], "view">;
760
+ userOrderNonce: TypedContractMethod<[
761
+ arg0: AddressLike,
762
+ arg1: BigNumberish
763
+ ], [
764
+ string
765
+ ], "view">;
766
+ userSubsetNonce: TypedContractMethod<[
767
+ arg0: AddressLike,
768
+ arg1: BigNumberish
769
+ ], [
770
+ boolean
771
+ ], "view">;
772
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
773
+ getFunction(nameOrSignature: "MAGIC_VALUE_ORDER_NONCE_EXECUTED"): TypedContractMethod<[], [string], "view">;
774
+ getFunction(nameOrSignature: "WETH"): TypedContractMethod<[], [string], "view">;
775
+ getFunction(nameOrSignature: "addStrategy"): TypedContractMethod<[
776
+ standardProtocolFeeBp: BigNumberish,
777
+ minTotalFeeBp: BigNumberish,
778
+ maxProtocolFeeBp: BigNumberish,
779
+ selector: BytesLike,
780
+ isMakerBid: boolean,
781
+ implementation: AddressLike
782
+ ], [
783
+ void
784
+ ], "nonpayable">;
785
+ getFunction(nameOrSignature: "affiliateController"): TypedContractMethod<[], [string], "view">;
786
+ getFunction(nameOrSignature: "affiliateRates"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
787
+ getFunction(nameOrSignature: "cancelOrderNonces"): TypedContractMethod<[orderNonces: BigNumberish[]], [void], "nonpayable">;
788
+ getFunction(nameOrSignature: "cancelOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
789
+ getFunction(nameOrSignature: "cancelSubsetNonces"): TypedContractMethod<[subsetNonces: BigNumberish[]], [void], "nonpayable">;
790
+ getFunction(nameOrSignature: "chainId"): TypedContractMethod<[], [bigint], "view">;
791
+ getFunction(nameOrSignature: "confirmOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
792
+ getFunction(nameOrSignature: "confirmOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
793
+ getFunction(nameOrSignature: "creatorFeeManager"): TypedContractMethod<[], [string], "view">;
794
+ getFunction(nameOrSignature: "domainSeparator"): TypedContractMethod<[], [string], "view">;
795
+ getFunction(nameOrSignature: "executeMultipleTakerBids"): TypedContractMethod<[
796
+ takerBids: OrderStructs.TakerStruct[],
797
+ makerAsks: OrderStructs.MakerStruct[],
798
+ makerSignatures: BytesLike[],
799
+ merkleTrees: OrderStructs.MerkleTreeStruct[],
800
+ affiliate: AddressLike,
801
+ isAtomic: boolean
802
+ ], [
803
+ void
804
+ ], "payable">;
805
+ getFunction(nameOrSignature: "executeTakerAsk"): TypedContractMethod<[
806
+ takerAsk: OrderStructs.TakerStruct,
807
+ makerBid: OrderStructs.MakerStruct,
808
+ makerSignature: BytesLike,
809
+ merkleTree: OrderStructs.MerkleTreeStruct,
810
+ affiliate: AddressLike
811
+ ], [
812
+ void
813
+ ], "nonpayable">;
814
+ getFunction(nameOrSignature: "executeTakerBid"): TypedContractMethod<[
815
+ takerBid: OrderStructs.TakerStruct,
816
+ makerAsk: OrderStructs.MakerStruct,
817
+ makerSignature: BytesLike,
818
+ merkleTree: OrderStructs.MerkleTreeStruct,
819
+ affiliate: AddressLike
820
+ ], [
821
+ void
822
+ ], "payable">;
823
+ getFunction(nameOrSignature: "hashBatchOrder"): TypedContractMethod<[
824
+ root: BytesLike,
825
+ proofLength: BigNumberish
826
+ ], [
827
+ string
828
+ ], "view">;
829
+ getFunction(nameOrSignature: "incrementBidAskNonces"): TypedContractMethod<[bid: boolean, ask: boolean], [void], "nonpayable">;
830
+ getFunction(nameOrSignature: "initiateOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
831
+ getFunction(nameOrSignature: "initiateOwnershipTransfer"): TypedContractMethod<[
832
+ newPotentialOwner: AddressLike
833
+ ], [
834
+ void
835
+ ], "nonpayable">;
836
+ getFunction(nameOrSignature: "isAffiliateProgramActive"): TypedContractMethod<[], [boolean], "view">;
837
+ getFunction(nameOrSignature: "isCurrencyAllowed"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
838
+ getFunction(nameOrSignature: "maxCreatorFeeBp"): TypedContractMethod<[], [bigint], "view">;
839
+ getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
840
+ getFunction(nameOrSignature: "ownershipStatus"): TypedContractMethod<[], [bigint], "view">;
841
+ getFunction(nameOrSignature: "potentialOwner"): TypedContractMethod<[], [string], "view">;
842
+ getFunction(nameOrSignature: "protocolFeeRecipient"): TypedContractMethod<[], [string], "view">;
843
+ getFunction(nameOrSignature: "restrictedExecuteTakerBid"): TypedContractMethod<[
844
+ takerBid: OrderStructs.TakerStruct,
845
+ makerAsk: OrderStructs.MakerStruct,
846
+ sender: AddressLike,
847
+ orderHash: BytesLike
848
+ ], [
849
+ bigint
850
+ ], "nonpayable">;
851
+ getFunction(nameOrSignature: "strategyInfo"): TypedContractMethod<[
852
+ arg0: BigNumberish
853
+ ], [
854
+ [
855
+ boolean,
856
+ bigint,
857
+ bigint,
858
+ bigint,
859
+ string,
860
+ boolean,
861
+ string
862
+ ] & {
863
+ isActive: boolean;
864
+ standardProtocolFeeBp: bigint;
865
+ minTotalFeeBp: bigint;
866
+ maxProtocolFeeBp: bigint;
867
+ selector: string;
868
+ isMakerBid: boolean;
869
+ implementation: string;
870
+ }
871
+ ], "view">;
872
+ getFunction(nameOrSignature: "transferManager"): TypedContractMethod<[], [string], "view">;
873
+ getFunction(nameOrSignature: "updateAffiliateController"): TypedContractMethod<[
874
+ newAffiliateController: AddressLike
875
+ ], [
876
+ void
877
+ ], "nonpayable">;
878
+ getFunction(nameOrSignature: "updateAffiliateProgramStatus"): TypedContractMethod<[isActive: boolean], [void], "nonpayable">;
879
+ getFunction(nameOrSignature: "updateAffiliateRate"): TypedContractMethod<[
880
+ affiliate: AddressLike,
881
+ bp: BigNumberish
882
+ ], [
883
+ void
884
+ ], "nonpayable">;
885
+ getFunction(nameOrSignature: "updateCreatorFeeManager"): TypedContractMethod<[
886
+ newCreatorFeeManager: AddressLike
887
+ ], [
888
+ void
889
+ ], "nonpayable">;
890
+ getFunction(nameOrSignature: "updateCurrencyStatus"): TypedContractMethod<[
891
+ currency: AddressLike,
892
+ isAllowed: boolean
893
+ ], [
894
+ void
895
+ ], "nonpayable">;
896
+ getFunction(nameOrSignature: "updateDomainSeparator"): TypedContractMethod<[], [void], "nonpayable">;
897
+ getFunction(nameOrSignature: "updateETHGasLimitForTransfer"): TypedContractMethod<[
898
+ newGasLimitETHTransfer: BigNumberish
899
+ ], [
900
+ void
901
+ ], "nonpayable">;
902
+ getFunction(nameOrSignature: "updateMaxCreatorFeeBp"): TypedContractMethod<[
903
+ newMaxCreatorFeeBp: BigNumberish
904
+ ], [
905
+ void
906
+ ], "nonpayable">;
907
+ getFunction(nameOrSignature: "updateProtocolFeeRecipient"): TypedContractMethod<[
908
+ newProtocolFeeRecipient: AddressLike
909
+ ], [
910
+ void
911
+ ], "nonpayable">;
912
+ getFunction(nameOrSignature: "updateStrategy"): TypedContractMethod<[
913
+ strategyId: BigNumberish,
914
+ isActive: boolean,
915
+ newStandardProtocolFee: BigNumberish,
916
+ newMinTotalFee: BigNumberish
917
+ ], [
918
+ void
919
+ ], "nonpayable">;
920
+ getFunction(nameOrSignature: "userBidAskNonces"): TypedContractMethod<[
921
+ arg0: AddressLike
922
+ ], [
923
+ [bigint, bigint] & {
924
+ bidNonce: bigint;
925
+ askNonce: bigint;
926
+ }
927
+ ], "view">;
928
+ getFunction(nameOrSignature: "userOrderNonce"): TypedContractMethod<[
929
+ arg0: AddressLike,
930
+ arg1: BigNumberish
931
+ ], [
932
+ string
933
+ ], "view">;
934
+ getFunction(nameOrSignature: "userSubsetNonce"): TypedContractMethod<[
935
+ arg0: AddressLike,
936
+ arg1: BigNumberish
937
+ ], [
938
+ boolean
939
+ ], "view">;
940
+ getEvent(key: "AffiliatePayment"): TypedContractEvent<AffiliatePaymentEvent.InputTuple, AffiliatePaymentEvent.OutputTuple, AffiliatePaymentEvent.OutputObject>;
941
+ getEvent(key: "CancelOwnershipTransfer"): TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
942
+ getEvent(key: "CurrencyStatusUpdated"): TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
943
+ getEvent(key: "InitiateOwnershipRenouncement"): TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
944
+ getEvent(key: "InitiateOwnershipTransfer"): TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
945
+ getEvent(key: "NewAffiliateController"): TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
946
+ getEvent(key: "NewAffiliateProgramStatus"): TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
947
+ getEvent(key: "NewAffiliateRate"): TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
948
+ getEvent(key: "NewBidAskNonces"): TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
949
+ getEvent(key: "NewCreatorFeeManager"): TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
950
+ getEvent(key: "NewDomainSeparator"): TypedContractEvent<NewDomainSeparatorEvent.InputTuple, NewDomainSeparatorEvent.OutputTuple, NewDomainSeparatorEvent.OutputObject>;
951
+ getEvent(key: "NewGasLimitETHTransfer"): TypedContractEvent<NewGasLimitETHTransferEvent.InputTuple, NewGasLimitETHTransferEvent.OutputTuple, NewGasLimitETHTransferEvent.OutputObject>;
952
+ getEvent(key: "NewMaxCreatorFeeBp"): TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
953
+ getEvent(key: "NewOwner"): TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
954
+ getEvent(key: "NewProtocolFeeRecipient"): TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
955
+ getEvent(key: "NewStrategy"): TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
956
+ getEvent(key: "OrderNoncesCancelled"): TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
957
+ getEvent(key: "StrategyUpdated"): TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
958
+ getEvent(key: "SubsetNoncesCancelled"): TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
959
+ getEvent(key: "TakerAsk"): TypedContractEvent<TakerAskEvent.InputTuple, TakerAskEvent.OutputTuple, TakerAskEvent.OutputObject>;
960
+ getEvent(key: "TakerBid"): TypedContractEvent<TakerBidEvent.InputTuple, TakerBidEvent.OutputTuple, TakerBidEvent.OutputObject>;
961
+ filters: {
962
+ "AffiliatePayment(address,address,uint256)": TypedContractEvent<AffiliatePaymentEvent.InputTuple, AffiliatePaymentEvent.OutputTuple, AffiliatePaymentEvent.OutputObject>;
963
+ AffiliatePayment: TypedContractEvent<AffiliatePaymentEvent.InputTuple, AffiliatePaymentEvent.OutputTuple, AffiliatePaymentEvent.OutputObject>;
964
+ "CancelOwnershipTransfer()": TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
965
+ CancelOwnershipTransfer: TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
966
+ "CurrencyStatusUpdated(address,bool)": TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
967
+ CurrencyStatusUpdated: TypedContractEvent<CurrencyStatusUpdatedEvent.InputTuple, CurrencyStatusUpdatedEvent.OutputTuple, CurrencyStatusUpdatedEvent.OutputObject>;
968
+ "InitiateOwnershipRenouncement()": TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
969
+ InitiateOwnershipRenouncement: TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
970
+ "InitiateOwnershipTransfer(address,address)": TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
971
+ InitiateOwnershipTransfer: TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
972
+ "NewAffiliateController(address)": TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
973
+ NewAffiliateController: TypedContractEvent<NewAffiliateControllerEvent.InputTuple, NewAffiliateControllerEvent.OutputTuple, NewAffiliateControllerEvent.OutputObject>;
974
+ "NewAffiliateProgramStatus(bool)": TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
975
+ NewAffiliateProgramStatus: TypedContractEvent<NewAffiliateProgramStatusEvent.InputTuple, NewAffiliateProgramStatusEvent.OutputTuple, NewAffiliateProgramStatusEvent.OutputObject>;
976
+ "NewAffiliateRate(address,uint256)": TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
977
+ NewAffiliateRate: TypedContractEvent<NewAffiliateRateEvent.InputTuple, NewAffiliateRateEvent.OutputTuple, NewAffiliateRateEvent.OutputObject>;
978
+ "NewBidAskNonces(address,uint256,uint256)": TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
979
+ NewBidAskNonces: TypedContractEvent<NewBidAskNoncesEvent.InputTuple, NewBidAskNoncesEvent.OutputTuple, NewBidAskNoncesEvent.OutputObject>;
980
+ "NewCreatorFeeManager(address)": TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
981
+ NewCreatorFeeManager: TypedContractEvent<NewCreatorFeeManagerEvent.InputTuple, NewCreatorFeeManagerEvent.OutputTuple, NewCreatorFeeManagerEvent.OutputObject>;
982
+ "NewDomainSeparator()": TypedContractEvent<NewDomainSeparatorEvent.InputTuple, NewDomainSeparatorEvent.OutputTuple, NewDomainSeparatorEvent.OutputObject>;
983
+ NewDomainSeparator: TypedContractEvent<NewDomainSeparatorEvent.InputTuple, NewDomainSeparatorEvent.OutputTuple, NewDomainSeparatorEvent.OutputObject>;
984
+ "NewGasLimitETHTransfer(uint256)": TypedContractEvent<NewGasLimitETHTransferEvent.InputTuple, NewGasLimitETHTransferEvent.OutputTuple, NewGasLimitETHTransferEvent.OutputObject>;
985
+ NewGasLimitETHTransfer: TypedContractEvent<NewGasLimitETHTransferEvent.InputTuple, NewGasLimitETHTransferEvent.OutputTuple, NewGasLimitETHTransferEvent.OutputObject>;
986
+ "NewMaxCreatorFeeBp(uint256)": TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
987
+ NewMaxCreatorFeeBp: TypedContractEvent<NewMaxCreatorFeeBpEvent.InputTuple, NewMaxCreatorFeeBpEvent.OutputTuple, NewMaxCreatorFeeBpEvent.OutputObject>;
988
+ "NewOwner(address)": TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
989
+ NewOwner: TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
990
+ "NewProtocolFeeRecipient(address)": TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
991
+ NewProtocolFeeRecipient: TypedContractEvent<NewProtocolFeeRecipientEvent.InputTuple, NewProtocolFeeRecipientEvent.OutputTuple, NewProtocolFeeRecipientEvent.OutputObject>;
992
+ "NewStrategy(uint256,uint16,uint16,uint16,bytes4,bool,address)": TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
993
+ NewStrategy: TypedContractEvent<NewStrategyEvent.InputTuple, NewStrategyEvent.OutputTuple, NewStrategyEvent.OutputObject>;
994
+ "OrderNoncesCancelled(address,uint256[])": TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
995
+ OrderNoncesCancelled: TypedContractEvent<OrderNoncesCancelledEvent.InputTuple, OrderNoncesCancelledEvent.OutputTuple, OrderNoncesCancelledEvent.OutputObject>;
996
+ "StrategyUpdated(uint256,bool,uint16,uint16)": TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
997
+ StrategyUpdated: TypedContractEvent<StrategyUpdatedEvent.InputTuple, StrategyUpdatedEvent.OutputTuple, StrategyUpdatedEvent.OutputObject>;
998
+ "SubsetNoncesCancelled(address,uint256[])": TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
999
+ SubsetNoncesCancelled: TypedContractEvent<SubsetNoncesCancelledEvent.InputTuple, SubsetNoncesCancelledEvent.OutputTuple, SubsetNoncesCancelledEvent.OutputObject>;
1000
+ "TakerAsk(tuple,address,address,uint256,address,address,uint256[],uint256[],address[2],uint256[3])": TypedContractEvent<TakerAskEvent.InputTuple, TakerAskEvent.OutputTuple, TakerAskEvent.OutputObject>;
1001
+ TakerAsk: TypedContractEvent<TakerAskEvent.InputTuple, TakerAskEvent.OutputTuple, TakerAskEvent.OutputObject>;
1002
+ "TakerBid(tuple,address,address,uint256,address,address,uint256[],uint256[],address[2],uint256[3])": TypedContractEvent<TakerBidEvent.InputTuple, TakerBidEvent.OutputTuple, TakerBidEvent.OutputObject>;
1003
+ TakerBid: TypedContractEvent<TakerBidEvent.InputTuple, TakerBidEvent.OutputTuple, TakerBidEvent.OutputObject>;
1004
+ };
1005
+ }