@0xslots/sdk 0.4.0 → 0.5.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 +1293 -1629
- package/dist/index.js +471 -261
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,61 @@ type Scalars = {
|
|
|
66
66
|
output: any;
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
|
+
type Account = {
|
|
70
|
+
__typename?: 'Account';
|
|
71
|
+
id: Scalars['ID']['output'];
|
|
72
|
+
occupiedCount: Scalars['Int']['output'];
|
|
73
|
+
slotCount: Scalars['Int']['output'];
|
|
74
|
+
slotsAsOccupant: Array<Slot>;
|
|
75
|
+
slotsAsRecipient: Array<Slot>;
|
|
76
|
+
};
|
|
77
|
+
type AccountSlotsAsOccupantArgs = {
|
|
78
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
80
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
81
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
82
|
+
where?: InputMaybe<Slot_Filter>;
|
|
83
|
+
};
|
|
84
|
+
type AccountSlotsAsRecipientArgs = {
|
|
85
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
87
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
88
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
89
|
+
where?: InputMaybe<Slot_Filter>;
|
|
90
|
+
};
|
|
91
|
+
type Account_Filter = {
|
|
92
|
+
/** Filter for the block changed event. */
|
|
93
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
94
|
+
and?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
95
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
96
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
97
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
98
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
99
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
100
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
101
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
102
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103
|
+
occupiedCount?: InputMaybe<Scalars['Int']['input']>;
|
|
104
|
+
occupiedCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
105
|
+
occupiedCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
106
|
+
occupiedCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
107
|
+
occupiedCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
108
|
+
occupiedCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
+
occupiedCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
110
|
+
occupiedCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
111
|
+
or?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
112
|
+
slotCount?: InputMaybe<Scalars['Int']['input']>;
|
|
113
|
+
slotCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
114
|
+
slotCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
115
|
+
slotCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
116
|
+
slotCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
117
|
+
slotCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
118
|
+
slotCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
119
|
+
slotCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
120
|
+
slotsAsOccupant_?: InputMaybe<Slot_Filter>;
|
|
121
|
+
slotsAsRecipient_?: InputMaybe<Slot_Filter>;
|
|
122
|
+
};
|
|
123
|
+
type Account_OrderBy = 'id' | 'occupiedCount' | 'slotCount' | 'slotsAsOccupant' | 'slotsAsRecipient';
|
|
69
124
|
type Aggregation_Interval = 'day' | 'hour';
|
|
70
125
|
type BlockChangedFilter = {
|
|
71
126
|
number_gte: Scalars['Int']['input'];
|
|
@@ -75,52 +130,49 @@ type Block_Height = {
|
|
|
75
130
|
number?: InputMaybe<Scalars['Int']['input']>;
|
|
76
131
|
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
77
132
|
};
|
|
78
|
-
type
|
|
79
|
-
__typename?: '
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
133
|
+
type BoughtEvent = {
|
|
134
|
+
__typename?: 'BoughtEvent';
|
|
135
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
136
|
+
buyer: Scalars['Bytes']['output'];
|
|
137
|
+
deposit: Scalars['BigInt']['output'];
|
|
83
138
|
id: Scalars['ID']['output'];
|
|
84
|
-
|
|
85
|
-
|
|
139
|
+
previousOccupant: Scalars['Bytes']['output'];
|
|
140
|
+
price: Scalars['BigInt']['output'];
|
|
141
|
+
selfAssessedPrice: Scalars['BigInt']['output'];
|
|
142
|
+
slot: Slot;
|
|
143
|
+
timestamp: Scalars['BigInt']['output'];
|
|
144
|
+
tx: Scalars['Bytes']['output'];
|
|
86
145
|
};
|
|
87
|
-
type
|
|
146
|
+
type BoughtEvent_Filter = {
|
|
88
147
|
/** Filter for the block changed event. */
|
|
89
148
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
118
|
-
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
119
|
-
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
120
|
-
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
121
|
-
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
-
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
-
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
149
|
+
and?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
150
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
151
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
152
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
153
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
154
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
155
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
156
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
157
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
158
|
+
buyer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
159
|
+
buyer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
160
|
+
buyer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
161
|
+
buyer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
162
|
+
buyer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
163
|
+
buyer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
164
|
+
buyer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
165
|
+
buyer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
166
|
+
buyer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
167
|
+
buyer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
168
|
+
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
169
|
+
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
170
|
+
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
171
|
+
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
172
|
+
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
173
|
+
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
174
|
+
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
175
|
+
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
124
176
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
125
177
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
126
178
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -129,51 +181,76 @@ type Currency_Filter = {
|
|
|
129
181
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
130
182
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
131
183
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
184
|
+
or?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
185
|
+
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
186
|
+
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
187
|
+
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
188
|
+
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
189
|
+
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
190
|
+
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
191
|
+
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
192
|
+
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
193
|
+
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
194
|
+
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
195
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
196
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
197
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
198
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
199
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
200
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
201
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
202
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
203
|
+
selfAssessedPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
204
|
+
selfAssessedPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
205
|
+
selfAssessedPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
206
|
+
selfAssessedPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
207
|
+
selfAssessedPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
208
|
+
selfAssessedPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
209
|
+
selfAssessedPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
210
|
+
selfAssessedPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
211
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
212
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
213
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
214
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
215
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
217
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
218
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
220
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
221
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
222
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
224
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
226
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
227
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
228
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
229
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
230
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
232
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
233
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
234
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
235
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
236
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
237
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
238
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
239
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
240
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
241
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
242
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
243
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
244
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
245
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
246
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
247
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
248
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
249
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
250
|
+
};
|
|
251
|
+
type BoughtEvent_OrderBy = 'blockNumber' | 'buyer' | 'deposit' | 'id' | 'previousOccupant' | 'price' | 'selfAssessedPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
252
|
+
type DepositedEvent = {
|
|
253
|
+
__typename?: 'DepositedEvent';
|
|
177
254
|
amount: Scalars['BigInt']['output'];
|
|
178
255
|
blockNumber: Scalars['BigInt']['output'];
|
|
179
256
|
depositor: Scalars['Bytes']['output'];
|
|
@@ -182,7 +259,7 @@ type DepositEvent = {
|
|
|
182
259
|
timestamp: Scalars['BigInt']['output'];
|
|
183
260
|
tx: Scalars['Bytes']['output'];
|
|
184
261
|
};
|
|
185
|
-
type
|
|
262
|
+
type DepositedEvent_Filter = {
|
|
186
263
|
/** Filter for the block changed event. */
|
|
187
264
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
188
265
|
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -193,7 +270,7 @@ type DepositEvent_Filter = {
|
|
|
193
270
|
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
194
271
|
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
195
272
|
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
196
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
273
|
+
and?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
197
274
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
198
275
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
199
276
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -220,7 +297,7 @@ type DepositEvent_Filter = {
|
|
|
220
297
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
221
298
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
222
299
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
223
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
300
|
+
or?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
224
301
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
225
302
|
slot_?: InputMaybe<Slot_Filter>;
|
|
226
303
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -261,126 +338,24 @@ type DepositEvent_Filter = {
|
|
|
261
338
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
262
339
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
263
340
|
};
|
|
264
|
-
type
|
|
265
|
-
type
|
|
266
|
-
__typename?: '
|
|
267
|
-
allowedCurrencies: Array<Currency>;
|
|
268
|
-
allowedModules: Array<Module>;
|
|
269
|
-
defaultCurrency?: Maybe<Currency>;
|
|
270
|
-
defaultMaxTaxPercentage: Scalars['BigInt']['output'];
|
|
271
|
-
defaultMinTaxUpdatePeriod: Scalars['BigInt']['output'];
|
|
272
|
-
defaultModule: Scalars['Bytes']['output'];
|
|
273
|
-
defaultPrice: Scalars['BigInt']['output'];
|
|
274
|
-
defaultSlotCount: Scalars['BigInt']['output'];
|
|
275
|
-
defaultTaxPercentage: Scalars['BigInt']['output'];
|
|
341
|
+
type DepositedEvent_OrderBy = 'amount' | 'blockNumber' | 'depositor' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
342
|
+
type Factory = {
|
|
343
|
+
__typename?: 'Factory';
|
|
276
344
|
id: Scalars['ID']['output'];
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
280
|
-
minDepositSeconds: Scalars['BigInt']['output'];
|
|
281
|
-
moduleCallGasLimit: Scalars['BigInt']['output'];
|
|
282
|
-
protocolFeeBps: Scalars['BigInt']['output'];
|
|
283
|
-
protocolFeeRecipient: Scalars['Bytes']['output'];
|
|
284
|
-
slotExpansionFee: Scalars['BigInt']['output'];
|
|
285
|
-
};
|
|
286
|
-
type HubAllowedCurrenciesArgs = {
|
|
287
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
288
|
-
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
289
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
290
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
291
|
-
where?: InputMaybe<Currency_Filter>;
|
|
345
|
+
modules: Array<Module>;
|
|
346
|
+
slotCount: Scalars['BigInt']['output'];
|
|
292
347
|
};
|
|
293
|
-
type
|
|
348
|
+
type FactoryModulesArgs = {
|
|
294
349
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
295
350
|
orderBy?: InputMaybe<Module_OrderBy>;
|
|
296
351
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
297
352
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
298
353
|
where?: InputMaybe<Module_Filter>;
|
|
299
354
|
};
|
|
300
|
-
type
|
|
301
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
302
|
-
orderBy?: InputMaybe<Land_OrderBy>;
|
|
303
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
304
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
305
|
-
where?: InputMaybe<Land_Filter>;
|
|
306
|
-
};
|
|
307
|
-
type Hub_Filter = {
|
|
355
|
+
type Factory_Filter = {
|
|
308
356
|
/** Filter for the block changed event. */
|
|
309
357
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
310
|
-
|
|
311
|
-
allowedModules_?: InputMaybe<Module_Filter>;
|
|
312
|
-
and?: InputMaybe<Array<InputMaybe<Hub_Filter>>>;
|
|
313
|
-
defaultCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
314
|
-
defaultCurrency_?: InputMaybe<Currency_Filter>;
|
|
315
|
-
defaultCurrency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
316
|
-
defaultCurrency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
317
|
-
defaultCurrency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
-
defaultCurrency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
-
defaultCurrency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
320
|
-
defaultCurrency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
-
defaultCurrency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
322
|
-
defaultCurrency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
323
|
-
defaultCurrency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
324
|
-
defaultCurrency_not?: InputMaybe<Scalars['String']['input']>;
|
|
325
|
-
defaultCurrency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
-
defaultCurrency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
-
defaultCurrency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
328
|
-
defaultCurrency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
329
|
-
defaultCurrency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
330
|
-
defaultCurrency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
331
|
-
defaultCurrency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
332
|
-
defaultCurrency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
333
|
-
defaultCurrency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
334
|
-
defaultMaxTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
335
|
-
defaultMaxTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
336
|
-
defaultMaxTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
337
|
-
defaultMaxTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
338
|
-
defaultMaxTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
339
|
-
defaultMaxTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
340
|
-
defaultMaxTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
341
|
-
defaultMaxTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
342
|
-
defaultMinTaxUpdatePeriod?: InputMaybe<Scalars['BigInt']['input']>;
|
|
343
|
-
defaultMinTaxUpdatePeriod_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
344
|
-
defaultMinTaxUpdatePeriod_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
345
|
-
defaultMinTaxUpdatePeriod_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
346
|
-
defaultMinTaxUpdatePeriod_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
347
|
-
defaultMinTaxUpdatePeriod_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
348
|
-
defaultMinTaxUpdatePeriod_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
349
|
-
defaultMinTaxUpdatePeriod_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
350
|
-
defaultModule?: InputMaybe<Scalars['Bytes']['input']>;
|
|
351
|
-
defaultModule_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
352
|
-
defaultModule_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
353
|
-
defaultModule_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
354
|
-
defaultModule_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
355
|
-
defaultModule_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
356
|
-
defaultModule_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
357
|
-
defaultModule_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
358
|
-
defaultModule_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
359
|
-
defaultModule_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
360
|
-
defaultPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
361
|
-
defaultPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
362
|
-
defaultPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
363
|
-
defaultPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
364
|
-
defaultPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
365
|
-
defaultPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
366
|
-
defaultPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
367
|
-
defaultPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
368
|
-
defaultSlotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
369
|
-
defaultSlotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
370
|
-
defaultSlotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
371
|
-
defaultSlotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
372
|
-
defaultSlotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
373
|
-
defaultSlotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
374
|
-
defaultSlotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
375
|
-
defaultSlotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
376
|
-
defaultTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
377
|
-
defaultTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
378
|
-
defaultTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
379
|
-
defaultTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
380
|
-
defaultTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
381
|
-
defaultTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
382
|
-
defaultTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
383
|
-
defaultTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
358
|
+
and?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
384
359
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
385
360
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
386
361
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -389,97 +364,33 @@ type Hub_Filter = {
|
|
|
389
364
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
390
365
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
391
366
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
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']>>;
|
|
425
|
-
or?: InputMaybe<Array<InputMaybe<Hub_Filter>>>;
|
|
426
|
-
protocolFeeBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
427
|
-
protocolFeeBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
428
|
-
protocolFeeBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
429
|
-
protocolFeeBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
430
|
-
protocolFeeBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
431
|
-
protocolFeeBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
432
|
-
protocolFeeBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
433
|
-
protocolFeeBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
434
|
-
protocolFeeRecipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
435
|
-
protocolFeeRecipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
436
|
-
protocolFeeRecipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
437
|
-
protocolFeeRecipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
438
|
-
protocolFeeRecipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
439
|
-
protocolFeeRecipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
440
|
-
protocolFeeRecipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
441
|
-
protocolFeeRecipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
442
|
-
protocolFeeRecipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
443
|
-
protocolFeeRecipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
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';
|
|
454
|
-
type Land = {
|
|
455
|
-
__typename?: 'Land';
|
|
456
|
-
createdAt: Scalars['BigInt']['output'];
|
|
457
|
-
createdTx: Scalars['Bytes']['output'];
|
|
458
|
-
hub: Hub;
|
|
459
|
-
id: Scalars['ID']['output'];
|
|
460
|
-
owner: Scalars['Bytes']['output'];
|
|
461
|
-
slots: Array<Slot>;
|
|
462
|
-
};
|
|
463
|
-
type LandSlotsArgs = {
|
|
464
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
465
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
466
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
467
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
468
|
-
where?: InputMaybe<Slot_Filter>;
|
|
469
|
-
};
|
|
470
|
-
type LandExpandedEvent = {
|
|
471
|
-
__typename?: 'LandExpandedEvent';
|
|
367
|
+
modules_?: InputMaybe<Module_Filter>;
|
|
368
|
+
or?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
369
|
+
slotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
370
|
+
slotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
371
|
+
slotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
372
|
+
slotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
373
|
+
slotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
374
|
+
slotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
375
|
+
slotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
376
|
+
slotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
377
|
+
};
|
|
378
|
+
type Factory_OrderBy = 'id' | 'modules' | 'slotCount';
|
|
379
|
+
type LiquidatedEvent = {
|
|
380
|
+
__typename?: 'LiquidatedEvent';
|
|
472
381
|
blockNumber: Scalars['BigInt']['output'];
|
|
382
|
+
bounty: Scalars['BigInt']['output'];
|
|
473
383
|
id: Scalars['ID']['output'];
|
|
474
|
-
|
|
475
|
-
|
|
384
|
+
liquidator: Scalars['Bytes']['output'];
|
|
385
|
+
occupant: Scalars['Bytes']['output'];
|
|
386
|
+
slot: Slot;
|
|
476
387
|
timestamp: Scalars['BigInt']['output'];
|
|
477
388
|
tx: Scalars['Bytes']['output'];
|
|
478
389
|
};
|
|
479
|
-
type
|
|
390
|
+
type LiquidatedEvent_Filter = {
|
|
480
391
|
/** Filter for the block changed event. */
|
|
481
392
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
482
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
393
|
+
and?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
483
394
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
484
395
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
485
396
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -488,6 +399,14 @@ type LandExpandedEvent_Filter = {
|
|
|
488
399
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
489
400
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
490
401
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
402
|
+
bounty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
403
|
+
bounty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
404
|
+
bounty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
405
|
+
bounty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
406
|
+
bounty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
407
|
+
bounty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
408
|
+
bounty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
409
|
+
bounty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
491
410
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
492
411
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
493
412
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -496,25 +415,48 @@ type LandExpandedEvent_Filter = {
|
|
|
496
415
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
497
416
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
498
417
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
418
|
+
liquidator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
419
|
+
liquidator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
420
|
+
liquidator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
421
|
+
liquidator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
422
|
+
liquidator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
423
|
+
liquidator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
424
|
+
liquidator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
425
|
+
liquidator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
426
|
+
liquidator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
427
|
+
liquidator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
428
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
429
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
430
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
431
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
432
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
433
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
434
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
435
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
436
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
437
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
438
|
+
or?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
439
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
440
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
441
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
442
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
443
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
444
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
445
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
446
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
447
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
448
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
449
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
450
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
451
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
452
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
453
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
454
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
455
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
456
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
457
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
458
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
459
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
518
460
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
519
461
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
520
462
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -534,190 +476,40 @@ type LandExpandedEvent_Filter = {
|
|
|
534
476
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
535
477
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
536
478
|
};
|
|
537
|
-
type
|
|
538
|
-
type
|
|
539
|
-
__typename?: '
|
|
540
|
-
|
|
541
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
479
|
+
type LiquidatedEvent_OrderBy = 'blockNumber' | 'bounty' | 'id' | 'liquidator' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
480
|
+
type Module = {
|
|
481
|
+
__typename?: 'Module';
|
|
482
|
+
factory: Factory;
|
|
542
483
|
id: Scalars['ID']['output'];
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
484
|
+
name: Scalars['String']['output'];
|
|
485
|
+
verified: Scalars['Boolean']['output'];
|
|
486
|
+
version: Scalars['String']['output'];
|
|
546
487
|
};
|
|
547
|
-
type
|
|
488
|
+
type Module_Filter = {
|
|
548
489
|
/** Filter for the block changed event. */
|
|
549
490
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
573
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
574
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
575
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
576
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
577
|
-
land?: InputMaybe<Scalars['String']['input']>;
|
|
578
|
-
land_?: InputMaybe<Land_Filter>;
|
|
579
|
-
land_contains?: InputMaybe<Scalars['String']['input']>;
|
|
580
|
-
land_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
581
|
-
land_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
582
|
-
land_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
583
|
-
land_gt?: InputMaybe<Scalars['String']['input']>;
|
|
584
|
-
land_gte?: InputMaybe<Scalars['String']['input']>;
|
|
585
|
-
land_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
586
|
-
land_lt?: InputMaybe<Scalars['String']['input']>;
|
|
587
|
-
land_lte?: InputMaybe<Scalars['String']['input']>;
|
|
588
|
-
land_not?: InputMaybe<Scalars['String']['input']>;
|
|
589
|
-
land_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
590
|
-
land_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
591
|
-
land_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
592
|
-
land_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
593
|
-
land_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
594
|
-
land_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
-
land_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
596
|
-
land_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
597
|
-
land_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
598
|
-
or?: InputMaybe<Array<InputMaybe<LandOpenedEvent_Filter>>>;
|
|
599
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
600
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
601
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
602
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
603
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
604
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
605
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
606
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
607
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
608
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
609
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
610
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
611
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
612
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
613
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
614
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
615
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
616
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
617
|
-
};
|
|
618
|
-
type LandOpenedEvent_OrderBy = 'account' | 'blockNumber' | 'id' | 'land' | 'land__createdAt' | 'land__createdTx' | 'land__id' | 'land__owner' | 'timestamp' | 'tx';
|
|
619
|
-
type Land_Filter = {
|
|
620
|
-
/** Filter for the block changed event. */
|
|
621
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
622
|
-
and?: InputMaybe<Array<InputMaybe<Land_Filter>>>;
|
|
623
|
-
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
624
|
-
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
625
|
-
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
626
|
-
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
627
|
-
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
628
|
-
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
629
|
-
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
630
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
631
|
-
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
632
|
-
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
633
|
-
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
634
|
-
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
635
|
-
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
636
|
-
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
637
|
-
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
638
|
-
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
639
|
-
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
640
|
-
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
641
|
-
hub?: InputMaybe<Scalars['String']['input']>;
|
|
642
|
-
hub_?: InputMaybe<Hub_Filter>;
|
|
643
|
-
hub_contains?: InputMaybe<Scalars['String']['input']>;
|
|
644
|
-
hub_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
645
|
-
hub_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
646
|
-
hub_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
647
|
-
hub_gt?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
-
hub_gte?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
-
hub_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
650
|
-
hub_lt?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
-
hub_lte?: InputMaybe<Scalars['String']['input']>;
|
|
652
|
-
hub_not?: InputMaybe<Scalars['String']['input']>;
|
|
653
|
-
hub_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
654
|
-
hub_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
655
|
-
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
656
|
-
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
-
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
658
|
-
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
659
|
-
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
660
|
-
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
661
|
-
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
662
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
663
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
664
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
665
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
666
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
667
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
670
|
-
or?: InputMaybe<Array<InputMaybe<Land_Filter>>>;
|
|
671
|
-
owner?: InputMaybe<Scalars['Bytes']['input']>;
|
|
672
|
-
owner_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
673
|
-
owner_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
674
|
-
owner_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
675
|
-
owner_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
676
|
-
owner_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
677
|
-
owner_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
678
|
-
owner_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
679
|
-
owner_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
680
|
-
owner_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
681
|
-
slots_?: InputMaybe<Slot_Filter>;
|
|
682
|
-
};
|
|
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';
|
|
684
|
-
type Module = {
|
|
685
|
-
__typename?: 'Module';
|
|
686
|
-
allowed: Scalars['Boolean']['output'];
|
|
687
|
-
hub: Hub;
|
|
688
|
-
id: Scalars['ID']['output'];
|
|
689
|
-
name: Scalars['String']['output'];
|
|
690
|
-
version: Scalars['String']['output'];
|
|
691
|
-
};
|
|
692
|
-
type Module_Filter = {
|
|
693
|
-
/** Filter for the block changed event. */
|
|
694
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
695
|
-
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
696
|
-
allowed_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
697
|
-
allowed_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
698
|
-
allowed_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
699
|
-
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
700
|
-
hub?: InputMaybe<Scalars['String']['input']>;
|
|
701
|
-
hub_?: InputMaybe<Hub_Filter>;
|
|
702
|
-
hub_contains?: InputMaybe<Scalars['String']['input']>;
|
|
703
|
-
hub_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
704
|
-
hub_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
705
|
-
hub_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
706
|
-
hub_gt?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
-
hub_gte?: InputMaybe<Scalars['String']['input']>;
|
|
708
|
-
hub_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
709
|
-
hub_lt?: InputMaybe<Scalars['String']['input']>;
|
|
710
|
-
hub_lte?: InputMaybe<Scalars['String']['input']>;
|
|
711
|
-
hub_not?: InputMaybe<Scalars['String']['input']>;
|
|
712
|
-
hub_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
713
|
-
hub_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
714
|
-
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
715
|
-
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
716
|
-
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
717
|
-
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
718
|
-
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
719
|
-
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
720
|
-
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
491
|
+
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
492
|
+
factory?: InputMaybe<Scalars['String']['input']>;
|
|
493
|
+
factory_?: InputMaybe<Factory_Filter>;
|
|
494
|
+
factory_contains?: InputMaybe<Scalars['String']['input']>;
|
|
495
|
+
factory_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
496
|
+
factory_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
497
|
+
factory_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
498
|
+
factory_gt?: InputMaybe<Scalars['String']['input']>;
|
|
499
|
+
factory_gte?: InputMaybe<Scalars['String']['input']>;
|
|
500
|
+
factory_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
501
|
+
factory_lt?: InputMaybe<Scalars['String']['input']>;
|
|
502
|
+
factory_lte?: InputMaybe<Scalars['String']['input']>;
|
|
503
|
+
factory_not?: InputMaybe<Scalars['String']['input']>;
|
|
504
|
+
factory_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
505
|
+
factory_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
506
|
+
factory_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
507
|
+
factory_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
508
|
+
factory_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
509
|
+
factory_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
510
|
+
factory_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
511
|
+
factory_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
512
|
+
factory_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
721
513
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
722
514
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
723
515
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -747,6 +539,10 @@ type Module_Filter = {
|
|
|
747
539
|
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
748
540
|
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
749
541
|
or?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
542
|
+
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
543
|
+
verified_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
544
|
+
verified_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
545
|
+
verified_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
750
546
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
751
547
|
version_contains?: InputMaybe<Scalars['String']['input']>;
|
|
752
548
|
version_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -768,11 +564,11 @@ type Module_Filter = {
|
|
|
768
564
|
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
769
565
|
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
770
566
|
};
|
|
771
|
-
type Module_OrderBy = '
|
|
567
|
+
type Module_OrderBy = 'factory' | 'factory__id' | 'factory__slotCount' | 'id' | 'name' | 'verified' | 'version';
|
|
772
568
|
/** Defines the order direction, either ascending or descending */
|
|
773
569
|
type OrderDirection = 'asc' | 'desc';
|
|
774
|
-
type
|
|
775
|
-
__typename?: '
|
|
570
|
+
type PriceUpdatedEvent = {
|
|
571
|
+
__typename?: 'PriceUpdatedEvent';
|
|
776
572
|
blockNumber: Scalars['BigInt']['output'];
|
|
777
573
|
id: Scalars['ID']['output'];
|
|
778
574
|
newPrice: Scalars['BigInt']['output'];
|
|
@@ -781,10 +577,10 @@ type PriceUpdate = {
|
|
|
781
577
|
timestamp: Scalars['BigInt']['output'];
|
|
782
578
|
tx: Scalars['Bytes']['output'];
|
|
783
579
|
};
|
|
784
|
-
type
|
|
580
|
+
type PriceUpdatedEvent_Filter = {
|
|
785
581
|
/** Filter for the block changed event. */
|
|
786
582
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
787
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
583
|
+
and?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
788
584
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
789
585
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
790
586
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -817,7 +613,7 @@ type PriceUpdate_Filter = {
|
|
|
817
613
|
oldPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
818
614
|
oldPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
819
615
|
oldPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
820
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
616
|
+
or?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
821
617
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
822
618
|
slot_?: InputMaybe<Slot_Filter>;
|
|
823
619
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -858,236 +654,170 @@ type PriceUpdate_Filter = {
|
|
|
858
654
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
859
655
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
860
656
|
};
|
|
861
|
-
type
|
|
657
|
+
type PriceUpdatedEvent_OrderBy = 'blockNumber' | 'id' | 'newPrice' | 'oldPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
862
658
|
type Query = {
|
|
863
659
|
__typename?: 'Query';
|
|
864
660
|
/** Access to subgraph metadata */
|
|
865
661
|
_meta?: Maybe<_Meta_>;
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
landOpenedEvents: Array<LandOpenedEvent>;
|
|
877
|
-
lands: Array<Land>;
|
|
662
|
+
account?: Maybe<Account>;
|
|
663
|
+
accounts: Array<Account>;
|
|
664
|
+
boughtEvent?: Maybe<BoughtEvent>;
|
|
665
|
+
boughtEvents: Array<BoughtEvent>;
|
|
666
|
+
depositedEvent?: Maybe<DepositedEvent>;
|
|
667
|
+
depositedEvents: Array<DepositedEvent>;
|
|
668
|
+
factories: Array<Factory>;
|
|
669
|
+
factory?: Maybe<Factory>;
|
|
670
|
+
liquidatedEvent?: Maybe<LiquidatedEvent>;
|
|
671
|
+
liquidatedEvents: Array<LiquidatedEvent>;
|
|
878
672
|
module?: Maybe<Module>;
|
|
879
673
|
modules: Array<Module>;
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
674
|
+
priceUpdatedEvent?: Maybe<PriceUpdatedEvent>;
|
|
675
|
+
priceUpdatedEvents: Array<PriceUpdatedEvent>;
|
|
676
|
+
releasedEvent?: Maybe<ReleasedEvent>;
|
|
677
|
+
releasedEvents: Array<ReleasedEvent>;
|
|
678
|
+
settledEvent?: Maybe<SettledEvent>;
|
|
679
|
+
settledEvents: Array<SettledEvent>;
|
|
884
680
|
slot?: Maybe<Slot>;
|
|
885
|
-
slotCreatedEvent?: Maybe<SlotCreatedEvent>;
|
|
886
|
-
slotCreatedEvents: Array<SlotCreatedEvent>;
|
|
887
|
-
slotLiquidatedEvent?: Maybe<SlotLiquidatedEvent>;
|
|
888
|
-
slotLiquidatedEvents: Array<SlotLiquidatedEvent>;
|
|
889
|
-
slotPurchase?: Maybe<SlotPurchase>;
|
|
890
|
-
slotPurchases: Array<SlotPurchase>;
|
|
891
|
-
slotReleasedEvent?: Maybe<SlotReleasedEvent>;
|
|
892
|
-
slotReleasedEvents: Array<SlotReleasedEvent>;
|
|
893
681
|
slots: Array<Slot>;
|
|
894
682
|
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
895
683
|
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
withdrawalEvent?: Maybe<WithdrawalEvent>;
|
|
899
|
-
withdrawalEvents: Array<WithdrawalEvent>;
|
|
684
|
+
withdrawnEvent?: Maybe<WithdrawnEvent>;
|
|
685
|
+
withdrawnEvents: Array<WithdrawnEvent>;
|
|
900
686
|
};
|
|
901
687
|
type Query_MetaArgs = {
|
|
902
688
|
block?: InputMaybe<Block_Height>;
|
|
903
689
|
};
|
|
904
|
-
type
|
|
905
|
-
block?: InputMaybe<Block_Height>;
|
|
906
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
907
|
-
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
908
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
909
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
910
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
911
|
-
where?: InputMaybe<Currency_Filter>;
|
|
912
|
-
};
|
|
913
|
-
type QueryCurrencyArgs = {
|
|
914
|
-
block?: InputMaybe<Block_Height>;
|
|
915
|
-
id: Scalars['ID']['input'];
|
|
916
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
917
|
-
};
|
|
918
|
-
type QueryDepositEventArgs = {
|
|
919
|
-
block?: InputMaybe<Block_Height>;
|
|
920
|
-
id: Scalars['ID']['input'];
|
|
921
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
922
|
-
};
|
|
923
|
-
type QueryDepositEventsArgs = {
|
|
924
|
-
block?: InputMaybe<Block_Height>;
|
|
925
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
926
|
-
orderBy?: InputMaybe<DepositEvent_OrderBy>;
|
|
927
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
928
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
929
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
930
|
-
where?: InputMaybe<DepositEvent_Filter>;
|
|
931
|
-
};
|
|
932
|
-
type QueryHubArgs = {
|
|
690
|
+
type QueryAccountArgs = {
|
|
933
691
|
block?: InputMaybe<Block_Height>;
|
|
934
692
|
id: Scalars['ID']['input'];
|
|
935
693
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
936
694
|
};
|
|
937
|
-
type
|
|
695
|
+
type QueryAccountsArgs = {
|
|
938
696
|
block?: InputMaybe<Block_Height>;
|
|
939
697
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
940
|
-
orderBy?: InputMaybe<
|
|
698
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
941
699
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
942
700
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
943
701
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
944
|
-
where?: InputMaybe<
|
|
945
|
-
};
|
|
946
|
-
type QueryLandArgs = {
|
|
947
|
-
block?: InputMaybe<Block_Height>;
|
|
948
|
-
id: Scalars['ID']['input'];
|
|
949
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
702
|
+
where?: InputMaybe<Account_Filter>;
|
|
950
703
|
};
|
|
951
|
-
type
|
|
704
|
+
type QueryBoughtEventArgs = {
|
|
952
705
|
block?: InputMaybe<Block_Height>;
|
|
953
706
|
id: Scalars['ID']['input'];
|
|
954
707
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
955
708
|
};
|
|
956
|
-
type
|
|
709
|
+
type QueryBoughtEventsArgs = {
|
|
957
710
|
block?: InputMaybe<Block_Height>;
|
|
958
711
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
959
|
-
orderBy?: InputMaybe<
|
|
712
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
960
713
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
961
714
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
962
715
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
963
|
-
where?: InputMaybe<
|
|
716
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
964
717
|
};
|
|
965
|
-
type
|
|
718
|
+
type QueryDepositedEventArgs = {
|
|
966
719
|
block?: InputMaybe<Block_Height>;
|
|
967
720
|
id: Scalars['ID']['input'];
|
|
968
721
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
969
722
|
};
|
|
970
|
-
type
|
|
723
|
+
type QueryDepositedEventsArgs = {
|
|
971
724
|
block?: InputMaybe<Block_Height>;
|
|
972
725
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
973
|
-
orderBy?: InputMaybe<
|
|
726
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
974
727
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
975
728
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
976
729
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
977
|
-
where?: InputMaybe<
|
|
730
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
978
731
|
};
|
|
979
|
-
type
|
|
732
|
+
type QueryFactoriesArgs = {
|
|
980
733
|
block?: InputMaybe<Block_Height>;
|
|
981
734
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
982
|
-
orderBy?: InputMaybe<
|
|
735
|
+
orderBy?: InputMaybe<Factory_OrderBy>;
|
|
983
736
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
984
737
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
985
738
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
986
|
-
where?: InputMaybe<
|
|
739
|
+
where?: InputMaybe<Factory_Filter>;
|
|
987
740
|
};
|
|
988
|
-
type
|
|
741
|
+
type QueryFactoryArgs = {
|
|
989
742
|
block?: InputMaybe<Block_Height>;
|
|
990
743
|
id: Scalars['ID']['input'];
|
|
991
744
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
992
745
|
};
|
|
993
|
-
type
|
|
994
|
-
block?: InputMaybe<Block_Height>;
|
|
995
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
996
|
-
orderBy?: InputMaybe<Module_OrderBy>;
|
|
997
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
998
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
999
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1000
|
-
where?: InputMaybe<Module_Filter>;
|
|
1001
|
-
};
|
|
1002
|
-
type QueryPriceUpdateArgs = {
|
|
746
|
+
type QueryLiquidatedEventArgs = {
|
|
1003
747
|
block?: InputMaybe<Block_Height>;
|
|
1004
748
|
id: Scalars['ID']['input'];
|
|
1005
749
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1006
750
|
};
|
|
1007
|
-
type
|
|
751
|
+
type QueryLiquidatedEventsArgs = {
|
|
1008
752
|
block?: InputMaybe<Block_Height>;
|
|
1009
753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1010
|
-
orderBy?: InputMaybe<
|
|
754
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1011
755
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1012
756
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1013
757
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1014
|
-
where?: InputMaybe<
|
|
758
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1015
759
|
};
|
|
1016
|
-
type
|
|
760
|
+
type QueryModuleArgs = {
|
|
1017
761
|
block?: InputMaybe<Block_Height>;
|
|
1018
762
|
id: Scalars['ID']['input'];
|
|
1019
763
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1020
764
|
};
|
|
1021
|
-
type
|
|
765
|
+
type QueryModulesArgs = {
|
|
1022
766
|
block?: InputMaybe<Block_Height>;
|
|
1023
767
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1024
|
-
orderBy?: InputMaybe<
|
|
768
|
+
orderBy?: InputMaybe<Module_OrderBy>;
|
|
1025
769
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1026
770
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
771
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1028
|
-
where?: InputMaybe<
|
|
1029
|
-
};
|
|
1030
|
-
type QuerySlotArgs = {
|
|
1031
|
-
block?: InputMaybe<Block_Height>;
|
|
1032
|
-
id: Scalars['ID']['input'];
|
|
1033
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
772
|
+
where?: InputMaybe<Module_Filter>;
|
|
1034
773
|
};
|
|
1035
|
-
type
|
|
774
|
+
type QueryPriceUpdatedEventArgs = {
|
|
1036
775
|
block?: InputMaybe<Block_Height>;
|
|
1037
776
|
id: Scalars['ID']['input'];
|
|
1038
777
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1039
778
|
};
|
|
1040
|
-
type
|
|
779
|
+
type QueryPriceUpdatedEventsArgs = {
|
|
1041
780
|
block?: InputMaybe<Block_Height>;
|
|
1042
781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1043
|
-
orderBy?: InputMaybe<
|
|
782
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1044
783
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1045
784
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1046
785
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1047
|
-
where?: InputMaybe<
|
|
786
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1048
787
|
};
|
|
1049
|
-
type
|
|
788
|
+
type QueryReleasedEventArgs = {
|
|
1050
789
|
block?: InputMaybe<Block_Height>;
|
|
1051
790
|
id: Scalars['ID']['input'];
|
|
1052
791
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1053
792
|
};
|
|
1054
|
-
type
|
|
793
|
+
type QueryReleasedEventsArgs = {
|
|
1055
794
|
block?: InputMaybe<Block_Height>;
|
|
1056
795
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1057
|
-
orderBy?: InputMaybe<
|
|
796
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1058
797
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1059
798
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1060
799
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1061
|
-
where?: InputMaybe<
|
|
800
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1062
801
|
};
|
|
1063
|
-
type
|
|
802
|
+
type QuerySettledEventArgs = {
|
|
1064
803
|
block?: InputMaybe<Block_Height>;
|
|
1065
804
|
id: Scalars['ID']['input'];
|
|
1066
805
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1067
806
|
};
|
|
1068
|
-
type
|
|
807
|
+
type QuerySettledEventsArgs = {
|
|
1069
808
|
block?: InputMaybe<Block_Height>;
|
|
1070
809
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1071
|
-
orderBy?: InputMaybe<
|
|
810
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1072
811
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1073
812
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1074
813
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1075
|
-
where?: InputMaybe<
|
|
814
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1076
815
|
};
|
|
1077
|
-
type
|
|
816
|
+
type QuerySlotArgs = {
|
|
1078
817
|
block?: InputMaybe<Block_Height>;
|
|
1079
818
|
id: Scalars['ID']['input'];
|
|
1080
819
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1081
820
|
};
|
|
1082
|
-
type QuerySlotReleasedEventsArgs = {
|
|
1083
|
-
block?: InputMaybe<Block_Height>;
|
|
1084
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1085
|
-
orderBy?: InputMaybe<SlotReleasedEvent_OrderBy>;
|
|
1086
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1087
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1088
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1089
|
-
where?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1090
|
-
};
|
|
1091
821
|
type QuerySlotsArgs = {
|
|
1092
822
|
block?: InputMaybe<Block_Height>;
|
|
1093
823
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1111,48 +841,125 @@ type QueryTaxCollectedEventsArgs = {
|
|
|
1111
841
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1112
842
|
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1113
843
|
};
|
|
1114
|
-
type
|
|
844
|
+
type QueryWithdrawnEventArgs = {
|
|
1115
845
|
block?: InputMaybe<Block_Height>;
|
|
1116
846
|
id: Scalars['ID']['input'];
|
|
1117
847
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1118
848
|
};
|
|
1119
|
-
type
|
|
849
|
+
type QueryWithdrawnEventsArgs = {
|
|
1120
850
|
block?: InputMaybe<Block_Height>;
|
|
1121
851
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1122
|
-
orderBy?: InputMaybe<
|
|
852
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1123
853
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1124
854
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1125
855
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1126
|
-
where?: InputMaybe<
|
|
856
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1127
857
|
};
|
|
1128
|
-
type
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
858
|
+
type ReleasedEvent = {
|
|
859
|
+
__typename?: 'ReleasedEvent';
|
|
860
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
861
|
+
id: Scalars['ID']['output'];
|
|
862
|
+
occupant: Scalars['Bytes']['output'];
|
|
863
|
+
refund: Scalars['BigInt']['output'];
|
|
864
|
+
slot: Slot;
|
|
865
|
+
timestamp: Scalars['BigInt']['output'];
|
|
866
|
+
tx: Scalars['Bytes']['output'];
|
|
1132
867
|
};
|
|
1133
|
-
type
|
|
1134
|
-
block
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
868
|
+
type ReleasedEvent_Filter = {
|
|
869
|
+
/** Filter for the block changed event. */
|
|
870
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
871
|
+
and?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
872
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
873
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
874
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
875
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
876
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
877
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
878
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
879
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
880
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
881
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
882
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
883
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
884
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
885
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
886
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
887
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
888
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
889
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
890
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
891
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
892
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
893
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
894
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
895
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
896
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
897
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
898
|
+
or?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
899
|
+
refund?: InputMaybe<Scalars['BigInt']['input']>;
|
|
900
|
+
refund_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
901
|
+
refund_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
902
|
+
refund_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
903
|
+
refund_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
904
|
+
refund_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
905
|
+
refund_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
906
|
+
refund_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
907
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
908
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
909
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
910
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
911
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
912
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
913
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
914
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
915
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
916
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
917
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
918
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
919
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
920
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
921
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
922
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
923
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
924
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
925
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
926
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
927
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
928
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
929
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
930
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
931
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
932
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
933
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
934
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
935
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
936
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
937
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
938
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
939
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
940
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
941
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
942
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
943
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
944
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
945
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1141
946
|
};
|
|
1142
|
-
type
|
|
1143
|
-
|
|
947
|
+
type ReleasedEvent_OrderBy = 'blockNumber' | 'id' | 'occupant' | 'refund' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
948
|
+
type SettledEvent = {
|
|
949
|
+
__typename?: 'SettledEvent';
|
|
1144
950
|
blockNumber: Scalars['BigInt']['output'];
|
|
1145
951
|
depositRemaining: Scalars['BigInt']['output'];
|
|
1146
952
|
id: Scalars['ID']['output'];
|
|
1147
953
|
slot: Slot;
|
|
1148
954
|
taxOwed: Scalars['BigInt']['output'];
|
|
955
|
+
taxPaid: Scalars['BigInt']['output'];
|
|
1149
956
|
timestamp: Scalars['BigInt']['output'];
|
|
1150
957
|
tx: Scalars['Bytes']['output'];
|
|
1151
958
|
};
|
|
1152
|
-
type
|
|
959
|
+
type SettledEvent_Filter = {
|
|
1153
960
|
/** Filter for the block changed event. */
|
|
1154
961
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1155
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
962
|
+
and?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1156
963
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1157
964
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
965
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1177,7 +984,7 @@ type SettlementEvent_Filter = {
|
|
|
1177
984
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1178
985
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1179
986
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1180
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
987
|
+
or?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1181
988
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1182
989
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1183
990
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1207,6 +1014,14 @@ type SettlementEvent_Filter = {
|
|
|
1207
1014
|
taxOwed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1208
1015
|
taxOwed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1209
1016
|
taxOwed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1017
|
+
taxPaid?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1018
|
+
taxPaid_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1019
|
+
taxPaid_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1020
|
+
taxPaid_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1021
|
+
taxPaid_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1022
|
+
taxPaid_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1023
|
+
taxPaid_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1024
|
+
taxPaid_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1210
1025
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1211
1026
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1212
1027
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1226,75 +1041,82 @@ type SettlementEvent_Filter = {
|
|
|
1226
1041
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1227
1042
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1228
1043
|
};
|
|
1229
|
-
type
|
|
1044
|
+
type SettledEvent_OrderBy = 'blockNumber' | 'depositRemaining' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'taxOwed' | 'taxPaid' | 'timestamp' | 'tx';
|
|
1230
1045
|
type Slot = {
|
|
1231
1046
|
__typename?: 'Slot';
|
|
1232
|
-
|
|
1233
|
-
basePrice: Scalars['BigInt']['output'];
|
|
1047
|
+
collectedTax: Scalars['BigInt']['output'];
|
|
1234
1048
|
createdAt: Scalars['BigInt']['output'];
|
|
1235
|
-
|
|
1049
|
+
createdTx: Scalars['Bytes']['output'];
|
|
1236
1050
|
currency: Scalars['Bytes']['output'];
|
|
1237
|
-
|
|
1051
|
+
currencyDecimals?: Maybe<Scalars['Int']['output']>;
|
|
1052
|
+
currencyName?: Maybe<Scalars['String']['output']>;
|
|
1053
|
+
currencySymbol?: Maybe<Scalars['String']['output']>;
|
|
1054
|
+
deposit: Scalars['BigInt']['output'];
|
|
1055
|
+
deposits: Array<DepositedEvent>;
|
|
1238
1056
|
id: Scalars['ID']['output'];
|
|
1239
|
-
|
|
1240
|
-
liquidations: Array<
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
module
|
|
1057
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1058
|
+
liquidations: Array<LiquidatedEvent>;
|
|
1059
|
+
manager: Scalars['Bytes']['output'];
|
|
1060
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1061
|
+
module: Scalars['Bytes']['output'];
|
|
1062
|
+
mutableModule: Scalars['Boolean']['output'];
|
|
1063
|
+
mutableTax: Scalars['Boolean']['output'];
|
|
1244
1064
|
occupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1065
|
+
occupantAccount?: Maybe<Account>;
|
|
1245
1066
|
price: Scalars['BigInt']['output'];
|
|
1246
|
-
|
|
1247
|
-
purchases: Array<
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1067
|
+
priceUpdates: Array<PriceUpdatedEvent>;
|
|
1068
|
+
purchases: Array<BoughtEvent>;
|
|
1069
|
+
recipient: Scalars['Bytes']['output'];
|
|
1070
|
+
recipientAccount: Account;
|
|
1071
|
+
releases: Array<ReleasedEvent>;
|
|
1072
|
+
settlements: Array<SettledEvent>;
|
|
1251
1073
|
taxCollections: Array<TaxCollectedEvent>;
|
|
1252
1074
|
taxPercentage: Scalars['BigInt']['output'];
|
|
1253
|
-
|
|
1075
|
+
totalCollected: Scalars['BigInt']['output'];
|
|
1254
1076
|
updatedAt: Scalars['BigInt']['output'];
|
|
1255
|
-
withdrawals: Array<
|
|
1077
|
+
withdrawals: Array<WithdrawnEvent>;
|
|
1256
1078
|
};
|
|
1257
1079
|
type SlotDepositsArgs = {
|
|
1258
1080
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1259
|
-
orderBy?: InputMaybe<
|
|
1081
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1260
1082
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1261
1083
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1262
|
-
where?: InputMaybe<
|
|
1084
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1263
1085
|
};
|
|
1264
1086
|
type SlotLiquidationsArgs = {
|
|
1265
1087
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1266
|
-
orderBy?: InputMaybe<
|
|
1088
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1267
1089
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1268
1090
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1269
|
-
where?: InputMaybe<
|
|
1091
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1270
1092
|
};
|
|
1271
|
-
type
|
|
1093
|
+
type SlotPriceUpdatesArgs = {
|
|
1272
1094
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1273
|
-
orderBy?: InputMaybe<
|
|
1095
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1274
1096
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1275
1097
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1276
|
-
where?: InputMaybe<
|
|
1098
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1277
1099
|
};
|
|
1278
1100
|
type SlotPurchasesArgs = {
|
|
1279
1101
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1280
|
-
orderBy?: InputMaybe<
|
|
1102
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
1281
1103
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1282
1104
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1283
|
-
where?: InputMaybe<
|
|
1105
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1284
1106
|
};
|
|
1285
1107
|
type SlotReleasesArgs = {
|
|
1286
1108
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1287
|
-
orderBy?: InputMaybe<
|
|
1109
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1288
1110
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1289
1111
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1290
|
-
where?: InputMaybe<
|
|
1112
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1291
1113
|
};
|
|
1292
1114
|
type SlotSettlementsArgs = {
|
|
1293
1115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1294
|
-
orderBy?: InputMaybe<
|
|
1116
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1295
1117
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1296
1118
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1297
|
-
where?: InputMaybe<
|
|
1119
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1298
1120
|
};
|
|
1299
1121
|
type SlotTaxCollectionsArgs = {
|
|
1300
1122
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1303,54 +1125,92 @@ type SlotTaxCollectionsArgs = {
|
|
|
1303
1125
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1304
1126
|
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1305
1127
|
};
|
|
1306
|
-
type SlotTaxUpdatesArgs = {
|
|
1307
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1308
|
-
orderBy?: InputMaybe<TaxRateChange_OrderBy>;
|
|
1309
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1310
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1311
|
-
where?: InputMaybe<TaxRateChange_Filter>;
|
|
1312
|
-
};
|
|
1313
1128
|
type SlotWithdrawalsArgs = {
|
|
1314
1129
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1315
|
-
orderBy?: InputMaybe<
|
|
1130
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1316
1131
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1317
1132
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1318
|
-
where?: InputMaybe<
|
|
1319
|
-
};
|
|
1320
|
-
type SlotCreatedEvent = {
|
|
1321
|
-
__typename?: 'SlotCreatedEvent';
|
|
1322
|
-
basePrice: Scalars['BigInt']['output'];
|
|
1323
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1324
|
-
currency: Scalars['Bytes']['output'];
|
|
1325
|
-
id: Scalars['ID']['output'];
|
|
1326
|
-
land: Scalars['Bytes']['output'];
|
|
1327
|
-
slot: Slot;
|
|
1328
|
-
slotId: Scalars['BigInt']['output'];
|
|
1329
|
-
taxPercentage: Scalars['BigInt']['output'];
|
|
1330
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1331
|
-
tx: Scalars['Bytes']['output'];
|
|
1133
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1332
1134
|
};
|
|
1333
|
-
type
|
|
1135
|
+
type Slot_Filter = {
|
|
1334
1136
|
/** Filter for the block changed event. */
|
|
1335
1137
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1336
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1138
|
+
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1139
|
+
collectedTax?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1140
|
+
collectedTax_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1141
|
+
collectedTax_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1142
|
+
collectedTax_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1143
|
+
collectedTax_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1144
|
+
collectedTax_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1145
|
+
collectedTax_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1146
|
+
collectedTax_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1147
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1148
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1149
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1150
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1151
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1152
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1153
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1154
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1155
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1156
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1157
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1158
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1159
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1160
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1161
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1162
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1163
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1164
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1353
1165
|
currency?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1166
|
+
currencyDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1167
|
+
currencyDecimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1168
|
+
currencyDecimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1169
|
+
currencyDecimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1170
|
+
currencyDecimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1171
|
+
currencyDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1172
|
+
currencyDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1173
|
+
currencyDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1174
|
+
currencyName?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
+
currencyName_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1176
|
+
currencyName_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1177
|
+
currencyName_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1178
|
+
currencyName_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1179
|
+
currencyName_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
+
currencyName_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
+
currencyName_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1182
|
+
currencyName_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1183
|
+
currencyName_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
currencyName_not?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
+
currencyName_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
+
currencyName_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
+
currencyName_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
currencyName_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
currencyName_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1190
|
+
currencyName_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1191
|
+
currencyName_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1192
|
+
currencyName_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1193
|
+
currencyName_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1194
|
+
currencySymbol?: InputMaybe<Scalars['String']['input']>;
|
|
1195
|
+
currencySymbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1196
|
+
currencySymbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1197
|
+
currencySymbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1198
|
+
currencySymbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1199
|
+
currencySymbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
currencySymbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1201
|
+
currencySymbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1202
|
+
currencySymbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1203
|
+
currencySymbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1204
|
+
currencySymbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
1205
|
+
currencySymbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1206
|
+
currencySymbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1207
|
+
currencySymbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1208
|
+
currencySymbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1209
|
+
currencySymbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1210
|
+
currencySymbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1211
|
+
currencySymbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1212
|
+
currencySymbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1213
|
+
currencySymbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1354
1214
|
currency_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1355
1215
|
currency_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1356
1216
|
currency_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -1360,6 +1220,15 @@ type SlotCreatedEvent_Filter = {
|
|
|
1360
1220
|
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1361
1221
|
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1362
1222
|
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1223
|
+
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1224
|
+
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1225
|
+
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1226
|
+
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1227
|
+
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1228
|
+
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1229
|
+
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1230
|
+
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1231
|
+
deposits_?: InputMaybe<DepositedEvent_Filter>;
|
|
1363
1232
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1364
1233
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1365
1234
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1368,479 +1237,33 @@ type SlotCreatedEvent_Filter = {
|
|
|
1368
1237
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1369
1238
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1370
1239
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1399
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1400
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1401
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1402
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1403
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1404
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1405
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1406
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1407
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1409
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1410
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1411
|
-
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1412
|
-
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1413
|
-
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1414
|
-
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1415
|
-
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1416
|
-
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1417
|
-
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1418
|
-
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1419
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1420
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1421
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1422
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1423
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1424
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1425
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1426
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1427
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1428
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1429
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1430
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1431
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1432
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1433
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1434
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1435
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1436
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1437
|
-
};
|
|
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';
|
|
1560
|
-
type SlotPurchase = {
|
|
1561
|
-
__typename?: 'SlotPurchase';
|
|
1562
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1563
|
-
id: Scalars['ID']['output'];
|
|
1564
|
-
newOccupant: Scalars['Bytes']['output'];
|
|
1565
|
-
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1566
|
-
price: Scalars['BigInt']['output'];
|
|
1567
|
-
slot: Slot;
|
|
1568
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1569
|
-
tx: Scalars['Bytes']['output'];
|
|
1570
|
-
};
|
|
1571
|
-
type SlotPurchase_Filter = {
|
|
1572
|
-
/** Filter for the block changed event. */
|
|
1573
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1574
|
-
and?: InputMaybe<Array<InputMaybe<SlotPurchase_Filter>>>;
|
|
1575
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1576
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1577
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1578
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1579
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1580
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1581
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1582
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1583
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1584
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1585
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1586
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1587
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1588
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1589
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1590
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1591
|
-
newOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1592
|
-
newOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1593
|
-
newOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1594
|
-
newOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1595
|
-
newOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1596
|
-
newOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1597
|
-
newOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1598
|
-
newOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1599
|
-
newOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1600
|
-
newOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1601
|
-
or?: InputMaybe<Array<InputMaybe<SlotPurchase_Filter>>>;
|
|
1602
|
-
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1603
|
-
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1604
|
-
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1605
|
-
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1606
|
-
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1607
|
-
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1608
|
-
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1609
|
-
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1610
|
-
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
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']>>;
|
|
1620
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1621
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1622
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1623
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1624
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1625
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1626
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1627
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1628
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1629
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1630
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1631
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1632
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1633
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1634
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1635
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1636
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1637
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1638
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1639
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1640
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1641
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1642
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1643
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1644
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1645
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1646
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1647
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1648
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1649
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1650
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1651
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1652
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1653
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1654
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1655
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1656
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1657
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1658
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1659
|
-
};
|
|
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';
|
|
1661
|
-
type SlotReleasedEvent = {
|
|
1662
|
-
__typename?: 'SlotReleasedEvent';
|
|
1663
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1664
|
-
id: Scalars['ID']['output'];
|
|
1665
|
-
land: Scalars['Bytes']['output'];
|
|
1666
|
-
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1667
|
-
slot: Slot;
|
|
1668
|
-
slotId: Scalars['BigInt']['output'];
|
|
1669
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1670
|
-
tx: Scalars['Bytes']['output'];
|
|
1671
|
-
};
|
|
1672
|
-
type SlotReleasedEvent_Filter = {
|
|
1673
|
-
/** Filter for the block changed event. */
|
|
1674
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1675
|
-
and?: InputMaybe<Array<InputMaybe<SlotReleasedEvent_Filter>>>;
|
|
1676
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1677
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1678
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1679
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1680
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1681
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1682
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1683
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1684
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1685
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1686
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1687
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1688
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1689
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1690
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1691
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1692
|
-
land?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1693
|
-
land_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1694
|
-
land_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1695
|
-
land_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1696
|
-
land_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1697
|
-
land_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1698
|
-
land_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1699
|
-
land_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1700
|
-
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1701
|
-
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1702
|
-
or?: InputMaybe<Array<InputMaybe<SlotReleasedEvent_Filter>>>;
|
|
1703
|
-
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1704
|
-
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1705
|
-
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1706
|
-
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1707
|
-
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1708
|
-
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1709
|
-
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1710
|
-
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1711
|
-
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1712
|
-
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1713
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1714
|
-
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1715
|
-
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1716
|
-
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1717
|
-
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1718
|
-
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1719
|
-
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1720
|
-
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1721
|
-
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1722
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1723
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1725
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1726
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1727
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1728
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1729
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1730
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1731
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1732
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1733
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1734
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1735
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1736
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1737
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1738
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1739
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1740
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1741
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1742
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1743
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1744
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1745
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1746
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1747
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1748
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1749
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1750
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1751
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1752
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1753
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1754
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1755
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1756
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1757
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1758
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1759
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1760
|
-
};
|
|
1761
|
-
type SlotReleasedEvent_OrderBy = 'blockNumber' | 'id' | 'land' | 'previousOccupant' | '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';
|
|
1762
|
-
type Slot_Filter = {
|
|
1763
|
-
/** Filter for the block changed event. */
|
|
1764
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1765
|
-
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1766
|
-
active_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1767
|
-
active_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1768
|
-
active_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1769
|
-
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1770
|
-
basePrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1771
|
-
basePrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1772
|
-
basePrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1773
|
-
basePrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1774
|
-
basePrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1775
|
-
basePrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1776
|
-
basePrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1777
|
-
basePrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1778
|
-
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1779
|
-
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1780
|
-
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1781
|
-
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1782
|
-
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1783
|
-
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1784
|
-
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1785
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1786
|
-
createdEvent_?: InputMaybe<SlotCreatedEvent_Filter>;
|
|
1787
|
-
currency?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1788
|
-
currency_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1789
|
-
currency_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1790
|
-
currency_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1791
|
-
currency_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1792
|
-
currency_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1793
|
-
currency_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1794
|
-
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1795
|
-
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1796
|
-
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1797
|
-
deposits_?: InputMaybe<DepositEvent_Filter>;
|
|
1798
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1799
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1800
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1801
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1802
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1803
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1804
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1805
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1806
|
-
land?: InputMaybe<Scalars['String']['input']>;
|
|
1807
|
-
land_?: InputMaybe<Land_Filter>;
|
|
1808
|
-
land_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1809
|
-
land_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1810
|
-
land_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1811
|
-
land_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1812
|
-
land_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1813
|
-
land_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1814
|
-
land_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1815
|
-
land_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1816
|
-
land_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1817
|
-
land_not?: InputMaybe<Scalars['String']['input']>;
|
|
1818
|
-
land_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1819
|
-
land_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1820
|
-
land_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1821
|
-
land_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1822
|
-
land_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1823
|
-
land_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1824
|
-
land_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1825
|
-
land_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1826
|
-
land_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1827
|
-
liquidations_?: InputMaybe<SlotLiquidatedEvent_Filter>;
|
|
1828
|
-
maxTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1829
|
-
maxTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1830
|
-
maxTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1831
|
-
maxTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1832
|
-
maxTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1833
|
-
maxTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1834
|
-
maxTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1835
|
-
maxTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1836
|
-
minTaxUpdatePeriod?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1837
|
-
minTaxUpdatePeriod_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1838
|
-
minTaxUpdatePeriod_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1839
|
-
minTaxUpdatePeriod_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1840
|
-
minTaxUpdatePeriod_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1841
|
-
minTaxUpdatePeriod_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1842
|
-
minTaxUpdatePeriod_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1843
|
-
minTaxUpdatePeriod_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1240
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1241
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1242
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1243
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1244
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1245
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1246
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1247
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1248
|
+
liquidations_?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1249
|
+
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1250
|
+
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1251
|
+
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1252
|
+
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1253
|
+
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1254
|
+
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1255
|
+
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1256
|
+
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1257
|
+
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1258
|
+
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1259
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1260
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1261
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1262
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1263
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1264
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1265
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1266
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1844
1267
|
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1845
1268
|
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1846
1269
|
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -1851,7 +1274,36 @@ type Slot_Filter = {
|
|
|
1851
1274
|
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1852
1275
|
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1853
1276
|
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1277
|
+
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1278
|
+
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1279
|
+
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1280
|
+
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1281
|
+
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1282
|
+
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1283
|
+
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1284
|
+
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1854
1285
|
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1286
|
+
occupantAccount?: InputMaybe<Scalars['String']['input']>;
|
|
1287
|
+
occupantAccount_?: InputMaybe<Account_Filter>;
|
|
1288
|
+
occupantAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1289
|
+
occupantAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1290
|
+
occupantAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1291
|
+
occupantAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1292
|
+
occupantAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1293
|
+
occupantAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1294
|
+
occupantAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1295
|
+
occupantAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1296
|
+
occupantAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1297
|
+
occupantAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
1298
|
+
occupantAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1299
|
+
occupantAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1300
|
+
occupantAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1301
|
+
occupantAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1302
|
+
occupantAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1303
|
+
occupantAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1304
|
+
occupantAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1305
|
+
occupantAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1306
|
+
occupantAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1855
1307
|
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1856
1308
|
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1857
1309
|
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -1863,7 +1315,7 @@ type Slot_Filter = {
|
|
|
1863
1315
|
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1864
1316
|
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1865
1317
|
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1866
|
-
|
|
1318
|
+
priceUpdates_?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1867
1319
|
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1868
1320
|
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1869
1321
|
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
@@ -1871,17 +1323,40 @@ type Slot_Filter = {
|
|
|
1871
1323
|
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1872
1324
|
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1873
1325
|
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1874
|
-
purchases_?: InputMaybe<
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1326
|
+
purchases_?: InputMaybe<BoughtEvent_Filter>;
|
|
1327
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1328
|
+
recipientAccount?: InputMaybe<Scalars['String']['input']>;
|
|
1329
|
+
recipientAccount_?: InputMaybe<Account_Filter>;
|
|
1330
|
+
recipientAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1331
|
+
recipientAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1332
|
+
recipientAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1333
|
+
recipientAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1334
|
+
recipientAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1335
|
+
recipientAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1336
|
+
recipientAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1337
|
+
recipientAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1338
|
+
recipientAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1339
|
+
recipientAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
1340
|
+
recipientAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1341
|
+
recipientAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1342
|
+
recipientAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1343
|
+
recipientAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1344
|
+
recipientAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1345
|
+
recipientAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1346
|
+
recipientAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1347
|
+
recipientAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1348
|
+
recipientAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1349
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1350
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1351
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1352
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1353
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1354
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1355
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1356
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1357
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1358
|
+
releases_?: InputMaybe<ReleasedEvent_Filter>;
|
|
1359
|
+
settlements_?: InputMaybe<SettledEvent_Filter>;
|
|
1885
1360
|
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1886
1361
|
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1887
1362
|
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1891,7 +1366,14 @@ type Slot_Filter = {
|
|
|
1891
1366
|
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1892
1367
|
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1893
1368
|
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1894
|
-
|
|
1369
|
+
totalCollected?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1370
|
+
totalCollected_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1371
|
+
totalCollected_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1372
|
+
totalCollected_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1373
|
+
totalCollected_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1374
|
+
totalCollected_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1375
|
+
totalCollected_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1376
|
+
totalCollected_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1895
1377
|
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1896
1378
|
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1897
1379
|
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1900,15 +1382,15 @@ type Slot_Filter = {
|
|
|
1900
1382
|
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1901
1383
|
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1902
1384
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1903
|
-
withdrawals_?: InputMaybe<
|
|
1385
|
+
withdrawals_?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1904
1386
|
};
|
|
1905
|
-
type Slot_OrderBy = '
|
|
1387
|
+
type Slot_OrderBy = 'collectedTax' | 'createdAt' | 'createdTx' | 'currency' | 'currencyDecimals' | 'currencyName' | 'currencySymbol' | 'deposit' | 'deposits' | 'id' | 'liquidationBountyBps' | 'liquidations' | 'manager' | 'minDepositSeconds' | 'module' | 'mutableModule' | 'mutableTax' | 'occupant' | 'occupantAccount' | 'occupantAccount__id' | 'occupantAccount__occupiedCount' | 'occupantAccount__slotCount' | 'price' | 'priceUpdates' | 'purchases' | 'recipient' | 'recipientAccount' | 'recipientAccount__id' | 'recipientAccount__occupiedCount' | 'recipientAccount__slotCount' | 'releases' | 'settlements' | 'taxCollections' | 'taxPercentage' | 'totalCollected' | 'updatedAt' | 'withdrawals';
|
|
1906
1388
|
type TaxCollectedEvent = {
|
|
1907
1389
|
__typename?: 'TaxCollectedEvent';
|
|
1908
1390
|
amount: Scalars['BigInt']['output'];
|
|
1909
1391
|
blockNumber: Scalars['BigInt']['output'];
|
|
1910
1392
|
id: Scalars['ID']['output'];
|
|
1911
|
-
|
|
1393
|
+
recipient: Scalars['Bytes']['output'];
|
|
1912
1394
|
slot: Slot;
|
|
1913
1395
|
timestamp: Scalars['BigInt']['output'];
|
|
1914
1396
|
tx: Scalars['Bytes']['output'];
|
|
@@ -1942,134 +1424,16 @@ type TaxCollectedEvent_Filter = {
|
|
|
1942
1424
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1943
1425
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1944
1426
|
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
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';
|
|
1996
|
-
type TaxRateChange = {
|
|
1997
|
-
__typename?: 'TaxRateChange';
|
|
1998
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1999
|
-
confirmableAt?: Maybe<Scalars['BigInt']['output']>;
|
|
2000
|
-
id: Scalars['ID']['output'];
|
|
2001
|
-
kind: Scalars['String']['output'];
|
|
2002
|
-
newPercentage?: Maybe<Scalars['BigInt']['output']>;
|
|
2003
|
-
oldPercentage?: Maybe<Scalars['BigInt']['output']>;
|
|
2004
|
-
slot: Slot;
|
|
2005
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2006
|
-
tx: Scalars['Bytes']['output'];
|
|
2007
|
-
};
|
|
2008
|
-
type TaxRateChange_Filter = {
|
|
2009
|
-
/** Filter for the block changed event. */
|
|
2010
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2011
|
-
and?: InputMaybe<Array<InputMaybe<TaxRateChange_Filter>>>;
|
|
2012
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2013
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2014
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2015
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2016
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2017
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2018
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2019
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2020
|
-
confirmableAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2021
|
-
confirmableAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2022
|
-
confirmableAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2023
|
-
confirmableAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2024
|
-
confirmableAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2025
|
-
confirmableAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2026
|
-
confirmableAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2027
|
-
confirmableAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2028
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2029
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2030
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2031
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2032
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2033
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2034
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2035
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2036
|
-
kind?: InputMaybe<Scalars['String']['input']>;
|
|
2037
|
-
kind_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2038
|
-
kind_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2039
|
-
kind_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2040
|
-
kind_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2041
|
-
kind_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2042
|
-
kind_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2043
|
-
kind_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2044
|
-
kind_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2045
|
-
kind_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2046
|
-
kind_not?: InputMaybe<Scalars['String']['input']>;
|
|
2047
|
-
kind_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2048
|
-
kind_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2049
|
-
kind_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2050
|
-
kind_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2051
|
-
kind_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2052
|
-
kind_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2053
|
-
kind_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2054
|
-
kind_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2055
|
-
kind_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2056
|
-
newPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2057
|
-
newPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2058
|
-
newPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2059
|
-
newPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2060
|
-
newPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2061
|
-
newPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2062
|
-
newPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2063
|
-
newPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2064
|
-
oldPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2065
|
-
oldPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2066
|
-
oldPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2067
|
-
oldPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2068
|
-
oldPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2069
|
-
oldPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2070
|
-
oldPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2071
|
-
oldPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2072
|
-
or?: InputMaybe<Array<InputMaybe<TaxRateChange_Filter>>>;
|
|
1427
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1428
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1429
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1430
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1431
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1432
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1433
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1434
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1435
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1436
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2073
1437
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2074
1438
|
slot_?: InputMaybe<Slot_Filter>;
|
|
2075
1439
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2110,9 +1474,9 @@ type TaxRateChange_Filter = {
|
|
|
2110
1474
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2111
1475
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2112
1476
|
};
|
|
2113
|
-
type
|
|
2114
|
-
type
|
|
2115
|
-
__typename?: '
|
|
1477
|
+
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1478
|
+
type WithdrawnEvent = {
|
|
1479
|
+
__typename?: 'WithdrawnEvent';
|
|
2116
1480
|
amount: Scalars['BigInt']['output'];
|
|
2117
1481
|
blockNumber: Scalars['BigInt']['output'];
|
|
2118
1482
|
id: Scalars['ID']['output'];
|
|
@@ -2121,7 +1485,7 @@ type WithdrawalEvent = {
|
|
|
2121
1485
|
timestamp: Scalars['BigInt']['output'];
|
|
2122
1486
|
tx: Scalars['Bytes']['output'];
|
|
2123
1487
|
};
|
|
2124
|
-
type
|
|
1488
|
+
type WithdrawnEvent_Filter = {
|
|
2125
1489
|
/** Filter for the block changed event. */
|
|
2126
1490
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2127
1491
|
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -2132,7 +1496,7 @@ type WithdrawalEvent_Filter = {
|
|
|
2132
1496
|
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2133
1497
|
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2134
1498
|
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2135
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
1499
|
+
and?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2136
1500
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2137
1501
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2138
1502
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -2159,7 +1523,7 @@ type WithdrawalEvent_Filter = {
|
|
|
2159
1523
|
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2160
1524
|
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2161
1525
|
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2162
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
1526
|
+
or?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2163
1527
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2164
1528
|
slot_?: InputMaybe<Slot_Filter>;
|
|
2165
1529
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2200,7 +1564,7 @@ type WithdrawalEvent_Filter = {
|
|
|
2200
1564
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2201
1565
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2202
1566
|
};
|
|
2203
|
-
type
|
|
1567
|
+
type WithdrawnEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__currency' | 'slot__currencyDecimals' | 'slot__currencyName' | 'slot__currencySymbol' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__module' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2204
1568
|
type _Block_ = {
|
|
2205
1569
|
__typename?: '_Block_';
|
|
2206
1570
|
/** The hash of the block */
|
|
@@ -2227,483 +1591,783 @@ type _Meta_ = {
|
|
|
2227
1591
|
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
2228
1592
|
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
2229
1593
|
};
|
|
2230
|
-
type _SubgraphErrorPolicy_ =
|
|
2231
|
-
/** Data will be returned even if the subgraph has indexing errors */
|
|
2232
|
-
'allow'
|
|
2233
|
-
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
2234
|
-
| 'deny';
|
|
2235
|
-
type
|
|
2236
|
-
|
|
1594
|
+
type _SubgraphErrorPolicy_ =
|
|
1595
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
1596
|
+
'allow'
|
|
1597
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
1598
|
+
| 'deny';
|
|
1599
|
+
type AccountFieldsFragment = {
|
|
1600
|
+
__typename?: 'Account';
|
|
1601
|
+
id: string;
|
|
1602
|
+
slotCount: number;
|
|
1603
|
+
occupiedCount: number;
|
|
1604
|
+
slotsAsRecipient: Array<{
|
|
1605
|
+
__typename?: 'Slot';
|
|
1606
|
+
id: string;
|
|
1607
|
+
}>;
|
|
1608
|
+
slotsAsOccupant: Array<{
|
|
1609
|
+
__typename?: 'Slot';
|
|
1610
|
+
id: string;
|
|
1611
|
+
}>;
|
|
1612
|
+
};
|
|
1613
|
+
type GetAccountQueryVariables = Exact<{
|
|
1614
|
+
id: Scalars['ID']['input'];
|
|
1615
|
+
block?: InputMaybe<Block_Height>;
|
|
1616
|
+
}>;
|
|
1617
|
+
type GetAccountQuery = {
|
|
1618
|
+
__typename?: 'Query';
|
|
1619
|
+
account?: {
|
|
1620
|
+
__typename?: 'Account';
|
|
1621
|
+
id: string;
|
|
1622
|
+
slotCount: number;
|
|
1623
|
+
occupiedCount: number;
|
|
1624
|
+
slotsAsRecipient: Array<{
|
|
1625
|
+
__typename?: 'Slot';
|
|
1626
|
+
id: string;
|
|
1627
|
+
}>;
|
|
1628
|
+
slotsAsOccupant: Array<{
|
|
1629
|
+
__typename?: 'Slot';
|
|
1630
|
+
id: string;
|
|
1631
|
+
}>;
|
|
1632
|
+
} | null;
|
|
1633
|
+
};
|
|
1634
|
+
type GetAccountsQueryVariables = Exact<{
|
|
1635
|
+
first: Scalars['Int']['input'];
|
|
1636
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1637
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
1638
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1639
|
+
where?: InputMaybe<Account_Filter>;
|
|
1640
|
+
block?: InputMaybe<Block_Height>;
|
|
1641
|
+
}>;
|
|
1642
|
+
type GetAccountsQuery = {
|
|
1643
|
+
__typename?: 'Query';
|
|
1644
|
+
accounts: Array<{
|
|
1645
|
+
__typename?: 'Account';
|
|
1646
|
+
id: string;
|
|
1647
|
+
slotCount: number;
|
|
1648
|
+
occupiedCount: number;
|
|
1649
|
+
slotsAsRecipient: Array<{
|
|
1650
|
+
__typename?: 'Slot';
|
|
1651
|
+
id: string;
|
|
1652
|
+
}>;
|
|
1653
|
+
slotsAsOccupant: Array<{
|
|
1654
|
+
__typename?: 'Slot';
|
|
1655
|
+
id: string;
|
|
1656
|
+
}>;
|
|
1657
|
+
}>;
|
|
1658
|
+
};
|
|
1659
|
+
type GetRecentEventsQueryVariables = Exact<{
|
|
1660
|
+
first: Scalars['Int']['input'];
|
|
1661
|
+
}>;
|
|
1662
|
+
type GetRecentEventsQuery = {
|
|
1663
|
+
__typename?: 'Query';
|
|
1664
|
+
boughtEvents: Array<{
|
|
1665
|
+
__typename?: 'BoughtEvent';
|
|
1666
|
+
id: string;
|
|
1667
|
+
buyer: string;
|
|
1668
|
+
previousOccupant: string;
|
|
1669
|
+
price: string;
|
|
1670
|
+
selfAssessedPrice: string;
|
|
1671
|
+
deposit: string;
|
|
1672
|
+
timestamp: string;
|
|
1673
|
+
tx: string;
|
|
1674
|
+
slot: {
|
|
1675
|
+
__typename?: 'Slot';
|
|
1676
|
+
id: string;
|
|
1677
|
+
};
|
|
1678
|
+
}>;
|
|
1679
|
+
releasedEvents: Array<{
|
|
1680
|
+
__typename?: 'ReleasedEvent';
|
|
1681
|
+
id: string;
|
|
1682
|
+
occupant: string;
|
|
1683
|
+
refund: string;
|
|
1684
|
+
timestamp: string;
|
|
1685
|
+
tx: string;
|
|
1686
|
+
slot: {
|
|
1687
|
+
__typename?: 'Slot';
|
|
1688
|
+
id: string;
|
|
1689
|
+
};
|
|
1690
|
+
}>;
|
|
1691
|
+
liquidatedEvents: Array<{
|
|
1692
|
+
__typename?: 'LiquidatedEvent';
|
|
1693
|
+
id: string;
|
|
1694
|
+
liquidator: string;
|
|
1695
|
+
occupant: string;
|
|
1696
|
+
bounty: string;
|
|
1697
|
+
timestamp: string;
|
|
1698
|
+
tx: string;
|
|
1699
|
+
slot: {
|
|
1700
|
+
__typename?: 'Slot';
|
|
1701
|
+
id: string;
|
|
1702
|
+
};
|
|
1703
|
+
}>;
|
|
1704
|
+
priceUpdatedEvents: Array<{
|
|
1705
|
+
__typename?: 'PriceUpdatedEvent';
|
|
1706
|
+
id: string;
|
|
1707
|
+
oldPrice: string;
|
|
1708
|
+
newPrice: string;
|
|
1709
|
+
timestamp: string;
|
|
1710
|
+
tx: string;
|
|
1711
|
+
slot: {
|
|
1712
|
+
__typename?: 'Slot';
|
|
1713
|
+
id: string;
|
|
1714
|
+
};
|
|
1715
|
+
}>;
|
|
1716
|
+
depositedEvents: Array<{
|
|
1717
|
+
__typename?: 'DepositedEvent';
|
|
1718
|
+
id: string;
|
|
1719
|
+
depositor: string;
|
|
1720
|
+
amount: string;
|
|
1721
|
+
timestamp: string;
|
|
1722
|
+
tx: string;
|
|
1723
|
+
slot: {
|
|
1724
|
+
__typename?: 'Slot';
|
|
1725
|
+
id: string;
|
|
1726
|
+
};
|
|
1727
|
+
}>;
|
|
1728
|
+
withdrawnEvents: Array<{
|
|
1729
|
+
__typename?: 'WithdrawnEvent';
|
|
1730
|
+
id: string;
|
|
1731
|
+
occupant: string;
|
|
1732
|
+
amount: string;
|
|
1733
|
+
timestamp: string;
|
|
1734
|
+
tx: string;
|
|
1735
|
+
slot: {
|
|
1736
|
+
__typename?: 'Slot';
|
|
1737
|
+
id: string;
|
|
1738
|
+
};
|
|
1739
|
+
}>;
|
|
1740
|
+
taxCollectedEvents: Array<{
|
|
1741
|
+
__typename?: 'TaxCollectedEvent';
|
|
1742
|
+
id: string;
|
|
1743
|
+
recipient: string;
|
|
1744
|
+
amount: string;
|
|
1745
|
+
timestamp: string;
|
|
1746
|
+
tx: string;
|
|
1747
|
+
slot: {
|
|
1748
|
+
__typename?: 'Slot';
|
|
1749
|
+
id: string;
|
|
1750
|
+
};
|
|
1751
|
+
}>;
|
|
1752
|
+
};
|
|
1753
|
+
type GetBoughtEventsQueryVariables = Exact<{
|
|
1754
|
+
first: Scalars['Int']['input'];
|
|
2237
1755
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2238
|
-
orderBy?: InputMaybe<
|
|
1756
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
2239
1757
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2240
|
-
where?: InputMaybe<
|
|
1758
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1759
|
+
block?: InputMaybe<Block_Height>;
|
|
2241
1760
|
}>;
|
|
2242
|
-
type
|
|
1761
|
+
type GetBoughtEventsQuery = {
|
|
2243
1762
|
__typename?: 'Query';
|
|
2244
|
-
|
|
2245
|
-
__typename?: '
|
|
1763
|
+
boughtEvents: Array<{
|
|
1764
|
+
__typename?: 'BoughtEvent';
|
|
2246
1765
|
id: string;
|
|
2247
|
-
|
|
2248
|
-
previousOccupant
|
|
1766
|
+
buyer: string;
|
|
1767
|
+
previousOccupant: string;
|
|
1768
|
+
price: string;
|
|
1769
|
+
deposit: string;
|
|
1770
|
+
selfAssessedPrice: string;
|
|
2249
1771
|
timestamp: string;
|
|
2250
1772
|
blockNumber: string;
|
|
2251
1773
|
tx: string;
|
|
2252
1774
|
slot: {
|
|
2253
1775
|
__typename?: 'Slot';
|
|
2254
1776
|
id: string;
|
|
2255
|
-
slotId: string;
|
|
2256
|
-
land: {
|
|
2257
|
-
__typename?: 'Land';
|
|
2258
|
-
id: string;
|
|
2259
|
-
};
|
|
2260
1777
|
};
|
|
2261
1778
|
}>;
|
|
2262
1779
|
};
|
|
2263
|
-
type
|
|
2264
|
-
first
|
|
2265
|
-
|
|
1780
|
+
type GetReleasedEventsQueryVariables = Exact<{
|
|
1781
|
+
first: Scalars['Int']['input'];
|
|
1782
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1783
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
2266
1784
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1785
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1786
|
+
block?: InputMaybe<Block_Height>;
|
|
2267
1787
|
}>;
|
|
2268
|
-
type
|
|
1788
|
+
type GetReleasedEventsQuery = {
|
|
2269
1789
|
__typename?: 'Query';
|
|
2270
|
-
|
|
2271
|
-
__typename?: '
|
|
1790
|
+
releasedEvents: Array<{
|
|
1791
|
+
__typename?: 'ReleasedEvent';
|
|
2272
1792
|
id: string;
|
|
2273
|
-
|
|
1793
|
+
occupant: string;
|
|
1794
|
+
refund: string;
|
|
2274
1795
|
timestamp: string;
|
|
2275
1796
|
blockNumber: string;
|
|
2276
1797
|
tx: string;
|
|
2277
|
-
|
|
2278
|
-
__typename?: '
|
|
1798
|
+
slot: {
|
|
1799
|
+
__typename?: 'Slot';
|
|
2279
1800
|
id: string;
|
|
2280
1801
|
};
|
|
2281
1802
|
}>;
|
|
2282
1803
|
};
|
|
2283
|
-
type
|
|
2284
|
-
first
|
|
2285
|
-
|
|
1804
|
+
type GetLiquidatedEventsQueryVariables = Exact<{
|
|
1805
|
+
first: Scalars['Int']['input'];
|
|
1806
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1807
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
2286
1808
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2287
|
-
where?: InputMaybe<
|
|
1809
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1810
|
+
block?: InputMaybe<Block_Height>;
|
|
2288
1811
|
}>;
|
|
2289
|
-
type
|
|
1812
|
+
type GetLiquidatedEventsQuery = {
|
|
2290
1813
|
__typename?: 'Query';
|
|
2291
|
-
|
|
2292
|
-
__typename?: '
|
|
1814
|
+
liquidatedEvents: Array<{
|
|
1815
|
+
__typename?: 'LiquidatedEvent';
|
|
2293
1816
|
id: string;
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
basePrice: string;
|
|
2298
|
-
taxPercentage: string;
|
|
1817
|
+
liquidator: string;
|
|
1818
|
+
occupant: string;
|
|
1819
|
+
bounty: string;
|
|
2299
1820
|
timestamp: string;
|
|
2300
1821
|
blockNumber: string;
|
|
2301
1822
|
tx: string;
|
|
2302
1823
|
slot: {
|
|
2303
1824
|
__typename?: 'Slot';
|
|
2304
1825
|
id: string;
|
|
2305
|
-
slotId: string;
|
|
2306
1826
|
};
|
|
2307
1827
|
}>;
|
|
2308
1828
|
};
|
|
2309
|
-
type
|
|
2310
|
-
first
|
|
2311
|
-
|
|
1829
|
+
type GetSettledEventsQueryVariables = Exact<{
|
|
1830
|
+
first: Scalars['Int']['input'];
|
|
1831
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1832
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
2312
1833
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2313
|
-
where?: InputMaybe<
|
|
1834
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1835
|
+
block?: InputMaybe<Block_Height>;
|
|
2314
1836
|
}>;
|
|
2315
|
-
type
|
|
1837
|
+
type GetSettledEventsQuery = {
|
|
2316
1838
|
__typename?: 'Query';
|
|
2317
|
-
|
|
2318
|
-
__typename?: '
|
|
1839
|
+
settledEvents: Array<{
|
|
1840
|
+
__typename?: 'SettledEvent';
|
|
2319
1841
|
id: string;
|
|
2320
|
-
|
|
2321
|
-
|
|
1842
|
+
taxOwed: string;
|
|
1843
|
+
taxPaid: string;
|
|
1844
|
+
depositRemaining: string;
|
|
2322
1845
|
timestamp: string;
|
|
2323
1846
|
blockNumber: string;
|
|
2324
1847
|
tx: string;
|
|
2325
1848
|
slot: {
|
|
2326
1849
|
__typename?: 'Slot';
|
|
2327
1850
|
id: string;
|
|
2328
|
-
slotId: string;
|
|
2329
1851
|
};
|
|
2330
1852
|
}>;
|
|
2331
1853
|
};
|
|
2332
|
-
type
|
|
2333
|
-
|
|
1854
|
+
type GetTaxCollectedEventsQueryVariables = Exact<{
|
|
1855
|
+
first: Scalars['Int']['input'];
|
|
1856
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1857
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1858
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1859
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1860
|
+
block?: InputMaybe<Block_Height>;
|
|
2334
1861
|
}>;
|
|
2335
|
-
type
|
|
1862
|
+
type GetTaxCollectedEventsQuery = {
|
|
2336
1863
|
__typename?: 'Query';
|
|
2337
|
-
|
|
2338
|
-
__typename?: '
|
|
1864
|
+
taxCollectedEvents: Array<{
|
|
1865
|
+
__typename?: 'TaxCollectedEvent';
|
|
2339
1866
|
id: string;
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
defaultMaxTaxPercentage: string;
|
|
2348
|
-
defaultMinTaxUpdatePeriod: string;
|
|
2349
|
-
defaultModule: string;
|
|
2350
|
-
moduleCallGasLimit: string;
|
|
2351
|
-
liquidationBountyBps: string;
|
|
2352
|
-
minDepositSeconds: string;
|
|
2353
|
-
defaultCurrency?: {
|
|
2354
|
-
__typename?: 'Currency';
|
|
1867
|
+
recipient: string;
|
|
1868
|
+
amount: string;
|
|
1869
|
+
timestamp: string;
|
|
1870
|
+
blockNumber: string;
|
|
1871
|
+
tx: string;
|
|
1872
|
+
slot: {
|
|
1873
|
+
__typename?: 'Slot';
|
|
2355
1874
|
id: string;
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
decimals?: number | null;
|
|
2359
|
-
} | null;
|
|
2360
|
-
} | null;
|
|
1875
|
+
};
|
|
1876
|
+
}>;
|
|
2361
1877
|
};
|
|
2362
|
-
type
|
|
2363
|
-
|
|
1878
|
+
type GetDepositedEventsQueryVariables = Exact<{
|
|
1879
|
+
first: Scalars['Int']['input'];
|
|
1880
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1881
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1882
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1883
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1884
|
+
block?: InputMaybe<Block_Height>;
|
|
2364
1885
|
}>;
|
|
2365
|
-
type
|
|
1886
|
+
type GetDepositedEventsQuery = {
|
|
2366
1887
|
__typename?: 'Query';
|
|
2367
|
-
|
|
2368
|
-
__typename?: '
|
|
1888
|
+
depositedEvents: Array<{
|
|
1889
|
+
__typename?: 'DepositedEvent';
|
|
2369
1890
|
id: string;
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
1891
|
+
depositor: string;
|
|
1892
|
+
amount: string;
|
|
1893
|
+
timestamp: string;
|
|
1894
|
+
blockNumber: string;
|
|
1895
|
+
tx: string;
|
|
1896
|
+
slot: {
|
|
1897
|
+
__typename?: 'Slot';
|
|
1898
|
+
id: string;
|
|
1899
|
+
};
|
|
2373
1900
|
}>;
|
|
2374
1901
|
};
|
|
2375
|
-
type
|
|
2376
|
-
|
|
1902
|
+
type GetWithdrawnEventsQueryVariables = Exact<{
|
|
1903
|
+
first: Scalars['Int']['input'];
|
|
1904
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1905
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1906
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1907
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1908
|
+
block?: InputMaybe<Block_Height>;
|
|
2377
1909
|
}>;
|
|
2378
|
-
type
|
|
1910
|
+
type GetWithdrawnEventsQuery = {
|
|
2379
1911
|
__typename?: 'Query';
|
|
2380
|
-
|
|
2381
|
-
__typename?: '
|
|
1912
|
+
withdrawnEvents: Array<{
|
|
1913
|
+
__typename?: 'WithdrawnEvent';
|
|
2382
1914
|
id: string;
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
1915
|
+
occupant: string;
|
|
1916
|
+
amount: string;
|
|
1917
|
+
timestamp: string;
|
|
1918
|
+
blockNumber: string;
|
|
1919
|
+
tx: string;
|
|
1920
|
+
slot: {
|
|
1921
|
+
__typename?: 'Slot';
|
|
1922
|
+
id: string;
|
|
1923
|
+
};
|
|
2386
1924
|
}>;
|
|
2387
1925
|
};
|
|
2388
|
-
type
|
|
2389
|
-
first
|
|
1926
|
+
type GetPriceUpdatedEventsQueryVariables = Exact<{
|
|
1927
|
+
first: Scalars['Int']['input'];
|
|
2390
1928
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2391
|
-
orderBy?: InputMaybe<
|
|
1929
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
2392
1930
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1931
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1932
|
+
block?: InputMaybe<Block_Height>;
|
|
2393
1933
|
}>;
|
|
2394
|
-
type
|
|
1934
|
+
type GetPriceUpdatedEventsQuery = {
|
|
2395
1935
|
__typename?: 'Query';
|
|
2396
|
-
|
|
2397
|
-
__typename?: '
|
|
1936
|
+
priceUpdatedEvents: Array<{
|
|
1937
|
+
__typename?: 'PriceUpdatedEvent';
|
|
2398
1938
|
id: string;
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
1939
|
+
oldPrice: string;
|
|
1940
|
+
newPrice: string;
|
|
1941
|
+
timestamp: string;
|
|
1942
|
+
blockNumber: string;
|
|
1943
|
+
tx: string;
|
|
1944
|
+
slot: {
|
|
1945
|
+
__typename?: 'Slot';
|
|
2404
1946
|
id: string;
|
|
2405
1947
|
};
|
|
2406
1948
|
}>;
|
|
2407
1949
|
};
|
|
2408
|
-
type
|
|
2409
|
-
|
|
1950
|
+
type GetSlotActivityQueryVariables = Exact<{
|
|
1951
|
+
slotId: Scalars['String']['input'];
|
|
1952
|
+
first: Scalars['Int']['input'];
|
|
2410
1953
|
}>;
|
|
2411
|
-
type
|
|
1954
|
+
type GetSlotActivityQuery = {
|
|
2412
1955
|
__typename?: 'Query';
|
|
2413
|
-
|
|
2414
|
-
__typename?: '
|
|
1956
|
+
boughtEvents: Array<{
|
|
1957
|
+
__typename?: 'BoughtEvent';
|
|
2415
1958
|
id: string;
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
1959
|
+
buyer: string;
|
|
1960
|
+
previousOccupant: string;
|
|
1961
|
+
price: string;
|
|
1962
|
+
selfAssessedPrice: string;
|
|
1963
|
+
deposit: string;
|
|
1964
|
+
timestamp: string;
|
|
1965
|
+
tx: string;
|
|
1966
|
+
}>;
|
|
1967
|
+
releasedEvents: Array<{
|
|
1968
|
+
__typename?: 'ReleasedEvent';
|
|
1969
|
+
id: string;
|
|
1970
|
+
occupant: string;
|
|
1971
|
+
refund: string;
|
|
1972
|
+
timestamp: string;
|
|
1973
|
+
tx: string;
|
|
1974
|
+
}>;
|
|
1975
|
+
liquidatedEvents: Array<{
|
|
1976
|
+
__typename?: 'LiquidatedEvent';
|
|
1977
|
+
id: string;
|
|
1978
|
+
liquidator: string;
|
|
1979
|
+
occupant: string;
|
|
1980
|
+
bounty: string;
|
|
1981
|
+
timestamp: string;
|
|
1982
|
+
tx: string;
|
|
1983
|
+
}>;
|
|
1984
|
+
priceUpdatedEvents: Array<{
|
|
1985
|
+
__typename?: 'PriceUpdatedEvent';
|
|
1986
|
+
id: string;
|
|
1987
|
+
oldPrice: string;
|
|
1988
|
+
newPrice: string;
|
|
1989
|
+
timestamp: string;
|
|
1990
|
+
tx: string;
|
|
1991
|
+
}>;
|
|
1992
|
+
depositedEvents: Array<{
|
|
1993
|
+
__typename?: 'DepositedEvent';
|
|
1994
|
+
id: string;
|
|
1995
|
+
depositor: string;
|
|
1996
|
+
amount: string;
|
|
1997
|
+
timestamp: string;
|
|
1998
|
+
tx: string;
|
|
1999
|
+
}>;
|
|
2000
|
+
withdrawnEvents: Array<{
|
|
2001
|
+
__typename?: 'WithdrawnEvent';
|
|
2002
|
+
id: string;
|
|
2003
|
+
occupant: string;
|
|
2004
|
+
amount: string;
|
|
2005
|
+
timestamp: string;
|
|
2006
|
+
tx: string;
|
|
2007
|
+
}>;
|
|
2008
|
+
taxCollectedEvents: Array<{
|
|
2009
|
+
__typename?: 'TaxCollectedEvent';
|
|
2010
|
+
id: string;
|
|
2011
|
+
recipient: string;
|
|
2012
|
+
amount: string;
|
|
2013
|
+
timestamp: string;
|
|
2014
|
+
tx: string;
|
|
2015
|
+
}>;
|
|
2434
2016
|
};
|
|
2435
|
-
type
|
|
2436
|
-
|
|
2437
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2017
|
+
type GetFactoryQueryVariables = Exact<{
|
|
2018
|
+
[key: string]: never;
|
|
2438
2019
|
}>;
|
|
2439
|
-
type
|
|
2020
|
+
type GetFactoryQuery = {
|
|
2440
2021
|
__typename?: 'Query';
|
|
2441
|
-
|
|
2442
|
-
__typename?: '
|
|
2022
|
+
factories: Array<{
|
|
2023
|
+
__typename?: 'Factory';
|
|
2443
2024
|
id: string;
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2025
|
+
slotCount: string;
|
|
2026
|
+
}>;
|
|
2027
|
+
};
|
|
2028
|
+
type GetModulesQueryVariables = Exact<{
|
|
2029
|
+
first: Scalars['Int']['input'];
|
|
2030
|
+
}>;
|
|
2031
|
+
type GetModulesQuery = {
|
|
2032
|
+
__typename?: 'Query';
|
|
2033
|
+
modules: Array<{
|
|
2034
|
+
__typename?: 'Module';
|
|
2035
|
+
id: string;
|
|
2036
|
+
verified: boolean;
|
|
2037
|
+
name: string;
|
|
2038
|
+
version: string;
|
|
2447
2039
|
}>;
|
|
2448
2040
|
};
|
|
2041
|
+
type SlotFieldsFragment = {
|
|
2042
|
+
__typename?: 'Slot';
|
|
2043
|
+
id: string;
|
|
2044
|
+
recipient: string;
|
|
2045
|
+
currency: string;
|
|
2046
|
+
currencyName?: string | null;
|
|
2047
|
+
currencySymbol?: string | null;
|
|
2048
|
+
currencyDecimals?: number | null;
|
|
2049
|
+
manager: string;
|
|
2050
|
+
mutableTax: boolean;
|
|
2051
|
+
mutableModule: boolean;
|
|
2052
|
+
taxPercentage: string;
|
|
2053
|
+
module: string;
|
|
2054
|
+
occupant?: string | null;
|
|
2055
|
+
price: string;
|
|
2056
|
+
deposit: string;
|
|
2057
|
+
collectedTax: string;
|
|
2058
|
+
totalCollected: string;
|
|
2059
|
+
liquidationBountyBps: string;
|
|
2060
|
+
minDepositSeconds: string;
|
|
2061
|
+
createdAt: string;
|
|
2062
|
+
createdTx: string;
|
|
2063
|
+
updatedAt: string;
|
|
2064
|
+
recipientAccount: {
|
|
2065
|
+
__typename?: 'Account';
|
|
2066
|
+
id: string;
|
|
2067
|
+
slotCount: number;
|
|
2068
|
+
occupiedCount: number;
|
|
2069
|
+
};
|
|
2070
|
+
occupantAccount?: {
|
|
2071
|
+
__typename?: 'Account';
|
|
2072
|
+
id: string;
|
|
2073
|
+
slotCount: number;
|
|
2074
|
+
occupiedCount: number;
|
|
2075
|
+
} | null;
|
|
2076
|
+
};
|
|
2449
2077
|
type GetSlotsQueryVariables = Exact<{
|
|
2450
|
-
first
|
|
2078
|
+
first: Scalars['Int']['input'];
|
|
2451
2079
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2452
2080
|
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2453
2081
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2454
2082
|
where?: InputMaybe<Slot_Filter>;
|
|
2083
|
+
block?: InputMaybe<Block_Height>;
|
|
2455
2084
|
}>;
|
|
2456
2085
|
type GetSlotsQuery = {
|
|
2457
2086
|
__typename?: 'Query';
|
|
2458
2087
|
slots: Array<{
|
|
2459
2088
|
__typename?: 'Slot';
|
|
2460
2089
|
id: string;
|
|
2461
|
-
|
|
2462
|
-
occupant?: string | null;
|
|
2090
|
+
recipient: string;
|
|
2463
2091
|
currency: string;
|
|
2464
|
-
|
|
2465
|
-
|
|
2092
|
+
currencyName?: string | null;
|
|
2093
|
+
currencySymbol?: string | null;
|
|
2094
|
+
currencyDecimals?: number | null;
|
|
2095
|
+
manager: string;
|
|
2096
|
+
mutableTax: boolean;
|
|
2097
|
+
mutableModule: boolean;
|
|
2466
2098
|
taxPercentage: string;
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2099
|
+
module: string;
|
|
2100
|
+
occupant?: string | null;
|
|
2101
|
+
price: string;
|
|
2102
|
+
deposit: string;
|
|
2103
|
+
collectedTax: string;
|
|
2104
|
+
totalCollected: string;
|
|
2105
|
+
liquidationBountyBps: string;
|
|
2106
|
+
minDepositSeconds: string;
|
|
2471
2107
|
createdAt: string;
|
|
2108
|
+
createdTx: string;
|
|
2472
2109
|
updatedAt: string;
|
|
2473
|
-
|
|
2474
|
-
__typename?: '
|
|
2110
|
+
recipientAccount: {
|
|
2111
|
+
__typename?: 'Account';
|
|
2475
2112
|
id: string;
|
|
2476
|
-
|
|
2113
|
+
slotCount: number;
|
|
2114
|
+
occupiedCount: number;
|
|
2477
2115
|
};
|
|
2116
|
+
occupantAccount?: {
|
|
2117
|
+
__typename?: 'Account';
|
|
2118
|
+
id: string;
|
|
2119
|
+
slotCount: number;
|
|
2120
|
+
occupiedCount: number;
|
|
2121
|
+
} | null;
|
|
2478
2122
|
}>;
|
|
2479
2123
|
};
|
|
2480
2124
|
type GetSlotQueryVariables = Exact<{
|
|
2481
2125
|
id: Scalars['ID']['input'];
|
|
2126
|
+
block?: InputMaybe<Block_Height>;
|
|
2482
2127
|
}>;
|
|
2483
2128
|
type GetSlotQuery = {
|
|
2484
2129
|
__typename?: 'Query';
|
|
2485
2130
|
slot?: {
|
|
2486
2131
|
__typename?: 'Slot';
|
|
2487
2132
|
id: string;
|
|
2488
|
-
|
|
2489
|
-
occupant?: string | null;
|
|
2133
|
+
recipient: string;
|
|
2490
2134
|
currency: string;
|
|
2491
|
-
|
|
2492
|
-
|
|
2135
|
+
currencyName?: string | null;
|
|
2136
|
+
currencySymbol?: string | null;
|
|
2137
|
+
currencyDecimals?: number | null;
|
|
2138
|
+
manager: string;
|
|
2139
|
+
mutableTax: boolean;
|
|
2140
|
+
mutableModule: boolean;
|
|
2493
2141
|
taxPercentage: string;
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2142
|
+
module: string;
|
|
2143
|
+
occupant?: string | null;
|
|
2144
|
+
price: string;
|
|
2145
|
+
deposit: string;
|
|
2146
|
+
collectedTax: string;
|
|
2147
|
+
totalCollected: string;
|
|
2148
|
+
liquidationBountyBps: string;
|
|
2149
|
+
minDepositSeconds: string;
|
|
2498
2150
|
createdAt: string;
|
|
2151
|
+
createdTx: string;
|
|
2499
2152
|
updatedAt: string;
|
|
2500
|
-
|
|
2501
|
-
__typename?: '
|
|
2153
|
+
recipientAccount: {
|
|
2154
|
+
__typename?: 'Account';
|
|
2502
2155
|
id: string;
|
|
2503
|
-
|
|
2156
|
+
slotCount: number;
|
|
2157
|
+
occupiedCount: number;
|
|
2504
2158
|
};
|
|
2505
|
-
|
|
2506
|
-
__typename?: '
|
|
2159
|
+
occupantAccount?: {
|
|
2160
|
+
__typename?: 'Account';
|
|
2507
2161
|
id: string;
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
tx: string;
|
|
2512
|
-
}>;
|
|
2513
|
-
taxUpdates: Array<{
|
|
2514
|
-
__typename?: 'TaxRateChange';
|
|
2515
|
-
id: string;
|
|
2516
|
-
kind: string;
|
|
2517
|
-
oldPercentage?: string | null;
|
|
2518
|
-
newPercentage?: string | null;
|
|
2519
|
-
confirmableAt?: string | null;
|
|
2520
|
-
timestamp: string;
|
|
2521
|
-
tx: string;
|
|
2522
|
-
}>;
|
|
2162
|
+
slotCount: number;
|
|
2163
|
+
occupiedCount: number;
|
|
2164
|
+
} | null;
|
|
2523
2165
|
} | null;
|
|
2524
2166
|
};
|
|
2525
|
-
type
|
|
2526
|
-
|
|
2527
|
-
first
|
|
2167
|
+
type GetSlotsByRecipientQueryVariables = Exact<{
|
|
2168
|
+
recipient: Scalars['Bytes']['input'];
|
|
2169
|
+
first: Scalars['Int']['input'];
|
|
2170
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2171
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2172
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2173
|
+
block?: InputMaybe<Block_Height>;
|
|
2528
2174
|
}>;
|
|
2529
|
-
type
|
|
2175
|
+
type GetSlotsByRecipientQuery = {
|
|
2530
2176
|
__typename?: 'Query';
|
|
2531
2177
|
slots: Array<{
|
|
2532
2178
|
__typename?: 'Slot';
|
|
2533
2179
|
id: string;
|
|
2534
|
-
|
|
2180
|
+
recipient: string;
|
|
2181
|
+
currency: string;
|
|
2182
|
+
currencyName?: string | null;
|
|
2183
|
+
currencySymbol?: string | null;
|
|
2184
|
+
currencyDecimals?: number | null;
|
|
2185
|
+
manager: string;
|
|
2186
|
+
mutableTax: boolean;
|
|
2187
|
+
mutableModule: boolean;
|
|
2188
|
+
taxPercentage: string;
|
|
2189
|
+
module: string;
|
|
2535
2190
|
occupant?: string | null;
|
|
2536
2191
|
price: string;
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2192
|
+
deposit: string;
|
|
2193
|
+
collectedTax: string;
|
|
2194
|
+
totalCollected: string;
|
|
2195
|
+
liquidationBountyBps: string;
|
|
2196
|
+
minDepositSeconds: string;
|
|
2197
|
+
createdAt: string;
|
|
2198
|
+
createdTx: string;
|
|
2199
|
+
updatedAt: string;
|
|
2200
|
+
recipientAccount: {
|
|
2201
|
+
__typename?: 'Account';
|
|
2541
2202
|
id: string;
|
|
2203
|
+
slotCount: number;
|
|
2204
|
+
occupiedCount: number;
|
|
2542
2205
|
};
|
|
2206
|
+
occupantAccount?: {
|
|
2207
|
+
__typename?: 'Account';
|
|
2208
|
+
id: string;
|
|
2209
|
+
slotCount: number;
|
|
2210
|
+
occupiedCount: number;
|
|
2211
|
+
} | null;
|
|
2543
2212
|
}>;
|
|
2544
2213
|
};
|
|
2545
|
-
type
|
|
2546
|
-
|
|
2214
|
+
type GetSlotsByOccupantQueryVariables = Exact<{
|
|
2215
|
+
occupant: Scalars['Bytes']['input'];
|
|
2216
|
+
first: Scalars['Int']['input'];
|
|
2547
2217
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2218
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2219
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2220
|
+
block?: InputMaybe<Block_Height>;
|
|
2548
2221
|
}>;
|
|
2549
|
-
type
|
|
2222
|
+
type GetSlotsByOccupantQuery = {
|
|
2550
2223
|
__typename?: 'Query';
|
|
2551
2224
|
slots: Array<{
|
|
2552
2225
|
__typename?: 'Slot';
|
|
2553
2226
|
id: string;
|
|
2554
|
-
|
|
2227
|
+
recipient: string;
|
|
2555
2228
|
currency: string;
|
|
2556
|
-
|
|
2229
|
+
currencyName?: string | null;
|
|
2230
|
+
currencySymbol?: string | null;
|
|
2231
|
+
currencyDecimals?: number | null;
|
|
2232
|
+
manager: string;
|
|
2233
|
+
mutableTax: boolean;
|
|
2234
|
+
mutableModule: boolean;
|
|
2557
2235
|
taxPercentage: string;
|
|
2558
|
-
|
|
2559
|
-
|
|
2236
|
+
module: string;
|
|
2237
|
+
occupant?: string | null;
|
|
2238
|
+
price: string;
|
|
2239
|
+
deposit: string;
|
|
2240
|
+
collectedTax: string;
|
|
2241
|
+
totalCollected: string;
|
|
2242
|
+
liquidationBountyBps: string;
|
|
2243
|
+
minDepositSeconds: string;
|
|
2244
|
+
createdAt: string;
|
|
2245
|
+
createdTx: string;
|
|
2246
|
+
updatedAt: string;
|
|
2247
|
+
recipientAccount: {
|
|
2248
|
+
__typename?: 'Account';
|
|
2560
2249
|
id: string;
|
|
2561
|
-
|
|
2250
|
+
slotCount: number;
|
|
2251
|
+
occupiedCount: number;
|
|
2562
2252
|
};
|
|
2253
|
+
occupantAccount?: {
|
|
2254
|
+
__typename?: 'Account';
|
|
2255
|
+
id: string;
|
|
2256
|
+
slotCount: number;
|
|
2257
|
+
occupiedCount: number;
|
|
2258
|
+
} | null;
|
|
2563
2259
|
}>;
|
|
2564
2260
|
};
|
|
2565
|
-
declare const
|
|
2566
|
-
declare const
|
|
2567
|
-
declare const
|
|
2568
|
-
declare const
|
|
2569
|
-
declare const
|
|
2570
|
-
declare const
|
|
2571
|
-
declare const
|
|
2572
|
-
declare const
|
|
2573
|
-
declare const
|
|
2574
|
-
declare const
|
|
2261
|
+
declare const AccountFieldsFragmentDoc: graphql.DocumentNode;
|
|
2262
|
+
declare const SlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
2263
|
+
declare const GetAccountDocument: graphql.DocumentNode;
|
|
2264
|
+
declare const GetAccountsDocument: graphql.DocumentNode;
|
|
2265
|
+
declare const GetRecentEventsDocument: graphql.DocumentNode;
|
|
2266
|
+
declare const GetBoughtEventsDocument: graphql.DocumentNode;
|
|
2267
|
+
declare const GetReleasedEventsDocument: graphql.DocumentNode;
|
|
2268
|
+
declare const GetLiquidatedEventsDocument: graphql.DocumentNode;
|
|
2269
|
+
declare const GetSettledEventsDocument: graphql.DocumentNode;
|
|
2270
|
+
declare const GetTaxCollectedEventsDocument: graphql.DocumentNode;
|
|
2271
|
+
declare const GetDepositedEventsDocument: graphql.DocumentNode;
|
|
2272
|
+
declare const GetWithdrawnEventsDocument: graphql.DocumentNode;
|
|
2273
|
+
declare const GetPriceUpdatedEventsDocument: graphql.DocumentNode;
|
|
2274
|
+
declare const GetSlotActivityDocument: graphql.DocumentNode;
|
|
2275
|
+
declare const GetFactoryDocument: graphql.DocumentNode;
|
|
2276
|
+
declare const GetModulesDocument: graphql.DocumentNode;
|
|
2575
2277
|
declare const GetSlotsDocument: graphql.DocumentNode;
|
|
2576
2278
|
declare const GetSlotDocument: graphql.DocumentNode;
|
|
2279
|
+
declare const GetSlotsByRecipientDocument: graphql.DocumentNode;
|
|
2577
2280
|
declare const GetSlotsByOccupantDocument: graphql.DocumentNode;
|
|
2578
|
-
declare const GetAvailableSlotsDocument: graphql.DocumentNode;
|
|
2579
2281
|
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
2580
2282
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2283
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
2284
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
2285
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
2286
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
2287
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
2288
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
2289
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
2290
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
2291
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
2292
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
2293
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
2294
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
2295
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
2296
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
2297
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2592
2298
|
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2299
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
2593
2300
|
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2594
|
-
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2595
2301
|
};
|
|
2596
2302
|
type Sdk = ReturnType<typeof getSdk>;
|
|
2597
2303
|
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2304
|
+
interface SubgraphMeta {
|
|
2305
|
+
_meta: {
|
|
2306
|
+
block: {
|
|
2307
|
+
number: number;
|
|
2308
|
+
hash: string;
|
|
2309
|
+
timestamp: number;
|
|
2310
|
+
};
|
|
2311
|
+
hasIndexingErrors: boolean;
|
|
2312
|
+
};
|
|
2313
|
+
}
|
|
2601
2314
|
declare enum SlotsChain {
|
|
2602
2315
|
BASE_SEPOLIA = 84532,
|
|
2603
2316
|
ARBITRUM = 42161
|
|
2604
2317
|
}
|
|
2605
|
-
/**
|
|
2606
|
-
* Subgraph endpoint URLs by chain ID
|
|
2607
|
-
*/
|
|
2608
2318
|
declare const SUBGRAPH_URLS: Record<SlotsChain, string>;
|
|
2609
|
-
/**
|
|
2610
|
-
* Configuration options for the Slots client
|
|
2611
|
-
*/
|
|
2612
2319
|
interface SlotsClientConfig {
|
|
2613
|
-
/**
|
|
2614
|
-
* The chain ID to query
|
|
2615
|
-
*/
|
|
2616
2320
|
chainId: SlotsChain;
|
|
2617
|
-
/**
|
|
2618
|
-
* Optional custom subgraph URL (overrides default)
|
|
2619
|
-
*/
|
|
2620
2321
|
subgraphUrl?: string;
|
|
2621
|
-
/**
|
|
2622
|
-
* Optional headers to include in requests
|
|
2623
|
-
*/
|
|
2624
2322
|
headers?: Record<string, string>;
|
|
2625
2323
|
}
|
|
2626
|
-
/**
|
|
2627
|
-
* Type-safe client for querying 0xSlots subgraph data
|
|
2628
|
-
*/
|
|
2629
2324
|
declare class SlotsClient {
|
|
2630
2325
|
private readonly sdk;
|
|
2631
2326
|
private readonly chainId;
|
|
2632
2327
|
private readonly client;
|
|
2633
|
-
/**
|
|
2634
|
-
* Create a new SlotsClient instance
|
|
2635
|
-
*
|
|
2636
|
-
* @param config - Client configuration
|
|
2637
|
-
*
|
|
2638
|
-
* @example
|
|
2639
|
-
* ```typescript
|
|
2640
|
-
* import { SlotsClient, SlotsChain } from '@0xslots/sdk';
|
|
2641
|
-
*
|
|
2642
|
-
* const client = new SlotsClient({
|
|
2643
|
-
* chainId: SlotsChain.BASE_SEPOLIA,
|
|
2644
|
-
* });
|
|
2645
|
-
*
|
|
2646
|
-
* const hub = await client.getHub({ id: '0x...' });
|
|
2647
|
-
* ```
|
|
2648
|
-
*/
|
|
2649
2328
|
constructor(config: SlotsClientConfig);
|
|
2650
|
-
/**
|
|
2651
|
-
* Get the current chain ID
|
|
2652
|
-
*/
|
|
2653
2329
|
getChainId(): SlotsChain;
|
|
2654
|
-
/**
|
|
2655
|
-
* Get the underlying GraphQL client
|
|
2656
|
-
*/
|
|
2657
2330
|
getClient(): GraphQLClient;
|
|
2658
|
-
/**
|
|
2659
|
-
* Get the generated SDK with all typed query methods
|
|
2660
|
-
*/
|
|
2661
2331
|
getSdk(): {
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2332
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
2333
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
2334
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
2335
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
2336
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
2337
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
2338
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
2339
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
2340
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
2341
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
2342
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
2343
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
2344
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
2345
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
2346
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2673
2347
|
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2348
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
2674
2349
|
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2675
|
-
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2676
2350
|
};
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2351
|
+
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetSlots"]>): Promise<GetSlotsQuery>;
|
|
2352
|
+
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetSlot"]>): Promise<GetSlotQuery>;
|
|
2353
|
+
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByRecipient"]>): Promise<GetSlotsByRecipientQuery>;
|
|
2354
|
+
getSlotsByOccupant(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByOccupant"]>): Promise<GetSlotsByOccupantQuery>;
|
|
2355
|
+
getFactory(): Promise<GetFactoryQuery>;
|
|
2356
|
+
getModules(...args: Parameters<ReturnType<typeof getSdk>["GetModules"]>): Promise<GetModulesQuery>;
|
|
2357
|
+
getBoughtEvents(...args: Parameters<ReturnType<typeof getSdk>["GetBoughtEvents"]>): Promise<GetBoughtEventsQuery>;
|
|
2358
|
+
getSettledEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSettledEvents"]>): Promise<GetSettledEventsQuery>;
|
|
2359
|
+
getTaxCollectedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetTaxCollectedEvents"]>): Promise<GetTaxCollectedEventsQuery>;
|
|
2360
|
+
getSlotActivity(...args: Parameters<ReturnType<typeof getSdk>["GetSlotActivity"]>): Promise<GetSlotActivityQuery>;
|
|
2361
|
+
getRecentEvents(...args: Parameters<ReturnType<typeof getSdk>["GetRecentEvents"]>): Promise<GetRecentEventsQuery>;
|
|
2362
|
+
getAccount(...args: Parameters<ReturnType<typeof getSdk>["GetAccount"]>): Promise<GetAccountQuery>;
|
|
2363
|
+
getAccounts(...args: Parameters<ReturnType<typeof getSdk>["GetAccounts"]>): Promise<GetAccountsQuery>;
|
|
2364
|
+
getReleasedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetReleasedEvents"]>): Promise<GetReleasedEventsQuery>;
|
|
2365
|
+
getLiquidatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetLiquidatedEvents"]>): Promise<GetLiquidatedEventsQuery>;
|
|
2366
|
+
getDepositedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetDepositedEvents"]>): Promise<GetDepositedEventsQuery>;
|
|
2367
|
+
getWithdrawnEvents(...args: Parameters<ReturnType<typeof getSdk>["GetWithdrawnEvents"]>): Promise<GetWithdrawnEventsQuery>;
|
|
2368
|
+
getPriceUpdatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetPriceUpdatedEvents"]>): Promise<GetPriceUpdatedEventsQuery>;
|
|
2369
|
+
getMeta(): Promise<SubgraphMeta>;
|
|
2691
2370
|
}
|
|
2692
|
-
/**
|
|
2693
|
-
* Create a SlotsClient instance
|
|
2694
|
-
*
|
|
2695
|
-
* @param config - Client configuration
|
|
2696
|
-
* @returns A new SlotsClient instance
|
|
2697
|
-
*
|
|
2698
|
-
* @example
|
|
2699
|
-
* ```typescript
|
|
2700
|
-
* import { createSlotsClient, SlotsChain } from '@0xslots/sdk';
|
|
2701
|
-
*
|
|
2702
|
-
* const client = createSlotsClient({
|
|
2703
|
-
* chainId: SlotsChain.BASE_SEPOLIA,
|
|
2704
|
-
* });
|
|
2705
|
-
* ```
|
|
2706
|
-
*/
|
|
2707
2371
|
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
2708
2372
|
|
|
2709
|
-
export { type
|
|
2373
|
+
export { type Account, type AccountFieldsFragment, AccountFieldsFragmentDoc, type AccountSlotsAsOccupantArgs, type AccountSlotsAsRecipientArgs, type Account_Filter, type Account_OrderBy, type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type BoughtEvent, type BoughtEvent_Filter, type BoughtEvent_OrderBy, type DepositedEvent, type DepositedEvent_Filter, type DepositedEvent_OrderBy, type Exact, type Factory, type FactoryModulesArgs, type Factory_Filter, type Factory_OrderBy, GetAccountDocument, type GetAccountQuery, type GetAccountQueryVariables, GetAccountsDocument, type GetAccountsQuery, type GetAccountsQueryVariables, GetBoughtEventsDocument, type GetBoughtEventsQuery, type GetBoughtEventsQueryVariables, GetDepositedEventsDocument, type GetDepositedEventsQuery, type GetDepositedEventsQueryVariables, GetFactoryDocument, type GetFactoryQuery, type GetFactoryQueryVariables, GetLiquidatedEventsDocument, type GetLiquidatedEventsQuery, type GetLiquidatedEventsQueryVariables, GetModulesDocument, type GetModulesQuery, type GetModulesQueryVariables, GetPriceUpdatedEventsDocument, type GetPriceUpdatedEventsQuery, type GetPriceUpdatedEventsQueryVariables, GetRecentEventsDocument, type GetRecentEventsQuery, type GetRecentEventsQueryVariables, GetReleasedEventsDocument, type GetReleasedEventsQuery, type GetReleasedEventsQueryVariables, GetSettledEventsDocument, type GetSettledEventsQuery, type GetSettledEventsQueryVariables, GetSlotActivityDocument, type GetSlotActivityQuery, type GetSlotActivityQueryVariables, GetSlotDocument, type GetSlotQuery, type GetSlotQueryVariables, GetSlotsByOccupantDocument, type GetSlotsByOccupantQuery, type GetSlotsByOccupantQueryVariables, GetSlotsByRecipientDocument, type GetSlotsByRecipientQuery, type GetSlotsByRecipientQueryVariables, GetSlotsDocument, type GetSlotsQuery, type GetSlotsQueryVariables, GetTaxCollectedEventsDocument, type GetTaxCollectedEventsQuery, type GetTaxCollectedEventsQueryVariables, GetWithdrawnEventsDocument, type GetWithdrawnEventsQuery, type GetWithdrawnEventsQueryVariables, type Incremental, type InputMaybe, type LiquidatedEvent, type LiquidatedEvent_Filter, type LiquidatedEvent_OrderBy, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Module, type Module_Filter, type Module_OrderBy, type OrderDirection, type PriceUpdatedEvent, type PriceUpdatedEvent_Filter, type PriceUpdatedEvent_OrderBy, type Query, type QueryAccountArgs, type QueryAccountsArgs, type QueryBoughtEventArgs, type QueryBoughtEventsArgs, type QueryDepositedEventArgs, type QueryDepositedEventsArgs, type QueryFactoriesArgs, type QueryFactoryArgs, type QueryLiquidatedEventArgs, type QueryLiquidatedEventsArgs, type QueryModuleArgs, type QueryModulesArgs, type QueryPriceUpdatedEventArgs, type QueryPriceUpdatedEventsArgs, type QueryReleasedEventArgs, type QueryReleasedEventsArgs, type QuerySettledEventArgs, type QuerySettledEventsArgs, type QuerySlotArgs, type QuerySlotsArgs, type QueryTaxCollectedEventArgs, type QueryTaxCollectedEventsArgs, type QueryWithdrawnEventArgs, type QueryWithdrawnEventsArgs, type Query_MetaArgs, type ReleasedEvent, type ReleasedEvent_Filter, type ReleasedEvent_OrderBy, SUBGRAPH_URLS, type Scalars, type Sdk, type SdkFunctionWrapper, type SettledEvent, type SettledEvent_Filter, type SettledEvent_OrderBy, type Slot, type SlotDepositsArgs, type SlotFieldsFragment, SlotFieldsFragmentDoc, type SlotLiquidationsArgs, type SlotPriceUpdatesArgs, type SlotPurchasesArgs, type SlotReleasesArgs, type SlotSettlementsArgs, type SlotTaxCollectionsArgs, type SlotWithdrawalsArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, type SubgraphMeta, type TaxCollectedEvent, type TaxCollectedEvent_Filter, type TaxCollectedEvent_OrderBy, type WithdrawnEvent, type WithdrawnEvent_Filter, type WithdrawnEvent_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|