@imtbl/orderbook 2.0.0-alpha.0

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 (119) hide show
  1. package/LICENSE.md +176 -0
  2. package/README.md +71 -0
  3. package/dist/browser/index.js +2 -0
  4. package/dist/node/index.cjs +2 -0
  5. package/dist/node/index.js +2 -0
  6. package/dist/types/api-client/api-client-factory.d.ts +8 -0
  7. package/dist/types/api-client/api-client.d.ts +29 -0
  8. package/dist/types/api-client/api-client.test.d.ts +1 -0
  9. package/dist/types/api-client/index.d.ts +2 -0
  10. package/dist/types/config/config.d.ts +20 -0
  11. package/dist/types/config/index.d.ts +1 -0
  12. package/dist/types/constants.d.ts +3 -0
  13. package/dist/types/erc721/erc721-factory.d.ts +7 -0
  14. package/dist/types/erc721/erc721.d.ts +7 -0
  15. package/dist/types/erc721/erc721.test.d.ts +1 -0
  16. package/dist/types/erc721/index.d.ts +2 -0
  17. package/dist/types/index.d.ts +4 -0
  18. package/dist/types/openapi/mapper.d.ts +10 -0
  19. package/dist/types/openapi/sdk/OrderBookClient.d.ts +10 -0
  20. package/dist/types/openapi/sdk/core/ApiError.d.ts +10 -0
  21. package/dist/types/openapi/sdk/core/ApiRequestOptions.d.ts +13 -0
  22. package/dist/types/openapi/sdk/core/ApiResult.d.ts +7 -0
  23. package/dist/types/openapi/sdk/core/AxiosHttpRequest.d.ts +14 -0
  24. package/dist/types/openapi/sdk/core/BaseHttpRequest.d.ts +8 -0
  25. package/dist/types/openapi/sdk/core/CancelablePromise.d.ts +26 -0
  26. package/dist/types/openapi/sdk/core/OpenAPI.d.ts +16 -0
  27. package/dist/types/openapi/sdk/core/request.d.ts +11 -0
  28. package/dist/types/openapi/sdk/index.d.ts +53 -0
  29. package/dist/types/openapi/sdk/models/ActiveOrderStatus.d.ts +6 -0
  30. package/dist/types/openapi/sdk/models/AssetCollectionItem.d.ts +3 -0
  31. package/dist/types/openapi/sdk/models/BidResult.d.ts +4 -0
  32. package/dist/types/openapi/sdk/models/CancelOrdersRequestBody.d.ts +14 -0
  33. package/dist/types/openapi/sdk/models/CancelOrdersResult.d.ts +4 -0
  34. package/dist/types/openapi/sdk/models/CancelOrdersResultData.d.ts +15 -0
  35. package/dist/types/openapi/sdk/models/CancelledOrderStatus.d.ts +24 -0
  36. package/dist/types/openapi/sdk/models/Chain.d.ts +13 -0
  37. package/dist/types/openapi/sdk/models/ChainName.d.ts +4 -0
  38. package/dist/types/openapi/sdk/models/CollectionBidResult.d.ts +4 -0
  39. package/dist/types/openapi/sdk/models/CreateBidRequestBody.d.ts +37 -0
  40. package/dist/types/openapi/sdk/models/CreateCollectionBidRequestBody.d.ts +37 -0
  41. package/dist/types/openapi/sdk/models/CreateListingRequestBody.d.ts +36 -0
  42. package/dist/types/openapi/sdk/models/ERC1155CollectionItem.d.ts +14 -0
  43. package/dist/types/openapi/sdk/models/ERC1155Item.d.ts +18 -0
  44. package/dist/types/openapi/sdk/models/ERC20Item.d.ts +14 -0
  45. package/dist/types/openapi/sdk/models/ERC721CollectionItem.d.ts +14 -0
  46. package/dist/types/openapi/sdk/models/ERC721Item.d.ts +14 -0
  47. package/dist/types/openapi/sdk/models/Error.d.ts +13 -0
  48. package/dist/types/openapi/sdk/models/ExpiredOrderStatus.d.ts +6 -0
  49. package/dist/types/openapi/sdk/models/FailedOrderCancellation.d.ts +18 -0
  50. package/dist/types/openapi/sdk/models/Fee.d.ts +25 -0
  51. package/dist/types/openapi/sdk/models/FillStatus.d.ts +13 -0
  52. package/dist/types/openapi/sdk/models/FilledOrderStatus.d.ts +6 -0
  53. package/dist/types/openapi/sdk/models/FulfillableOrder.d.ts +9 -0
  54. package/dist/types/openapi/sdk/models/FulfillmentDataRequest.d.ts +13 -0
  55. package/dist/types/openapi/sdk/models/InactiveOrderStatus.d.ts +14 -0
  56. package/dist/types/openapi/sdk/models/Item.d.ts +7 -0
  57. package/dist/types/openapi/sdk/models/ListBidsResult.d.ts +6 -0
  58. package/dist/types/openapi/sdk/models/ListCollectionBidsResult.d.ts +6 -0
  59. package/dist/types/openapi/sdk/models/ListListingsResult.d.ts +6 -0
  60. package/dist/types/openapi/sdk/models/ListTradeResult.d.ts +6 -0
  61. package/dist/types/openapi/sdk/models/ListingResult.d.ts +4 -0
  62. package/dist/types/openapi/sdk/models/NativeItem.d.ts +10 -0
  63. package/dist/types/openapi/sdk/models/Order.d.ts +59 -0
  64. package/dist/types/openapi/sdk/models/OrderStatus.d.ts +10 -0
  65. package/dist/types/openapi/sdk/models/OrderStatusName.d.ts +11 -0
  66. package/dist/types/openapi/sdk/models/Page.d.ts +13 -0
  67. package/dist/types/openapi/sdk/models/PageCursor.d.ts +4 -0
  68. package/dist/types/openapi/sdk/models/PageSize.d.ts +4 -0
  69. package/dist/types/openapi/sdk/models/PendingOrderStatus.d.ts +14 -0
  70. package/dist/types/openapi/sdk/models/ProtocolData.d.ts +31 -0
  71. package/dist/types/openapi/sdk/models/Trade.d.ts +40 -0
  72. package/dist/types/openapi/sdk/models/TradeBlockchainMetadata.d.ts +21 -0
  73. package/dist/types/openapi/sdk/models/TradeResult.d.ts +4 -0
  74. package/dist/types/openapi/sdk/models/UnfulfillableOrder.d.ts +14 -0
  75. package/dist/types/openapi/sdk/services/OrdersService.d.ts +319 -0
  76. package/dist/types/orderbook.d.ts +193 -0
  77. package/dist/types/seaport/components.d.ts +8 -0
  78. package/dist/types/seaport/constants.d.ts +43 -0
  79. package/dist/types/seaport/index.d.ts +2 -0
  80. package/dist/types/seaport/lib/bulk-orders.d.ts +6 -0
  81. package/dist/types/seaport/lib/defaults.d.ts +14 -0
  82. package/dist/types/seaport/lib/merkle.d.ts +33 -0
  83. package/dist/types/seaport/lib/utils.d.ts +10 -0
  84. package/dist/types/seaport/map-to-immutable-order.d.ts +7 -0
  85. package/dist/types/seaport/map-to-seaport-order.d.ts +6 -0
  86. package/dist/types/seaport/seaport-lib-factory.d.ts +10 -0
  87. package/dist/types/seaport/seaport.d.ts +38 -0
  88. package/dist/types/seaport/seaport.test.d.ts +1 -0
  89. package/dist/types/seaport/transaction.d.ts +3 -0
  90. package/dist/types/test/bulk-listings.e2e.d.ts +1 -0
  91. package/dist/types/test/cancel.e2e.d.ts +1 -0
  92. package/dist/types/test/create.e2e.d.ts +1 -0
  93. package/dist/types/test/expiry.demo.d.ts +1 -0
  94. package/dist/types/test/fulfil.e2e.d.ts +1 -0
  95. package/dist/types/test/fulfill.demo.d.ts +1 -0
  96. package/dist/types/test/fulfillBulk.demo.d.ts +1 -0
  97. package/dist/types/test/helpers/actions.d.ts +3 -0
  98. package/dist/types/test/helpers/config.d.ts +2 -0
  99. package/dist/types/test/helpers/erc721.d.ts +6 -0
  100. package/dist/types/test/helpers/gas.d.ts +4 -0
  101. package/dist/types/test/helpers/index.d.ts +8 -0
  102. package/dist/types/test/helpers/order.d.ts +3 -0
  103. package/dist/types/test/helpers/provider.d.ts +2 -0
  104. package/dist/types/test/helpers/sign-and-submit.d.ts +7 -0
  105. package/dist/types/test/helpers/signers.d.ts +3 -0
  106. package/dist/types/test/helpers/test-token/TestERC721Token.d.ts +715 -0
  107. package/dist/types/test/helpers/test-token/TestERC721Token__factory.d.ts +1043 -0
  108. package/dist/types/test/helpers/test-token/common.d.ts +50 -0
  109. package/dist/types/test/helpers/test-token/index.d.ts +2 -0
  110. package/dist/types/test/helpers/token.d.ts +1 -0
  111. package/dist/types/test/list.e2e.d.ts +1 -0
  112. package/dist/types/typechain/types/ImmutableERC721Base.d.ts +486 -0
  113. package/dist/types/typechain/types/common.d.ts +50 -0
  114. package/dist/types/typechain/types/factories/ImmutableERC721Base__factory.d.ts +688 -0
  115. package/dist/types/typechain/types/factories/index.d.ts +1 -0
  116. package/dist/types/typechain/types/index.d.ts +3 -0
  117. package/dist/types/types.d.ts +367 -0
  118. package/dist/types/utils.d.ts +1 -0
  119. package/package.json +73 -0
@@ -0,0 +1,715 @@
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 ImmutableERC721Base {
4
+ type IDBurnStruct = {
5
+ owner: AddressLike;
6
+ tokenIds: BigNumberish[];
7
+ };
8
+ type IDBurnStructOutput = [owner: string, tokenIds: bigint[]] & {
9
+ owner: string;
10
+ tokenIds: bigint[];
11
+ };
12
+ type IDMintStruct = {
13
+ to: AddressLike;
14
+ tokenIds: BigNumberish[];
15
+ };
16
+ type IDMintStructOutput = [to: string, tokenIds: bigint[]] & {
17
+ to: string;
18
+ tokenIds: bigint[];
19
+ };
20
+ type TransferRequestStruct = {
21
+ from: AddressLike;
22
+ tos: AddressLike[];
23
+ tokenIds: BigNumberish[];
24
+ };
25
+ type TransferRequestStructOutput = [
26
+ from: string,
27
+ tos: string[],
28
+ tokenIds: bigint[]
29
+ ] & {
30
+ from: string;
31
+ tos: string[];
32
+ tokenIds: bigint[];
33
+ };
34
+ }
35
+ export interface TestERC721TokenInterface extends Interface {
36
+ getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE" | "DOMAIN_SEPARATOR" | "MINTER_ROLE" | "_safeBurnBatch" | "_totalSupply" | "approve" | "balanceOf" | "baseURI" | "burn" | "burnBatch" | "contractURI" | "eip712Domain" | "getAdmins" | "getApproved" | "getRoleAdmin" | "getRoleMember" | "getRoleMemberCount" | "grantMinterRole" | "grantRole" | "hasRole" | "isApprovedForAll" | "mint" | "mintBatch" | "name" | "nonces" | "operatorAllowlist" | "ownerOf" | "permit" | "renounceRole" | "revokeMinterRole" | "revokeRole" | "royaltyInfo" | "safeBurn" | "safeBurnBatch" | "safeMint" | "safeMintBatch" | "safeTransferFrom(address,address,uint256)" | "safeTransferFrom(address,address,uint256,bytes)" | "safeTransferFromBatch" | "setApprovalForAll" | "setBaseURI" | "setContractURI" | "setDefaultRoyaltyReceiver" | "setNFTRoyaltyReceiver" | "setNFTRoyaltyReceiverBatch" | "supportsInterface" | "symbol" | "tokenURI" | "totalSupply" | "transferFrom"): FunctionFragment;
37
+ getEvent(nameOrSignatureOrTopic: "Approval" | "ApprovalForAll" | "EIP712DomainChanged" | "OperatorAllowlistRegistryUpdated" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Transfer"): EventFragment;
38
+ encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
39
+ encodeFunctionData(functionFragment: "DOMAIN_SEPARATOR", values?: undefined): string;
40
+ encodeFunctionData(functionFragment: "MINTER_ROLE", values?: undefined): string;
41
+ encodeFunctionData(functionFragment: "_safeBurnBatch", values: [ImmutableERC721Base.IDBurnStruct[]]): string;
42
+ encodeFunctionData(functionFragment: "_totalSupply", values?: undefined): string;
43
+ encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
44
+ encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
45
+ encodeFunctionData(functionFragment: "baseURI", values?: undefined): string;
46
+ encodeFunctionData(functionFragment: "burn", values: [BigNumberish]): string;
47
+ encodeFunctionData(functionFragment: "burnBatch", values: [BigNumberish[]]): string;
48
+ encodeFunctionData(functionFragment: "contractURI", values?: undefined): string;
49
+ encodeFunctionData(functionFragment: "eip712Domain", values?: undefined): string;
50
+ encodeFunctionData(functionFragment: "getAdmins", values?: undefined): string;
51
+ encodeFunctionData(functionFragment: "getApproved", values: [BigNumberish]): string;
52
+ encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
53
+ encodeFunctionData(functionFragment: "getRoleMember", values: [BytesLike, BigNumberish]): string;
54
+ encodeFunctionData(functionFragment: "getRoleMemberCount", values: [BytesLike]): string;
55
+ encodeFunctionData(functionFragment: "grantMinterRole", values: [AddressLike]): string;
56
+ encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
57
+ encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
58
+ encodeFunctionData(functionFragment: "isApprovedForAll", values: [AddressLike, AddressLike]): string;
59
+ encodeFunctionData(functionFragment: "mint", values: [AddressLike, BigNumberish]): string;
60
+ encodeFunctionData(functionFragment: "mintBatch", values: [ImmutableERC721Base.IDMintStruct[]]): string;
61
+ encodeFunctionData(functionFragment: "name", values?: undefined): string;
62
+ encodeFunctionData(functionFragment: "nonces", values: [BigNumberish]): string;
63
+ encodeFunctionData(functionFragment: "operatorAllowlist", values?: undefined): string;
64
+ encodeFunctionData(functionFragment: "ownerOf", values: [BigNumberish]): string;
65
+ encodeFunctionData(functionFragment: "permit", values: [AddressLike, BigNumberish, BigNumberish, BytesLike]): string;
66
+ encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
67
+ encodeFunctionData(functionFragment: "revokeMinterRole", values: [AddressLike]): string;
68
+ encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
69
+ encodeFunctionData(functionFragment: "royaltyInfo", values: [BigNumberish, BigNumberish]): string;
70
+ encodeFunctionData(functionFragment: "safeBurn", values: [AddressLike, BigNumberish]): string;
71
+ encodeFunctionData(functionFragment: "safeBurnBatch", values: [ImmutableERC721Base.IDBurnStruct[]]): string;
72
+ encodeFunctionData(functionFragment: "safeMint", values: [AddressLike, BigNumberish]): string;
73
+ encodeFunctionData(functionFragment: "safeMintBatch", values: [ImmutableERC721Base.IDMintStruct[]]): string;
74
+ encodeFunctionData(functionFragment: "safeTransferFrom(address,address,uint256)", values: [AddressLike, AddressLike, BigNumberish]): string;
75
+ encodeFunctionData(functionFragment: "safeTransferFrom(address,address,uint256,bytes)", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
76
+ encodeFunctionData(functionFragment: "safeTransferFromBatch", values: [ImmutableERC721Base.TransferRequestStruct]): string;
77
+ encodeFunctionData(functionFragment: "setApprovalForAll", values: [AddressLike, boolean]): string;
78
+ encodeFunctionData(functionFragment: "setBaseURI", values: [string]): string;
79
+ encodeFunctionData(functionFragment: "setContractURI", values: [string]): string;
80
+ encodeFunctionData(functionFragment: "setDefaultRoyaltyReceiver", values: [AddressLike, BigNumberish]): string;
81
+ encodeFunctionData(functionFragment: "setNFTRoyaltyReceiver", values: [BigNumberish, AddressLike, BigNumberish]): string;
82
+ encodeFunctionData(functionFragment: "setNFTRoyaltyReceiverBatch", values: [BigNumberish[], AddressLike, BigNumberish]): string;
83
+ encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
84
+ encodeFunctionData(functionFragment: "symbol", values?: undefined): string;
85
+ encodeFunctionData(functionFragment: "tokenURI", values: [BigNumberish]): string;
86
+ encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
87
+ encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
88
+ decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
89
+ decodeFunctionResult(functionFragment: "DOMAIN_SEPARATOR", data: BytesLike): Result;
90
+ decodeFunctionResult(functionFragment: "MINTER_ROLE", data: BytesLike): Result;
91
+ decodeFunctionResult(functionFragment: "_safeBurnBatch", data: BytesLike): Result;
92
+ decodeFunctionResult(functionFragment: "_totalSupply", data: BytesLike): Result;
93
+ decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
94
+ decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
95
+ decodeFunctionResult(functionFragment: "baseURI", data: BytesLike): Result;
96
+ decodeFunctionResult(functionFragment: "burn", data: BytesLike): Result;
97
+ decodeFunctionResult(functionFragment: "burnBatch", data: BytesLike): Result;
98
+ decodeFunctionResult(functionFragment: "contractURI", data: BytesLike): Result;
99
+ decodeFunctionResult(functionFragment: "eip712Domain", data: BytesLike): Result;
100
+ decodeFunctionResult(functionFragment: "getAdmins", data: BytesLike): Result;
101
+ decodeFunctionResult(functionFragment: "getApproved", data: BytesLike): Result;
102
+ decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
103
+ decodeFunctionResult(functionFragment: "getRoleMember", data: BytesLike): Result;
104
+ decodeFunctionResult(functionFragment: "getRoleMemberCount", data: BytesLike): Result;
105
+ decodeFunctionResult(functionFragment: "grantMinterRole", data: BytesLike): Result;
106
+ decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
107
+ decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
108
+ decodeFunctionResult(functionFragment: "isApprovedForAll", data: BytesLike): Result;
109
+ decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result;
110
+ decodeFunctionResult(functionFragment: "mintBatch", data: BytesLike): Result;
111
+ decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
112
+ decodeFunctionResult(functionFragment: "nonces", data: BytesLike): Result;
113
+ decodeFunctionResult(functionFragment: "operatorAllowlist", data: BytesLike): Result;
114
+ decodeFunctionResult(functionFragment: "ownerOf", data: BytesLike): Result;
115
+ decodeFunctionResult(functionFragment: "permit", data: BytesLike): Result;
116
+ decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
117
+ decodeFunctionResult(functionFragment: "revokeMinterRole", data: BytesLike): Result;
118
+ decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
119
+ decodeFunctionResult(functionFragment: "royaltyInfo", data: BytesLike): Result;
120
+ decodeFunctionResult(functionFragment: "safeBurn", data: BytesLike): Result;
121
+ decodeFunctionResult(functionFragment: "safeBurnBatch", data: BytesLike): Result;
122
+ decodeFunctionResult(functionFragment: "safeMint", data: BytesLike): Result;
123
+ decodeFunctionResult(functionFragment: "safeMintBatch", data: BytesLike): Result;
124
+ decodeFunctionResult(functionFragment: "safeTransferFrom(address,address,uint256)", data: BytesLike): Result;
125
+ decodeFunctionResult(functionFragment: "safeTransferFrom(address,address,uint256,bytes)", data: BytesLike): Result;
126
+ decodeFunctionResult(functionFragment: "safeTransferFromBatch", data: BytesLike): Result;
127
+ decodeFunctionResult(functionFragment: "setApprovalForAll", data: BytesLike): Result;
128
+ decodeFunctionResult(functionFragment: "setBaseURI", data: BytesLike): Result;
129
+ decodeFunctionResult(functionFragment: "setContractURI", data: BytesLike): Result;
130
+ decodeFunctionResult(functionFragment: "setDefaultRoyaltyReceiver", data: BytesLike): Result;
131
+ decodeFunctionResult(functionFragment: "setNFTRoyaltyReceiver", data: BytesLike): Result;
132
+ decodeFunctionResult(functionFragment: "setNFTRoyaltyReceiverBatch", data: BytesLike): Result;
133
+ decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
134
+ decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result;
135
+ decodeFunctionResult(functionFragment: "tokenURI", data: BytesLike): Result;
136
+ decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
137
+ decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
138
+ }
139
+ export declare namespace ApprovalEvent {
140
+ type InputTuple = [
141
+ owner: AddressLike,
142
+ approved: AddressLike,
143
+ tokenId: BigNumberish
144
+ ];
145
+ type OutputTuple = [owner: string, approved: string, tokenId: bigint];
146
+ interface OutputObject {
147
+ owner: string;
148
+ approved: string;
149
+ tokenId: bigint;
150
+ }
151
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
152
+ type Filter = TypedDeferredTopicFilter<Event>;
153
+ type Log = TypedEventLog<Event>;
154
+ type LogDescription = TypedLogDescription<Event>;
155
+ }
156
+ export declare namespace ApprovalForAllEvent {
157
+ type InputTuple = [
158
+ owner: AddressLike,
159
+ operator: AddressLike,
160
+ approved: boolean
161
+ ];
162
+ type OutputTuple = [
163
+ owner: string,
164
+ operator: string,
165
+ approved: boolean
166
+ ];
167
+ interface OutputObject {
168
+ owner: string;
169
+ operator: string;
170
+ approved: boolean;
171
+ }
172
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
173
+ type Filter = TypedDeferredTopicFilter<Event>;
174
+ type Log = TypedEventLog<Event>;
175
+ type LogDescription = TypedLogDescription<Event>;
176
+ }
177
+ export declare namespace EIP712DomainChangedEvent {
178
+ type InputTuple = [];
179
+ type OutputTuple = [];
180
+ interface OutputObject {
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 OperatorAllowlistRegistryUpdatedEvent {
188
+ type InputTuple = [oldRegistry: AddressLike, newRegistry: AddressLike];
189
+ type OutputTuple = [oldRegistry: string, newRegistry: string];
190
+ interface OutputObject {
191
+ oldRegistry: string;
192
+ newRegistry: string;
193
+ }
194
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
195
+ type Filter = TypedDeferredTopicFilter<Event>;
196
+ type Log = TypedEventLog<Event>;
197
+ type LogDescription = TypedLogDescription<Event>;
198
+ }
199
+ export declare namespace RoleAdminChangedEvent {
200
+ type InputTuple = [
201
+ role: BytesLike,
202
+ previousAdminRole: BytesLike,
203
+ newAdminRole: BytesLike
204
+ ];
205
+ type OutputTuple = [
206
+ role: string,
207
+ previousAdminRole: string,
208
+ newAdminRole: string
209
+ ];
210
+ interface OutputObject {
211
+ role: string;
212
+ previousAdminRole: string;
213
+ newAdminRole: 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 RoleGrantedEvent {
221
+ type InputTuple = [
222
+ role: BytesLike,
223
+ account: AddressLike,
224
+ sender: AddressLike
225
+ ];
226
+ type OutputTuple = [role: string, account: string, sender: string];
227
+ interface OutputObject {
228
+ role: string;
229
+ account: string;
230
+ sender: string;
231
+ }
232
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
233
+ type Filter = TypedDeferredTopicFilter<Event>;
234
+ type Log = TypedEventLog<Event>;
235
+ type LogDescription = TypedLogDescription<Event>;
236
+ }
237
+ export declare namespace RoleRevokedEvent {
238
+ type InputTuple = [
239
+ role: BytesLike,
240
+ account: AddressLike,
241
+ sender: AddressLike
242
+ ];
243
+ type OutputTuple = [role: string, account: string, sender: string];
244
+ interface OutputObject {
245
+ role: string;
246
+ account: string;
247
+ sender: string;
248
+ }
249
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
250
+ type Filter = TypedDeferredTopicFilter<Event>;
251
+ type Log = TypedEventLog<Event>;
252
+ type LogDescription = TypedLogDescription<Event>;
253
+ }
254
+ export declare namespace TransferEvent {
255
+ type InputTuple = [
256
+ from: AddressLike,
257
+ to: AddressLike,
258
+ tokenId: BigNumberish
259
+ ];
260
+ type OutputTuple = [from: string, to: string, tokenId: bigint];
261
+ interface OutputObject {
262
+ from: string;
263
+ to: string;
264
+ tokenId: bigint;
265
+ }
266
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
267
+ type Filter = TypedDeferredTopicFilter<Event>;
268
+ type Log = TypedEventLog<Event>;
269
+ type LogDescription = TypedLogDescription<Event>;
270
+ }
271
+ export interface TestERC721Token extends BaseContract {
272
+ connect(runner?: ContractRunner | null): TestERC721Token;
273
+ waitForDeployment(): Promise<this>;
274
+ interface: TestERC721TokenInterface;
275
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
276
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
277
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
278
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
279
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
280
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
281
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
282
+ listeners(eventName?: string): Promise<Array<Listener>>;
283
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
284
+ DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
285
+ DOMAIN_SEPARATOR: TypedContractMethod<[], [string], "view">;
286
+ MINTER_ROLE: TypedContractMethod<[], [string], "view">;
287
+ _safeBurnBatch: TypedContractMethod<[
288
+ burns: ImmutableERC721Base.IDBurnStruct[]
289
+ ], [
290
+ void
291
+ ], "nonpayable">;
292
+ _totalSupply: TypedContractMethod<[], [bigint], "view">;
293
+ approve: TypedContractMethod<[
294
+ to: AddressLike,
295
+ tokenId: BigNumberish
296
+ ], [
297
+ void
298
+ ], "nonpayable">;
299
+ balanceOf: TypedContractMethod<[owner: AddressLike], [bigint], "view">;
300
+ baseURI: TypedContractMethod<[], [string], "view">;
301
+ burn: TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
302
+ burnBatch: TypedContractMethod<[
303
+ tokenIDs: BigNumberish[]
304
+ ], [
305
+ void
306
+ ], "nonpayable">;
307
+ contractURI: TypedContractMethod<[], [string], "view">;
308
+ eip712Domain: TypedContractMethod<[
309
+ ], [
310
+ [
311
+ string,
312
+ string,
313
+ string,
314
+ bigint,
315
+ string,
316
+ string,
317
+ bigint[]
318
+ ] & {
319
+ fields: string;
320
+ name: string;
321
+ version: string;
322
+ chainId: bigint;
323
+ verifyingContract: string;
324
+ salt: string;
325
+ extensions: bigint[];
326
+ }
327
+ ], "view">;
328
+ getAdmins: TypedContractMethod<[], [string[]], "view">;
329
+ getApproved: TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
330
+ getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
331
+ getRoleMember: TypedContractMethod<[
332
+ role: BytesLike,
333
+ index: BigNumberish
334
+ ], [
335
+ string
336
+ ], "view">;
337
+ getRoleMemberCount: TypedContractMethod<[role: BytesLike], [bigint], "view">;
338
+ grantMinterRole: TypedContractMethod<[
339
+ user: AddressLike
340
+ ], [
341
+ void
342
+ ], "nonpayable">;
343
+ grantRole: TypedContractMethod<[
344
+ role: BytesLike,
345
+ account: AddressLike
346
+ ], [
347
+ void
348
+ ], "nonpayable">;
349
+ hasRole: TypedContractMethod<[
350
+ role: BytesLike,
351
+ account: AddressLike
352
+ ], [
353
+ boolean
354
+ ], "view">;
355
+ isApprovedForAll: TypedContractMethod<[
356
+ owner: AddressLike,
357
+ operator: AddressLike
358
+ ], [
359
+ boolean
360
+ ], "view">;
361
+ mint: TypedContractMethod<[
362
+ to: AddressLike,
363
+ tokenID: BigNumberish
364
+ ], [
365
+ void
366
+ ], "nonpayable">;
367
+ mintBatch: TypedContractMethod<[
368
+ mintRequests: ImmutableERC721Base.IDMintStruct[]
369
+ ], [
370
+ void
371
+ ], "nonpayable">;
372
+ name: TypedContractMethod<[], [string], "view">;
373
+ nonces: TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
374
+ operatorAllowlist: TypedContractMethod<[], [string], "view">;
375
+ ownerOf: TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
376
+ permit: TypedContractMethod<[
377
+ spender: AddressLike,
378
+ tokenId: BigNumberish,
379
+ deadline: BigNumberish,
380
+ sig: BytesLike
381
+ ], [
382
+ void
383
+ ], "nonpayable">;
384
+ renounceRole: TypedContractMethod<[
385
+ role: BytesLike,
386
+ account: AddressLike
387
+ ], [
388
+ void
389
+ ], "nonpayable">;
390
+ revokeMinterRole: TypedContractMethod<[
391
+ user: AddressLike
392
+ ], [
393
+ void
394
+ ], "nonpayable">;
395
+ revokeRole: TypedContractMethod<[
396
+ role: BytesLike,
397
+ account: AddressLike
398
+ ], [
399
+ void
400
+ ], "nonpayable">;
401
+ royaltyInfo: TypedContractMethod<[
402
+ tokenId: BigNumberish,
403
+ salePrice: BigNumberish
404
+ ], [
405
+ [string, bigint]
406
+ ], "view">;
407
+ safeBurn: TypedContractMethod<[
408
+ owner: AddressLike,
409
+ tokenId: BigNumberish
410
+ ], [
411
+ void
412
+ ], "nonpayable">;
413
+ safeBurnBatch: TypedContractMethod<[
414
+ burns: ImmutableERC721Base.IDBurnStruct[]
415
+ ], [
416
+ void
417
+ ], "nonpayable">;
418
+ safeMint: TypedContractMethod<[
419
+ to: AddressLike,
420
+ tokenID: BigNumberish
421
+ ], [
422
+ void
423
+ ], "nonpayable">;
424
+ safeMintBatch: TypedContractMethod<[
425
+ mintRequests: ImmutableERC721Base.IDMintStruct[]
426
+ ], [
427
+ void
428
+ ], "nonpayable">;
429
+ "safeTransferFrom(address,address,uint256)": TypedContractMethod<[
430
+ from: AddressLike,
431
+ to: AddressLike,
432
+ tokenId: BigNumberish
433
+ ], [
434
+ void
435
+ ], "nonpayable">;
436
+ "safeTransferFrom(address,address,uint256,bytes)": TypedContractMethod<[
437
+ from: AddressLike,
438
+ to: AddressLike,
439
+ tokenId: BigNumberish,
440
+ data: BytesLike
441
+ ], [
442
+ void
443
+ ], "nonpayable">;
444
+ safeTransferFromBatch: TypedContractMethod<[
445
+ tr: ImmutableERC721Base.TransferRequestStruct
446
+ ], [
447
+ void
448
+ ], "nonpayable">;
449
+ setApprovalForAll: TypedContractMethod<[
450
+ operator: AddressLike,
451
+ approved: boolean
452
+ ], [
453
+ void
454
+ ], "nonpayable">;
455
+ setBaseURI: TypedContractMethod<[baseURI_: string], [void], "nonpayable">;
456
+ setContractURI: TypedContractMethod<[
457
+ _contractURI: string
458
+ ], [
459
+ void
460
+ ], "nonpayable">;
461
+ setDefaultRoyaltyReceiver: TypedContractMethod<[
462
+ receiver: AddressLike,
463
+ feeNumerator: BigNumberish
464
+ ], [
465
+ void
466
+ ], "nonpayable">;
467
+ setNFTRoyaltyReceiver: TypedContractMethod<[
468
+ tokenId: BigNumberish,
469
+ receiver: AddressLike,
470
+ feeNumerator: BigNumberish
471
+ ], [
472
+ void
473
+ ], "nonpayable">;
474
+ setNFTRoyaltyReceiverBatch: TypedContractMethod<[
475
+ tokenIds: BigNumberish[],
476
+ receiver: AddressLike,
477
+ feeNumerator: BigNumberish
478
+ ], [
479
+ void
480
+ ], "nonpayable">;
481
+ supportsInterface: TypedContractMethod<[
482
+ interfaceId: BytesLike
483
+ ], [
484
+ boolean
485
+ ], "view">;
486
+ symbol: TypedContractMethod<[], [string], "view">;
487
+ tokenURI: TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
488
+ totalSupply: TypedContractMethod<[], [bigint], "view">;
489
+ transferFrom: TypedContractMethod<[
490
+ from: AddressLike,
491
+ to: AddressLike,
492
+ tokenId: BigNumberish
493
+ ], [
494
+ void
495
+ ], "nonpayable">;
496
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
497
+ getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
498
+ getFunction(nameOrSignature: "DOMAIN_SEPARATOR"): TypedContractMethod<[], [string], "view">;
499
+ getFunction(nameOrSignature: "MINTER_ROLE"): TypedContractMethod<[], [string], "view">;
500
+ getFunction(nameOrSignature: "_safeBurnBatch"): TypedContractMethod<[
501
+ burns: ImmutableERC721Base.IDBurnStruct[]
502
+ ], [
503
+ void
504
+ ], "nonpayable">;
505
+ getFunction(nameOrSignature: "_totalSupply"): TypedContractMethod<[], [bigint], "view">;
506
+ getFunction(nameOrSignature: "approve"): TypedContractMethod<[
507
+ to: AddressLike,
508
+ tokenId: BigNumberish
509
+ ], [
510
+ void
511
+ ], "nonpayable">;
512
+ getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[owner: AddressLike], [bigint], "view">;
513
+ getFunction(nameOrSignature: "baseURI"): TypedContractMethod<[], [string], "view">;
514
+ getFunction(nameOrSignature: "burn"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
515
+ getFunction(nameOrSignature: "burnBatch"): TypedContractMethod<[tokenIDs: BigNumberish[]], [void], "nonpayable">;
516
+ getFunction(nameOrSignature: "contractURI"): TypedContractMethod<[], [string], "view">;
517
+ getFunction(nameOrSignature: "eip712Domain"): TypedContractMethod<[
518
+ ], [
519
+ [
520
+ string,
521
+ string,
522
+ string,
523
+ bigint,
524
+ string,
525
+ string,
526
+ bigint[]
527
+ ] & {
528
+ fields: string;
529
+ name: string;
530
+ version: string;
531
+ chainId: bigint;
532
+ verifyingContract: string;
533
+ salt: string;
534
+ extensions: bigint[];
535
+ }
536
+ ], "view">;
537
+ getFunction(nameOrSignature: "getAdmins"): TypedContractMethod<[], [string[]], "view">;
538
+ getFunction(nameOrSignature: "getApproved"): TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
539
+ getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
540
+ getFunction(nameOrSignature: "getRoleMember"): TypedContractMethod<[
541
+ role: BytesLike,
542
+ index: BigNumberish
543
+ ], [
544
+ string
545
+ ], "view">;
546
+ getFunction(nameOrSignature: "getRoleMemberCount"): TypedContractMethod<[role: BytesLike], [bigint], "view">;
547
+ getFunction(nameOrSignature: "grantMinterRole"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
548
+ getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
549
+ role: BytesLike,
550
+ account: AddressLike
551
+ ], [
552
+ void
553
+ ], "nonpayable">;
554
+ getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
555
+ role: BytesLike,
556
+ account: AddressLike
557
+ ], [
558
+ boolean
559
+ ], "view">;
560
+ getFunction(nameOrSignature: "isApprovedForAll"): TypedContractMethod<[
561
+ owner: AddressLike,
562
+ operator: AddressLike
563
+ ], [
564
+ boolean
565
+ ], "view">;
566
+ getFunction(nameOrSignature: "mint"): TypedContractMethod<[
567
+ to: AddressLike,
568
+ tokenID: BigNumberish
569
+ ], [
570
+ void
571
+ ], "nonpayable">;
572
+ getFunction(nameOrSignature: "mintBatch"): TypedContractMethod<[
573
+ mintRequests: ImmutableERC721Base.IDMintStruct[]
574
+ ], [
575
+ void
576
+ ], "nonpayable">;
577
+ getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">;
578
+ getFunction(nameOrSignature: "nonces"): TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
579
+ getFunction(nameOrSignature: "operatorAllowlist"): TypedContractMethod<[], [string], "view">;
580
+ getFunction(nameOrSignature: "ownerOf"): TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
581
+ getFunction(nameOrSignature: "permit"): TypedContractMethod<[
582
+ spender: AddressLike,
583
+ tokenId: BigNumberish,
584
+ deadline: BigNumberish,
585
+ sig: BytesLike
586
+ ], [
587
+ void
588
+ ], "nonpayable">;
589
+ getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
590
+ role: BytesLike,
591
+ account: AddressLike
592
+ ], [
593
+ void
594
+ ], "nonpayable">;
595
+ getFunction(nameOrSignature: "revokeMinterRole"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
596
+ getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
597
+ role: BytesLike,
598
+ account: AddressLike
599
+ ], [
600
+ void
601
+ ], "nonpayable">;
602
+ getFunction(nameOrSignature: "royaltyInfo"): TypedContractMethod<[
603
+ tokenId: BigNumberish,
604
+ salePrice: BigNumberish
605
+ ], [
606
+ [string, bigint]
607
+ ], "view">;
608
+ getFunction(nameOrSignature: "safeBurn"): TypedContractMethod<[
609
+ owner: AddressLike,
610
+ tokenId: BigNumberish
611
+ ], [
612
+ void
613
+ ], "nonpayable">;
614
+ getFunction(nameOrSignature: "safeBurnBatch"): TypedContractMethod<[
615
+ burns: ImmutableERC721Base.IDBurnStruct[]
616
+ ], [
617
+ void
618
+ ], "nonpayable">;
619
+ getFunction(nameOrSignature: "safeMint"): TypedContractMethod<[
620
+ to: AddressLike,
621
+ tokenID: BigNumberish
622
+ ], [
623
+ void
624
+ ], "nonpayable">;
625
+ getFunction(nameOrSignature: "safeMintBatch"): TypedContractMethod<[
626
+ mintRequests: ImmutableERC721Base.IDMintStruct[]
627
+ ], [
628
+ void
629
+ ], "nonpayable">;
630
+ getFunction(nameOrSignature: "safeTransferFrom(address,address,uint256)"): TypedContractMethod<[
631
+ from: AddressLike,
632
+ to: AddressLike,
633
+ tokenId: BigNumberish
634
+ ], [
635
+ void
636
+ ], "nonpayable">;
637
+ getFunction(nameOrSignature: "safeTransferFrom(address,address,uint256,bytes)"): TypedContractMethod<[
638
+ from: AddressLike,
639
+ to: AddressLike,
640
+ tokenId: BigNumberish,
641
+ data: BytesLike
642
+ ], [
643
+ void
644
+ ], "nonpayable">;
645
+ getFunction(nameOrSignature: "safeTransferFromBatch"): TypedContractMethod<[
646
+ tr: ImmutableERC721Base.TransferRequestStruct
647
+ ], [
648
+ void
649
+ ], "nonpayable">;
650
+ getFunction(nameOrSignature: "setApprovalForAll"): TypedContractMethod<[
651
+ operator: AddressLike,
652
+ approved: boolean
653
+ ], [
654
+ void
655
+ ], "nonpayable">;
656
+ getFunction(nameOrSignature: "setBaseURI"): TypedContractMethod<[baseURI_: string], [void], "nonpayable">;
657
+ getFunction(nameOrSignature: "setContractURI"): TypedContractMethod<[_contractURI: string], [void], "nonpayable">;
658
+ getFunction(nameOrSignature: "setDefaultRoyaltyReceiver"): TypedContractMethod<[
659
+ receiver: AddressLike,
660
+ feeNumerator: BigNumberish
661
+ ], [
662
+ void
663
+ ], "nonpayable">;
664
+ getFunction(nameOrSignature: "setNFTRoyaltyReceiver"): TypedContractMethod<[
665
+ tokenId: BigNumberish,
666
+ receiver: AddressLike,
667
+ feeNumerator: BigNumberish
668
+ ], [
669
+ void
670
+ ], "nonpayable">;
671
+ getFunction(nameOrSignature: "setNFTRoyaltyReceiverBatch"): TypedContractMethod<[
672
+ tokenIds: BigNumberish[],
673
+ receiver: AddressLike,
674
+ feeNumerator: BigNumberish
675
+ ], [
676
+ void
677
+ ], "nonpayable">;
678
+ getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
679
+ getFunction(nameOrSignature: "symbol"): TypedContractMethod<[], [string], "view">;
680
+ getFunction(nameOrSignature: "tokenURI"): TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
681
+ getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
682
+ getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[
683
+ from: AddressLike,
684
+ to: AddressLike,
685
+ tokenId: BigNumberish
686
+ ], [
687
+ void
688
+ ], "nonpayable">;
689
+ getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
690
+ getEvent(key: "ApprovalForAll"): TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
691
+ getEvent(key: "EIP712DomainChanged"): TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
692
+ getEvent(key: "OperatorAllowlistRegistryUpdated"): TypedContractEvent<OperatorAllowlistRegistryUpdatedEvent.InputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputObject>;
693
+ getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
694
+ getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
695
+ getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
696
+ getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
697
+ filters: {
698
+ "Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
699
+ Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
700
+ "ApprovalForAll(address,address,bool)": TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
701
+ ApprovalForAll: TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
702
+ "EIP712DomainChanged()": TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
703
+ EIP712DomainChanged: TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
704
+ "OperatorAllowlistRegistryUpdated(address,address)": TypedContractEvent<OperatorAllowlistRegistryUpdatedEvent.InputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputObject>;
705
+ OperatorAllowlistRegistryUpdated: TypedContractEvent<OperatorAllowlistRegistryUpdatedEvent.InputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputTuple, OperatorAllowlistRegistryUpdatedEvent.OutputObject>;
706
+ "RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
707
+ RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
708
+ "RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
709
+ RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
710
+ "RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
711
+ RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
712
+ "Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
713
+ Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
714
+ };
715
+ }