@0xslots/sdk 0.2.0 → 0.4.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.
- package/dist/index.d.ts +730 -187
- package/dist/index.js +28 -26
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -83,10 +83,6 @@ type Currency = {
|
|
|
83
83
|
id: Scalars['ID']['output'];
|
|
84
84
|
name?: Maybe<Scalars['String']['output']>;
|
|
85
85
|
symbol?: Maybe<Scalars['String']['output']>;
|
|
86
|
-
underlyingDecimals?: Maybe<Scalars['Int']['output']>;
|
|
87
|
-
underlyingName?: Maybe<Scalars['String']['output']>;
|
|
88
|
-
underlyingSymbol?: Maybe<Scalars['String']['output']>;
|
|
89
|
-
underlyingToken?: Maybe<Scalars['Bytes']['output']>;
|
|
90
86
|
};
|
|
91
87
|
type Currency_Filter = {
|
|
92
88
|
/** Filter for the block changed event. */
|
|
@@ -174,82 +170,30 @@ type Currency_Filter = {
|
|
|
174
170
|
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
175
171
|
symbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
176
172
|
symbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
underlyingDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
183
|
-
underlyingDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
184
|
-
underlyingDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
185
|
-
underlyingName?: InputMaybe<Scalars['String']['input']>;
|
|
186
|
-
underlyingName_contains?: InputMaybe<Scalars['String']['input']>;
|
|
187
|
-
underlyingName_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
188
|
-
underlyingName_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
-
underlyingName_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
190
|
-
underlyingName_gt?: InputMaybe<Scalars['String']['input']>;
|
|
191
|
-
underlyingName_gte?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
-
underlyingName_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193
|
-
underlyingName_lt?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
-
underlyingName_lte?: InputMaybe<Scalars['String']['input']>;
|
|
195
|
-
underlyingName_not?: InputMaybe<Scalars['String']['input']>;
|
|
196
|
-
underlyingName_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
-
underlyingName_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
198
|
-
underlyingName_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
-
underlyingName_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
200
|
-
underlyingName_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201
|
-
underlyingName_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
202
|
-
underlyingName_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
203
|
-
underlyingName_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
204
|
-
underlyingName_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
205
|
-
underlyingSymbol?: InputMaybe<Scalars['String']['input']>;
|
|
206
|
-
underlyingSymbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
207
|
-
underlyingSymbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
-
underlyingSymbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
209
|
-
underlyingSymbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
210
|
-
underlyingSymbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
211
|
-
underlyingSymbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
212
|
-
underlyingSymbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
213
|
-
underlyingSymbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
214
|
-
underlyingSymbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
215
|
-
underlyingSymbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
-
underlyingSymbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
217
|
-
underlyingSymbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
218
|
-
underlyingSymbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
-
underlyingSymbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
220
|
-
underlyingSymbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
221
|
-
underlyingSymbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
222
|
-
underlyingSymbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
-
underlyingSymbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
224
|
-
underlyingSymbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
-
underlyingToken?: InputMaybe<Scalars['Bytes']['input']>;
|
|
226
|
-
underlyingToken_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
227
|
-
underlyingToken_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
228
|
-
underlyingToken_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
229
|
-
underlyingToken_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
230
|
-
underlyingToken_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
231
|
-
underlyingToken_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
232
|
-
underlyingToken_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
233
|
-
underlyingToken_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
234
|
-
underlyingToken_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
235
|
-
};
|
|
236
|
-
type Currency_OrderBy = 'allowed' | 'decimals' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotPrice' | 'id' | 'name' | 'symbol' | 'underlyingDecimals' | 'underlyingName' | 'underlyingSymbol' | 'underlyingToken';
|
|
237
|
-
type FlowChange = {
|
|
238
|
-
__typename?: 'FlowChange';
|
|
173
|
+
};
|
|
174
|
+
type Currency_OrderBy = 'allowed' | 'decimals' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__landCreationFee' | 'hub__liquidationBountyBps' | 'hub__minDepositSeconds' | 'hub__moduleCallGasLimit' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotExpansionFee' | 'id' | 'name' | 'symbol';
|
|
175
|
+
type DepositEvent = {
|
|
176
|
+
__typename?: 'DepositEvent';
|
|
177
|
+
amount: Scalars['BigInt']['output'];
|
|
239
178
|
blockNumber: Scalars['BigInt']['output'];
|
|
240
|
-
|
|
179
|
+
depositor: Scalars['Bytes']['output'];
|
|
241
180
|
id: Scalars['ID']['output'];
|
|
242
|
-
|
|
243
|
-
oldRate: Scalars['BigInt']['output'];
|
|
244
|
-
operation: Scalars['String']['output'];
|
|
181
|
+
slot: Slot;
|
|
245
182
|
timestamp: Scalars['BigInt']['output'];
|
|
246
|
-
to: Scalars['Bytes']['output'];
|
|
247
183
|
tx: Scalars['Bytes']['output'];
|
|
248
184
|
};
|
|
249
|
-
type
|
|
185
|
+
type DepositEvent_Filter = {
|
|
250
186
|
/** Filter for the block changed event. */
|
|
251
187
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
252
|
-
|
|
188
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
189
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
190
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
191
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
192
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
193
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
194
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
195
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
196
|
+
and?: InputMaybe<Array<InputMaybe<DepositEvent_Filter>>>;
|
|
253
197
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
254
198
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
255
199
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -258,16 +202,16 @@ type FlowChange_Filter = {
|
|
|
258
202
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
259
203
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
260
204
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
205
|
+
depositor?: InputMaybe<Scalars['Bytes']['input']>;
|
|
206
|
+
depositor_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
207
|
+
depositor_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
208
|
+
depositor_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
209
|
+
depositor_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
210
|
+
depositor_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
211
|
+
depositor_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
212
|
+
depositor_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
213
|
+
depositor_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
214
|
+
depositor_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
271
215
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
272
216
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
273
217
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -276,43 +220,28 @@ type FlowChange_Filter = {
|
|
|
276
220
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
277
221
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
278
222
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
operation_gte?: InputMaybe<Scalars['String']['input']>;
|
|
302
|
-
operation_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
303
|
-
operation_lt?: InputMaybe<Scalars['String']['input']>;
|
|
304
|
-
operation_lte?: InputMaybe<Scalars['String']['input']>;
|
|
305
|
-
operation_not?: InputMaybe<Scalars['String']['input']>;
|
|
306
|
-
operation_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
307
|
-
operation_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
308
|
-
operation_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
309
|
-
operation_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
310
|
-
operation_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
311
|
-
operation_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
312
|
-
operation_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
313
|
-
operation_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
314
|
-
operation_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
315
|
-
or?: InputMaybe<Array<InputMaybe<FlowChange_Filter>>>;
|
|
223
|
+
or?: InputMaybe<Array<InputMaybe<DepositEvent_Filter>>>;
|
|
224
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
226
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
227
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
228
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
229
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
230
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
232
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
233
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
234
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
235
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
236
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
237
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
238
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
239
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
240
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
241
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
242
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
243
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
244
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
316
245
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
317
246
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
318
247
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -321,16 +250,6 @@ type FlowChange_Filter = {
|
|
|
321
250
|
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
322
251
|
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
323
252
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
324
|
-
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
325
|
-
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
326
|
-
to_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
327
|
-
to_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
328
|
-
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
329
|
-
to_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
330
|
-
to_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
331
|
-
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
332
|
-
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
333
|
-
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
334
253
|
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
335
254
|
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
336
255
|
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -342,7 +261,7 @@ type FlowChange_Filter = {
|
|
|
342
261
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
343
262
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
344
263
|
};
|
|
345
|
-
type
|
|
264
|
+
type DepositEvent_OrderBy = 'amount' | 'blockNumber' | 'depositor' | 'id' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
346
265
|
type Hub = {
|
|
347
266
|
__typename?: 'Hub';
|
|
348
267
|
allowedCurrencies: Array<Currency>;
|
|
@@ -355,10 +274,14 @@ type Hub = {
|
|
|
355
274
|
defaultSlotCount: Scalars['BigInt']['output'];
|
|
356
275
|
defaultTaxPercentage: Scalars['BigInt']['output'];
|
|
357
276
|
id: Scalars['ID']['output'];
|
|
277
|
+
landCreationFee: Scalars['BigInt']['output'];
|
|
358
278
|
lands: Array<Land>;
|
|
279
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
280
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
281
|
+
moduleCallGasLimit: Scalars['BigInt']['output'];
|
|
359
282
|
protocolFeeBps: Scalars['BigInt']['output'];
|
|
360
283
|
protocolFeeRecipient: Scalars['Bytes']['output'];
|
|
361
|
-
|
|
284
|
+
slotExpansionFee: Scalars['BigInt']['output'];
|
|
362
285
|
};
|
|
363
286
|
type HubAllowedCurrenciesArgs = {
|
|
364
287
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -466,7 +389,39 @@ type Hub_Filter = {
|
|
|
466
389
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
467
390
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
468
391
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
392
|
+
landCreationFee?: InputMaybe<Scalars['BigInt']['input']>;
|
|
393
|
+
landCreationFee_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
394
|
+
landCreationFee_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
395
|
+
landCreationFee_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
396
|
+
landCreationFee_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
397
|
+
landCreationFee_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
398
|
+
landCreationFee_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
399
|
+
landCreationFee_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
469
400
|
lands_?: InputMaybe<Land_Filter>;
|
|
401
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
402
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
403
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
404
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
405
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
406
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
407
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
408
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
409
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
410
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
411
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
412
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
413
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
414
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
415
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
416
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
417
|
+
moduleCallGasLimit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
418
|
+
moduleCallGasLimit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
419
|
+
moduleCallGasLimit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
420
|
+
moduleCallGasLimit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
421
|
+
moduleCallGasLimit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
422
|
+
moduleCallGasLimit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
423
|
+
moduleCallGasLimit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
424
|
+
moduleCallGasLimit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
470
425
|
or?: InputMaybe<Array<InputMaybe<Hub_Filter>>>;
|
|
471
426
|
protocolFeeBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
472
427
|
protocolFeeBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -486,16 +441,16 @@ type Hub_Filter = {
|
|
|
486
441
|
protocolFeeRecipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
487
442
|
protocolFeeRecipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
488
443
|
protocolFeeRecipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
};
|
|
498
|
-
type Hub_OrderBy = 'allowedCurrencies' | 'allowedModules' | 'defaultCurrency' | 'defaultCurrency__allowed' | 'defaultCurrency__decimals' | 'defaultCurrency__id' | 'defaultCurrency__name' | 'defaultCurrency__symbol' | '
|
|
444
|
+
slotExpansionFee?: InputMaybe<Scalars['BigInt']['input']>;
|
|
445
|
+
slotExpansionFee_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
446
|
+
slotExpansionFee_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
447
|
+
slotExpansionFee_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
448
|
+
slotExpansionFee_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
449
|
+
slotExpansionFee_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
450
|
+
slotExpansionFee_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
451
|
+
slotExpansionFee_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
452
|
+
};
|
|
453
|
+
type Hub_OrderBy = 'allowedCurrencies' | 'allowedModules' | 'defaultCurrency' | 'defaultCurrency__allowed' | 'defaultCurrency__decimals' | 'defaultCurrency__id' | 'defaultCurrency__name' | 'defaultCurrency__symbol' | 'defaultMaxTaxPercentage' | 'defaultMinTaxUpdatePeriod' | 'defaultModule' | 'defaultPrice' | 'defaultSlotCount' | 'defaultTaxPercentage' | 'id' | 'landCreationFee' | 'lands' | 'liquidationBountyBps' | 'minDepositSeconds' | 'moduleCallGasLimit' | 'protocolFeeBps' | 'protocolFeeRecipient' | 'slotExpansionFee';
|
|
499
454
|
type Land = {
|
|
500
455
|
__typename?: 'Land';
|
|
501
456
|
createdAt: Scalars['BigInt']['output'];
|
|
@@ -512,6 +467,74 @@ type LandSlotsArgs = {
|
|
|
512
467
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
513
468
|
where?: InputMaybe<Slot_Filter>;
|
|
514
469
|
};
|
|
470
|
+
type LandExpandedEvent = {
|
|
471
|
+
__typename?: 'LandExpandedEvent';
|
|
472
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
473
|
+
id: Scalars['ID']['output'];
|
|
474
|
+
land: Scalars['Bytes']['output'];
|
|
475
|
+
newSlotCount: Scalars['BigInt']['output'];
|
|
476
|
+
timestamp: Scalars['BigInt']['output'];
|
|
477
|
+
tx: Scalars['Bytes']['output'];
|
|
478
|
+
};
|
|
479
|
+
type LandExpandedEvent_Filter = {
|
|
480
|
+
/** Filter for the block changed event. */
|
|
481
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
482
|
+
and?: InputMaybe<Array<InputMaybe<LandExpandedEvent_Filter>>>;
|
|
483
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
484
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
485
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
486
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
487
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
488
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
489
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
490
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
491
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
492
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
493
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
494
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
495
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
496
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
497
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
498
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
499
|
+
land?: InputMaybe<Scalars['Bytes']['input']>;
|
|
500
|
+
land_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
501
|
+
land_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
502
|
+
land_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
503
|
+
land_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
504
|
+
land_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
505
|
+
land_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
506
|
+
land_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
507
|
+
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
508
|
+
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
509
|
+
newSlotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
510
|
+
newSlotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
511
|
+
newSlotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
512
|
+
newSlotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
513
|
+
newSlotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
514
|
+
newSlotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
515
|
+
newSlotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
516
|
+
newSlotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
517
|
+
or?: InputMaybe<Array<InputMaybe<LandExpandedEvent_Filter>>>;
|
|
518
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
519
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
520
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
521
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
522
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
523
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
524
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
525
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
526
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
527
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
528
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
529
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
530
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
531
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
532
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
533
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
534
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
535
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
536
|
+
};
|
|
537
|
+
type LandExpandedEvent_OrderBy = 'blockNumber' | 'id' | 'land' | 'newSlotCount' | 'timestamp' | 'tx';
|
|
515
538
|
type LandOpenedEvent = {
|
|
516
539
|
__typename?: 'LandOpenedEvent';
|
|
517
540
|
account: Scalars['Bytes']['output'];
|
|
@@ -657,7 +680,7 @@ type Land_Filter = {
|
|
|
657
680
|
owner_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
658
681
|
slots_?: InputMaybe<Slot_Filter>;
|
|
659
682
|
};
|
|
660
|
-
type Land_OrderBy = 'createdAt' | 'createdTx' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | '
|
|
683
|
+
type Land_OrderBy = 'createdAt' | 'createdTx' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__landCreationFee' | 'hub__liquidationBountyBps' | 'hub__minDepositSeconds' | 'hub__moduleCallGasLimit' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotExpansionFee' | 'id' | 'owner' | 'slots';
|
|
661
684
|
type Module = {
|
|
662
685
|
__typename?: 'Module';
|
|
663
686
|
allowed: Scalars['Boolean']['output'];
|
|
@@ -745,7 +768,7 @@ type Module_Filter = {
|
|
|
745
768
|
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
746
769
|
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
747
770
|
};
|
|
748
|
-
type Module_OrderBy = 'allowed' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | '
|
|
771
|
+
type Module_OrderBy = 'allowed' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__landCreationFee' | 'hub__liquidationBountyBps' | 'hub__minDepositSeconds' | 'hub__moduleCallGasLimit' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotExpansionFee' | 'id' | 'name' | 'version';
|
|
749
772
|
/** Defines the order direction, either ascending or descending */
|
|
750
773
|
type OrderDirection = 'asc' | 'desc';
|
|
751
774
|
type PriceUpdate = {
|
|
@@ -842,11 +865,13 @@ type Query = {
|
|
|
842
865
|
_meta?: Maybe<_Meta_>;
|
|
843
866
|
currencies: Array<Currency>;
|
|
844
867
|
currency?: Maybe<Currency>;
|
|
845
|
-
|
|
846
|
-
|
|
868
|
+
depositEvent?: Maybe<DepositEvent>;
|
|
869
|
+
depositEvents: Array<DepositEvent>;
|
|
847
870
|
hub?: Maybe<Hub>;
|
|
848
871
|
hubs: Array<Hub>;
|
|
849
872
|
land?: Maybe<Land>;
|
|
873
|
+
landExpandedEvent?: Maybe<LandExpandedEvent>;
|
|
874
|
+
landExpandedEvents: Array<LandExpandedEvent>;
|
|
850
875
|
landOpenedEvent?: Maybe<LandOpenedEvent>;
|
|
851
876
|
landOpenedEvents: Array<LandOpenedEvent>;
|
|
852
877
|
lands: Array<Land>;
|
|
@@ -854,16 +879,24 @@ type Query = {
|
|
|
854
879
|
modules: Array<Module>;
|
|
855
880
|
priceUpdate?: Maybe<PriceUpdate>;
|
|
856
881
|
priceUpdates: Array<PriceUpdate>;
|
|
882
|
+
settlementEvent?: Maybe<SettlementEvent>;
|
|
883
|
+
settlementEvents: Array<SettlementEvent>;
|
|
857
884
|
slot?: Maybe<Slot>;
|
|
858
885
|
slotCreatedEvent?: Maybe<SlotCreatedEvent>;
|
|
859
886
|
slotCreatedEvents: Array<SlotCreatedEvent>;
|
|
887
|
+
slotLiquidatedEvent?: Maybe<SlotLiquidatedEvent>;
|
|
888
|
+
slotLiquidatedEvents: Array<SlotLiquidatedEvent>;
|
|
860
889
|
slotPurchase?: Maybe<SlotPurchase>;
|
|
861
890
|
slotPurchases: Array<SlotPurchase>;
|
|
862
891
|
slotReleasedEvent?: Maybe<SlotReleasedEvent>;
|
|
863
892
|
slotReleasedEvents: Array<SlotReleasedEvent>;
|
|
864
893
|
slots: Array<Slot>;
|
|
894
|
+
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
895
|
+
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
865
896
|
taxRateChange?: Maybe<TaxRateChange>;
|
|
866
897
|
taxRateChanges: Array<TaxRateChange>;
|
|
898
|
+
withdrawalEvent?: Maybe<WithdrawalEvent>;
|
|
899
|
+
withdrawalEvents: Array<WithdrawalEvent>;
|
|
867
900
|
};
|
|
868
901
|
type Query_MetaArgs = {
|
|
869
902
|
block?: InputMaybe<Block_Height>;
|
|
@@ -882,19 +915,19 @@ type QueryCurrencyArgs = {
|
|
|
882
915
|
id: Scalars['ID']['input'];
|
|
883
916
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
884
917
|
};
|
|
885
|
-
type
|
|
918
|
+
type QueryDepositEventArgs = {
|
|
886
919
|
block?: InputMaybe<Block_Height>;
|
|
887
920
|
id: Scalars['ID']['input'];
|
|
888
921
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
889
922
|
};
|
|
890
|
-
type
|
|
923
|
+
type QueryDepositEventsArgs = {
|
|
891
924
|
block?: InputMaybe<Block_Height>;
|
|
892
925
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
893
|
-
orderBy?: InputMaybe<
|
|
926
|
+
orderBy?: InputMaybe<DepositEvent_OrderBy>;
|
|
894
927
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
895
928
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
896
929
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
897
|
-
where?: InputMaybe<
|
|
930
|
+
where?: InputMaybe<DepositEvent_Filter>;
|
|
898
931
|
};
|
|
899
932
|
type QueryHubArgs = {
|
|
900
933
|
block?: InputMaybe<Block_Height>;
|
|
@@ -915,6 +948,20 @@ type QueryLandArgs = {
|
|
|
915
948
|
id: Scalars['ID']['input'];
|
|
916
949
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
917
950
|
};
|
|
951
|
+
type QueryLandExpandedEventArgs = {
|
|
952
|
+
block?: InputMaybe<Block_Height>;
|
|
953
|
+
id: Scalars['ID']['input'];
|
|
954
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
955
|
+
};
|
|
956
|
+
type QueryLandExpandedEventsArgs = {
|
|
957
|
+
block?: InputMaybe<Block_Height>;
|
|
958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
959
|
+
orderBy?: InputMaybe<LandExpandedEvent_OrderBy>;
|
|
960
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
961
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
962
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
963
|
+
where?: InputMaybe<LandExpandedEvent_Filter>;
|
|
964
|
+
};
|
|
918
965
|
type QueryLandOpenedEventArgs = {
|
|
919
966
|
block?: InputMaybe<Block_Height>;
|
|
920
967
|
id: Scalars['ID']['input'];
|
|
@@ -966,6 +1013,20 @@ type QueryPriceUpdatesArgs = {
|
|
|
966
1013
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
967
1014
|
where?: InputMaybe<PriceUpdate_Filter>;
|
|
968
1015
|
};
|
|
1016
|
+
type QuerySettlementEventArgs = {
|
|
1017
|
+
block?: InputMaybe<Block_Height>;
|
|
1018
|
+
id: Scalars['ID']['input'];
|
|
1019
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1020
|
+
};
|
|
1021
|
+
type QuerySettlementEventsArgs = {
|
|
1022
|
+
block?: InputMaybe<Block_Height>;
|
|
1023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1024
|
+
orderBy?: InputMaybe<SettlementEvent_OrderBy>;
|
|
1025
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1026
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1028
|
+
where?: InputMaybe<SettlementEvent_Filter>;
|
|
1029
|
+
};
|
|
969
1030
|
type QuerySlotArgs = {
|
|
970
1031
|
block?: InputMaybe<Block_Height>;
|
|
971
1032
|
id: Scalars['ID']['input'];
|
|
@@ -985,6 +1046,20 @@ type QuerySlotCreatedEventsArgs = {
|
|
|
985
1046
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
986
1047
|
where?: InputMaybe<SlotCreatedEvent_Filter>;
|
|
987
1048
|
};
|
|
1049
|
+
type QuerySlotLiquidatedEventArgs = {
|
|
1050
|
+
block?: InputMaybe<Block_Height>;
|
|
1051
|
+
id: Scalars['ID']['input'];
|
|
1052
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1053
|
+
};
|
|
1054
|
+
type QuerySlotLiquidatedEventsArgs = {
|
|
1055
|
+
block?: InputMaybe<Block_Height>;
|
|
1056
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1057
|
+
orderBy?: InputMaybe<SlotLiquidatedEvent_OrderBy>;
|
|
1058
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1059
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1060
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1061
|
+
where?: InputMaybe<SlotLiquidatedEvent_Filter>;
|
|
1062
|
+
};
|
|
988
1063
|
type QuerySlotPurchaseArgs = {
|
|
989
1064
|
block?: InputMaybe<Block_Height>;
|
|
990
1065
|
id: Scalars['ID']['input'];
|
|
@@ -1022,6 +1097,20 @@ type QuerySlotsArgs = {
|
|
|
1022
1097
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1023
1098
|
where?: InputMaybe<Slot_Filter>;
|
|
1024
1099
|
};
|
|
1100
|
+
type QueryTaxCollectedEventArgs = {
|
|
1101
|
+
block?: InputMaybe<Block_Height>;
|
|
1102
|
+
id: Scalars['ID']['input'];
|
|
1103
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1104
|
+
};
|
|
1105
|
+
type QueryTaxCollectedEventsArgs = {
|
|
1106
|
+
block?: InputMaybe<Block_Height>;
|
|
1107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1108
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1109
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1110
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1111
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1112
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1113
|
+
};
|
|
1025
1114
|
type QueryTaxRateChangeArgs = {
|
|
1026
1115
|
block?: InputMaybe<Block_Height>;
|
|
1027
1116
|
id: Scalars['ID']['input'];
|
|
@@ -1036,6 +1125,108 @@ type QueryTaxRateChangesArgs = {
|
|
|
1036
1125
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1037
1126
|
where?: InputMaybe<TaxRateChange_Filter>;
|
|
1038
1127
|
};
|
|
1128
|
+
type QueryWithdrawalEventArgs = {
|
|
1129
|
+
block?: InputMaybe<Block_Height>;
|
|
1130
|
+
id: Scalars['ID']['input'];
|
|
1131
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1132
|
+
};
|
|
1133
|
+
type QueryWithdrawalEventsArgs = {
|
|
1134
|
+
block?: InputMaybe<Block_Height>;
|
|
1135
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1136
|
+
orderBy?: InputMaybe<WithdrawalEvent_OrderBy>;
|
|
1137
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1138
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1139
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1140
|
+
where?: InputMaybe<WithdrawalEvent_Filter>;
|
|
1141
|
+
};
|
|
1142
|
+
type SettlementEvent = {
|
|
1143
|
+
__typename?: 'SettlementEvent';
|
|
1144
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1145
|
+
depositRemaining: Scalars['BigInt']['output'];
|
|
1146
|
+
id: Scalars['ID']['output'];
|
|
1147
|
+
slot: Slot;
|
|
1148
|
+
taxOwed: Scalars['BigInt']['output'];
|
|
1149
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1150
|
+
tx: Scalars['Bytes']['output'];
|
|
1151
|
+
};
|
|
1152
|
+
type SettlementEvent_Filter = {
|
|
1153
|
+
/** Filter for the block changed event. */
|
|
1154
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1155
|
+
and?: InputMaybe<Array<InputMaybe<SettlementEvent_Filter>>>;
|
|
1156
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1157
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1159
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1160
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1161
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1162
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1163
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1164
|
+
depositRemaining?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1165
|
+
depositRemaining_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1166
|
+
depositRemaining_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1167
|
+
depositRemaining_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1168
|
+
depositRemaining_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1169
|
+
depositRemaining_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1170
|
+
depositRemaining_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1171
|
+
depositRemaining_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1172
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1173
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1174
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1175
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1176
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1177
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1178
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1179
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1180
|
+
or?: InputMaybe<Array<InputMaybe<SettlementEvent_Filter>>>;
|
|
1181
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1183
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1190
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1191
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1192
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1193
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1194
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1195
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1196
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1197
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1198
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1199
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1201
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1202
|
+
taxOwed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1203
|
+
taxOwed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1204
|
+
taxOwed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1205
|
+
taxOwed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1206
|
+
taxOwed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1207
|
+
taxOwed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1208
|
+
taxOwed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1209
|
+
taxOwed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1210
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1211
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1212
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1213
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1214
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1215
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1216
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1217
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1218
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1219
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1220
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1221
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1222
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1223
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1224
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1225
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1226
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1227
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1228
|
+
};
|
|
1229
|
+
type SettlementEvent_OrderBy = 'blockNumber' | 'depositRemaining' | 'id' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'taxOwed' | 'timestamp' | 'tx';
|
|
1039
1230
|
type Slot = {
|
|
1040
1231
|
__typename?: 'Slot';
|
|
1041
1232
|
active: Scalars['Boolean']['output'];
|
|
@@ -1043,8 +1234,10 @@ type Slot = {
|
|
|
1043
1234
|
createdAt: Scalars['BigInt']['output'];
|
|
1044
1235
|
createdEvent?: Maybe<SlotCreatedEvent>;
|
|
1045
1236
|
currency: Scalars['Bytes']['output'];
|
|
1237
|
+
deposits: Array<DepositEvent>;
|
|
1046
1238
|
id: Scalars['ID']['output'];
|
|
1047
1239
|
land: Land;
|
|
1240
|
+
liquidations: Array<SlotLiquidatedEvent>;
|
|
1048
1241
|
maxTaxPercentage: Scalars['BigInt']['output'];
|
|
1049
1242
|
minTaxUpdatePeriod: Scalars['BigInt']['output'];
|
|
1050
1243
|
module?: Maybe<Scalars['Bytes']['output']>;
|
|
@@ -1053,10 +1246,27 @@ type Slot = {
|
|
|
1053
1246
|
priceHistory: Array<PriceUpdate>;
|
|
1054
1247
|
purchases: Array<SlotPurchase>;
|
|
1055
1248
|
releases: Array<SlotReleasedEvent>;
|
|
1249
|
+
settlements: Array<SettlementEvent>;
|
|
1056
1250
|
slotId: Scalars['BigInt']['output'];
|
|
1251
|
+
taxCollections: Array<TaxCollectedEvent>;
|
|
1057
1252
|
taxPercentage: Scalars['BigInt']['output'];
|
|
1058
1253
|
taxUpdates: Array<TaxRateChange>;
|
|
1059
1254
|
updatedAt: Scalars['BigInt']['output'];
|
|
1255
|
+
withdrawals: Array<WithdrawalEvent>;
|
|
1256
|
+
};
|
|
1257
|
+
type SlotDepositsArgs = {
|
|
1258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1259
|
+
orderBy?: InputMaybe<DepositEvent_OrderBy>;
|
|
1260
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1261
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1262
|
+
where?: InputMaybe<DepositEvent_Filter>;
|
|
1263
|
+
};
|
|
1264
|
+
type SlotLiquidationsArgs = {
|
|
1265
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1266
|
+
orderBy?: InputMaybe<SlotLiquidatedEvent_OrderBy>;
|
|
1267
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1268
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1269
|
+
where?: InputMaybe<SlotLiquidatedEvent_Filter>;
|
|
1060
1270
|
};
|
|
1061
1271
|
type SlotPriceHistoryArgs = {
|
|
1062
1272
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1079,6 +1289,20 @@ type SlotReleasesArgs = {
|
|
|
1079
1289
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1080
1290
|
where?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1081
1291
|
};
|
|
1292
|
+
type SlotSettlementsArgs = {
|
|
1293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1294
|
+
orderBy?: InputMaybe<SettlementEvent_OrderBy>;
|
|
1295
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1296
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1297
|
+
where?: InputMaybe<SettlementEvent_Filter>;
|
|
1298
|
+
};
|
|
1299
|
+
type SlotTaxCollectionsArgs = {
|
|
1300
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1301
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1302
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1303
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1304
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1305
|
+
};
|
|
1082
1306
|
type SlotTaxUpdatesArgs = {
|
|
1083
1307
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1084
1308
|
orderBy?: InputMaybe<TaxRateChange_OrderBy>;
|
|
@@ -1086,6 +1310,13 @@ type SlotTaxUpdatesArgs = {
|
|
|
1086
1310
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1087
1311
|
where?: InputMaybe<TaxRateChange_Filter>;
|
|
1088
1312
|
};
|
|
1313
|
+
type SlotWithdrawalsArgs = {
|
|
1314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1315
|
+
orderBy?: InputMaybe<WithdrawalEvent_OrderBy>;
|
|
1316
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1317
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1318
|
+
where?: InputMaybe<WithdrawalEvent_Filter>;
|
|
1319
|
+
};
|
|
1089
1320
|
type SlotCreatedEvent = {
|
|
1090
1321
|
__typename?: 'SlotCreatedEvent';
|
|
1091
1322
|
basePrice: Scalars['BigInt']['output'];
|
|
@@ -1093,7 +1324,6 @@ type SlotCreatedEvent = {
|
|
|
1093
1324
|
currency: Scalars['Bytes']['output'];
|
|
1094
1325
|
id: Scalars['ID']['output'];
|
|
1095
1326
|
land: Scalars['Bytes']['output'];
|
|
1096
|
-
price: Scalars['BigInt']['output'];
|
|
1097
1327
|
slot: Slot;
|
|
1098
1328
|
slotId: Scalars['BigInt']['output'];
|
|
1099
1329
|
taxPercentage: Scalars['BigInt']['output'];
|
|
@@ -1149,14 +1379,6 @@ type SlotCreatedEvent_Filter = {
|
|
|
1149
1379
|
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1150
1380
|
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1151
1381
|
or?: InputMaybe<Array<InputMaybe<SlotCreatedEvent_Filter>>>;
|
|
1152
|
-
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1153
|
-
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1154
|
-
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1155
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1156
|
-
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1157
|
-
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
|
-
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1159
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1160
1382
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1161
1383
|
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1162
1384
|
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1213,13 +1435,135 @@ type SlotCreatedEvent_Filter = {
|
|
|
1213
1435
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1214
1436
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1215
1437
|
};
|
|
1216
|
-
type SlotCreatedEvent_OrderBy = 'basePrice' | 'blockNumber' | 'currency' | 'id' | 'land' | '
|
|
1438
|
+
type SlotCreatedEvent_OrderBy = 'basePrice' | 'blockNumber' | 'currency' | 'id' | 'land' | 'slot' | 'slotId' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'taxPercentage' | 'timestamp' | 'tx';
|
|
1439
|
+
type SlotLiquidatedEvent = {
|
|
1440
|
+
__typename?: 'SlotLiquidatedEvent';
|
|
1441
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1442
|
+
bounty: Scalars['BigInt']['output'];
|
|
1443
|
+
id: Scalars['ID']['output'];
|
|
1444
|
+
land: Scalars['Bytes']['output'];
|
|
1445
|
+
liquidator: Scalars['Bytes']['output'];
|
|
1446
|
+
occupant: Scalars['Bytes']['output'];
|
|
1447
|
+
slot: Slot;
|
|
1448
|
+
slotId: Scalars['BigInt']['output'];
|
|
1449
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1450
|
+
tx: Scalars['Bytes']['output'];
|
|
1451
|
+
};
|
|
1452
|
+
type SlotLiquidatedEvent_Filter = {
|
|
1453
|
+
/** Filter for the block changed event. */
|
|
1454
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1455
|
+
and?: InputMaybe<Array<InputMaybe<SlotLiquidatedEvent_Filter>>>;
|
|
1456
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1457
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1458
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1459
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1460
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1461
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1462
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1463
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1464
|
+
bounty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1465
|
+
bounty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1466
|
+
bounty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1467
|
+
bounty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1468
|
+
bounty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1469
|
+
bounty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1470
|
+
bounty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1471
|
+
bounty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1472
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1473
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1474
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1475
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1476
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1477
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1478
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1479
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1480
|
+
land?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1481
|
+
land_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1482
|
+
land_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1483
|
+
land_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1484
|
+
land_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1485
|
+
land_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1486
|
+
land_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1487
|
+
land_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1488
|
+
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1489
|
+
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1490
|
+
liquidator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1491
|
+
liquidator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1492
|
+
liquidator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1493
|
+
liquidator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1494
|
+
liquidator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1495
|
+
liquidator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1496
|
+
liquidator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1497
|
+
liquidator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1498
|
+
liquidator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1499
|
+
liquidator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1500
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1501
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1502
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1503
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1504
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1505
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1506
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1507
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1508
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1509
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1510
|
+
or?: InputMaybe<Array<InputMaybe<SlotLiquidatedEvent_Filter>>>;
|
|
1511
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1512
|
+
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1513
|
+
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1514
|
+
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1515
|
+
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1516
|
+
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1517
|
+
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1518
|
+
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1519
|
+
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1520
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1521
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1522
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1523
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1524
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1525
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1526
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1527
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1528
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1530
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1531
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1532
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1533
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1534
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1535
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1536
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1537
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1538
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1539
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1540
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1541
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1542
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1543
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1544
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1545
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1546
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1547
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1548
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1549
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1550
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1551
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1552
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1553
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1554
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1555
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1556
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1557
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1558
|
+
};
|
|
1559
|
+
type SlotLiquidatedEvent_OrderBy = 'blockNumber' | 'bounty' | 'id' | 'land' | 'liquidator' | 'occupant' | 'slot' | 'slotId' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1217
1560
|
type SlotPurchase = {
|
|
1218
1561
|
__typename?: 'SlotPurchase';
|
|
1219
1562
|
blockNumber: Scalars['BigInt']['output'];
|
|
1220
1563
|
id: Scalars['ID']['output'];
|
|
1221
1564
|
newOccupant: Scalars['Bytes']['output'];
|
|
1222
1565
|
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1566
|
+
price: Scalars['BigInt']['output'];
|
|
1223
1567
|
slot: Slot;
|
|
1224
1568
|
timestamp: Scalars['BigInt']['output'];
|
|
1225
1569
|
tx: Scalars['Bytes']['output'];
|
|
@@ -1265,6 +1609,14 @@ type SlotPurchase_Filter = {
|
|
|
1265
1609
|
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1266
1610
|
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1267
1611
|
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1612
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1613
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1614
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1615
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1616
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1617
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1618
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1619
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1268
1620
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1269
1621
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1270
1622
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1305,7 +1657,7 @@ type SlotPurchase_Filter = {
|
|
|
1305
1657
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1306
1658
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1307
1659
|
};
|
|
1308
|
-
type SlotPurchase_OrderBy = 'blockNumber' | 'id' | 'newOccupant' | 'previousOccupant' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1660
|
+
type SlotPurchase_OrderBy = 'blockNumber' | 'id' | 'newOccupant' | 'previousOccupant' | 'price' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1309
1661
|
type SlotReleasedEvent = {
|
|
1310
1662
|
__typename?: 'SlotReleasedEvent';
|
|
1311
1663
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -1442,6 +1794,7 @@ type Slot_Filter = {
|
|
|
1442
1794
|
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1443
1795
|
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1444
1796
|
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1797
|
+
deposits_?: InputMaybe<DepositEvent_Filter>;
|
|
1445
1798
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1446
1799
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1447
1800
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1471,6 +1824,7 @@ type Slot_Filter = {
|
|
|
1471
1824
|
land_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1472
1825
|
land_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1473
1826
|
land_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1827
|
+
liquidations_?: InputMaybe<SlotLiquidatedEvent_Filter>;
|
|
1474
1828
|
maxTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1475
1829
|
maxTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1476
1830
|
maxTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1519,6 +1873,7 @@ type Slot_Filter = {
|
|
|
1519
1873
|
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1520
1874
|
purchases_?: InputMaybe<SlotPurchase_Filter>;
|
|
1521
1875
|
releases_?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1876
|
+
settlements_?: InputMaybe<SettlementEvent_Filter>;
|
|
1522
1877
|
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1523
1878
|
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1524
1879
|
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1527,6 +1882,7 @@ type Slot_Filter = {
|
|
|
1527
1882
|
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1528
1883
|
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1529
1884
|
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1885
|
+
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1530
1886
|
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1531
1887
|
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1532
1888
|
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1544,8 +1900,99 @@ type Slot_Filter = {
|
|
|
1544
1900
|
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1545
1901
|
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1546
1902
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1903
|
+
withdrawals_?: InputMaybe<WithdrawalEvent_Filter>;
|
|
1547
1904
|
};
|
|
1548
|
-
type Slot_OrderBy = 'active' | 'basePrice' | 'createdAt' | 'createdEvent' | 'createdEvent__basePrice' | 'createdEvent__blockNumber' | 'createdEvent__currency' | 'createdEvent__id' | 'createdEvent__land' | '
|
|
1905
|
+
type Slot_OrderBy = 'active' | 'basePrice' | 'createdAt' | 'createdEvent' | 'createdEvent__basePrice' | 'createdEvent__blockNumber' | 'createdEvent__currency' | 'createdEvent__id' | 'createdEvent__land' | 'createdEvent__slotId' | 'createdEvent__taxPercentage' | 'createdEvent__timestamp' | 'createdEvent__tx' | 'currency' | 'deposits' | 'id' | 'land' | 'land__createdAt' | 'land__createdTx' | 'land__id' | 'land__owner' | 'liquidations' | 'maxTaxPercentage' | 'minTaxUpdatePeriod' | 'module' | 'occupant' | 'price' | 'priceHistory' | 'purchases' | 'releases' | 'settlements' | 'slotId' | 'taxCollections' | 'taxPercentage' | 'taxUpdates' | 'updatedAt' | 'withdrawals';
|
|
1906
|
+
type TaxCollectedEvent = {
|
|
1907
|
+
__typename?: 'TaxCollectedEvent';
|
|
1908
|
+
amount: Scalars['BigInt']['output'];
|
|
1909
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1910
|
+
id: Scalars['ID']['output'];
|
|
1911
|
+
owner: Scalars['Bytes']['output'];
|
|
1912
|
+
slot: Slot;
|
|
1913
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1914
|
+
tx: Scalars['Bytes']['output'];
|
|
1915
|
+
};
|
|
1916
|
+
type TaxCollectedEvent_Filter = {
|
|
1917
|
+
/** Filter for the block changed event. */
|
|
1918
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1919
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1920
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1921
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1922
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1923
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1924
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1925
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1926
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1927
|
+
and?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1928
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1929
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1930
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1931
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1932
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1933
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1934
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1935
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1936
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1937
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1938
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1939
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1940
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1941
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1942
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1943
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1944
|
+
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1945
|
+
owner?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1946
|
+
owner_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1947
|
+
owner_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1948
|
+
owner_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1949
|
+
owner_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1950
|
+
owner_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1951
|
+
owner_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1952
|
+
owner_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1953
|
+
owner_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1954
|
+
owner_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1955
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1956
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1957
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1958
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1959
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1960
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1961
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1962
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1963
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1964
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1965
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1966
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1967
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1968
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1969
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1970
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1971
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1972
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1973
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1974
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1975
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1976
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1977
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1978
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1979
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1980
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1981
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1982
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1983
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1984
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1985
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1986
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1987
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1988
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1989
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1990
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1991
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1992
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1993
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1994
|
+
};
|
|
1995
|
+
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'owner' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1549
1996
|
type TaxRateChange = {
|
|
1550
1997
|
__typename?: 'TaxRateChange';
|
|
1551
1998
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -1664,6 +2111,96 @@ type TaxRateChange_Filter = {
|
|
|
1664
2111
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1665
2112
|
};
|
|
1666
2113
|
type TaxRateChange_OrderBy = 'blockNumber' | 'confirmableAt' | 'id' | 'kind' | 'newPercentage' | 'oldPercentage' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2114
|
+
type WithdrawalEvent = {
|
|
2115
|
+
__typename?: 'WithdrawalEvent';
|
|
2116
|
+
amount: Scalars['BigInt']['output'];
|
|
2117
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2118
|
+
id: Scalars['ID']['output'];
|
|
2119
|
+
occupant: Scalars['Bytes']['output'];
|
|
2120
|
+
slot: Slot;
|
|
2121
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2122
|
+
tx: Scalars['Bytes']['output'];
|
|
2123
|
+
};
|
|
2124
|
+
type WithdrawalEvent_Filter = {
|
|
2125
|
+
/** Filter for the block changed event. */
|
|
2126
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2127
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2128
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2129
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2130
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2131
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2132
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2133
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2134
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2135
|
+
and?: InputMaybe<Array<InputMaybe<WithdrawalEvent_Filter>>>;
|
|
2136
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2137
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2138
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2139
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2140
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2141
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2142
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2143
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2144
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2145
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2146
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2147
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2148
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2149
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2150
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2151
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2152
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2153
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2154
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2155
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2156
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2157
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2158
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2159
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2160
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2161
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2162
|
+
or?: InputMaybe<Array<InputMaybe<WithdrawalEvent_Filter>>>;
|
|
2163
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2164
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2165
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2166
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2167
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2168
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2169
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2170
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2171
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2172
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2173
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2174
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2175
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2176
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2177
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2178
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2179
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2180
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2181
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2182
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2183
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2184
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2185
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2186
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2187
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2188
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2189
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2190
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2191
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2192
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2193
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2194
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2195
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2196
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2197
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2198
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2199
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2200
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2201
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2202
|
+
};
|
|
2203
|
+
type WithdrawalEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'occupant' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1667
2204
|
type _Block_ = {
|
|
1668
2205
|
__typename?: '_Block_';
|
|
1669
2206
|
/** The hash of the block */
|
|
@@ -1744,8 +2281,10 @@ type GetLandOpenedEventsQuery = {
|
|
|
1744
2281
|
}>;
|
|
1745
2282
|
};
|
|
1746
2283
|
type GetSlotCreatedEventsQueryVariables = Exact<{
|
|
1747
|
-
landId: Scalars['Bytes']['input'];
|
|
1748
2284
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2285
|
+
orderBy?: InputMaybe<SlotCreatedEvent_OrderBy>;
|
|
2286
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2287
|
+
where?: InputMaybe<SlotCreatedEvent_Filter>;
|
|
1749
2288
|
}>;
|
|
1750
2289
|
type GetSlotCreatedEventsQuery = {
|
|
1751
2290
|
__typename?: 'Query';
|
|
@@ -1756,7 +2295,6 @@ type GetSlotCreatedEventsQuery = {
|
|
|
1756
2295
|
slotId: string;
|
|
1757
2296
|
currency: string;
|
|
1758
2297
|
basePrice: string;
|
|
1759
|
-
price: string;
|
|
1760
2298
|
taxPercentage: string;
|
|
1761
2299
|
timestamp: string;
|
|
1762
2300
|
blockNumber: string;
|
|
@@ -1768,23 +2306,27 @@ type GetSlotCreatedEventsQuery = {
|
|
|
1768
2306
|
};
|
|
1769
2307
|
}>;
|
|
1770
2308
|
};
|
|
1771
|
-
type
|
|
2309
|
+
type GetPriceUpdatesQueryVariables = Exact<{
|
|
1772
2310
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1773
|
-
|
|
2311
|
+
orderBy?: InputMaybe<PriceUpdate_OrderBy>;
|
|
2312
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2313
|
+
where?: InputMaybe<PriceUpdate_Filter>;
|
|
1774
2314
|
}>;
|
|
1775
|
-
type
|
|
2315
|
+
type GetPriceUpdatesQuery = {
|
|
1776
2316
|
__typename?: 'Query';
|
|
1777
|
-
|
|
1778
|
-
__typename?: '
|
|
2317
|
+
priceUpdates: Array<{
|
|
2318
|
+
__typename?: 'PriceUpdate';
|
|
1779
2319
|
id: string;
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
oldRate: string;
|
|
1783
|
-
newRate: string;
|
|
1784
|
-
operation: string;
|
|
2320
|
+
oldPrice: string;
|
|
2321
|
+
newPrice: string;
|
|
1785
2322
|
timestamp: string;
|
|
1786
2323
|
blockNumber: string;
|
|
1787
2324
|
tx: string;
|
|
2325
|
+
slot: {
|
|
2326
|
+
__typename?: 'Slot';
|
|
2327
|
+
id: string;
|
|
2328
|
+
slotId: string;
|
|
2329
|
+
};
|
|
1788
2330
|
}>;
|
|
1789
2331
|
};
|
|
1790
2332
|
type GetHubQueryVariables = Exact<{
|
|
@@ -1797,13 +2339,17 @@ type GetHubQuery = {
|
|
|
1797
2339
|
id: string;
|
|
1798
2340
|
protocolFeeBps: string;
|
|
1799
2341
|
protocolFeeRecipient: string;
|
|
1800
|
-
|
|
2342
|
+
landCreationFee: string;
|
|
2343
|
+
slotExpansionFee: string;
|
|
1801
2344
|
defaultSlotCount: string;
|
|
1802
2345
|
defaultPrice: string;
|
|
1803
2346
|
defaultTaxPercentage: string;
|
|
1804
2347
|
defaultMaxTaxPercentage: string;
|
|
1805
2348
|
defaultMinTaxUpdatePeriod: string;
|
|
1806
2349
|
defaultModule: string;
|
|
2350
|
+
moduleCallGasLimit: string;
|
|
2351
|
+
liquidationBountyBps: string;
|
|
2352
|
+
minDepositSeconds: string;
|
|
1807
2353
|
defaultCurrency?: {
|
|
1808
2354
|
__typename?: 'Currency';
|
|
1809
2355
|
id: string;
|
|
@@ -1837,10 +2383,6 @@ type GetAllowedCurrenciesQuery = {
|
|
|
1837
2383
|
name?: string | null;
|
|
1838
2384
|
symbol?: string | null;
|
|
1839
2385
|
decimals?: number | null;
|
|
1840
|
-
underlyingToken?: string | null;
|
|
1841
|
-
underlyingName?: string | null;
|
|
1842
|
-
underlyingSymbol?: string | null;
|
|
1843
|
-
underlyingDecimals?: number | null;
|
|
1844
2386
|
}>;
|
|
1845
2387
|
};
|
|
1846
2388
|
type GetLandsQueryVariables = Exact<{
|
|
@@ -2023,7 +2565,7 @@ type GetAvailableSlotsQuery = {
|
|
|
2023
2565
|
declare const GetSlotPurchasesDocument: graphql.DocumentNode;
|
|
2024
2566
|
declare const GetLandOpenedEventsDocument: graphql.DocumentNode;
|
|
2025
2567
|
declare const GetSlotCreatedEventsDocument: graphql.DocumentNode;
|
|
2026
|
-
declare const
|
|
2568
|
+
declare const GetPriceUpdatesDocument: graphql.DocumentNode;
|
|
2027
2569
|
declare const GetHubDocument: graphql.DocumentNode;
|
|
2028
2570
|
declare const GetAllowedModulesDocument: graphql.DocumentNode;
|
|
2029
2571
|
declare const GetAllowedCurrenciesDocument: graphql.DocumentNode;
|
|
@@ -2038,8 +2580,8 @@ type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>)
|
|
|
2038
2580
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
2039
2581
|
GetSlotPurchases(variables?: GetSlotPurchasesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotPurchasesQuery>;
|
|
2040
2582
|
GetLandOpenedEvents(variables?: GetLandOpenedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLandOpenedEventsQuery>;
|
|
2041
|
-
GetSlotCreatedEvents(variables
|
|
2042
|
-
|
|
2583
|
+
GetSlotCreatedEvents(variables?: GetSlotCreatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotCreatedEventsQuery>;
|
|
2584
|
+
GetPriceUpdates(variables?: GetPriceUpdatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPriceUpdatesQuery>;
|
|
2043
2585
|
GetHub(variables: GetHubQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetHubQuery>;
|
|
2044
2586
|
GetAllowedModules(variables: GetAllowedModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAllowedModulesQuery>;
|
|
2045
2587
|
GetAllowedCurrencies(variables: GetAllowedCurrenciesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAllowedCurrenciesQuery>;
|
|
@@ -2057,7 +2599,8 @@ type Sdk = ReturnType<typeof getSdk>;
|
|
|
2057
2599
|
* Supported chain IDs for 0xSlots protocol
|
|
2058
2600
|
*/
|
|
2059
2601
|
declare enum SlotsChain {
|
|
2060
|
-
BASE_SEPOLIA = 84532
|
|
2602
|
+
BASE_SEPOLIA = 84532,
|
|
2603
|
+
ARBITRUM = 42161
|
|
2061
2604
|
}
|
|
2062
2605
|
/**
|
|
2063
2606
|
* Subgraph endpoint URLs by chain ID
|
|
@@ -2118,8 +2661,8 @@ declare class SlotsClient {
|
|
|
2118
2661
|
getSdk(): {
|
|
2119
2662
|
GetSlotPurchases(variables?: GetSlotPurchasesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotPurchasesQuery>;
|
|
2120
2663
|
GetLandOpenedEvents(variables?: GetLandOpenedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLandOpenedEventsQuery>;
|
|
2121
|
-
GetSlotCreatedEvents(variables
|
|
2122
|
-
|
|
2664
|
+
GetSlotCreatedEvents(variables?: GetSlotCreatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotCreatedEventsQuery>;
|
|
2665
|
+
GetPriceUpdates(variables?: GetPriceUpdatesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetPriceUpdatesQuery>;
|
|
2123
2666
|
GetHub(variables: GetHubQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetHubQuery>;
|
|
2124
2667
|
GetAllowedModules(variables: GetAllowedModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAllowedModulesQuery>;
|
|
2125
2668
|
GetAllowedCurrencies(variables: GetAllowedCurrenciesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAllowedCurrenciesQuery>;
|
|
@@ -2144,7 +2687,7 @@ declare class SlotsClient {
|
|
|
2144
2687
|
getSlotPurchases(...args: Parameters<ReturnType<typeof getSdk>['GetSlotPurchases']>): Promise<GetSlotPurchasesQuery>;
|
|
2145
2688
|
getLandOpenedEvents(...args: Parameters<ReturnType<typeof getSdk>['GetLandOpenedEvents']>): Promise<GetLandOpenedEventsQuery>;
|
|
2146
2689
|
getSlotCreatedEvents(...args: Parameters<ReturnType<typeof getSdk>['GetSlotCreatedEvents']>): Promise<GetSlotCreatedEventsQuery>;
|
|
2147
|
-
|
|
2690
|
+
getPriceUpdates(...args: Parameters<ReturnType<typeof getSdk>['GetPriceUpdates']>): Promise<GetPriceUpdatesQuery>;
|
|
2148
2691
|
}
|
|
2149
2692
|
/**
|
|
2150
2693
|
* Create a SlotsClient instance
|
|
@@ -2163,4 +2706,4 @@ declare class SlotsClient {
|
|
|
2163
2706
|
*/
|
|
2164
2707
|
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
2165
2708
|
|
|
2166
|
-
export { type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type Currency, type Currency_Filter, type Currency_OrderBy, type
|
|
2709
|
+
export { type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type Currency, type Currency_Filter, type Currency_OrderBy, type DepositEvent, type DepositEvent_Filter, type DepositEvent_OrderBy, type Exact, GetAllowedCurrenciesDocument, type GetAllowedCurrenciesQuery, type GetAllowedCurrenciesQueryVariables, GetAllowedModulesDocument, type GetAllowedModulesQuery, type GetAllowedModulesQueryVariables, GetAvailableSlotsDocument, type GetAvailableSlotsQuery, type GetAvailableSlotsQueryVariables, GetHubDocument, type GetHubQuery, type GetHubQueryVariables, GetLandDocument, GetLandOpenedEventsDocument, type GetLandOpenedEventsQuery, type GetLandOpenedEventsQueryVariables, type GetLandQuery, type GetLandQueryVariables, GetLandsByOwnerDocument, type GetLandsByOwnerQuery, type GetLandsByOwnerQueryVariables, GetLandsDocument, type GetLandsQuery, type GetLandsQueryVariables, GetPriceUpdatesDocument, type GetPriceUpdatesQuery, type GetPriceUpdatesQueryVariables, GetSlotCreatedEventsDocument, type GetSlotCreatedEventsQuery, type GetSlotCreatedEventsQueryVariables, GetSlotDocument, GetSlotPurchasesDocument, type GetSlotPurchasesQuery, type GetSlotPurchasesQueryVariables, type GetSlotQuery, type GetSlotQueryVariables, GetSlotsByOccupantDocument, type GetSlotsByOccupantQuery, type GetSlotsByOccupantQueryVariables, GetSlotsDocument, type GetSlotsQuery, type GetSlotsQueryVariables, type Hub, type HubAllowedCurrenciesArgs, type HubAllowedModulesArgs, type HubLandsArgs, type Hub_Filter, type Hub_OrderBy, type Incremental, type InputMaybe, type Land, type LandExpandedEvent, type LandExpandedEvent_Filter, type LandExpandedEvent_OrderBy, type LandOpenedEvent, type LandOpenedEvent_Filter, type LandOpenedEvent_OrderBy, type LandSlotsArgs, type Land_Filter, type Land_OrderBy, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Module, type Module_Filter, type Module_OrderBy, type OrderDirection, type PriceUpdate, type PriceUpdate_Filter, type PriceUpdate_OrderBy, type Query, type QueryCurrenciesArgs, type QueryCurrencyArgs, type QueryDepositEventArgs, type QueryDepositEventsArgs, type QueryHubArgs, type QueryHubsArgs, type QueryLandArgs, type QueryLandExpandedEventArgs, type QueryLandExpandedEventsArgs, type QueryLandOpenedEventArgs, type QueryLandOpenedEventsArgs, type QueryLandsArgs, type QueryModuleArgs, type QueryModulesArgs, type QueryPriceUpdateArgs, type QueryPriceUpdatesArgs, type QuerySettlementEventArgs, type QuerySettlementEventsArgs, type QuerySlotArgs, type QuerySlotCreatedEventArgs, type QuerySlotCreatedEventsArgs, type QuerySlotLiquidatedEventArgs, type QuerySlotLiquidatedEventsArgs, type QuerySlotPurchaseArgs, type QuerySlotPurchasesArgs, type QuerySlotReleasedEventArgs, type QuerySlotReleasedEventsArgs, type QuerySlotsArgs, type QueryTaxCollectedEventArgs, type QueryTaxCollectedEventsArgs, type QueryTaxRateChangeArgs, type QueryTaxRateChangesArgs, type QueryWithdrawalEventArgs, type QueryWithdrawalEventsArgs, type Query_MetaArgs, SUBGRAPH_URLS, type Scalars, type Sdk, type SdkFunctionWrapper, type SettlementEvent, type SettlementEvent_Filter, type SettlementEvent_OrderBy, type Slot, type SlotCreatedEvent, type SlotCreatedEvent_Filter, type SlotCreatedEvent_OrderBy, type SlotDepositsArgs, type SlotLiquidatedEvent, type SlotLiquidatedEvent_Filter, type SlotLiquidatedEvent_OrderBy, type SlotLiquidationsArgs, type SlotPriceHistoryArgs, type SlotPurchase, type SlotPurchase_Filter, type SlotPurchase_OrderBy, type SlotPurchasesArgs, type SlotReleasedEvent, type SlotReleasedEvent_Filter, type SlotReleasedEvent_OrderBy, type SlotReleasesArgs, type SlotSettlementsArgs, type SlotTaxCollectionsArgs, type SlotTaxUpdatesArgs, type SlotWithdrawalsArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, type TaxCollectedEvent, type TaxCollectedEvent_Filter, type TaxCollectedEvent_OrderBy, type TaxRateChange, type TaxRateChange_Filter, type TaxRateChange_OrderBy, type WithdrawalEvent, type WithdrawalEvent_Filter, type WithdrawalEvent_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|