@0xslots/sdk 0.4.0 → 0.6.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/README.md +44 -167
- package/dist/index.d.ts +1749 -1582
- package/dist/index.js +837 -261
- package/dist/index.js.map +1 -1
- package/package.json +7 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { GraphQLClient, RequestOptions } from 'graphql-request';
|
|
2
2
|
import * as graphql from 'graphql';
|
|
3
|
+
import { Address, PublicClient, WalletClient, Hash } from 'viem';
|
|
3
4
|
|
|
4
5
|
type Maybe<T> = T | null;
|
|
5
6
|
type InputMaybe<T> = T | null;
|
|
@@ -66,6 +67,67 @@ type Scalars = {
|
|
|
66
67
|
output: any;
|
|
67
68
|
};
|
|
68
69
|
};
|
|
70
|
+
type Account = {
|
|
71
|
+
__typename?: 'Account';
|
|
72
|
+
id: Scalars['ID']['output'];
|
|
73
|
+
occupiedCount: Scalars['Int']['output'];
|
|
74
|
+
slotCount: Scalars['Int']['output'];
|
|
75
|
+
slotsAsOccupant: Array<Slot>;
|
|
76
|
+
slotsAsRecipient: Array<Slot>;
|
|
77
|
+
};
|
|
78
|
+
type AccountSlotsAsOccupantArgs = {
|
|
79
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
81
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
82
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
83
|
+
where?: InputMaybe<Slot_Filter>;
|
|
84
|
+
};
|
|
85
|
+
type AccountSlotsAsRecipientArgs = {
|
|
86
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
88
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
89
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
90
|
+
where?: InputMaybe<Slot_Filter>;
|
|
91
|
+
};
|
|
92
|
+
type Account_Filter = {
|
|
93
|
+
/** Filter for the block changed event. */
|
|
94
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
95
|
+
and?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
96
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
97
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
98
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
99
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
100
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
101
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
102
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
103
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
104
|
+
occupiedCount?: InputMaybe<Scalars['Int']['input']>;
|
|
105
|
+
occupiedCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
106
|
+
occupiedCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
107
|
+
occupiedCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
108
|
+
occupiedCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
+
occupiedCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
110
|
+
occupiedCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
111
|
+
occupiedCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
112
|
+
or?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
113
|
+
slotCount?: InputMaybe<Scalars['Int']['input']>;
|
|
114
|
+
slotCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
115
|
+
slotCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
116
|
+
slotCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
117
|
+
slotCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
118
|
+
slotCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
119
|
+
slotCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
120
|
+
slotCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
121
|
+
slotsAsOccupant_?: InputMaybe<Slot_Filter>;
|
|
122
|
+
slotsAsRecipient_?: InputMaybe<Slot_Filter>;
|
|
123
|
+
};
|
|
124
|
+
type Account_OrderBy = 'id' | 'occupiedCount' | 'slotCount' | 'slotsAsOccupant' | 'slotsAsRecipient';
|
|
125
|
+
/** Indicates whether the current, partially filled bucket should be included in the response. Defaults to `exclude` */
|
|
126
|
+
type Aggregation_Current =
|
|
127
|
+
/** Exclude the current, partially filled bucket from the response */
|
|
128
|
+
'exclude'
|
|
129
|
+
/** Include the current, partially filled bucket in the response */
|
|
130
|
+
| 'include';
|
|
69
131
|
type Aggregation_Interval = 'day' | 'hour';
|
|
70
132
|
type BlockChangedFilter = {
|
|
71
133
|
number_gte: Scalars['Int']['input'];
|
|
@@ -75,52 +137,49 @@ type Block_Height = {
|
|
|
75
137
|
number?: InputMaybe<Scalars['Int']['input']>;
|
|
76
138
|
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
77
139
|
};
|
|
78
|
-
type
|
|
79
|
-
__typename?: '
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
140
|
+
type BoughtEvent = {
|
|
141
|
+
__typename?: 'BoughtEvent';
|
|
142
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
143
|
+
buyer: Scalars['Bytes']['output'];
|
|
144
|
+
deposit: Scalars['BigInt']['output'];
|
|
83
145
|
id: Scalars['ID']['output'];
|
|
84
|
-
|
|
85
|
-
|
|
146
|
+
previousOccupant: Scalars['Bytes']['output'];
|
|
147
|
+
price: Scalars['BigInt']['output'];
|
|
148
|
+
selfAssessedPrice: Scalars['BigInt']['output'];
|
|
149
|
+
slot: Slot;
|
|
150
|
+
timestamp: Scalars['BigInt']['output'];
|
|
151
|
+
tx: Scalars['Bytes']['output'];
|
|
86
152
|
};
|
|
87
|
-
type
|
|
153
|
+
type BoughtEvent_Filter = {
|
|
88
154
|
/** Filter for the block changed event. */
|
|
89
155
|
_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']>;
|
|
156
|
+
and?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
157
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
158
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
159
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
160
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
161
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
162
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
163
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
164
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
165
|
+
buyer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
166
|
+
buyer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
167
|
+
buyer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
168
|
+
buyer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
169
|
+
buyer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
170
|
+
buyer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
171
|
+
buyer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
172
|
+
buyer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
173
|
+
buyer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
174
|
+
buyer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
175
|
+
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
176
|
+
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
177
|
+
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
178
|
+
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
179
|
+
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
180
|
+
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
181
|
+
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
182
|
+
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
124
183
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
125
184
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
126
185
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -129,51 +188,76 @@ type Currency_Filter = {
|
|
|
129
188
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
130
189
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
131
190
|
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
|
-
|
|
191
|
+
or?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
192
|
+
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
193
|
+
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
194
|
+
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
195
|
+
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
196
|
+
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
197
|
+
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
198
|
+
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
199
|
+
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
200
|
+
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
201
|
+
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
202
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
203
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
204
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
205
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
206
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
207
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
208
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
209
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
210
|
+
selfAssessedPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
211
|
+
selfAssessedPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
212
|
+
selfAssessedPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
213
|
+
selfAssessedPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
214
|
+
selfAssessedPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
215
|
+
selfAssessedPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
216
|
+
selfAssessedPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
217
|
+
selfAssessedPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
218
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
220
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
221
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
222
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
224
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
226
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
227
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
228
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
229
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
230
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
232
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
233
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
234
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
235
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
236
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
237
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
238
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
239
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
240
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
241
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
242
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
243
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
244
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
245
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
246
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
247
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
248
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
249
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
250
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
251
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
252
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
253
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
254
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
255
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
256
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
257
|
+
};
|
|
258
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
259
|
+
type DepositedEvent = {
|
|
260
|
+
__typename?: 'DepositedEvent';
|
|
177
261
|
amount: Scalars['BigInt']['output'];
|
|
178
262
|
blockNumber: Scalars['BigInt']['output'];
|
|
179
263
|
depositor: Scalars['Bytes']['output'];
|
|
@@ -182,7 +266,7 @@ type DepositEvent = {
|
|
|
182
266
|
timestamp: Scalars['BigInt']['output'];
|
|
183
267
|
tx: Scalars['Bytes']['output'];
|
|
184
268
|
};
|
|
185
|
-
type
|
|
269
|
+
type DepositedEvent_Filter = {
|
|
186
270
|
/** Filter for the block changed event. */
|
|
187
271
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
188
272
|
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -193,7 +277,7 @@ type DepositEvent_Filter = {
|
|
|
193
277
|
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
194
278
|
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
195
279
|
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
196
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
280
|
+
and?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
197
281
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
198
282
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
199
283
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -220,7 +304,7 @@ type DepositEvent_Filter = {
|
|
|
220
304
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
221
305
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
222
306
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
223
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
307
|
+
or?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
224
308
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
225
309
|
slot_?: InputMaybe<Slot_Filter>;
|
|
226
310
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -261,126 +345,24 @@ type DepositEvent_Filter = {
|
|
|
261
345
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
262
346
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
263
347
|
};
|
|
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'];
|
|
348
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
349
|
+
type Factory = {
|
|
350
|
+
__typename?: 'Factory';
|
|
276
351
|
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>;
|
|
352
|
+
modules: Array<Module>;
|
|
353
|
+
slotCount: Scalars['BigInt']['output'];
|
|
292
354
|
};
|
|
293
|
-
type
|
|
355
|
+
type FactoryModulesArgs = {
|
|
294
356
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
295
357
|
orderBy?: InputMaybe<Module_OrderBy>;
|
|
296
358
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
297
359
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
298
360
|
where?: InputMaybe<Module_Filter>;
|
|
299
361
|
};
|
|
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 = {
|
|
362
|
+
type Factory_Filter = {
|
|
308
363
|
/** Filter for the block changed event. */
|
|
309
364
|
_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']>>;
|
|
365
|
+
and?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
384
366
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
385
367
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
386
368
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -389,97 +371,33 @@ type Hub_Filter = {
|
|
|
389
371
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
390
372
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
391
373
|
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';
|
|
374
|
+
modules_?: InputMaybe<Module_Filter>;
|
|
375
|
+
or?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
376
|
+
slotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
377
|
+
slotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
378
|
+
slotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
379
|
+
slotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
380
|
+
slotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
381
|
+
slotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
382
|
+
slotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
383
|
+
slotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
384
|
+
};
|
|
385
|
+
type Factory_OrderBy = 'id' | 'modules' | 'slotCount';
|
|
386
|
+
type LiquidatedEvent = {
|
|
387
|
+
__typename?: 'LiquidatedEvent';
|
|
472
388
|
blockNumber: Scalars['BigInt']['output'];
|
|
389
|
+
bounty: Scalars['BigInt']['output'];
|
|
473
390
|
id: Scalars['ID']['output'];
|
|
474
|
-
|
|
475
|
-
|
|
391
|
+
liquidator: Scalars['Bytes']['output'];
|
|
392
|
+
occupant: Scalars['Bytes']['output'];
|
|
393
|
+
slot: Slot;
|
|
476
394
|
timestamp: Scalars['BigInt']['output'];
|
|
477
395
|
tx: Scalars['Bytes']['output'];
|
|
478
396
|
};
|
|
479
|
-
type
|
|
397
|
+
type LiquidatedEvent_Filter = {
|
|
480
398
|
/** Filter for the block changed event. */
|
|
481
399
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
482
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
400
|
+
and?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
483
401
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
484
402
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
485
403
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -488,6 +406,14 @@ type LandExpandedEvent_Filter = {
|
|
|
488
406
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
489
407
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
490
408
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
409
|
+
bounty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
410
|
+
bounty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
411
|
+
bounty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
412
|
+
bounty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
413
|
+
bounty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
414
|
+
bounty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
415
|
+
bounty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
416
|
+
bounty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
491
417
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
492
418
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
493
419
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -496,25 +422,48 @@ type LandExpandedEvent_Filter = {
|
|
|
496
422
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
497
423
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
498
424
|
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
|
-
|
|
425
|
+
liquidator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
426
|
+
liquidator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
427
|
+
liquidator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
428
|
+
liquidator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
429
|
+
liquidator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
430
|
+
liquidator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
431
|
+
liquidator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
432
|
+
liquidator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
433
|
+
liquidator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
434
|
+
liquidator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
435
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
436
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
437
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
438
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
439
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
440
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
441
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
442
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
443
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
444
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
445
|
+
or?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
446
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
447
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
448
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
449
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
450
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
451
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
452
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
453
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
454
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
455
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
456
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
457
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
458
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
459
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
460
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
461
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
462
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
463
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
464
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
465
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
466
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
518
467
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
519
468
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
520
469
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -534,30 +483,28 @@ type LandExpandedEvent_Filter = {
|
|
|
534
483
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
535
484
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
536
485
|
};
|
|
537
|
-
type
|
|
538
|
-
type
|
|
539
|
-
__typename?: '
|
|
540
|
-
|
|
486
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
487
|
+
type Module = {
|
|
488
|
+
__typename?: 'Module';
|
|
489
|
+
factory: Factory;
|
|
490
|
+
id: Scalars['ID']['output'];
|
|
491
|
+
name: Scalars['String']['output'];
|
|
492
|
+
verified: Scalars['Boolean']['output'];
|
|
493
|
+
version: Scalars['String']['output'];
|
|
494
|
+
};
|
|
495
|
+
type ModuleUpdateProposedEvent = {
|
|
496
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
541
497
|
blockNumber: Scalars['BigInt']['output'];
|
|
542
498
|
id: Scalars['ID']['output'];
|
|
543
|
-
|
|
499
|
+
newModule: Scalars['Bytes']['output'];
|
|
500
|
+
slot: Slot;
|
|
544
501
|
timestamp: Scalars['BigInt']['output'];
|
|
545
502
|
tx: Scalars['Bytes']['output'];
|
|
546
503
|
};
|
|
547
|
-
type
|
|
504
|
+
type ModuleUpdateProposedEvent_Filter = {
|
|
548
505
|
/** Filter for the block changed event. */
|
|
549
506
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
550
|
-
|
|
551
|
-
account_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
552
|
-
account_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
553
|
-
account_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
554
|
-
account_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
555
|
-
account_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
556
|
-
account_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
557
|
-
account_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
558
|
-
account_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
559
|
-
account_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
560
|
-
and?: InputMaybe<Array<InputMaybe<LandOpenedEvent_Filter>>>;
|
|
507
|
+
and?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
561
508
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
562
509
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
563
510
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -574,28 +521,38 @@ type LandOpenedEvent_Filter = {
|
|
|
574
521
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
575
522
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
576
523
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
524
|
+
newModule?: InputMaybe<Scalars['Bytes']['input']>;
|
|
525
|
+
newModule_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
526
|
+
newModule_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
527
|
+
newModule_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
528
|
+
newModule_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
529
|
+
newModule_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
530
|
+
newModule_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
531
|
+
newModule_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
532
|
+
newModule_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
533
|
+
newModule_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
534
|
+
or?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
535
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
536
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
537
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
538
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
539
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
540
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
541
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
542
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
544
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
545
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
546
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
547
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
548
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
549
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
550
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
551
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
552
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
553
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
554
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
555
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
599
556
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
600
557
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
601
558
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -615,109 +572,32 @@ type LandOpenedEvent_Filter = {
|
|
|
615
572
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
616
573
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
617
574
|
};
|
|
618
|
-
type
|
|
619
|
-
type
|
|
575
|
+
type ModuleUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newModule' | '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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
576
|
+
type Module_Filter = {
|
|
620
577
|
/** Filter for the block changed event. */
|
|
621
578
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
622
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
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']>;
|
|
579
|
+
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
580
|
+
factory?: InputMaybe<Scalars['String']['input']>;
|
|
581
|
+
factory_?: InputMaybe<Factory_Filter>;
|
|
582
|
+
factory_contains?: InputMaybe<Scalars['String']['input']>;
|
|
583
|
+
factory_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
584
|
+
factory_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
585
|
+
factory_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
586
|
+
factory_gt?: InputMaybe<Scalars['String']['input']>;
|
|
587
|
+
factory_gte?: InputMaybe<Scalars['String']['input']>;
|
|
588
|
+
factory_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
589
|
+
factory_lt?: InputMaybe<Scalars['String']['input']>;
|
|
590
|
+
factory_lte?: InputMaybe<Scalars['String']['input']>;
|
|
591
|
+
factory_not?: InputMaybe<Scalars['String']['input']>;
|
|
592
|
+
factory_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
593
|
+
factory_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
594
|
+
factory_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
+
factory_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
596
|
+
factory_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
597
|
+
factory_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
598
|
+
factory_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
599
|
+
factory_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
600
|
+
factory_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
721
601
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
722
602
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
723
603
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -747,6 +627,10 @@ type Module_Filter = {
|
|
|
747
627
|
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
748
628
|
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
749
629
|
or?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
630
|
+
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
631
|
+
verified_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
632
|
+
verified_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
633
|
+
verified_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
750
634
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
751
635
|
version_contains?: InputMaybe<Scalars['String']['input']>;
|
|
752
636
|
version_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -768,11 +652,81 @@ type Module_Filter = {
|
|
|
768
652
|
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
769
653
|
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
770
654
|
};
|
|
771
|
-
type Module_OrderBy = '
|
|
655
|
+
type Module_OrderBy = 'factory' | 'factory__id' | 'factory__slotCount' | 'id' | 'name' | 'verified' | 'version';
|
|
772
656
|
/** Defines the order direction, either ascending or descending */
|
|
773
657
|
type OrderDirection = 'asc' | 'desc';
|
|
774
|
-
type
|
|
775
|
-
__typename?: '
|
|
658
|
+
type PendingUpdateCancelledEvent = {
|
|
659
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
660
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
661
|
+
id: Scalars['ID']['output'];
|
|
662
|
+
slot: Slot;
|
|
663
|
+
timestamp: Scalars['BigInt']['output'];
|
|
664
|
+
tx: Scalars['Bytes']['output'];
|
|
665
|
+
};
|
|
666
|
+
type PendingUpdateCancelledEvent_Filter = {
|
|
667
|
+
/** Filter for the block changed event. */
|
|
668
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
669
|
+
and?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
670
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
671
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
672
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
673
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
674
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
675
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
676
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
677
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
678
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
679
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
680
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
681
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
682
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
683
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
684
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
685
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
686
|
+
or?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
687
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
688
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
689
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
691
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
692
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
693
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
694
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
695
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
696
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
697
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
698
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
699
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
700
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
701
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
702
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
703
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
704
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
705
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
706
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
708
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
709
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
710
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
711
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
712
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
713
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
714
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
715
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
716
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
717
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
718
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
719
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
720
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
721
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
722
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
723
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
724
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
725
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
726
|
+
};
|
|
727
|
+
type PendingUpdateCancelledEvent_OrderBy = 'blockNumber' | '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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
728
|
+
type PriceUpdatedEvent = {
|
|
729
|
+
__typename?: 'PriceUpdatedEvent';
|
|
776
730
|
blockNumber: Scalars['BigInt']['output'];
|
|
777
731
|
id: Scalars['ID']['output'];
|
|
778
732
|
newPrice: Scalars['BigInt']['output'];
|
|
@@ -781,10 +735,10 @@ type PriceUpdate = {
|
|
|
781
735
|
timestamp: Scalars['BigInt']['output'];
|
|
782
736
|
tx: Scalars['Bytes']['output'];
|
|
783
737
|
};
|
|
784
|
-
type
|
|
738
|
+
type PriceUpdatedEvent_Filter = {
|
|
785
739
|
/** Filter for the block changed event. */
|
|
786
740
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
787
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
741
|
+
and?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
788
742
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
789
743
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
790
744
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -817,7 +771,7 @@ type PriceUpdate_Filter = {
|
|
|
817
771
|
oldPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
818
772
|
oldPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
819
773
|
oldPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
820
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
774
|
+
or?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
821
775
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
822
776
|
slot_?: InputMaybe<Slot_Filter>;
|
|
823
777
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -858,235 +812,203 @@ type PriceUpdate_Filter = {
|
|
|
858
812
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
859
813
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
860
814
|
};
|
|
861
|
-
type
|
|
815
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
862
816
|
type Query = {
|
|
863
817
|
__typename?: 'Query';
|
|
864
818
|
/** Access to subgraph metadata */
|
|
865
819
|
_meta?: Maybe<_Meta_>;
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
landOpenedEvents: Array<LandOpenedEvent>;
|
|
877
|
-
lands: Array<Land>;
|
|
820
|
+
account?: Maybe<Account>;
|
|
821
|
+
accounts: Array<Account>;
|
|
822
|
+
boughtEvent?: Maybe<BoughtEvent>;
|
|
823
|
+
boughtEvents: Array<BoughtEvent>;
|
|
824
|
+
depositedEvent?: Maybe<DepositedEvent>;
|
|
825
|
+
depositedEvents: Array<DepositedEvent>;
|
|
826
|
+
factories: Array<Factory>;
|
|
827
|
+
factory?: Maybe<Factory>;
|
|
828
|
+
liquidatedEvent?: Maybe<LiquidatedEvent>;
|
|
829
|
+
liquidatedEvents: Array<LiquidatedEvent>;
|
|
878
830
|
module?: Maybe<Module>;
|
|
831
|
+
moduleUpdateProposedEvent?: Maybe<ModuleUpdateProposedEvent>;
|
|
832
|
+
moduleUpdateProposedEvents: Array<ModuleUpdateProposedEvent>;
|
|
879
833
|
modules: Array<Module>;
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
834
|
+
pendingUpdateCancelledEvent?: Maybe<PendingUpdateCancelledEvent>;
|
|
835
|
+
pendingUpdateCancelledEvents: Array<PendingUpdateCancelledEvent>;
|
|
836
|
+
priceUpdatedEvent?: Maybe<PriceUpdatedEvent>;
|
|
837
|
+
priceUpdatedEvents: Array<PriceUpdatedEvent>;
|
|
838
|
+
releasedEvent?: Maybe<ReleasedEvent>;
|
|
839
|
+
releasedEvents: Array<ReleasedEvent>;
|
|
840
|
+
settledEvent?: Maybe<SettledEvent>;
|
|
841
|
+
settledEvents: Array<SettledEvent>;
|
|
884
842
|
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
843
|
slots: Array<Slot>;
|
|
894
844
|
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
895
845
|
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
846
|
+
taxUpdateProposedEvent?: Maybe<TaxUpdateProposedEvent>;
|
|
847
|
+
taxUpdateProposedEvents: Array<TaxUpdateProposedEvent>;
|
|
848
|
+
withdrawnEvent?: Maybe<WithdrawnEvent>;
|
|
849
|
+
withdrawnEvents: Array<WithdrawnEvent>;
|
|
900
850
|
};
|
|
901
851
|
type Query_MetaArgs = {
|
|
902
852
|
block?: InputMaybe<Block_Height>;
|
|
903
853
|
};
|
|
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 = {
|
|
854
|
+
type QueryAccountArgs = {
|
|
919
855
|
block?: InputMaybe<Block_Height>;
|
|
920
856
|
id: Scalars['ID']['input'];
|
|
921
857
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
922
858
|
};
|
|
923
|
-
type
|
|
859
|
+
type QueryAccountsArgs = {
|
|
924
860
|
block?: InputMaybe<Block_Height>;
|
|
925
861
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
926
|
-
orderBy?: InputMaybe<
|
|
862
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
927
863
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
928
864
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
929
865
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
930
|
-
where?: InputMaybe<
|
|
866
|
+
where?: InputMaybe<Account_Filter>;
|
|
931
867
|
};
|
|
932
|
-
type
|
|
868
|
+
type QueryBoughtEventArgs = {
|
|
933
869
|
block?: InputMaybe<Block_Height>;
|
|
934
870
|
id: Scalars['ID']['input'];
|
|
935
871
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
936
872
|
};
|
|
937
|
-
type
|
|
873
|
+
type QueryBoughtEventsArgs = {
|
|
938
874
|
block?: InputMaybe<Block_Height>;
|
|
939
875
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
940
|
-
orderBy?: InputMaybe<
|
|
876
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
941
877
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
942
878
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
943
879
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
944
|
-
where?: InputMaybe<
|
|
880
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
945
881
|
};
|
|
946
|
-
type
|
|
882
|
+
type QueryDepositedEventArgs = {
|
|
947
883
|
block?: InputMaybe<Block_Height>;
|
|
948
884
|
id: Scalars['ID']['input'];
|
|
949
885
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
950
886
|
};
|
|
951
|
-
type
|
|
887
|
+
type QueryDepositedEventsArgs = {
|
|
952
888
|
block?: InputMaybe<Block_Height>;
|
|
953
|
-
|
|
889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
890
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
891
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
892
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
954
893
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
894
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
955
895
|
};
|
|
956
|
-
type
|
|
896
|
+
type QueryFactoriesArgs = {
|
|
957
897
|
block?: InputMaybe<Block_Height>;
|
|
958
898
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
959
|
-
orderBy?: InputMaybe<
|
|
899
|
+
orderBy?: InputMaybe<Factory_OrderBy>;
|
|
960
900
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
961
901
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
962
902
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
963
|
-
where?: InputMaybe<
|
|
903
|
+
where?: InputMaybe<Factory_Filter>;
|
|
964
904
|
};
|
|
965
|
-
type
|
|
905
|
+
type QueryFactoryArgs = {
|
|
966
906
|
block?: InputMaybe<Block_Height>;
|
|
967
907
|
id: Scalars['ID']['input'];
|
|
968
908
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
969
909
|
};
|
|
970
|
-
type
|
|
910
|
+
type QueryLiquidatedEventArgs = {
|
|
971
911
|
block?: InputMaybe<Block_Height>;
|
|
972
|
-
|
|
973
|
-
orderBy?: InputMaybe<LandOpenedEvent_OrderBy>;
|
|
974
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
975
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
912
|
+
id: Scalars['ID']['input'];
|
|
976
913
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
977
|
-
where?: InputMaybe<LandOpenedEvent_Filter>;
|
|
978
914
|
};
|
|
979
|
-
type
|
|
915
|
+
type QueryLiquidatedEventsArgs = {
|
|
980
916
|
block?: InputMaybe<Block_Height>;
|
|
981
917
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
982
|
-
orderBy?: InputMaybe<
|
|
918
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
983
919
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
984
920
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
985
921
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
986
|
-
where?: InputMaybe<
|
|
922
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
987
923
|
};
|
|
988
924
|
type QueryModuleArgs = {
|
|
989
925
|
block?: InputMaybe<Block_Height>;
|
|
990
926
|
id: Scalars['ID']['input'];
|
|
991
927
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
992
928
|
};
|
|
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 = {
|
|
929
|
+
type QueryModuleUpdateProposedEventArgs = {
|
|
1003
930
|
block?: InputMaybe<Block_Height>;
|
|
1004
931
|
id: Scalars['ID']['input'];
|
|
1005
932
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1006
933
|
};
|
|
1007
|
-
type
|
|
934
|
+
type QueryModuleUpdateProposedEventsArgs = {
|
|
1008
935
|
block?: InputMaybe<Block_Height>;
|
|
1009
936
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1010
|
-
orderBy?: InputMaybe<
|
|
937
|
+
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
1011
938
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1012
939
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1013
940
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1014
|
-
where?: InputMaybe<
|
|
1015
|
-
};
|
|
1016
|
-
type QuerySettlementEventArgs = {
|
|
1017
|
-
block?: InputMaybe<Block_Height>;
|
|
1018
|
-
id: Scalars['ID']['input'];
|
|
1019
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
941
|
+
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1020
942
|
};
|
|
1021
|
-
type
|
|
943
|
+
type QueryModulesArgs = {
|
|
1022
944
|
block?: InputMaybe<Block_Height>;
|
|
1023
945
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1024
|
-
orderBy?: InputMaybe<
|
|
946
|
+
orderBy?: InputMaybe<Module_OrderBy>;
|
|
1025
947
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1026
948
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
949
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1028
|
-
where?: InputMaybe<
|
|
1029
|
-
};
|
|
1030
|
-
type QuerySlotArgs = {
|
|
1031
|
-
block?: InputMaybe<Block_Height>;
|
|
1032
|
-
id: Scalars['ID']['input'];
|
|
1033
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
950
|
+
where?: InputMaybe<Module_Filter>;
|
|
1034
951
|
};
|
|
1035
|
-
type
|
|
952
|
+
type QueryPendingUpdateCancelledEventArgs = {
|
|
1036
953
|
block?: InputMaybe<Block_Height>;
|
|
1037
954
|
id: Scalars['ID']['input'];
|
|
1038
955
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1039
956
|
};
|
|
1040
|
-
type
|
|
957
|
+
type QueryPendingUpdateCancelledEventsArgs = {
|
|
1041
958
|
block?: InputMaybe<Block_Height>;
|
|
1042
959
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1043
|
-
orderBy?: InputMaybe<
|
|
960
|
+
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
1044
961
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1045
962
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1046
963
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1047
|
-
where?: InputMaybe<
|
|
964
|
+
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1048
965
|
};
|
|
1049
|
-
type
|
|
966
|
+
type QueryPriceUpdatedEventArgs = {
|
|
1050
967
|
block?: InputMaybe<Block_Height>;
|
|
1051
968
|
id: Scalars['ID']['input'];
|
|
1052
969
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1053
970
|
};
|
|
1054
|
-
type
|
|
971
|
+
type QueryPriceUpdatedEventsArgs = {
|
|
1055
972
|
block?: InputMaybe<Block_Height>;
|
|
1056
973
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1057
|
-
orderBy?: InputMaybe<
|
|
974
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1058
975
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1059
976
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1060
977
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1061
|
-
where?: InputMaybe<
|
|
978
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1062
979
|
};
|
|
1063
|
-
type
|
|
980
|
+
type QueryReleasedEventArgs = {
|
|
1064
981
|
block?: InputMaybe<Block_Height>;
|
|
1065
982
|
id: Scalars['ID']['input'];
|
|
1066
983
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1067
984
|
};
|
|
1068
|
-
type
|
|
985
|
+
type QueryReleasedEventsArgs = {
|
|
1069
986
|
block?: InputMaybe<Block_Height>;
|
|
1070
987
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1071
|
-
orderBy?: InputMaybe<
|
|
988
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1072
989
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1073
990
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1074
991
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1075
|
-
where?: InputMaybe<
|
|
992
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1076
993
|
};
|
|
1077
|
-
type
|
|
994
|
+
type QuerySettledEventArgs = {
|
|
1078
995
|
block?: InputMaybe<Block_Height>;
|
|
1079
996
|
id: Scalars['ID']['input'];
|
|
1080
997
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1081
998
|
};
|
|
1082
|
-
type
|
|
999
|
+
type QuerySettledEventsArgs = {
|
|
1083
1000
|
block?: InputMaybe<Block_Height>;
|
|
1084
1001
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1085
|
-
orderBy?: InputMaybe<
|
|
1002
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1086
1003
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1087
1004
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1088
1005
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1089
|
-
where?: InputMaybe<
|
|
1006
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1007
|
+
};
|
|
1008
|
+
type QuerySlotArgs = {
|
|
1009
|
+
block?: InputMaybe<Block_Height>;
|
|
1010
|
+
id: Scalars['ID']['input'];
|
|
1011
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1090
1012
|
};
|
|
1091
1013
|
type QuerySlotsArgs = {
|
|
1092
1014
|
block?: InputMaybe<Block_Height>;
|
|
@@ -1111,48 +1033,139 @@ type QueryTaxCollectedEventsArgs = {
|
|
|
1111
1033
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1112
1034
|
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1113
1035
|
};
|
|
1114
|
-
type
|
|
1036
|
+
type QueryTaxUpdateProposedEventArgs = {
|
|
1115
1037
|
block?: InputMaybe<Block_Height>;
|
|
1116
1038
|
id: Scalars['ID']['input'];
|
|
1117
1039
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1118
1040
|
};
|
|
1119
|
-
type
|
|
1041
|
+
type QueryTaxUpdateProposedEventsArgs = {
|
|
1120
1042
|
block?: InputMaybe<Block_Height>;
|
|
1121
1043
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1122
|
-
orderBy?: InputMaybe<
|
|
1044
|
+
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
1123
1045
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1124
1046
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1125
1047
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1126
|
-
where?: InputMaybe<
|
|
1048
|
+
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1127
1049
|
};
|
|
1128
|
-
type
|
|
1050
|
+
type QueryWithdrawnEventArgs = {
|
|
1129
1051
|
block?: InputMaybe<Block_Height>;
|
|
1130
1052
|
id: Scalars['ID']['input'];
|
|
1131
1053
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1132
1054
|
};
|
|
1133
|
-
type
|
|
1055
|
+
type QueryWithdrawnEventsArgs = {
|
|
1134
1056
|
block?: InputMaybe<Block_Height>;
|
|
1135
1057
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1136
|
-
orderBy?: InputMaybe<
|
|
1058
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1137
1059
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1138
1060
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1139
1061
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1140
|
-
where?: InputMaybe<
|
|
1062
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1063
|
+
};
|
|
1064
|
+
type ReleasedEvent = {
|
|
1065
|
+
__typename?: 'ReleasedEvent';
|
|
1066
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1067
|
+
id: Scalars['ID']['output'];
|
|
1068
|
+
occupant: Scalars['Bytes']['output'];
|
|
1069
|
+
refund: Scalars['BigInt']['output'];
|
|
1070
|
+
slot: Slot;
|
|
1071
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1072
|
+
tx: Scalars['Bytes']['output'];
|
|
1073
|
+
};
|
|
1074
|
+
type ReleasedEvent_Filter = {
|
|
1075
|
+
/** Filter for the block changed event. */
|
|
1076
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1077
|
+
and?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1078
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1079
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1080
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1081
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1082
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1083
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1084
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1085
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1086
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1087
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1088
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1089
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1090
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1091
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1092
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1093
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1094
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1095
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1096
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1097
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1098
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1099
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1100
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1101
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1102
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1103
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1104
|
+
or?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1105
|
+
refund?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1106
|
+
refund_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1107
|
+
refund_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1108
|
+
refund_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1109
|
+
refund_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1110
|
+
refund_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1111
|
+
refund_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1112
|
+
refund_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1113
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1114
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1115
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1116
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1117
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1118
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1119
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1120
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1121
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1122
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1123
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1124
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1125
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1126
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1127
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1128
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1129
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1130
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1131
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1132
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1133
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1134
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1135
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1136
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1137
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1138
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1139
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1140
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1141
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1142
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1143
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1144
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1145
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1146
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1147
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1148
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1149
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1150
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1151
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1141
1152
|
};
|
|
1142
|
-
type
|
|
1143
|
-
|
|
1153
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1154
|
+
type SettledEvent = {
|
|
1155
|
+
__typename?: 'SettledEvent';
|
|
1144
1156
|
blockNumber: Scalars['BigInt']['output'];
|
|
1145
1157
|
depositRemaining: Scalars['BigInt']['output'];
|
|
1146
1158
|
id: Scalars['ID']['output'];
|
|
1147
1159
|
slot: Slot;
|
|
1148
1160
|
taxOwed: Scalars['BigInt']['output'];
|
|
1161
|
+
taxPaid: Scalars['BigInt']['output'];
|
|
1149
1162
|
timestamp: Scalars['BigInt']['output'];
|
|
1150
1163
|
tx: Scalars['Bytes']['output'];
|
|
1151
1164
|
};
|
|
1152
|
-
type
|
|
1165
|
+
type SettledEvent_Filter = {
|
|
1153
1166
|
/** Filter for the block changed event. */
|
|
1154
1167
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1155
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
1168
|
+
and?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1156
1169
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1157
1170
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
1171
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1177,7 +1190,7 @@ type SettlementEvent_Filter = {
|
|
|
1177
1190
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1178
1191
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1179
1192
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1180
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
1193
|
+
or?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1181
1194
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1182
1195
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1183
1196
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1207,6 +1220,14 @@ type SettlementEvent_Filter = {
|
|
|
1207
1220
|
taxOwed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1208
1221
|
taxOwed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1209
1222
|
taxOwed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1223
|
+
taxPaid?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1224
|
+
taxPaid_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1225
|
+
taxPaid_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1226
|
+
taxPaid_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1227
|
+
taxPaid_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1228
|
+
taxPaid_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1229
|
+
taxPaid_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1230
|
+
taxPaid_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1210
1231
|
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1211
1232
|
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1212
1233
|
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1226,75 +1247,99 @@ type SettlementEvent_Filter = {
|
|
|
1226
1247
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1227
1248
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1228
1249
|
};
|
|
1229
|
-
type
|
|
1250
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'taxOwed' | 'taxPaid' | 'timestamp' | 'tx';
|
|
1230
1251
|
type Slot = {
|
|
1231
1252
|
__typename?: 'Slot';
|
|
1232
|
-
|
|
1233
|
-
basePrice: Scalars['BigInt']['output'];
|
|
1253
|
+
collectedTax: Scalars['BigInt']['output'];
|
|
1234
1254
|
createdAt: Scalars['BigInt']['output'];
|
|
1235
|
-
|
|
1255
|
+
createdTx: Scalars['Bytes']['output'];
|
|
1236
1256
|
currency: Scalars['Bytes']['output'];
|
|
1237
|
-
|
|
1257
|
+
currencyDecimals?: Maybe<Scalars['Int']['output']>;
|
|
1258
|
+
currencyName?: Maybe<Scalars['String']['output']>;
|
|
1259
|
+
currencySymbol?: Maybe<Scalars['String']['output']>;
|
|
1260
|
+
deposit: Scalars['BigInt']['output'];
|
|
1261
|
+
deposits: Array<DepositedEvent>;
|
|
1238
1262
|
id: Scalars['ID']['output'];
|
|
1239
|
-
|
|
1240
|
-
liquidations: Array<
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
module?: Maybe<
|
|
1263
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1264
|
+
liquidations: Array<LiquidatedEvent>;
|
|
1265
|
+
manager: Scalars['Bytes']['output'];
|
|
1266
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1267
|
+
module?: Maybe<Module>;
|
|
1268
|
+
moduleUpdateProposals: Array<ModuleUpdateProposedEvent>;
|
|
1269
|
+
mutableModule: Scalars['Boolean']['output'];
|
|
1270
|
+
mutableTax: Scalars['Boolean']['output'];
|
|
1244
1271
|
occupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1272
|
+
occupantAccount?: Maybe<Account>;
|
|
1273
|
+
pendingUpdateCancellations: Array<PendingUpdateCancelledEvent>;
|
|
1245
1274
|
price: Scalars['BigInt']['output'];
|
|
1246
|
-
|
|
1247
|
-
purchases: Array<
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1275
|
+
priceUpdates: Array<PriceUpdatedEvent>;
|
|
1276
|
+
purchases: Array<BoughtEvent>;
|
|
1277
|
+
recipient: Scalars['Bytes']['output'];
|
|
1278
|
+
recipientAccount: Account;
|
|
1279
|
+
releases: Array<ReleasedEvent>;
|
|
1280
|
+
settlements: Array<SettledEvent>;
|
|
1251
1281
|
taxCollections: Array<TaxCollectedEvent>;
|
|
1252
1282
|
taxPercentage: Scalars['BigInt']['output'];
|
|
1253
|
-
|
|
1283
|
+
taxUpdateProposals: Array<TaxUpdateProposedEvent>;
|
|
1284
|
+
totalCollected: Scalars['BigInt']['output'];
|
|
1254
1285
|
updatedAt: Scalars['BigInt']['output'];
|
|
1255
|
-
withdrawals: Array<
|
|
1286
|
+
withdrawals: Array<WithdrawnEvent>;
|
|
1256
1287
|
};
|
|
1257
1288
|
type SlotDepositsArgs = {
|
|
1258
1289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1259
|
-
orderBy?: InputMaybe<
|
|
1290
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1260
1291
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1261
1292
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1262
|
-
where?: InputMaybe<
|
|
1293
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1263
1294
|
};
|
|
1264
1295
|
type SlotLiquidationsArgs = {
|
|
1265
1296
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1266
|
-
orderBy?: InputMaybe<
|
|
1297
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1298
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1299
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1300
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1301
|
+
};
|
|
1302
|
+
type SlotModuleUpdateProposalsArgs = {
|
|
1303
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1304
|
+
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
1305
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1306
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1307
|
+
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1308
|
+
};
|
|
1309
|
+
type SlotPendingUpdateCancellationsArgs = {
|
|
1310
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1311
|
+
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
1267
1312
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1268
1313
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1269
|
-
where?: InputMaybe<
|
|
1314
|
+
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1270
1315
|
};
|
|
1271
|
-
type
|
|
1316
|
+
type SlotPriceUpdatesArgs = {
|
|
1272
1317
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1273
|
-
orderBy?: InputMaybe<
|
|
1318
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1274
1319
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1275
1320
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1276
|
-
where?: InputMaybe<
|
|
1321
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1277
1322
|
};
|
|
1278
1323
|
type SlotPurchasesArgs = {
|
|
1279
1324
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1280
|
-
orderBy?: InputMaybe<
|
|
1325
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
1281
1326
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1282
1327
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1283
|
-
where?: InputMaybe<
|
|
1328
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1284
1329
|
};
|
|
1285
1330
|
type SlotReleasesArgs = {
|
|
1286
1331
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1287
|
-
orderBy?: InputMaybe<
|
|
1332
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1288
1333
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1289
1334
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1290
|
-
where?: InputMaybe<
|
|
1335
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1291
1336
|
};
|
|
1292
1337
|
type SlotSettlementsArgs = {
|
|
1293
1338
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1294
|
-
orderBy?: InputMaybe<
|
|
1339
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1295
1340
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1296
1341
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1297
|
-
where?: InputMaybe<
|
|
1342
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1298
1343
|
};
|
|
1299
1344
|
type SlotTaxCollectionsArgs = {
|
|
1300
1345
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1303,54 +1348,99 @@ type SlotTaxCollectionsArgs = {
|
|
|
1303
1348
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1304
1349
|
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1305
1350
|
};
|
|
1306
|
-
type
|
|
1351
|
+
type SlotTaxUpdateProposalsArgs = {
|
|
1307
1352
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1308
|
-
orderBy?: InputMaybe<
|
|
1353
|
+
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
1309
1354
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1310
1355
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1311
|
-
where?: InputMaybe<
|
|
1356
|
+
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1312
1357
|
};
|
|
1313
1358
|
type SlotWithdrawalsArgs = {
|
|
1314
1359
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1315
|
-
orderBy?: InputMaybe<
|
|
1360
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1316
1361
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1317
1362
|
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'];
|
|
1363
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1332
1364
|
};
|
|
1333
|
-
type
|
|
1365
|
+
type Slot_Filter = {
|
|
1334
1366
|
/** Filter for the block changed event. */
|
|
1335
1367
|
_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
|
-
|
|
1368
|
+
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1369
|
+
collectedTax?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1370
|
+
collectedTax_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1371
|
+
collectedTax_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1372
|
+
collectedTax_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1373
|
+
collectedTax_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1374
|
+
collectedTax_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1375
|
+
collectedTax_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1376
|
+
collectedTax_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1377
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1378
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1379
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1380
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1381
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1382
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1383
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1384
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1385
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1386
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1387
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1388
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1389
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1390
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1391
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1392
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1393
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1394
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1353
1395
|
currency?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1396
|
+
currencyDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1397
|
+
currencyDecimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1398
|
+
currencyDecimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1399
|
+
currencyDecimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1400
|
+
currencyDecimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1401
|
+
currencyDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1402
|
+
currencyDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1403
|
+
currencyDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1404
|
+
currencyName?: InputMaybe<Scalars['String']['input']>;
|
|
1405
|
+
currencyName_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1406
|
+
currencyName_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1407
|
+
currencyName_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
+
currencyName_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1409
|
+
currencyName_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1410
|
+
currencyName_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1411
|
+
currencyName_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1412
|
+
currencyName_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1413
|
+
currencyName_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1414
|
+
currencyName_not?: InputMaybe<Scalars['String']['input']>;
|
|
1415
|
+
currencyName_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1416
|
+
currencyName_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1417
|
+
currencyName_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1418
|
+
currencyName_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1419
|
+
currencyName_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1420
|
+
currencyName_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1421
|
+
currencyName_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1422
|
+
currencyName_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1423
|
+
currencyName_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1424
|
+
currencySymbol?: InputMaybe<Scalars['String']['input']>;
|
|
1425
|
+
currencySymbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1426
|
+
currencySymbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
+
currencySymbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1428
|
+
currencySymbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1429
|
+
currencySymbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1430
|
+
currencySymbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1431
|
+
currencySymbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1432
|
+
currencySymbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
currencySymbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1434
|
+
currencySymbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
+
currencySymbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1436
|
+
currencySymbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1437
|
+
currencySymbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1438
|
+
currencySymbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1439
|
+
currencySymbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1440
|
+
currencySymbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1441
|
+
currencySymbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1442
|
+
currencySymbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1443
|
+
currencySymbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1354
1444
|
currency_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1355
1445
|
currency_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1356
1446
|
currency_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -1360,6 +1450,15 @@ type SlotCreatedEvent_Filter = {
|
|
|
1360
1450
|
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1361
1451
|
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1362
1452
|
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1453
|
+
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1454
|
+
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1455
|
+
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1456
|
+
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1457
|
+
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1458
|
+
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1459
|
+
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1460
|
+
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1461
|
+
deposits_?: InputMaybe<DepositedEvent_Filter>;
|
|
1363
1462
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1364
1463
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1365
1464
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1368,46 +1467,140 @@ type SlotCreatedEvent_Filter = {
|
|
|
1368
1467
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1369
1468
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1370
1469
|
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
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1470
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1471
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1472
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1473
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1474
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1475
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1476
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1477
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1478
|
+
liquidations_?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1479
|
+
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1480
|
+
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1481
|
+
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1482
|
+
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1483
|
+
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1484
|
+
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1485
|
+
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1486
|
+
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1487
|
+
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1488
|
+
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1489
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1490
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1491
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1492
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1493
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1494
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1495
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1496
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1497
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
1498
|
+
moduleUpdateProposals_?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1499
|
+
module_?: InputMaybe<Module_Filter>;
|
|
1500
|
+
module_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1501
|
+
module_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1502
|
+
module_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1503
|
+
module_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1504
|
+
module_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1505
|
+
module_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1506
|
+
module_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1507
|
+
module_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1508
|
+
module_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1509
|
+
module_not?: InputMaybe<Scalars['String']['input']>;
|
|
1510
|
+
module_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1511
|
+
module_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1512
|
+
module_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1513
|
+
module_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1514
|
+
module_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1515
|
+
module_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1516
|
+
module_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1517
|
+
module_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1518
|
+
module_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1519
|
+
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1520
|
+
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1521
|
+
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1522
|
+
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1523
|
+
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1524
|
+
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1525
|
+
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1526
|
+
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1527
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1528
|
+
occupantAccount?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
+
occupantAccount_?: InputMaybe<Account_Filter>;
|
|
1530
|
+
occupantAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1531
|
+
occupantAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1532
|
+
occupantAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1533
|
+
occupantAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1534
|
+
occupantAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1535
|
+
occupantAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1536
|
+
occupantAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1537
|
+
occupantAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1538
|
+
occupantAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1539
|
+
occupantAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
1540
|
+
occupantAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1541
|
+
occupantAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1542
|
+
occupantAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1543
|
+
occupantAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1544
|
+
occupantAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1545
|
+
occupantAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1546
|
+
occupantAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1547
|
+
occupantAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1548
|
+
occupantAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1549
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1550
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1551
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1552
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1553
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1554
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1555
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1556
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1557
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1558
|
+
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1559
|
+
pendingUpdateCancellations_?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1560
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1561
|
+
priceUpdates_?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1562
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1563
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1564
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1565
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1566
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1567
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1568
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1569
|
+
purchases_?: InputMaybe<BoughtEvent_Filter>;
|
|
1570
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1571
|
+
recipientAccount?: InputMaybe<Scalars['String']['input']>;
|
|
1572
|
+
recipientAccount_?: InputMaybe<Account_Filter>;
|
|
1573
|
+
recipientAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1574
|
+
recipientAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1575
|
+
recipientAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1576
|
+
recipientAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1577
|
+
recipientAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1578
|
+
recipientAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1579
|
+
recipientAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1580
|
+
recipientAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1581
|
+
recipientAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1582
|
+
recipientAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
1583
|
+
recipientAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1584
|
+
recipientAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1585
|
+
recipientAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1586
|
+
recipientAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1587
|
+
recipientAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1588
|
+
recipientAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1589
|
+
recipientAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1590
|
+
recipientAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1591
|
+
recipientAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1592
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1593
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1594
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1595
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1596
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1597
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1598
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1599
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1600
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1601
|
+
releases_?: InputMaybe<ReleasedEvent_Filter>;
|
|
1602
|
+
settlements_?: InputMaybe<SettledEvent_Filter>;
|
|
1603
|
+
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1411
1604
|
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1412
1605
|
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1413
1606
|
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1416,43 +1609,48 @@ type SlotCreatedEvent_Filter = {
|
|
|
1416
1609
|
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1417
1610
|
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1418
1611
|
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1612
|
+
taxUpdateProposals_?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1613
|
+
totalCollected?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1614
|
+
totalCollected_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1615
|
+
totalCollected_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1616
|
+
totalCollected_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1617
|
+
totalCollected_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1618
|
+
totalCollected_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1619
|
+
totalCollected_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1620
|
+
totalCollected_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1621
|
+
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1622
|
+
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1623
|
+
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1624
|
+
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1625
|
+
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1626
|
+
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1627
|
+
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1628
|
+
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1629
|
+
withdrawals_?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1437
1630
|
};
|
|
1438
|
-
type
|
|
1439
|
-
type
|
|
1440
|
-
__typename?: '
|
|
1631
|
+
type Slot_OrderBy = 'collectedTax' | 'createdAt' | 'createdTx' | 'currency' | 'currencyDecimals' | 'currencyName' | 'currencySymbol' | 'deposit' | 'deposits' | 'id' | 'liquidationBountyBps' | 'liquidations' | 'manager' | 'minDepositSeconds' | 'module' | 'moduleUpdateProposals' | 'module__id' | 'module__name' | 'module__verified' | 'module__version' | 'mutableModule' | 'mutableTax' | 'occupant' | 'occupantAccount' | 'occupantAccount__id' | 'occupantAccount__occupiedCount' | 'occupantAccount__slotCount' | 'pendingUpdateCancellations' | 'price' | 'priceUpdates' | 'purchases' | 'recipient' | 'recipientAccount' | 'recipientAccount__id' | 'recipientAccount__occupiedCount' | 'recipientAccount__slotCount' | 'releases' | 'settlements' | 'taxCollections' | 'taxPercentage' | 'taxUpdateProposals' | 'totalCollected' | 'updatedAt' | 'withdrawals';
|
|
1632
|
+
type TaxCollectedEvent = {
|
|
1633
|
+
__typename?: 'TaxCollectedEvent';
|
|
1634
|
+
amount: Scalars['BigInt']['output'];
|
|
1441
1635
|
blockNumber: Scalars['BigInt']['output'];
|
|
1442
|
-
bounty: Scalars['BigInt']['output'];
|
|
1443
1636
|
id: Scalars['ID']['output'];
|
|
1444
|
-
|
|
1445
|
-
liquidator: Scalars['Bytes']['output'];
|
|
1446
|
-
occupant: Scalars['Bytes']['output'];
|
|
1637
|
+
recipient: Scalars['Bytes']['output'];
|
|
1447
1638
|
slot: Slot;
|
|
1448
|
-
slotId: Scalars['BigInt']['output'];
|
|
1449
1639
|
timestamp: Scalars['BigInt']['output'];
|
|
1450
1640
|
tx: Scalars['Bytes']['output'];
|
|
1451
1641
|
};
|
|
1452
|
-
type
|
|
1642
|
+
type TaxCollectedEvent_Filter = {
|
|
1453
1643
|
/** Filter for the block changed event. */
|
|
1454
1644
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1455
|
-
|
|
1645
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1646
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1647
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1648
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1649
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1650
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1651
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1652
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1653
|
+
and?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1456
1654
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1457
1655
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1458
1656
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1461,14 +1659,6 @@ type SlotLiquidatedEvent_Filter = {
|
|
|
1461
1659
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1462
1660
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1463
1661
|
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
1662
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1473
1663
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1474
1664
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1477,46 +1667,18 @@ type SlotLiquidatedEvent_Filter = {
|
|
|
1477
1667
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1478
1668
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1479
1669
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
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>>>;
|
|
1670
|
+
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1671
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1672
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1673
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1674
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1675
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1676
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1677
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1678
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1679
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1680
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1511
1681
|
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
1682
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1521
1683
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1522
1684
|
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1556,22 +1718,20 @@ type SlotLiquidatedEvent_Filter = {
|
|
|
1556
1718
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1557
1719
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1558
1720
|
};
|
|
1559
|
-
type
|
|
1560
|
-
type
|
|
1561
|
-
__typename?: '
|
|
1721
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1722
|
+
type TaxUpdateProposedEvent = {
|
|
1723
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
1562
1724
|
blockNumber: Scalars['BigInt']['output'];
|
|
1563
1725
|
id: Scalars['ID']['output'];
|
|
1564
|
-
|
|
1565
|
-
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1566
|
-
price: Scalars['BigInt']['output'];
|
|
1726
|
+
newPercentage: Scalars['BigInt']['output'];
|
|
1567
1727
|
slot: Slot;
|
|
1568
1728
|
timestamp: Scalars['BigInt']['output'];
|
|
1569
1729
|
tx: Scalars['Bytes']['output'];
|
|
1570
1730
|
};
|
|
1571
|
-
type
|
|
1731
|
+
type TaxUpdateProposedEvent_Filter = {
|
|
1572
1732
|
/** Filter for the block changed event. */
|
|
1573
1733
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1574
|
-
and?: InputMaybe<Array<InputMaybe<
|
|
1734
|
+
and?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
1575
1735
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1576
1736
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1577
1737
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1588,35 +1748,15 @@ type SlotPurchase_Filter = {
|
|
|
1588
1748
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1589
1749
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1590
1750
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
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']>>;
|
|
1751
|
+
newPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1752
|
+
newPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1753
|
+
newPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1754
|
+
newPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1755
|
+
newPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1756
|
+
newPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1757
|
+
newPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1758
|
+
newPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1759
|
+
or?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
1620
1760
|
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1621
1761
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1622
1762
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1657,22 +1797,29 @@ type SlotPurchase_Filter = {
|
|
|
1657
1797
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1658
1798
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1659
1799
|
};
|
|
1660
|
-
type
|
|
1661
|
-
type
|
|
1662
|
-
__typename?: '
|
|
1800
|
+
type TaxUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newPercentage' | '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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1801
|
+
type WithdrawnEvent = {
|
|
1802
|
+
__typename?: 'WithdrawnEvent';
|
|
1803
|
+
amount: Scalars['BigInt']['output'];
|
|
1663
1804
|
blockNumber: Scalars['BigInt']['output'];
|
|
1664
1805
|
id: Scalars['ID']['output'];
|
|
1665
|
-
|
|
1666
|
-
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1806
|
+
occupant: Scalars['Bytes']['output'];
|
|
1667
1807
|
slot: Slot;
|
|
1668
|
-
slotId: Scalars['BigInt']['output'];
|
|
1669
1808
|
timestamp: Scalars['BigInt']['output'];
|
|
1670
1809
|
tx: Scalars['Bytes']['output'];
|
|
1671
1810
|
};
|
|
1672
|
-
type
|
|
1811
|
+
type WithdrawnEvent_Filter = {
|
|
1673
1812
|
/** Filter for the block changed event. */
|
|
1674
1813
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1675
|
-
|
|
1814
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1815
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1816
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1817
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1818
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1819
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1820
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1821
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1822
|
+
and?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
1676
1823
|
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1677
1824
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1678
1825
|
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1689,36 +1836,18 @@ type SlotReleasedEvent_Filter = {
|
|
|
1689
1836
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1690
1837
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1691
1838
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
or?: InputMaybe<Array<InputMaybe<
|
|
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']>>;
|
|
1839
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1840
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1841
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1842
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1843
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1844
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1845
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1846
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1847
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1848
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1849
|
+
or?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
1713
1850
|
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
1851
|
slot_?: InputMaybe<Slot_Filter>;
|
|
1723
1852
|
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1724
1853
|
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1758,459 +1887,17 @@ type SlotReleasedEvent_Filter = {
|
|
|
1758
1887
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1759
1888
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1760
1889
|
};
|
|
1761
|
-
type
|
|
1762
|
-
type
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
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']>>;
|
|
1844
|
-
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1845
|
-
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1846
|
-
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1847
|
-
module_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1848
|
-
module_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1849
|
-
module_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1850
|
-
module_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1851
|
-
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1852
|
-
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1853
|
-
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1854
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1855
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1856
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1857
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1858
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1859
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1860
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1861
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1862
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1863
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1864
|
-
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1865
|
-
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1866
|
-
priceHistory_?: InputMaybe<PriceUpdate_Filter>;
|
|
1867
|
-
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1868
|
-
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1869
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1870
|
-
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1871
|
-
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1872
|
-
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1873
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1874
|
-
purchases_?: InputMaybe<SlotPurchase_Filter>;
|
|
1875
|
-
releases_?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1876
|
-
settlements_?: InputMaybe<SettlementEvent_Filter>;
|
|
1877
|
-
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1878
|
-
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1879
|
-
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1880
|
-
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1881
|
-
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1882
|
-
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1883
|
-
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1884
|
-
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1885
|
-
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1886
|
-
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1887
|
-
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1888
|
-
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1889
|
-
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1890
|
-
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1891
|
-
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1892
|
-
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1893
|
-
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1894
|
-
taxUpdates_?: InputMaybe<TaxRateChange_Filter>;
|
|
1895
|
-
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1896
|
-
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1897
|
-
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1898
|
-
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1899
|
-
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1900
|
-
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1901
|
-
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1902
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1903
|
-
withdrawals_?: InputMaybe<WithdrawalEvent_Filter>;
|
|
1904
|
-
};
|
|
1905
|
-
type Slot_OrderBy = 'active' | 'basePrice' | 'createdAt' | 'createdEvent' | 'createdEvent__basePrice' | 'createdEvent__blockNumber' | 'createdEvent__currency' | 'createdEvent__id' | 'createdEvent__land' | 'createdEvent__slotId' | 'createdEvent__taxPercentage' | 'createdEvent__timestamp' | 'createdEvent__tx' | 'currency' | 'deposits' | 'id' | 'land' | 'land__createdAt' | 'land__createdTx' | 'land__id' | 'land__owner' | 'liquidations' | 'maxTaxPercentage' | 'minTaxUpdatePeriod' | 'module' | 'occupant' | 'price' | 'priceHistory' | 'purchases' | 'releases' | 'settlements' | 'slotId' | 'taxCollections' | 'taxPercentage' | 'taxUpdates' | 'updatedAt' | 'withdrawals';
|
|
1906
|
-
type TaxCollectedEvent = {
|
|
1907
|
-
__typename?: 'TaxCollectedEvent';
|
|
1908
|
-
amount: Scalars['BigInt']['output'];
|
|
1909
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1910
|
-
id: Scalars['ID']['output'];
|
|
1911
|
-
owner: Scalars['Bytes']['output'];
|
|
1912
|
-
slot: Slot;
|
|
1913
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1914
|
-
tx: Scalars['Bytes']['output'];
|
|
1915
|
-
};
|
|
1916
|
-
type TaxCollectedEvent_Filter = {
|
|
1917
|
-
/** Filter for the block changed event. */
|
|
1918
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1919
|
-
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1920
|
-
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1921
|
-
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1922
|
-
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1923
|
-
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1924
|
-
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1925
|
-
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1926
|
-
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1927
|
-
and?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1928
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1929
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1930
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1931
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1932
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1933
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1934
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1935
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1936
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1937
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1938
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1939
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1940
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1941
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1942
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1943
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1944
|
-
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
1945
|
-
owner?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1946
|
-
owner_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1947
|
-
owner_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1948
|
-
owner_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1949
|
-
owner_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1950
|
-
owner_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1951
|
-
owner_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1952
|
-
owner_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1953
|
-
owner_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1954
|
-
owner_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1955
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1956
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1957
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1958
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1959
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1960
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1961
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1962
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1963
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1964
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1965
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1966
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1967
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1968
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1969
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1970
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1971
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1972
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1973
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1974
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1975
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1976
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1977
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1978
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1979
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1980
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1981
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1982
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1983
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1984
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1985
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1986
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1987
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1988
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1989
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1990
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1991
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1992
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1993
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1994
|
-
};
|
|
1995
|
-
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'owner' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
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>>>;
|
|
2073
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2074
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2075
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2076
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2077
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2078
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2079
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2080
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2081
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2082
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2083
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2084
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2085
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2086
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2087
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2088
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2089
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2090
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2091
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2092
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2093
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2094
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2095
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2096
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2097
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2098
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2099
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2100
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2101
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2102
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2103
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2104
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2105
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2106
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2107
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2108
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2109
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2110
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2111
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2112
|
-
};
|
|
2113
|
-
type TaxRateChange_OrderBy = 'blockNumber' | 'confirmableAt' | 'id' | 'kind' | 'newPercentage' | 'oldPercentage' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2114
|
-
type WithdrawalEvent = {
|
|
2115
|
-
__typename?: 'WithdrawalEvent';
|
|
2116
|
-
amount: Scalars['BigInt']['output'];
|
|
2117
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
2118
|
-
id: Scalars['ID']['output'];
|
|
2119
|
-
occupant: Scalars['Bytes']['output'];
|
|
2120
|
-
slot: Slot;
|
|
2121
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2122
|
-
tx: Scalars['Bytes']['output'];
|
|
2123
|
-
};
|
|
2124
|
-
type WithdrawalEvent_Filter = {
|
|
2125
|
-
/** Filter for the block changed event. */
|
|
2126
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2127
|
-
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2128
|
-
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2129
|
-
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2130
|
-
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2131
|
-
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2132
|
-
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2133
|
-
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2134
|
-
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2135
|
-
and?: InputMaybe<Array<InputMaybe<WithdrawalEvent_Filter>>>;
|
|
2136
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2137
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2138
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2139
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2140
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2141
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2142
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2143
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2144
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2145
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2146
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2147
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2148
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2149
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2150
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2151
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2152
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2153
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2154
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2155
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2156
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2157
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2158
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2159
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2160
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2161
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2162
|
-
or?: InputMaybe<Array<InputMaybe<WithdrawalEvent_Filter>>>;
|
|
2163
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2164
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2165
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2166
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2167
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2168
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2169
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2170
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2171
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2172
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2173
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2174
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2175
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2176
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2177
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2178
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2179
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2180
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2181
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2182
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2183
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2184
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2185
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2186
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2187
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2188
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2189
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2190
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2191
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2192
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2193
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2194
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2195
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2196
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2197
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2198
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2199
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2200
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2201
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2202
|
-
};
|
|
2203
|
-
type WithdrawalEvent_OrderBy = 'amount' | 'blockNumber' | 'id' | 'occupant' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2204
|
-
type _Block_ = {
|
|
2205
|
-
__typename?: '_Block_';
|
|
2206
|
-
/** The hash of the block */
|
|
2207
|
-
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
2208
|
-
/** The block number */
|
|
2209
|
-
number: Scalars['Int']['output'];
|
|
2210
|
-
/** The hash of the parent block */
|
|
2211
|
-
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
2212
|
-
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
2213
|
-
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1890
|
+
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__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1891
|
+
type _Block_ = {
|
|
1892
|
+
__typename?: '_Block_';
|
|
1893
|
+
/** The hash of the block */
|
|
1894
|
+
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
1895
|
+
/** The block number */
|
|
1896
|
+
number: Scalars['Int']['output'];
|
|
1897
|
+
/** The hash of the parent block */
|
|
1898
|
+
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
1899
|
+
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
1900
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2214
1901
|
};
|
|
2215
1902
|
/** The type for the top-level _meta field */
|
|
2216
1903
|
type _Meta_ = {
|
|
@@ -2227,483 +1914,963 @@ type _Meta_ = {
|
|
|
2227
1914
|
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
2228
1915
|
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
2229
1916
|
};
|
|
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
|
-
|
|
1917
|
+
type _SubgraphErrorPolicy_ =
|
|
1918
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
1919
|
+
'allow'
|
|
1920
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
1921
|
+
| 'deny';
|
|
1922
|
+
type AccountFieldsFragment = {
|
|
1923
|
+
__typename?: 'Account';
|
|
1924
|
+
id: string;
|
|
1925
|
+
slotCount: number;
|
|
1926
|
+
occupiedCount: number;
|
|
1927
|
+
slotsAsRecipient: Array<{
|
|
1928
|
+
__typename?: 'Slot';
|
|
1929
|
+
id: string;
|
|
1930
|
+
}>;
|
|
1931
|
+
slotsAsOccupant: Array<{
|
|
1932
|
+
__typename?: 'Slot';
|
|
1933
|
+
id: string;
|
|
1934
|
+
}>;
|
|
1935
|
+
};
|
|
1936
|
+
type GetAccountQueryVariables = Exact<{
|
|
1937
|
+
id: Scalars['ID']['input'];
|
|
1938
|
+
block?: InputMaybe<Block_Height>;
|
|
1939
|
+
}>;
|
|
1940
|
+
type GetAccountQuery = {
|
|
1941
|
+
__typename?: 'Query';
|
|
1942
|
+
account?: {
|
|
1943
|
+
__typename?: 'Account';
|
|
1944
|
+
id: string;
|
|
1945
|
+
slotCount: number;
|
|
1946
|
+
occupiedCount: number;
|
|
1947
|
+
slotsAsRecipient: Array<{
|
|
1948
|
+
__typename?: 'Slot';
|
|
1949
|
+
id: string;
|
|
1950
|
+
}>;
|
|
1951
|
+
slotsAsOccupant: Array<{
|
|
1952
|
+
__typename?: 'Slot';
|
|
1953
|
+
id: string;
|
|
1954
|
+
}>;
|
|
1955
|
+
} | null;
|
|
1956
|
+
};
|
|
1957
|
+
type GetAccountsQueryVariables = Exact<{
|
|
1958
|
+
first: Scalars['Int']['input'];
|
|
1959
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1960
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
1961
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1962
|
+
where?: InputMaybe<Account_Filter>;
|
|
1963
|
+
block?: InputMaybe<Block_Height>;
|
|
1964
|
+
}>;
|
|
1965
|
+
type GetAccountsQuery = {
|
|
1966
|
+
__typename?: 'Query';
|
|
1967
|
+
accounts: Array<{
|
|
1968
|
+
__typename?: 'Account';
|
|
1969
|
+
id: string;
|
|
1970
|
+
slotCount: number;
|
|
1971
|
+
occupiedCount: number;
|
|
1972
|
+
slotsAsRecipient: Array<{
|
|
1973
|
+
__typename?: 'Slot';
|
|
1974
|
+
id: string;
|
|
1975
|
+
}>;
|
|
1976
|
+
slotsAsOccupant: Array<{
|
|
1977
|
+
__typename?: 'Slot';
|
|
1978
|
+
id: string;
|
|
1979
|
+
}>;
|
|
1980
|
+
}>;
|
|
1981
|
+
};
|
|
1982
|
+
type GetRecentEventsQueryVariables = Exact<{
|
|
1983
|
+
first: Scalars['Int']['input'];
|
|
1984
|
+
}>;
|
|
1985
|
+
type GetRecentEventsQuery = {
|
|
1986
|
+
__typename?: 'Query';
|
|
1987
|
+
boughtEvents: Array<{
|
|
1988
|
+
__typename?: 'BoughtEvent';
|
|
1989
|
+
id: string;
|
|
1990
|
+
buyer: string;
|
|
1991
|
+
previousOccupant: string;
|
|
1992
|
+
price: string;
|
|
1993
|
+
selfAssessedPrice: string;
|
|
1994
|
+
deposit: string;
|
|
1995
|
+
timestamp: string;
|
|
1996
|
+
tx: string;
|
|
1997
|
+
slot: {
|
|
1998
|
+
__typename?: 'Slot';
|
|
1999
|
+
id: string;
|
|
2000
|
+
};
|
|
2001
|
+
}>;
|
|
2002
|
+
releasedEvents: Array<{
|
|
2003
|
+
__typename?: 'ReleasedEvent';
|
|
2004
|
+
id: string;
|
|
2005
|
+
occupant: string;
|
|
2006
|
+
refund: string;
|
|
2007
|
+
timestamp: string;
|
|
2008
|
+
tx: string;
|
|
2009
|
+
slot: {
|
|
2010
|
+
__typename?: 'Slot';
|
|
2011
|
+
id: string;
|
|
2012
|
+
};
|
|
2013
|
+
}>;
|
|
2014
|
+
liquidatedEvents: Array<{
|
|
2015
|
+
__typename?: 'LiquidatedEvent';
|
|
2016
|
+
id: string;
|
|
2017
|
+
liquidator: string;
|
|
2018
|
+
occupant: string;
|
|
2019
|
+
bounty: string;
|
|
2020
|
+
timestamp: string;
|
|
2021
|
+
tx: string;
|
|
2022
|
+
slot: {
|
|
2023
|
+
__typename?: 'Slot';
|
|
2024
|
+
id: string;
|
|
2025
|
+
};
|
|
2026
|
+
}>;
|
|
2027
|
+
priceUpdatedEvents: Array<{
|
|
2028
|
+
__typename?: 'PriceUpdatedEvent';
|
|
2029
|
+
id: string;
|
|
2030
|
+
oldPrice: string;
|
|
2031
|
+
newPrice: string;
|
|
2032
|
+
timestamp: string;
|
|
2033
|
+
tx: string;
|
|
2034
|
+
slot: {
|
|
2035
|
+
__typename?: 'Slot';
|
|
2036
|
+
id: string;
|
|
2037
|
+
};
|
|
2038
|
+
}>;
|
|
2039
|
+
depositedEvents: Array<{
|
|
2040
|
+
__typename?: 'DepositedEvent';
|
|
2041
|
+
id: string;
|
|
2042
|
+
depositor: string;
|
|
2043
|
+
amount: string;
|
|
2044
|
+
timestamp: string;
|
|
2045
|
+
tx: string;
|
|
2046
|
+
slot: {
|
|
2047
|
+
__typename?: 'Slot';
|
|
2048
|
+
id: string;
|
|
2049
|
+
};
|
|
2050
|
+
}>;
|
|
2051
|
+
withdrawnEvents: Array<{
|
|
2052
|
+
__typename?: 'WithdrawnEvent';
|
|
2053
|
+
id: string;
|
|
2054
|
+
occupant: string;
|
|
2055
|
+
amount: string;
|
|
2056
|
+
timestamp: string;
|
|
2057
|
+
tx: string;
|
|
2058
|
+
slot: {
|
|
2059
|
+
__typename?: 'Slot';
|
|
2060
|
+
id: string;
|
|
2061
|
+
};
|
|
2062
|
+
}>;
|
|
2063
|
+
taxCollectedEvents: Array<{
|
|
2064
|
+
__typename?: 'TaxCollectedEvent';
|
|
2065
|
+
id: string;
|
|
2066
|
+
recipient: string;
|
|
2067
|
+
amount: string;
|
|
2068
|
+
timestamp: string;
|
|
2069
|
+
tx: string;
|
|
2070
|
+
slot: {
|
|
2071
|
+
__typename?: 'Slot';
|
|
2072
|
+
id: string;
|
|
2073
|
+
};
|
|
2074
|
+
}>;
|
|
2075
|
+
taxUpdateProposedEvents: Array<{
|
|
2076
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
2077
|
+
id: string;
|
|
2078
|
+
newPercentage: string;
|
|
2079
|
+
timestamp: string;
|
|
2080
|
+
tx: string;
|
|
2081
|
+
slot: {
|
|
2082
|
+
__typename?: 'Slot';
|
|
2083
|
+
id: string;
|
|
2084
|
+
};
|
|
2085
|
+
}>;
|
|
2086
|
+
moduleUpdateProposedEvents: Array<{
|
|
2087
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
2088
|
+
id: string;
|
|
2089
|
+
newModule: string;
|
|
2090
|
+
timestamp: string;
|
|
2091
|
+
tx: string;
|
|
2092
|
+
slot: {
|
|
2093
|
+
__typename?: 'Slot';
|
|
2094
|
+
id: string;
|
|
2095
|
+
};
|
|
2096
|
+
}>;
|
|
2097
|
+
pendingUpdateCancelledEvents: Array<{
|
|
2098
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
2099
|
+
id: string;
|
|
2100
|
+
timestamp: string;
|
|
2101
|
+
tx: string;
|
|
2102
|
+
slot: {
|
|
2103
|
+
__typename?: 'Slot';
|
|
2104
|
+
id: string;
|
|
2105
|
+
};
|
|
2106
|
+
}>;
|
|
2107
|
+
};
|
|
2108
|
+
type GetBoughtEventsQueryVariables = Exact<{
|
|
2109
|
+
first: Scalars['Int']['input'];
|
|
2237
2110
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2238
|
-
orderBy?: InputMaybe<
|
|
2111
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
2239
2112
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2240
|
-
where?: InputMaybe<
|
|
2113
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
2114
|
+
block?: InputMaybe<Block_Height>;
|
|
2241
2115
|
}>;
|
|
2242
|
-
type
|
|
2116
|
+
type GetBoughtEventsQuery = {
|
|
2243
2117
|
__typename?: 'Query';
|
|
2244
|
-
|
|
2245
|
-
__typename?: '
|
|
2118
|
+
boughtEvents: Array<{
|
|
2119
|
+
__typename?: 'BoughtEvent';
|
|
2246
2120
|
id: string;
|
|
2247
|
-
|
|
2248
|
-
previousOccupant
|
|
2121
|
+
buyer: string;
|
|
2122
|
+
previousOccupant: string;
|
|
2123
|
+
price: string;
|
|
2124
|
+
deposit: string;
|
|
2125
|
+
selfAssessedPrice: string;
|
|
2249
2126
|
timestamp: string;
|
|
2250
2127
|
blockNumber: string;
|
|
2251
2128
|
tx: string;
|
|
2252
2129
|
slot: {
|
|
2253
2130
|
__typename?: 'Slot';
|
|
2254
2131
|
id: string;
|
|
2255
|
-
slotId: string;
|
|
2256
|
-
land: {
|
|
2257
|
-
__typename?: 'Land';
|
|
2258
|
-
id: string;
|
|
2259
|
-
};
|
|
2260
2132
|
};
|
|
2261
2133
|
}>;
|
|
2262
2134
|
};
|
|
2263
|
-
type
|
|
2264
|
-
first
|
|
2265
|
-
|
|
2135
|
+
type GetReleasedEventsQueryVariables = Exact<{
|
|
2136
|
+
first: Scalars['Int']['input'];
|
|
2137
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2138
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
2266
2139
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2140
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
2141
|
+
block?: InputMaybe<Block_Height>;
|
|
2267
2142
|
}>;
|
|
2268
|
-
type
|
|
2143
|
+
type GetReleasedEventsQuery = {
|
|
2269
2144
|
__typename?: 'Query';
|
|
2270
|
-
|
|
2271
|
-
__typename?: '
|
|
2145
|
+
releasedEvents: Array<{
|
|
2146
|
+
__typename?: 'ReleasedEvent';
|
|
2272
2147
|
id: string;
|
|
2273
|
-
|
|
2148
|
+
occupant: string;
|
|
2149
|
+
refund: string;
|
|
2274
2150
|
timestamp: string;
|
|
2275
2151
|
blockNumber: string;
|
|
2276
2152
|
tx: string;
|
|
2277
|
-
|
|
2278
|
-
__typename?: '
|
|
2153
|
+
slot: {
|
|
2154
|
+
__typename?: 'Slot';
|
|
2279
2155
|
id: string;
|
|
2280
2156
|
};
|
|
2281
2157
|
}>;
|
|
2282
2158
|
};
|
|
2283
|
-
type
|
|
2284
|
-
first
|
|
2285
|
-
|
|
2159
|
+
type GetLiquidatedEventsQueryVariables = Exact<{
|
|
2160
|
+
first: Scalars['Int']['input'];
|
|
2161
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2162
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
2286
2163
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2287
|
-
where?: InputMaybe<
|
|
2164
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
2165
|
+
block?: InputMaybe<Block_Height>;
|
|
2288
2166
|
}>;
|
|
2289
|
-
type
|
|
2167
|
+
type GetLiquidatedEventsQuery = {
|
|
2290
2168
|
__typename?: 'Query';
|
|
2291
|
-
|
|
2292
|
-
__typename?: '
|
|
2169
|
+
liquidatedEvents: Array<{
|
|
2170
|
+
__typename?: 'LiquidatedEvent';
|
|
2293
2171
|
id: string;
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
basePrice: string;
|
|
2298
|
-
taxPercentage: string;
|
|
2172
|
+
liquidator: string;
|
|
2173
|
+
occupant: string;
|
|
2174
|
+
bounty: string;
|
|
2299
2175
|
timestamp: string;
|
|
2300
2176
|
blockNumber: string;
|
|
2301
2177
|
tx: string;
|
|
2302
2178
|
slot: {
|
|
2303
2179
|
__typename?: 'Slot';
|
|
2304
2180
|
id: string;
|
|
2305
|
-
slotId: string;
|
|
2306
2181
|
};
|
|
2307
2182
|
}>;
|
|
2308
2183
|
};
|
|
2309
|
-
type
|
|
2310
|
-
first
|
|
2311
|
-
|
|
2184
|
+
type GetSettledEventsQueryVariables = Exact<{
|
|
2185
|
+
first: Scalars['Int']['input'];
|
|
2186
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2187
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
2312
2188
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2313
|
-
where?: InputMaybe<
|
|
2189
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
2190
|
+
block?: InputMaybe<Block_Height>;
|
|
2314
2191
|
}>;
|
|
2315
|
-
type
|
|
2192
|
+
type GetSettledEventsQuery = {
|
|
2316
2193
|
__typename?: 'Query';
|
|
2317
|
-
|
|
2318
|
-
__typename?: '
|
|
2194
|
+
settledEvents: Array<{
|
|
2195
|
+
__typename?: 'SettledEvent';
|
|
2319
2196
|
id: string;
|
|
2320
|
-
|
|
2321
|
-
|
|
2197
|
+
taxOwed: string;
|
|
2198
|
+
taxPaid: string;
|
|
2199
|
+
depositRemaining: string;
|
|
2322
2200
|
timestamp: string;
|
|
2323
2201
|
blockNumber: string;
|
|
2324
2202
|
tx: string;
|
|
2325
2203
|
slot: {
|
|
2326
2204
|
__typename?: 'Slot';
|
|
2327
2205
|
id: string;
|
|
2328
|
-
slotId: string;
|
|
2329
2206
|
};
|
|
2330
2207
|
}>;
|
|
2331
2208
|
};
|
|
2332
|
-
type
|
|
2333
|
-
|
|
2209
|
+
type GetTaxCollectedEventsQueryVariables = Exact<{
|
|
2210
|
+
first: Scalars['Int']['input'];
|
|
2211
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2212
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
2213
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2214
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
2215
|
+
block?: InputMaybe<Block_Height>;
|
|
2334
2216
|
}>;
|
|
2335
|
-
type
|
|
2217
|
+
type GetTaxCollectedEventsQuery = {
|
|
2336
2218
|
__typename?: 'Query';
|
|
2337
|
-
|
|
2338
|
-
__typename?: '
|
|
2219
|
+
taxCollectedEvents: Array<{
|
|
2220
|
+
__typename?: 'TaxCollectedEvent';
|
|
2339
2221
|
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';
|
|
2222
|
+
recipient: string;
|
|
2223
|
+
amount: string;
|
|
2224
|
+
timestamp: string;
|
|
2225
|
+
blockNumber: string;
|
|
2226
|
+
tx: string;
|
|
2227
|
+
slot: {
|
|
2228
|
+
__typename?: 'Slot';
|
|
2355
2229
|
id: string;
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
decimals?: number | null;
|
|
2359
|
-
} | null;
|
|
2360
|
-
} | null;
|
|
2230
|
+
};
|
|
2231
|
+
}>;
|
|
2361
2232
|
};
|
|
2362
|
-
type
|
|
2363
|
-
|
|
2233
|
+
type GetDepositedEventsQueryVariables = Exact<{
|
|
2234
|
+
first: Scalars['Int']['input'];
|
|
2235
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2236
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
2237
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2238
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
2239
|
+
block?: InputMaybe<Block_Height>;
|
|
2364
2240
|
}>;
|
|
2365
|
-
type
|
|
2241
|
+
type GetDepositedEventsQuery = {
|
|
2366
2242
|
__typename?: 'Query';
|
|
2367
|
-
|
|
2368
|
-
__typename?: '
|
|
2243
|
+
depositedEvents: Array<{
|
|
2244
|
+
__typename?: 'DepositedEvent';
|
|
2369
2245
|
id: string;
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2246
|
+
depositor: string;
|
|
2247
|
+
amount: string;
|
|
2248
|
+
timestamp: string;
|
|
2249
|
+
blockNumber: string;
|
|
2250
|
+
tx: string;
|
|
2251
|
+
slot: {
|
|
2252
|
+
__typename?: 'Slot';
|
|
2253
|
+
id: string;
|
|
2254
|
+
};
|
|
2373
2255
|
}>;
|
|
2374
2256
|
};
|
|
2375
|
-
type
|
|
2376
|
-
|
|
2257
|
+
type GetWithdrawnEventsQueryVariables = Exact<{
|
|
2258
|
+
first: Scalars['Int']['input'];
|
|
2259
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2260
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
2261
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2262
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
2263
|
+
block?: InputMaybe<Block_Height>;
|
|
2377
2264
|
}>;
|
|
2378
|
-
type
|
|
2265
|
+
type GetWithdrawnEventsQuery = {
|
|
2379
2266
|
__typename?: 'Query';
|
|
2380
|
-
|
|
2381
|
-
__typename?: '
|
|
2267
|
+
withdrawnEvents: Array<{
|
|
2268
|
+
__typename?: 'WithdrawnEvent';
|
|
2382
2269
|
id: string;
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2270
|
+
occupant: string;
|
|
2271
|
+
amount: string;
|
|
2272
|
+
timestamp: string;
|
|
2273
|
+
blockNumber: string;
|
|
2274
|
+
tx: string;
|
|
2275
|
+
slot: {
|
|
2276
|
+
__typename?: 'Slot';
|
|
2277
|
+
id: string;
|
|
2278
|
+
};
|
|
2386
2279
|
}>;
|
|
2387
2280
|
};
|
|
2388
|
-
type
|
|
2389
|
-
first
|
|
2281
|
+
type GetPriceUpdatedEventsQueryVariables = Exact<{
|
|
2282
|
+
first: Scalars['Int']['input'];
|
|
2390
2283
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2391
|
-
orderBy?: InputMaybe<
|
|
2284
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
2392
2285
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2286
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
2287
|
+
block?: InputMaybe<Block_Height>;
|
|
2393
2288
|
}>;
|
|
2394
|
-
type
|
|
2289
|
+
type GetPriceUpdatedEventsQuery = {
|
|
2395
2290
|
__typename?: 'Query';
|
|
2396
|
-
|
|
2397
|
-
__typename?: '
|
|
2291
|
+
priceUpdatedEvents: Array<{
|
|
2292
|
+
__typename?: 'PriceUpdatedEvent';
|
|
2398
2293
|
id: string;
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2294
|
+
oldPrice: string;
|
|
2295
|
+
newPrice: string;
|
|
2296
|
+
timestamp: string;
|
|
2297
|
+
blockNumber: string;
|
|
2298
|
+
tx: string;
|
|
2299
|
+
slot: {
|
|
2300
|
+
__typename?: 'Slot';
|
|
2404
2301
|
id: string;
|
|
2405
2302
|
};
|
|
2406
2303
|
}>;
|
|
2407
2304
|
};
|
|
2408
|
-
type
|
|
2409
|
-
|
|
2305
|
+
type GetSlotActivityQueryVariables = Exact<{
|
|
2306
|
+
slotId: Scalars['String']['input'];
|
|
2307
|
+
first: Scalars['Int']['input'];
|
|
2410
2308
|
}>;
|
|
2411
|
-
type
|
|
2309
|
+
type GetSlotActivityQuery = {
|
|
2412
2310
|
__typename?: 'Query';
|
|
2413
|
-
|
|
2414
|
-
__typename?: '
|
|
2311
|
+
boughtEvents: Array<{
|
|
2312
|
+
__typename?: 'BoughtEvent';
|
|
2415
2313
|
id: string;
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2314
|
+
buyer: string;
|
|
2315
|
+
previousOccupant: string;
|
|
2316
|
+
price: string;
|
|
2317
|
+
selfAssessedPrice: string;
|
|
2318
|
+
deposit: string;
|
|
2319
|
+
timestamp: string;
|
|
2320
|
+
tx: string;
|
|
2321
|
+
}>;
|
|
2322
|
+
releasedEvents: Array<{
|
|
2323
|
+
__typename?: 'ReleasedEvent';
|
|
2324
|
+
id: string;
|
|
2325
|
+
occupant: string;
|
|
2326
|
+
refund: string;
|
|
2327
|
+
timestamp: string;
|
|
2328
|
+
tx: string;
|
|
2329
|
+
}>;
|
|
2330
|
+
liquidatedEvents: Array<{
|
|
2331
|
+
__typename?: 'LiquidatedEvent';
|
|
2332
|
+
id: string;
|
|
2333
|
+
liquidator: string;
|
|
2334
|
+
occupant: string;
|
|
2335
|
+
bounty: string;
|
|
2336
|
+
timestamp: string;
|
|
2337
|
+
tx: string;
|
|
2338
|
+
}>;
|
|
2339
|
+
priceUpdatedEvents: Array<{
|
|
2340
|
+
__typename?: 'PriceUpdatedEvent';
|
|
2341
|
+
id: string;
|
|
2342
|
+
oldPrice: string;
|
|
2343
|
+
newPrice: string;
|
|
2344
|
+
timestamp: string;
|
|
2345
|
+
tx: string;
|
|
2346
|
+
}>;
|
|
2347
|
+
depositedEvents: Array<{
|
|
2348
|
+
__typename?: 'DepositedEvent';
|
|
2349
|
+
id: string;
|
|
2350
|
+
depositor: string;
|
|
2351
|
+
amount: string;
|
|
2352
|
+
timestamp: string;
|
|
2353
|
+
tx: string;
|
|
2354
|
+
}>;
|
|
2355
|
+
withdrawnEvents: Array<{
|
|
2356
|
+
__typename?: 'WithdrawnEvent';
|
|
2357
|
+
id: string;
|
|
2358
|
+
occupant: string;
|
|
2359
|
+
amount: string;
|
|
2360
|
+
timestamp: string;
|
|
2361
|
+
tx: string;
|
|
2362
|
+
}>;
|
|
2363
|
+
taxCollectedEvents: Array<{
|
|
2364
|
+
__typename?: 'TaxCollectedEvent';
|
|
2365
|
+
id: string;
|
|
2366
|
+
recipient: string;
|
|
2367
|
+
amount: string;
|
|
2368
|
+
timestamp: string;
|
|
2369
|
+
tx: string;
|
|
2370
|
+
}>;
|
|
2371
|
+
taxUpdateProposedEvents: Array<{
|
|
2372
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
2373
|
+
id: string;
|
|
2374
|
+
newPercentage: string;
|
|
2375
|
+
timestamp: string;
|
|
2376
|
+
tx: string;
|
|
2377
|
+
}>;
|
|
2378
|
+
moduleUpdateProposedEvents: Array<{
|
|
2379
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
2380
|
+
id: string;
|
|
2381
|
+
newModule: string;
|
|
2382
|
+
timestamp: string;
|
|
2383
|
+
tx: string;
|
|
2384
|
+
}>;
|
|
2385
|
+
pendingUpdateCancelledEvents: Array<{
|
|
2386
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
2387
|
+
id: string;
|
|
2388
|
+
timestamp: string;
|
|
2389
|
+
tx: string;
|
|
2390
|
+
}>;
|
|
2434
2391
|
};
|
|
2435
|
-
type
|
|
2436
|
-
|
|
2437
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2392
|
+
type GetFactoryQueryVariables = Exact<{
|
|
2393
|
+
[key: string]: never;
|
|
2438
2394
|
}>;
|
|
2439
|
-
type
|
|
2395
|
+
type GetFactoryQuery = {
|
|
2440
2396
|
__typename?: 'Query';
|
|
2441
|
-
|
|
2442
|
-
__typename?: '
|
|
2397
|
+
factories: Array<{
|
|
2398
|
+
__typename?: 'Factory';
|
|
2443
2399
|
id: string;
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2400
|
+
slotCount: string;
|
|
2401
|
+
}>;
|
|
2402
|
+
};
|
|
2403
|
+
type GetModulesQueryVariables = Exact<{
|
|
2404
|
+
first: Scalars['Int']['input'];
|
|
2405
|
+
}>;
|
|
2406
|
+
type GetModulesQuery = {
|
|
2407
|
+
__typename?: 'Query';
|
|
2408
|
+
modules: Array<{
|
|
2409
|
+
__typename?: 'Module';
|
|
2410
|
+
id: string;
|
|
2411
|
+
verified: boolean;
|
|
2412
|
+
name: string;
|
|
2413
|
+
version: string;
|
|
2447
2414
|
}>;
|
|
2448
2415
|
};
|
|
2416
|
+
type SlotFieldsFragment = {
|
|
2417
|
+
__typename?: 'Slot';
|
|
2418
|
+
id: string;
|
|
2419
|
+
recipient: string;
|
|
2420
|
+
currency: string;
|
|
2421
|
+
currencyName?: string | null;
|
|
2422
|
+
currencySymbol?: string | null;
|
|
2423
|
+
currencyDecimals?: number | null;
|
|
2424
|
+
manager: string;
|
|
2425
|
+
mutableTax: boolean;
|
|
2426
|
+
mutableModule: boolean;
|
|
2427
|
+
taxPercentage: string;
|
|
2428
|
+
occupant?: string | null;
|
|
2429
|
+
price: string;
|
|
2430
|
+
deposit: string;
|
|
2431
|
+
collectedTax: string;
|
|
2432
|
+
totalCollected: string;
|
|
2433
|
+
liquidationBountyBps: string;
|
|
2434
|
+
minDepositSeconds: string;
|
|
2435
|
+
createdAt: string;
|
|
2436
|
+
createdTx: string;
|
|
2437
|
+
updatedAt: string;
|
|
2438
|
+
recipientAccount: {
|
|
2439
|
+
__typename?: 'Account';
|
|
2440
|
+
id: string;
|
|
2441
|
+
slotCount: number;
|
|
2442
|
+
occupiedCount: number;
|
|
2443
|
+
};
|
|
2444
|
+
module?: {
|
|
2445
|
+
__typename?: 'Module';
|
|
2446
|
+
id: string;
|
|
2447
|
+
verified: boolean;
|
|
2448
|
+
name: string;
|
|
2449
|
+
version: string;
|
|
2450
|
+
} | null;
|
|
2451
|
+
occupantAccount?: {
|
|
2452
|
+
__typename?: 'Account';
|
|
2453
|
+
id: string;
|
|
2454
|
+
slotCount: number;
|
|
2455
|
+
occupiedCount: number;
|
|
2456
|
+
} | null;
|
|
2457
|
+
};
|
|
2449
2458
|
type GetSlotsQueryVariables = Exact<{
|
|
2450
|
-
first
|
|
2459
|
+
first: Scalars['Int']['input'];
|
|
2451
2460
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2452
2461
|
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2453
2462
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
2454
2463
|
where?: InputMaybe<Slot_Filter>;
|
|
2464
|
+
block?: InputMaybe<Block_Height>;
|
|
2455
2465
|
}>;
|
|
2456
2466
|
type GetSlotsQuery = {
|
|
2457
2467
|
__typename?: 'Query';
|
|
2458
2468
|
slots: Array<{
|
|
2459
2469
|
__typename?: 'Slot';
|
|
2460
2470
|
id: string;
|
|
2461
|
-
|
|
2462
|
-
occupant?: string | null;
|
|
2471
|
+
recipient: string;
|
|
2463
2472
|
currency: string;
|
|
2464
|
-
|
|
2465
|
-
|
|
2473
|
+
currencyName?: string | null;
|
|
2474
|
+
currencySymbol?: string | null;
|
|
2475
|
+
currencyDecimals?: number | null;
|
|
2476
|
+
manager: string;
|
|
2477
|
+
mutableTax: boolean;
|
|
2478
|
+
mutableModule: boolean;
|
|
2466
2479
|
taxPercentage: string;
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2480
|
+
occupant?: string | null;
|
|
2481
|
+
price: string;
|
|
2482
|
+
deposit: string;
|
|
2483
|
+
collectedTax: string;
|
|
2484
|
+
totalCollected: string;
|
|
2485
|
+
liquidationBountyBps: string;
|
|
2486
|
+
minDepositSeconds: string;
|
|
2471
2487
|
createdAt: string;
|
|
2488
|
+
createdTx: string;
|
|
2472
2489
|
updatedAt: string;
|
|
2473
|
-
|
|
2474
|
-
__typename?: '
|
|
2490
|
+
recipientAccount: {
|
|
2491
|
+
__typename?: 'Account';
|
|
2475
2492
|
id: string;
|
|
2476
|
-
|
|
2493
|
+
slotCount: number;
|
|
2494
|
+
occupiedCount: number;
|
|
2477
2495
|
};
|
|
2496
|
+
module?: {
|
|
2497
|
+
__typename?: 'Module';
|
|
2498
|
+
id: string;
|
|
2499
|
+
verified: boolean;
|
|
2500
|
+
name: string;
|
|
2501
|
+
version: string;
|
|
2502
|
+
} | null;
|
|
2503
|
+
occupantAccount?: {
|
|
2504
|
+
__typename?: 'Account';
|
|
2505
|
+
id: string;
|
|
2506
|
+
slotCount: number;
|
|
2507
|
+
occupiedCount: number;
|
|
2508
|
+
} | null;
|
|
2478
2509
|
}>;
|
|
2479
2510
|
};
|
|
2480
2511
|
type GetSlotQueryVariables = Exact<{
|
|
2481
2512
|
id: Scalars['ID']['input'];
|
|
2513
|
+
block?: InputMaybe<Block_Height>;
|
|
2482
2514
|
}>;
|
|
2483
2515
|
type GetSlotQuery = {
|
|
2484
2516
|
__typename?: 'Query';
|
|
2485
2517
|
slot?: {
|
|
2486
2518
|
__typename?: 'Slot';
|
|
2487
2519
|
id: string;
|
|
2488
|
-
|
|
2489
|
-
occupant?: string | null;
|
|
2520
|
+
recipient: string;
|
|
2490
2521
|
currency: string;
|
|
2491
|
-
|
|
2492
|
-
|
|
2522
|
+
currencyName?: string | null;
|
|
2523
|
+
currencySymbol?: string | null;
|
|
2524
|
+
currencyDecimals?: number | null;
|
|
2525
|
+
manager: string;
|
|
2526
|
+
mutableTax: boolean;
|
|
2527
|
+
mutableModule: boolean;
|
|
2493
2528
|
taxPercentage: string;
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2529
|
+
occupant?: string | null;
|
|
2530
|
+
price: string;
|
|
2531
|
+
deposit: string;
|
|
2532
|
+
collectedTax: string;
|
|
2533
|
+
totalCollected: string;
|
|
2534
|
+
liquidationBountyBps: string;
|
|
2535
|
+
minDepositSeconds: string;
|
|
2498
2536
|
createdAt: string;
|
|
2537
|
+
createdTx: string;
|
|
2499
2538
|
updatedAt: string;
|
|
2500
|
-
|
|
2501
|
-
__typename?: '
|
|
2539
|
+
recipientAccount: {
|
|
2540
|
+
__typename?: 'Account';
|
|
2502
2541
|
id: string;
|
|
2503
|
-
|
|
2542
|
+
slotCount: number;
|
|
2543
|
+
occupiedCount: number;
|
|
2504
2544
|
};
|
|
2505
|
-
|
|
2506
|
-
__typename?: '
|
|
2545
|
+
module?: {
|
|
2546
|
+
__typename?: 'Module';
|
|
2507
2547
|
id: string;
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
__typename?: 'TaxRateChange';
|
|
2548
|
+
verified: boolean;
|
|
2549
|
+
name: string;
|
|
2550
|
+
version: string;
|
|
2551
|
+
} | null;
|
|
2552
|
+
occupantAccount?: {
|
|
2553
|
+
__typename?: 'Account';
|
|
2515
2554
|
id: string;
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
confirmableAt?: string | null;
|
|
2520
|
-
timestamp: string;
|
|
2521
|
-
tx: string;
|
|
2522
|
-
}>;
|
|
2555
|
+
slotCount: number;
|
|
2556
|
+
occupiedCount: number;
|
|
2557
|
+
} | null;
|
|
2523
2558
|
} | null;
|
|
2524
2559
|
};
|
|
2525
|
-
type
|
|
2526
|
-
|
|
2527
|
-
first
|
|
2560
|
+
type GetSlotsByRecipientQueryVariables = Exact<{
|
|
2561
|
+
recipient: Scalars['Bytes']['input'];
|
|
2562
|
+
first: Scalars['Int']['input'];
|
|
2563
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2564
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2565
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2566
|
+
block?: InputMaybe<Block_Height>;
|
|
2528
2567
|
}>;
|
|
2529
|
-
type
|
|
2568
|
+
type GetSlotsByRecipientQuery = {
|
|
2530
2569
|
__typename?: 'Query';
|
|
2531
2570
|
slots: Array<{
|
|
2532
2571
|
__typename?: 'Slot';
|
|
2533
2572
|
id: string;
|
|
2534
|
-
|
|
2573
|
+
recipient: string;
|
|
2574
|
+
currency: string;
|
|
2575
|
+
currencyName?: string | null;
|
|
2576
|
+
currencySymbol?: string | null;
|
|
2577
|
+
currencyDecimals?: number | null;
|
|
2578
|
+
manager: string;
|
|
2579
|
+
mutableTax: boolean;
|
|
2580
|
+
mutableModule: boolean;
|
|
2581
|
+
taxPercentage: string;
|
|
2535
2582
|
occupant?: string | null;
|
|
2536
2583
|
price: string;
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2584
|
+
deposit: string;
|
|
2585
|
+
collectedTax: string;
|
|
2586
|
+
totalCollected: string;
|
|
2587
|
+
liquidationBountyBps: string;
|
|
2588
|
+
minDepositSeconds: string;
|
|
2589
|
+
createdAt: string;
|
|
2590
|
+
createdTx: string;
|
|
2591
|
+
updatedAt: string;
|
|
2592
|
+
recipientAccount: {
|
|
2593
|
+
__typename?: 'Account';
|
|
2541
2594
|
id: string;
|
|
2595
|
+
slotCount: number;
|
|
2596
|
+
occupiedCount: number;
|
|
2542
2597
|
};
|
|
2598
|
+
module?: {
|
|
2599
|
+
__typename?: 'Module';
|
|
2600
|
+
id: string;
|
|
2601
|
+
verified: boolean;
|
|
2602
|
+
name: string;
|
|
2603
|
+
version: string;
|
|
2604
|
+
} | null;
|
|
2605
|
+
occupantAccount?: {
|
|
2606
|
+
__typename?: 'Account';
|
|
2607
|
+
id: string;
|
|
2608
|
+
slotCount: number;
|
|
2609
|
+
occupiedCount: number;
|
|
2610
|
+
} | null;
|
|
2543
2611
|
}>;
|
|
2544
2612
|
};
|
|
2545
|
-
type
|
|
2546
|
-
|
|
2613
|
+
type GetSlotsByOccupantQueryVariables = Exact<{
|
|
2614
|
+
occupant: Scalars['Bytes']['input'];
|
|
2615
|
+
first: Scalars['Int']['input'];
|
|
2547
2616
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2617
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
2618
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2619
|
+
block?: InputMaybe<Block_Height>;
|
|
2548
2620
|
}>;
|
|
2549
|
-
type
|
|
2621
|
+
type GetSlotsByOccupantQuery = {
|
|
2550
2622
|
__typename?: 'Query';
|
|
2551
2623
|
slots: Array<{
|
|
2552
2624
|
__typename?: 'Slot';
|
|
2553
2625
|
id: string;
|
|
2554
|
-
|
|
2626
|
+
recipient: string;
|
|
2555
2627
|
currency: string;
|
|
2556
|
-
|
|
2628
|
+
currencyName?: string | null;
|
|
2629
|
+
currencySymbol?: string | null;
|
|
2630
|
+
currencyDecimals?: number | null;
|
|
2631
|
+
manager: string;
|
|
2632
|
+
mutableTax: boolean;
|
|
2633
|
+
mutableModule: boolean;
|
|
2557
2634
|
taxPercentage: string;
|
|
2558
|
-
|
|
2559
|
-
|
|
2635
|
+
occupant?: string | null;
|
|
2636
|
+
price: string;
|
|
2637
|
+
deposit: string;
|
|
2638
|
+
collectedTax: string;
|
|
2639
|
+
totalCollected: string;
|
|
2640
|
+
liquidationBountyBps: string;
|
|
2641
|
+
minDepositSeconds: string;
|
|
2642
|
+
createdAt: string;
|
|
2643
|
+
createdTx: string;
|
|
2644
|
+
updatedAt: string;
|
|
2645
|
+
recipientAccount: {
|
|
2646
|
+
__typename?: 'Account';
|
|
2560
2647
|
id: string;
|
|
2561
|
-
|
|
2648
|
+
slotCount: number;
|
|
2649
|
+
occupiedCount: number;
|
|
2562
2650
|
};
|
|
2651
|
+
module?: {
|
|
2652
|
+
__typename?: 'Module';
|
|
2653
|
+
id: string;
|
|
2654
|
+
verified: boolean;
|
|
2655
|
+
name: string;
|
|
2656
|
+
version: string;
|
|
2657
|
+
} | null;
|
|
2658
|
+
occupantAccount?: {
|
|
2659
|
+
__typename?: 'Account';
|
|
2660
|
+
id: string;
|
|
2661
|
+
slotCount: number;
|
|
2662
|
+
occupiedCount: number;
|
|
2663
|
+
} | null;
|
|
2563
2664
|
}>;
|
|
2564
2665
|
};
|
|
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
|
|
2666
|
+
declare const AccountFieldsFragmentDoc: graphql.DocumentNode;
|
|
2667
|
+
declare const SlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
2668
|
+
declare const GetAccountDocument: graphql.DocumentNode;
|
|
2669
|
+
declare const GetAccountsDocument: graphql.DocumentNode;
|
|
2670
|
+
declare const GetRecentEventsDocument: graphql.DocumentNode;
|
|
2671
|
+
declare const GetBoughtEventsDocument: graphql.DocumentNode;
|
|
2672
|
+
declare const GetReleasedEventsDocument: graphql.DocumentNode;
|
|
2673
|
+
declare const GetLiquidatedEventsDocument: graphql.DocumentNode;
|
|
2674
|
+
declare const GetSettledEventsDocument: graphql.DocumentNode;
|
|
2675
|
+
declare const GetTaxCollectedEventsDocument: graphql.DocumentNode;
|
|
2676
|
+
declare const GetDepositedEventsDocument: graphql.DocumentNode;
|
|
2677
|
+
declare const GetWithdrawnEventsDocument: graphql.DocumentNode;
|
|
2678
|
+
declare const GetPriceUpdatedEventsDocument: graphql.DocumentNode;
|
|
2679
|
+
declare const GetSlotActivityDocument: graphql.DocumentNode;
|
|
2680
|
+
declare const GetFactoryDocument: graphql.DocumentNode;
|
|
2681
|
+
declare const GetModulesDocument: graphql.DocumentNode;
|
|
2575
2682
|
declare const GetSlotsDocument: graphql.DocumentNode;
|
|
2576
2683
|
declare const GetSlotDocument: graphql.DocumentNode;
|
|
2684
|
+
declare const GetSlotsByRecipientDocument: graphql.DocumentNode;
|
|
2577
2685
|
declare const GetSlotsByOccupantDocument: graphql.DocumentNode;
|
|
2578
|
-
declare const GetAvailableSlotsDocument: graphql.DocumentNode;
|
|
2579
2686
|
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
2580
2687
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2688
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
2689
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
2690
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
2691
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
2692
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
2693
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
2694
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
2695
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
2696
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
2697
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
2698
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
2699
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
2700
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
2701
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
2702
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2592
2703
|
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2704
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
2593
2705
|
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2594
|
-
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2595
2706
|
};
|
|
2596
2707
|
type Sdk = ReturnType<typeof getSdk>;
|
|
2597
2708
|
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2709
|
+
interface SubgraphMeta {
|
|
2710
|
+
_meta: {
|
|
2711
|
+
block: {
|
|
2712
|
+
number: number;
|
|
2713
|
+
hash: string;
|
|
2714
|
+
timestamp: number;
|
|
2715
|
+
};
|
|
2716
|
+
hasIndexingErrors: boolean;
|
|
2717
|
+
};
|
|
2718
|
+
}
|
|
2601
2719
|
declare enum SlotsChain {
|
|
2602
2720
|
BASE_SEPOLIA = 84532,
|
|
2603
2721
|
ARBITRUM = 42161
|
|
2604
2722
|
}
|
|
2605
|
-
/**
|
|
2606
|
-
* Subgraph endpoint URLs by chain ID
|
|
2607
|
-
*/
|
|
2608
2723
|
declare const SUBGRAPH_URLS: Record<SlotsChain, string>;
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2724
|
+
interface SlotConfig {
|
|
2725
|
+
mutableTax: boolean;
|
|
2726
|
+
mutableModule: boolean;
|
|
2727
|
+
manager: Address;
|
|
2728
|
+
}
|
|
2729
|
+
interface SlotInitParams {
|
|
2730
|
+
taxPercentage: bigint;
|
|
2731
|
+
module: Address;
|
|
2732
|
+
liquidationBountyBps: bigint;
|
|
2733
|
+
minDepositSeconds: bigint;
|
|
2734
|
+
}
|
|
2735
|
+
interface CreateSlotParams {
|
|
2736
|
+
recipient: Address;
|
|
2737
|
+
currency: Address;
|
|
2738
|
+
config: SlotConfig;
|
|
2739
|
+
initParams: SlotInitParams;
|
|
2740
|
+
}
|
|
2741
|
+
interface CreateSlotsParams extends CreateSlotParams {
|
|
2742
|
+
count: bigint;
|
|
2743
|
+
}
|
|
2744
|
+
interface BuyParams {
|
|
2745
|
+
slot: Address;
|
|
2746
|
+
depositAmount: bigint;
|
|
2747
|
+
selfAssessedPrice: bigint;
|
|
2748
|
+
}
|
|
2612
2749
|
interface SlotsClientConfig {
|
|
2613
|
-
/**
|
|
2614
|
-
* The chain ID to query
|
|
2615
|
-
*/
|
|
2616
2750
|
chainId: SlotsChain;
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2751
|
+
factoryAddress?: Address;
|
|
2752
|
+
publicClient?: PublicClient;
|
|
2753
|
+
walletClient?: WalletClient;
|
|
2620
2754
|
subgraphUrl?: string;
|
|
2621
|
-
/**
|
|
2622
|
-
* Optional headers to include in requests
|
|
2623
|
-
*/
|
|
2624
2755
|
headers?: Record<string, string>;
|
|
2625
2756
|
}
|
|
2626
|
-
/**
|
|
2627
|
-
* Type-safe client for querying 0xSlots subgraph data
|
|
2628
|
-
*/
|
|
2629
2757
|
declare class SlotsClient {
|
|
2630
2758
|
private readonly sdk;
|
|
2631
2759
|
private readonly chainId;
|
|
2632
|
-
private readonly
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
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
|
-
*/
|
|
2760
|
+
private readonly gqlClient;
|
|
2761
|
+
private readonly _publicClient?;
|
|
2762
|
+
private readonly walletClient?;
|
|
2763
|
+
private readonly _factory?;
|
|
2764
|
+
private _atomicSupport;
|
|
2649
2765
|
constructor(config: SlotsClientConfig);
|
|
2650
|
-
/**
|
|
2651
|
-
* Get the current chain ID
|
|
2652
|
-
*/
|
|
2653
2766
|
getChainId(): SlotsChain;
|
|
2654
|
-
/**
|
|
2655
|
-
* Get the underlying GraphQL client
|
|
2656
|
-
*/
|
|
2657
2767
|
getClient(): GraphQLClient;
|
|
2658
|
-
/**
|
|
2659
|
-
* Get the generated SDK with all typed query methods
|
|
2660
|
-
*/
|
|
2661
2768
|
getSdk(): {
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2769
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
2770
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
2771
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
2772
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
2773
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
2774
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
2775
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
2776
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
2777
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
2778
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
2779
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
2780
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
2781
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
2782
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
2783
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2673
2784
|
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2785
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
2674
2786
|
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2675
|
-
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2676
2787
|
};
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2788
|
+
private get publicClient();
|
|
2789
|
+
private get factory();
|
|
2790
|
+
private get wallet();
|
|
2791
|
+
private get account();
|
|
2792
|
+
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetSlots"]>): Promise<GetSlotsQuery>;
|
|
2793
|
+
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetSlot"]>): Promise<GetSlotQuery>;
|
|
2794
|
+
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByRecipient"]>): Promise<GetSlotsByRecipientQuery>;
|
|
2795
|
+
getSlotsByOccupant(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByOccupant"]>): Promise<GetSlotsByOccupantQuery>;
|
|
2796
|
+
getFactory(): Promise<GetFactoryQuery>;
|
|
2797
|
+
getModules(...args: Parameters<ReturnType<typeof getSdk>["GetModules"]>): Promise<GetModulesQuery>;
|
|
2798
|
+
getBoughtEvents(...args: Parameters<ReturnType<typeof getSdk>["GetBoughtEvents"]>): Promise<GetBoughtEventsQuery>;
|
|
2799
|
+
getSettledEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSettledEvents"]>): Promise<GetSettledEventsQuery>;
|
|
2800
|
+
getTaxCollectedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetTaxCollectedEvents"]>): Promise<GetTaxCollectedEventsQuery>;
|
|
2801
|
+
getSlotActivity(...args: Parameters<ReturnType<typeof getSdk>["GetSlotActivity"]>): Promise<GetSlotActivityQuery>;
|
|
2802
|
+
getRecentEvents(...args: Parameters<ReturnType<typeof getSdk>["GetRecentEvents"]>): Promise<GetRecentEventsQuery>;
|
|
2803
|
+
getAccount(...args: Parameters<ReturnType<typeof getSdk>["GetAccount"]>): Promise<GetAccountQuery>;
|
|
2804
|
+
getAccounts(...args: Parameters<ReturnType<typeof getSdk>["GetAccounts"]>): Promise<GetAccountsQuery>;
|
|
2805
|
+
getReleasedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetReleasedEvents"]>): Promise<GetReleasedEventsQuery>;
|
|
2806
|
+
getLiquidatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetLiquidatedEvents"]>): Promise<GetLiquidatedEventsQuery>;
|
|
2807
|
+
getDepositedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetDepositedEvents"]>): Promise<GetDepositedEventsQuery>;
|
|
2808
|
+
getWithdrawnEvents(...args: Parameters<ReturnType<typeof getSdk>["GetWithdrawnEvents"]>): Promise<GetWithdrawnEventsQuery>;
|
|
2809
|
+
getPriceUpdatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetPriceUpdatedEvents"]>): Promise<GetPriceUpdatedEventsQuery>;
|
|
2810
|
+
getMeta(): Promise<SubgraphMeta>;
|
|
2811
|
+
/** Read full slot info from on-chain (RPC, not subgraph). */
|
|
2812
|
+
getSlotInfo(slot: Address): Promise<{
|
|
2813
|
+
recipient: `0x${string}`;
|
|
2814
|
+
currency: `0x${string}`;
|
|
2815
|
+
manager: `0x${string}`;
|
|
2816
|
+
mutableTax: boolean;
|
|
2817
|
+
mutableModule: boolean;
|
|
2818
|
+
occupant: `0x${string}`;
|
|
2819
|
+
price: bigint;
|
|
2820
|
+
taxPercentage: bigint;
|
|
2821
|
+
module: `0x${string}`;
|
|
2822
|
+
liquidationBountyBps: bigint;
|
|
2823
|
+
minDepositSeconds: bigint;
|
|
2824
|
+
deposit: bigint;
|
|
2825
|
+
collectedTax: bigint;
|
|
2826
|
+
taxOwed: bigint;
|
|
2827
|
+
secondsUntilLiquidation: bigint;
|
|
2828
|
+
insolvent: boolean;
|
|
2829
|
+
hasPendingTax: boolean;
|
|
2830
|
+
pendingTaxPercentage: bigint;
|
|
2831
|
+
hasPendingModule: boolean;
|
|
2832
|
+
pendingModule: `0x${string}`;
|
|
2833
|
+
}>;
|
|
2834
|
+
createSlot(params: CreateSlotParams): Promise<Hash>;
|
|
2835
|
+
createSlots(params: CreateSlotsParams): Promise<Hash>;
|
|
2836
|
+
/** Buy a slot (or force buy an occupied one). Handles ERC-20 approval automatically. */
|
|
2837
|
+
buy(params: BuyParams): Promise<Hash>;
|
|
2838
|
+
/** Self-assess a new price for an occupied slot (occupant only). */
|
|
2839
|
+
selfAssess(slot: Address, newPrice: bigint): Promise<Hash>;
|
|
2840
|
+
/** Top up deposit on a slot (occupant only). Handles ERC-20 approval automatically. */
|
|
2841
|
+
topUp(slot: Address, amount: bigint): Promise<Hash>;
|
|
2842
|
+
/** Withdraw from deposit (occupant only). Cannot go below minimum deposit. */
|
|
2843
|
+
withdraw(slot: Address, amount: bigint): Promise<Hash>;
|
|
2844
|
+
/** Release a slot (occupant only). Returns remaining deposit. */
|
|
2845
|
+
release(slot: Address): Promise<Hash>;
|
|
2846
|
+
/** Collect accumulated tax (permissionless). */
|
|
2847
|
+
collect(slot: Address): Promise<Hash>;
|
|
2848
|
+
/** Liquidate an insolvent slot (permissionless). Caller receives bounty. */
|
|
2849
|
+
liquidate(slot: Address): Promise<Hash>;
|
|
2850
|
+
/** Propose a tax rate update (manager only, slot must have mutableTax). */
|
|
2851
|
+
proposeTaxUpdate(slot: Address, newPct: bigint): Promise<Hash>;
|
|
2852
|
+
/** Propose a module update (manager only, slot must have mutableModule). */
|
|
2853
|
+
proposeModuleUpdate(slot: Address, newModule: Address): Promise<Hash>;
|
|
2854
|
+
/** Cancel pending updates (manager only). */
|
|
2855
|
+
cancelPendingUpdates(slot: Address): Promise<Hash>;
|
|
2856
|
+
/** Set liquidation bounty bps (manager only). */
|
|
2857
|
+
setLiquidationBounty(slot: Address, newBps: bigint): Promise<Hash>;
|
|
2858
|
+
/** Batch multiple slot calls into one transaction via multicall. */
|
|
2859
|
+
multicall(slot: Address, calls: {
|
|
2860
|
+
functionName: string;
|
|
2861
|
+
args?: any[];
|
|
2862
|
+
}[]): Promise<Hash>;
|
|
2863
|
+
/** Check if wallet supports atomic batch calls (EIP-5792). */
|
|
2864
|
+
private supportsAtomicBatch;
|
|
2865
|
+
/** Poll EIP-5792 getCallsStatus until the batch settles, then return a tx hash. */
|
|
2866
|
+
private pollBatchReceipt;
|
|
2867
|
+
/**
|
|
2868
|
+
* Execute a contract call that needs ERC-20 allowance.
|
|
2869
|
+
* If wallet supports atomic batch (EIP-5792): sends approve + action as one atomic call.
|
|
2870
|
+
* Otherwise: chains approve tx (if needed) then action tx.
|
|
2871
|
+
*/
|
|
2872
|
+
private withAllowance;
|
|
2691
2873
|
}
|
|
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
2874
|
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
2708
2875
|
|
|
2709
|
-
export { type
|
|
2876
|
+
export { type Account, type AccountFieldsFragment, AccountFieldsFragmentDoc, type AccountSlotsAsOccupantArgs, type AccountSlotsAsRecipientArgs, type Account_Filter, type Account_OrderBy, type Aggregation_Current, type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type BoughtEvent, type BoughtEvent_Filter, type BoughtEvent_OrderBy, type BuyParams, type CreateSlotParams, type CreateSlotsParams, 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 ModuleUpdateProposedEvent, type ModuleUpdateProposedEvent_Filter, type ModuleUpdateProposedEvent_OrderBy, type Module_Filter, type Module_OrderBy, type OrderDirection, type PendingUpdateCancelledEvent, type PendingUpdateCancelledEvent_Filter, type PendingUpdateCancelledEvent_OrderBy, 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 QueryModuleUpdateProposedEventArgs, type QueryModuleUpdateProposedEventsArgs, type QueryModulesArgs, type QueryPendingUpdateCancelledEventArgs, type QueryPendingUpdateCancelledEventsArgs, type QueryPriceUpdatedEventArgs, type QueryPriceUpdatedEventsArgs, type QueryReleasedEventArgs, type QueryReleasedEventsArgs, type QuerySettledEventArgs, type QuerySettledEventsArgs, type QuerySlotArgs, type QuerySlotsArgs, type QueryTaxCollectedEventArgs, type QueryTaxCollectedEventsArgs, type QueryTaxUpdateProposedEventArgs, type QueryTaxUpdateProposedEventsArgs, 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 SlotConfig, type SlotDepositsArgs, type SlotFieldsFragment, SlotFieldsFragmentDoc, type SlotInitParams, type SlotLiquidationsArgs, type SlotModuleUpdateProposalsArgs, type SlotPendingUpdateCancellationsArgs, type SlotPriceUpdatesArgs, type SlotPurchasesArgs, type SlotReleasesArgs, type SlotSettlementsArgs, type SlotTaxCollectionsArgs, type SlotTaxUpdateProposalsArgs, type SlotWithdrawalsArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, type SubgraphMeta, type TaxCollectedEvent, type TaxCollectedEvent_Filter, type TaxCollectedEvent_OrderBy, type TaxUpdateProposedEvent, type TaxUpdateProposedEvent_Filter, type TaxUpdateProposedEvent_OrderBy, type WithdrawnEvent, type WithdrawnEvent_Filter, type WithdrawnEvent_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|