@0xslots/sdk 0.9.2 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-KRJINGNH.js +1582 -0
- package/dist/chunk-KRJINGNH.js.map +1 -0
- package/dist/client-BtZNzXuf.d.ts +4554 -0
- package/dist/index.d.ts +5 -4161
- package/dist/index.js +1 -1576
- package/dist/index.js.map +1 -1
- package/dist/react.d.ts +100 -0
- package/dist/react.js +320 -0
- package/dist/react.js.map +1 -0
- package/package.json +27 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,4163 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
type Maybe<T> = T | null;
|
|
6
|
-
type InputMaybe<T> = T | null;
|
|
7
|
-
type Exact<T extends {
|
|
8
|
-
[key: string]: unknown;
|
|
9
|
-
}> = {
|
|
10
|
-
[K in keyof T]: T[K];
|
|
11
|
-
};
|
|
12
|
-
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
-
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
14
|
-
};
|
|
15
|
-
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
16
|
-
[SubKey in K]: Maybe<T[SubKey]>;
|
|
17
|
-
};
|
|
18
|
-
type MakeEmpty<T extends {
|
|
19
|
-
[key: string]: unknown;
|
|
20
|
-
}, K extends keyof T> = {
|
|
21
|
-
[_ in K]?: never;
|
|
22
|
-
};
|
|
23
|
-
type Incremental<T> = T | {
|
|
24
|
-
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
25
|
-
};
|
|
26
|
-
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
|
|
27
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
28
|
-
type Scalars = {
|
|
29
|
-
ID: {
|
|
30
|
-
input: string;
|
|
31
|
-
output: string;
|
|
32
|
-
};
|
|
33
|
-
String: {
|
|
34
|
-
input: string;
|
|
35
|
-
output: string;
|
|
36
|
-
};
|
|
37
|
-
Boolean: {
|
|
38
|
-
input: boolean;
|
|
39
|
-
output: boolean;
|
|
40
|
-
};
|
|
41
|
-
Int: {
|
|
42
|
-
input: number;
|
|
43
|
-
output: number;
|
|
44
|
-
};
|
|
45
|
-
Float: {
|
|
46
|
-
input: number;
|
|
47
|
-
output: number;
|
|
48
|
-
};
|
|
49
|
-
BigDecimal: {
|
|
50
|
-
input: any;
|
|
51
|
-
output: any;
|
|
52
|
-
};
|
|
53
|
-
BigInt: {
|
|
54
|
-
input: string;
|
|
55
|
-
output: string;
|
|
56
|
-
};
|
|
57
|
-
Bytes: {
|
|
58
|
-
input: string;
|
|
59
|
-
output: string;
|
|
60
|
-
};
|
|
61
|
-
Int8: {
|
|
62
|
-
input: any;
|
|
63
|
-
output: any;
|
|
64
|
-
};
|
|
65
|
-
Timestamp: {
|
|
66
|
-
input: any;
|
|
67
|
-
output: any;
|
|
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
|
-
type: AccountType;
|
|
78
|
-
};
|
|
79
|
-
type AccountSlotsAsOccupantArgs = {
|
|
80
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
82
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
83
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
84
|
-
where?: InputMaybe<Slot_Filter>;
|
|
85
|
-
};
|
|
86
|
-
type AccountSlotsAsRecipientArgs = {
|
|
87
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
89
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
90
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
91
|
-
where?: InputMaybe<Slot_Filter>;
|
|
92
|
-
};
|
|
93
|
-
type AccountType = 'CONTRACT' | 'DELEGATED' | 'EOA' | 'SPLIT';
|
|
94
|
-
type Account_Filter = {
|
|
95
|
-
/** Filter for the block changed event. */
|
|
96
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
97
|
-
and?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
98
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
99
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
100
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
101
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
103
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
104
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
105
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106
|
-
occupiedCount?: InputMaybe<Scalars['Int']['input']>;
|
|
107
|
-
occupiedCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
108
|
-
occupiedCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
-
occupiedCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
110
|
-
occupiedCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
111
|
-
occupiedCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
112
|
-
occupiedCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
113
|
-
occupiedCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
114
|
-
or?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
115
|
-
slotCount?: InputMaybe<Scalars['Int']['input']>;
|
|
116
|
-
slotCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
117
|
-
slotCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
118
|
-
slotCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
119
|
-
slotCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
120
|
-
slotCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
121
|
-
slotCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
122
|
-
slotCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
123
|
-
slotsAsOccupant_?: InputMaybe<Slot_Filter>;
|
|
124
|
-
slotsAsRecipient_?: InputMaybe<Slot_Filter>;
|
|
125
|
-
type?: InputMaybe<AccountType>;
|
|
126
|
-
type_in?: InputMaybe<Array<AccountType>>;
|
|
127
|
-
type_not?: InputMaybe<AccountType>;
|
|
128
|
-
type_not_in?: InputMaybe<Array<AccountType>>;
|
|
129
|
-
};
|
|
130
|
-
type Account_OrderBy = 'id' | 'occupiedCount' | 'slotCount' | 'slotsAsOccupant' | 'slotsAsRecipient' | 'type';
|
|
131
|
-
/** Indicates whether the current, partially filled bucket should be included in the response. Defaults to `exclude` */
|
|
132
|
-
type Aggregation_Current =
|
|
133
|
-
/** Exclude the current, partially filled bucket from the response */
|
|
134
|
-
'exclude'
|
|
135
|
-
/** Include the current, partially filled bucket in the response */
|
|
136
|
-
| 'include';
|
|
137
|
-
type Aggregation_Interval = 'day' | 'hour';
|
|
138
|
-
type BlockChangedFilter = {
|
|
139
|
-
number_gte: Scalars['Int']['input'];
|
|
140
|
-
};
|
|
141
|
-
type Block_Height = {
|
|
142
|
-
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
143
|
-
number?: InputMaybe<Scalars['Int']['input']>;
|
|
144
|
-
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
145
|
-
};
|
|
146
|
-
type BoughtEvent = {
|
|
147
|
-
__typename?: 'BoughtEvent';
|
|
148
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
149
|
-
buyer: Scalars['Bytes']['output'];
|
|
150
|
-
currency: Currency;
|
|
151
|
-
deposit: Scalars['BigInt']['output'];
|
|
152
|
-
id: Scalars['ID']['output'];
|
|
153
|
-
previousOccupant: Scalars['Bytes']['output'];
|
|
154
|
-
price: Scalars['BigInt']['output'];
|
|
155
|
-
selfAssessedPrice: Scalars['BigInt']['output'];
|
|
156
|
-
slot: Slot;
|
|
157
|
-
timestamp: Scalars['BigInt']['output'];
|
|
158
|
-
tx: Scalars['Bytes']['output'];
|
|
159
|
-
};
|
|
160
|
-
type BoughtEvent_Filter = {
|
|
161
|
-
/** Filter for the block changed event. */
|
|
162
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
163
|
-
and?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
164
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
165
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
166
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
167
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
168
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
169
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
170
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
171
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
172
|
-
buyer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
173
|
-
buyer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
174
|
-
buyer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
175
|
-
buyer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
176
|
-
buyer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
177
|
-
buyer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
178
|
-
buyer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
179
|
-
buyer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
180
|
-
buyer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
181
|
-
buyer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
182
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
183
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
184
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
185
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
186
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
187
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
188
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
190
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
191
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
195
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
196
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
198
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
199
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
200
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
201
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
202
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
203
|
-
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
204
|
-
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
205
|
-
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
206
|
-
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
207
|
-
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
208
|
-
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
209
|
-
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
210
|
-
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
211
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
212
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
213
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
214
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
215
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
216
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
217
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
218
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
219
|
-
or?: InputMaybe<Array<InputMaybe<BoughtEvent_Filter>>>;
|
|
220
|
-
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
221
|
-
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
222
|
-
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
223
|
-
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
224
|
-
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
225
|
-
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
226
|
-
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
227
|
-
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
228
|
-
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
229
|
-
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
230
|
-
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
231
|
-
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
232
|
-
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
233
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
234
|
-
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
235
|
-
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
236
|
-
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
237
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
238
|
-
selfAssessedPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
239
|
-
selfAssessedPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
240
|
-
selfAssessedPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
241
|
-
selfAssessedPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
242
|
-
selfAssessedPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
243
|
-
selfAssessedPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
244
|
-
selfAssessedPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
245
|
-
selfAssessedPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
246
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
247
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
248
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
249
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
250
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
251
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
254
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
255
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
256
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
257
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
258
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
259
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
260
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
261
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
262
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
263
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
264
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
265
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
266
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
267
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
268
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
269
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
270
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
271
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
272
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
273
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
274
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
275
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
276
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
277
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
278
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
279
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
280
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
281
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
282
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
283
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
284
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
285
|
-
};
|
|
286
|
-
type BoughtEvent_OrderBy = 'blockNumber' | 'buyer' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deposit' | 'id' | 'previousOccupant' | 'price' | 'selfAssessedPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
287
|
-
type Currency = {
|
|
288
|
-
__typename?: 'Currency';
|
|
289
|
-
decimals: Scalars['Int']['output'];
|
|
290
|
-
id: Scalars['ID']['output'];
|
|
291
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
292
|
-
symbol?: Maybe<Scalars['String']['output']>;
|
|
293
|
-
};
|
|
294
|
-
type Currency_Filter = {
|
|
295
|
-
/** Filter for the block changed event. */
|
|
296
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
297
|
-
and?: InputMaybe<Array<InputMaybe<Currency_Filter>>>;
|
|
298
|
-
decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
299
|
-
decimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
300
|
-
decimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
301
|
-
decimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
302
|
-
decimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
303
|
-
decimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
304
|
-
decimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
305
|
-
decimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
306
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
307
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
308
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
309
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
310
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
311
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
312
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
313
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
314
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
315
|
-
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
316
|
-
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
317
|
-
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
-
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
320
|
-
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
-
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
322
|
-
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
323
|
-
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
324
|
-
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
325
|
-
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
-
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
328
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
329
|
-
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
330
|
-
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
331
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
332
|
-
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
333
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
334
|
-
or?: InputMaybe<Array<InputMaybe<Currency_Filter>>>;
|
|
335
|
-
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
336
|
-
symbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
337
|
-
symbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
338
|
-
symbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
339
|
-
symbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
340
|
-
symbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
341
|
-
symbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
342
|
-
symbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
343
|
-
symbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
344
|
-
symbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
345
|
-
symbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
346
|
-
symbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
347
|
-
symbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
348
|
-
symbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
349
|
-
symbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
350
|
-
symbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
351
|
-
symbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
352
|
-
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
353
|
-
symbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
354
|
-
symbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
355
|
-
};
|
|
356
|
-
type Currency_OrderBy = 'decimals' | 'id' | 'name' | 'symbol';
|
|
357
|
-
type DepositedEvent = {
|
|
358
|
-
__typename?: 'DepositedEvent';
|
|
359
|
-
amount: Scalars['BigInt']['output'];
|
|
360
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
361
|
-
currency: Currency;
|
|
362
|
-
depositor: Scalars['Bytes']['output'];
|
|
363
|
-
id: Scalars['ID']['output'];
|
|
364
|
-
slot: Slot;
|
|
365
|
-
timestamp: Scalars['BigInt']['output'];
|
|
366
|
-
tx: Scalars['Bytes']['output'];
|
|
367
|
-
};
|
|
368
|
-
type DepositedEvent_Filter = {
|
|
369
|
-
/** Filter for the block changed event. */
|
|
370
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
371
|
-
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
372
|
-
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
373
|
-
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
374
|
-
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
375
|
-
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
376
|
-
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
377
|
-
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
378
|
-
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
379
|
-
and?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
380
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
381
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
382
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
383
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
384
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
385
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
386
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
387
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
388
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
389
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
390
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
391
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
392
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
393
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
394
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
395
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
396
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
397
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
398
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
399
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
400
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
401
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
402
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
403
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
404
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
405
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
406
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
407
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
408
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
409
|
-
depositor?: InputMaybe<Scalars['Bytes']['input']>;
|
|
410
|
-
depositor_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
411
|
-
depositor_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
412
|
-
depositor_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
413
|
-
depositor_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
414
|
-
depositor_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
415
|
-
depositor_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
416
|
-
depositor_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
417
|
-
depositor_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
418
|
-
depositor_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
419
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
420
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
421
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
422
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
423
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
424
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
425
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
426
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
427
|
-
or?: InputMaybe<Array<InputMaybe<DepositedEvent_Filter>>>;
|
|
428
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
429
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
430
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
431
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
432
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
433
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
434
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
435
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
436
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
437
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
438
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
439
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
440
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
441
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
442
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
443
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
444
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
445
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
446
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
447
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
448
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
449
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
450
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
451
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
452
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
453
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
454
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
455
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
456
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
457
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
458
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
459
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
460
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
461
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
462
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
463
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
464
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
465
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
466
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
467
|
-
};
|
|
468
|
-
type DepositedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositor' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
469
|
-
type Factory = {
|
|
470
|
-
__typename?: 'Factory';
|
|
471
|
-
id: Scalars['ID']['output'];
|
|
472
|
-
modules: Array<Module>;
|
|
473
|
-
slotCount: Scalars['BigInt']['output'];
|
|
474
|
-
};
|
|
475
|
-
type FactoryModulesArgs = {
|
|
476
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
477
|
-
orderBy?: InputMaybe<Module_OrderBy>;
|
|
478
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
479
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
480
|
-
where?: InputMaybe<Module_Filter>;
|
|
481
|
-
};
|
|
482
|
-
type Factory_Filter = {
|
|
483
|
-
/** Filter for the block changed event. */
|
|
484
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
485
|
-
and?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
486
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
487
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
488
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
489
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
490
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
491
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
492
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
493
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
494
|
-
modules_?: InputMaybe<Module_Filter>;
|
|
495
|
-
or?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
|
|
496
|
-
slotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
497
|
-
slotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
498
|
-
slotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
499
|
-
slotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
500
|
-
slotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
501
|
-
slotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
502
|
-
slotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
503
|
-
slotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
504
|
-
};
|
|
505
|
-
type Factory_OrderBy = 'id' | 'modules' | 'slotCount';
|
|
506
|
-
type LiquidatedEvent = {
|
|
507
|
-
__typename?: 'LiquidatedEvent';
|
|
508
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
509
|
-
bounty: Scalars['BigInt']['output'];
|
|
510
|
-
currency: Currency;
|
|
511
|
-
id: Scalars['ID']['output'];
|
|
512
|
-
liquidator: Scalars['Bytes']['output'];
|
|
513
|
-
occupant: Scalars['Bytes']['output'];
|
|
514
|
-
slot: Slot;
|
|
515
|
-
timestamp: Scalars['BigInt']['output'];
|
|
516
|
-
tx: Scalars['Bytes']['output'];
|
|
517
|
-
};
|
|
518
|
-
type LiquidatedEvent_Filter = {
|
|
519
|
-
/** Filter for the block changed event. */
|
|
520
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
521
|
-
and?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
522
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
523
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
524
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
525
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
526
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
527
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
528
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
529
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
530
|
-
bounty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
531
|
-
bounty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
532
|
-
bounty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
533
|
-
bounty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
534
|
-
bounty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
535
|
-
bounty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
536
|
-
bounty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
537
|
-
bounty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
538
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
539
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
540
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
541
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
542
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
544
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
545
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
546
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
547
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
548
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
549
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
550
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
551
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
552
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
553
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
554
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
555
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
556
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
557
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
558
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
559
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
560
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
561
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
562
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
563
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
564
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
565
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
566
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
567
|
-
liquidator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
568
|
-
liquidator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
569
|
-
liquidator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
570
|
-
liquidator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
571
|
-
liquidator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
572
|
-
liquidator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
573
|
-
liquidator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
574
|
-
liquidator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
575
|
-
liquidator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
576
|
-
liquidator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
577
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
578
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
579
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
580
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
581
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
582
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
583
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
584
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
585
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
586
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
587
|
-
or?: InputMaybe<Array<InputMaybe<LiquidatedEvent_Filter>>>;
|
|
588
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
589
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
590
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
591
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
592
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
593
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
594
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
596
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
597
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
598
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
599
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
600
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
601
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
602
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
603
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
604
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
605
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
606
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
607
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
608
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
609
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
610
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
611
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
612
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
613
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
614
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
615
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
616
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
617
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
618
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
619
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
620
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
621
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
622
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
623
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
624
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
625
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
626
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
627
|
-
};
|
|
628
|
-
type LiquidatedEvent_OrderBy = 'blockNumber' | 'bounty' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'liquidator' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
629
|
-
type MetadataSlot = {
|
|
630
|
-
__typename?: 'MetadataSlot';
|
|
631
|
-
createdAt: Scalars['BigInt']['output'];
|
|
632
|
-
createdTx: Scalars['Bytes']['output'];
|
|
633
|
-
id: Scalars['ID']['output'];
|
|
634
|
-
slot: Slot;
|
|
635
|
-
updateCount: Scalars['BigInt']['output'];
|
|
636
|
-
updatedAt: Scalars['BigInt']['output'];
|
|
637
|
-
updatedBy: Scalars['Bytes']['output'];
|
|
638
|
-
updatedTx: Scalars['Bytes']['output'];
|
|
639
|
-
uri: Scalars['String']['output'];
|
|
640
|
-
};
|
|
641
|
-
type MetadataSlot_Filter = {
|
|
642
|
-
/** Filter for the block changed event. */
|
|
643
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
644
|
-
and?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
645
|
-
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
646
|
-
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
647
|
-
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
648
|
-
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
649
|
-
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
650
|
-
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
651
|
-
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
652
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
653
|
-
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
654
|
-
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
655
|
-
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
656
|
-
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
657
|
-
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
658
|
-
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
659
|
-
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
660
|
-
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
661
|
-
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
662
|
-
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
663
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
664
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
665
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
666
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
667
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
670
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
671
|
-
or?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
672
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
673
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
674
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
675
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
676
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
677
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
679
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
680
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
681
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
682
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
683
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
684
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
686
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
687
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
688
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
689
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
691
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
692
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
693
|
-
updateCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
694
|
-
updateCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
695
|
-
updateCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
696
|
-
updateCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
697
|
-
updateCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
698
|
-
updateCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
699
|
-
updateCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
700
|
-
updateCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
701
|
-
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
702
|
-
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
703
|
-
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
704
|
-
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
705
|
-
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
706
|
-
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
707
|
-
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
708
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
709
|
-
updatedBy?: InputMaybe<Scalars['Bytes']['input']>;
|
|
710
|
-
updatedBy_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
711
|
-
updatedBy_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
712
|
-
updatedBy_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
713
|
-
updatedBy_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
714
|
-
updatedBy_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
715
|
-
updatedBy_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
716
|
-
updatedBy_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
717
|
-
updatedBy_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
718
|
-
updatedBy_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
719
|
-
updatedTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
720
|
-
updatedTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
721
|
-
updatedTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
722
|
-
updatedTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
723
|
-
updatedTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
724
|
-
updatedTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
725
|
-
updatedTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
726
|
-
updatedTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
727
|
-
updatedTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
728
|
-
updatedTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
729
|
-
uri?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
-
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
-
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
-
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
-
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
-
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
735
|
-
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
736
|
-
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
737
|
-
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
-
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
739
|
-
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
-
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
741
|
-
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
742
|
-
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
743
|
-
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
744
|
-
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
745
|
-
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
-
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
747
|
-
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
748
|
-
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
749
|
-
};
|
|
750
|
-
type MetadataSlot_OrderBy = 'createdAt' | 'createdTx' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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' | 'updateCount' | 'updatedAt' | 'updatedBy' | 'updatedTx' | 'uri';
|
|
751
|
-
type MetadataUpdatedEvent = {
|
|
752
|
-
__typename?: 'MetadataUpdatedEvent';
|
|
753
|
-
author: Account;
|
|
754
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
755
|
-
id: Scalars['ID']['output'];
|
|
756
|
-
slot: Slot;
|
|
757
|
-
timestamp: Scalars['BigInt']['output'];
|
|
758
|
-
tx: Scalars['Bytes']['output'];
|
|
759
|
-
uri: Scalars['String']['output'];
|
|
760
|
-
};
|
|
761
|
-
type MetadataUpdatedEvent_Filter = {
|
|
762
|
-
/** Filter for the block changed event. */
|
|
763
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
764
|
-
and?: InputMaybe<Array<InputMaybe<MetadataUpdatedEvent_Filter>>>;
|
|
765
|
-
author?: InputMaybe<Scalars['String']['input']>;
|
|
766
|
-
author_?: InputMaybe<Account_Filter>;
|
|
767
|
-
author_contains?: InputMaybe<Scalars['String']['input']>;
|
|
768
|
-
author_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
769
|
-
author_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
770
|
-
author_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
771
|
-
author_gt?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
-
author_gte?: InputMaybe<Scalars['String']['input']>;
|
|
773
|
-
author_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
774
|
-
author_lt?: InputMaybe<Scalars['String']['input']>;
|
|
775
|
-
author_lte?: InputMaybe<Scalars['String']['input']>;
|
|
776
|
-
author_not?: InputMaybe<Scalars['String']['input']>;
|
|
777
|
-
author_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
778
|
-
author_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
779
|
-
author_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
780
|
-
author_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
781
|
-
author_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
782
|
-
author_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
783
|
-
author_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
784
|
-
author_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
785
|
-
author_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
786
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
787
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
788
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
789
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
790
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
791
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
792
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
793
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
794
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
795
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
796
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
797
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
798
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
799
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
800
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
801
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
802
|
-
or?: InputMaybe<Array<InputMaybe<MetadataUpdatedEvent_Filter>>>;
|
|
803
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
804
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
805
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
806
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
807
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
808
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
809
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
810
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
811
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
812
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
813
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
814
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
815
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
816
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
817
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
818
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
819
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
820
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
821
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
822
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
823
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
824
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
825
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
826
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
827
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
828
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
829
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
830
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
831
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
832
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
833
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
834
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
835
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
836
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
837
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
838
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
839
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
840
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
841
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
842
|
-
uri?: InputMaybe<Scalars['String']['input']>;
|
|
843
|
-
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
844
|
-
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
845
|
-
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
846
|
-
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
847
|
-
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
848
|
-
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
849
|
-
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
850
|
-
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
851
|
-
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
852
|
-
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
853
|
-
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
854
|
-
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
855
|
-
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
856
|
-
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
857
|
-
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
858
|
-
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
859
|
-
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
860
|
-
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
861
|
-
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
862
|
-
};
|
|
863
|
-
type MetadataUpdatedEvent_OrderBy = 'author' | 'author__id' | 'author__occupiedCount' | 'author__slotCount' | 'author__type' | 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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' | 'uri';
|
|
864
|
-
type Module = {
|
|
865
|
-
__typename?: 'Module';
|
|
866
|
-
factory: Factory;
|
|
867
|
-
id: Scalars['ID']['output'];
|
|
868
|
-
name: Scalars['String']['output'];
|
|
869
|
-
verified: Scalars['Boolean']['output'];
|
|
870
|
-
version: Scalars['String']['output'];
|
|
871
|
-
};
|
|
872
|
-
type ModuleUpdateProposedEvent = {
|
|
873
|
-
__typename?: 'ModuleUpdateProposedEvent';
|
|
874
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
875
|
-
id: Scalars['ID']['output'];
|
|
876
|
-
newModule: Scalars['Bytes']['output'];
|
|
877
|
-
slot: Slot;
|
|
878
|
-
timestamp: Scalars['BigInt']['output'];
|
|
879
|
-
tx: Scalars['Bytes']['output'];
|
|
880
|
-
};
|
|
881
|
-
type ModuleUpdateProposedEvent_Filter = {
|
|
882
|
-
/** Filter for the block changed event. */
|
|
883
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
884
|
-
and?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
885
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
886
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
887
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
888
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
889
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
890
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
891
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
892
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
893
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
894
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
895
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
896
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
897
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
898
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
899
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
900
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
901
|
-
newModule?: InputMaybe<Scalars['Bytes']['input']>;
|
|
902
|
-
newModule_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
903
|
-
newModule_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
904
|
-
newModule_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
905
|
-
newModule_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
906
|
-
newModule_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
907
|
-
newModule_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
908
|
-
newModule_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
909
|
-
newModule_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
910
|
-
newModule_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
911
|
-
or?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
912
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
913
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
914
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
915
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
916
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
917
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
918
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
919
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
920
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
921
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
922
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
923
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
924
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
925
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
926
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
927
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
928
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
929
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
930
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
931
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
932
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
933
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
934
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
935
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
936
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
937
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
938
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
939
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
940
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
941
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
942
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
943
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
944
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
945
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
946
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
947
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
948
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
949
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
950
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
951
|
-
};
|
|
952
|
-
type ModuleUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newModule' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
953
|
-
type Module_Filter = {
|
|
954
|
-
/** Filter for the block changed event. */
|
|
955
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
956
|
-
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
957
|
-
factory?: InputMaybe<Scalars['String']['input']>;
|
|
958
|
-
factory_?: InputMaybe<Factory_Filter>;
|
|
959
|
-
factory_contains?: InputMaybe<Scalars['String']['input']>;
|
|
960
|
-
factory_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
961
|
-
factory_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
962
|
-
factory_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
963
|
-
factory_gt?: InputMaybe<Scalars['String']['input']>;
|
|
964
|
-
factory_gte?: InputMaybe<Scalars['String']['input']>;
|
|
965
|
-
factory_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
966
|
-
factory_lt?: InputMaybe<Scalars['String']['input']>;
|
|
967
|
-
factory_lte?: InputMaybe<Scalars['String']['input']>;
|
|
968
|
-
factory_not?: InputMaybe<Scalars['String']['input']>;
|
|
969
|
-
factory_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
970
|
-
factory_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
971
|
-
factory_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
972
|
-
factory_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
973
|
-
factory_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
974
|
-
factory_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
975
|
-
factory_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
976
|
-
factory_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
977
|
-
factory_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
978
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
979
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
980
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
981
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
982
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
983
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
984
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
985
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
986
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
987
|
-
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
988
|
-
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
989
|
-
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
990
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
991
|
-
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
992
|
-
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
993
|
-
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
994
|
-
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
995
|
-
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
996
|
-
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
997
|
-
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
998
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
999
|
-
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1000
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1001
|
-
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1002
|
-
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1003
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1004
|
-
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1005
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1006
|
-
or?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
1007
|
-
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1008
|
-
verified_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1009
|
-
verified_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1010
|
-
verified_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1011
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1012
|
-
version_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1013
|
-
version_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1014
|
-
version_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1015
|
-
version_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1016
|
-
version_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1017
|
-
version_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1018
|
-
version_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1019
|
-
version_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1020
|
-
version_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1021
|
-
version_not?: InputMaybe<Scalars['String']['input']>;
|
|
1022
|
-
version_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1023
|
-
version_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1024
|
-
version_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1025
|
-
version_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1026
|
-
version_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1027
|
-
version_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1028
|
-
version_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1029
|
-
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1030
|
-
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1031
|
-
};
|
|
1032
|
-
type Module_OrderBy = 'factory' | 'factory__id' | 'factory__slotCount' | 'id' | 'name' | 'verified' | 'version';
|
|
1033
|
-
/** Defines the order direction, either ascending or descending */
|
|
1034
|
-
type OrderDirection = 'asc' | 'desc';
|
|
1035
|
-
type PendingUpdateCancelledEvent = {
|
|
1036
|
-
__typename?: 'PendingUpdateCancelledEvent';
|
|
1037
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1038
|
-
id: Scalars['ID']['output'];
|
|
1039
|
-
slot: Slot;
|
|
1040
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1041
|
-
tx: Scalars['Bytes']['output'];
|
|
1042
|
-
};
|
|
1043
|
-
type PendingUpdateCancelledEvent_Filter = {
|
|
1044
|
-
/** Filter for the block changed event. */
|
|
1045
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1046
|
-
and?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
1047
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1048
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1049
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1050
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1051
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1052
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1053
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1054
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1055
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1056
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1057
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1058
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1059
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1060
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1061
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1062
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1063
|
-
or?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
1064
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1065
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1066
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1067
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1068
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1069
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1070
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1071
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1072
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1073
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1074
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1075
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1076
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1077
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1078
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1079
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1080
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1081
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1082
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1083
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1084
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1085
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1086
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1087
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1088
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1089
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1090
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1091
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1092
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1093
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1094
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1095
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1096
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1097
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1098
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1099
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1100
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1101
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1102
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1103
|
-
};
|
|
1104
|
-
type PendingUpdateCancelledEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
1105
|
-
type PriceUpdatedEvent = {
|
|
1106
|
-
__typename?: 'PriceUpdatedEvent';
|
|
1107
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1108
|
-
currency: Currency;
|
|
1109
|
-
id: Scalars['ID']['output'];
|
|
1110
|
-
newPrice: Scalars['BigInt']['output'];
|
|
1111
|
-
oldPrice: Scalars['BigInt']['output'];
|
|
1112
|
-
slot: Slot;
|
|
1113
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1114
|
-
tx: Scalars['Bytes']['output'];
|
|
1115
|
-
};
|
|
1116
|
-
type PriceUpdatedEvent_Filter = {
|
|
1117
|
-
/** Filter for the block changed event. */
|
|
1118
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1119
|
-
and?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
1120
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1121
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1122
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1123
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1124
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1125
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1126
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1127
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1128
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1129
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
1130
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1131
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1132
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1133
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1134
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1135
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1136
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1137
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1138
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1139
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1140
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1141
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1142
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1143
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1144
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1145
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1146
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1147
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1148
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1149
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1150
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1151
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1152
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1153
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1154
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1155
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1156
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1157
|
-
newPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
|
-
newPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1159
|
-
newPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1160
|
-
newPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1161
|
-
newPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1162
|
-
newPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1163
|
-
newPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1164
|
-
newPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1165
|
-
oldPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1166
|
-
oldPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1167
|
-
oldPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1168
|
-
oldPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1169
|
-
oldPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1170
|
-
oldPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1171
|
-
oldPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1172
|
-
oldPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1173
|
-
or?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
1174
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1176
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1177
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1178
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1179
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1183
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1190
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1191
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1192
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1193
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1194
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1195
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1196
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1197
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1198
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1199
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1200
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1201
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1202
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1203
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1204
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1205
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1206
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1207
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1208
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1209
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1210
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1211
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1212
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1213
|
-
};
|
|
1214
|
-
type PriceUpdatedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'newPrice' | 'oldPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
1215
|
-
type Query = {
|
|
1216
|
-
__typename?: 'Query';
|
|
1217
|
-
/** Access to subgraph metadata */
|
|
1218
|
-
_meta?: Maybe<_Meta_>;
|
|
1219
|
-
account?: Maybe<Account>;
|
|
1220
|
-
accounts: Array<Account>;
|
|
1221
|
-
boughtEvent?: Maybe<BoughtEvent>;
|
|
1222
|
-
boughtEvents: Array<BoughtEvent>;
|
|
1223
|
-
currencies: Array<Currency>;
|
|
1224
|
-
currency?: Maybe<Currency>;
|
|
1225
|
-
depositedEvent?: Maybe<DepositedEvent>;
|
|
1226
|
-
depositedEvents: Array<DepositedEvent>;
|
|
1227
|
-
factories: Array<Factory>;
|
|
1228
|
-
factory?: Maybe<Factory>;
|
|
1229
|
-
liquidatedEvent?: Maybe<LiquidatedEvent>;
|
|
1230
|
-
liquidatedEvents: Array<LiquidatedEvent>;
|
|
1231
|
-
metadataSlot?: Maybe<MetadataSlot>;
|
|
1232
|
-
metadataSlots: Array<MetadataSlot>;
|
|
1233
|
-
metadataUpdatedEvent?: Maybe<MetadataUpdatedEvent>;
|
|
1234
|
-
metadataUpdatedEvents: Array<MetadataUpdatedEvent>;
|
|
1235
|
-
module?: Maybe<Module>;
|
|
1236
|
-
moduleUpdateProposedEvent?: Maybe<ModuleUpdateProposedEvent>;
|
|
1237
|
-
moduleUpdateProposedEvents: Array<ModuleUpdateProposedEvent>;
|
|
1238
|
-
modules: Array<Module>;
|
|
1239
|
-
pendingUpdateCancelledEvent?: Maybe<PendingUpdateCancelledEvent>;
|
|
1240
|
-
pendingUpdateCancelledEvents: Array<PendingUpdateCancelledEvent>;
|
|
1241
|
-
priceUpdatedEvent?: Maybe<PriceUpdatedEvent>;
|
|
1242
|
-
priceUpdatedEvents: Array<PriceUpdatedEvent>;
|
|
1243
|
-
releasedEvent?: Maybe<ReleasedEvent>;
|
|
1244
|
-
releasedEvents: Array<ReleasedEvent>;
|
|
1245
|
-
settledEvent?: Maybe<SettledEvent>;
|
|
1246
|
-
settledEvents: Array<SettledEvent>;
|
|
1247
|
-
slot?: Maybe<Slot>;
|
|
1248
|
-
slotDeployedEvent?: Maybe<SlotDeployedEvent>;
|
|
1249
|
-
slotDeployedEvents: Array<SlotDeployedEvent>;
|
|
1250
|
-
slots: Array<Slot>;
|
|
1251
|
-
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
1252
|
-
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
1253
|
-
taxUpdateProposedEvent?: Maybe<TaxUpdateProposedEvent>;
|
|
1254
|
-
taxUpdateProposedEvents: Array<TaxUpdateProposedEvent>;
|
|
1255
|
-
withdrawnEvent?: Maybe<WithdrawnEvent>;
|
|
1256
|
-
withdrawnEvents: Array<WithdrawnEvent>;
|
|
1257
|
-
};
|
|
1258
|
-
type Query_MetaArgs = {
|
|
1259
|
-
block?: InputMaybe<Block_Height>;
|
|
1260
|
-
};
|
|
1261
|
-
type QueryAccountArgs = {
|
|
1262
|
-
block?: InputMaybe<Block_Height>;
|
|
1263
|
-
id: Scalars['ID']['input'];
|
|
1264
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1265
|
-
};
|
|
1266
|
-
type QueryAccountsArgs = {
|
|
1267
|
-
block?: InputMaybe<Block_Height>;
|
|
1268
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1269
|
-
orderBy?: InputMaybe<Account_OrderBy>;
|
|
1270
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1271
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1272
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1273
|
-
where?: InputMaybe<Account_Filter>;
|
|
1274
|
-
};
|
|
1275
|
-
type QueryBoughtEventArgs = {
|
|
1276
|
-
block?: InputMaybe<Block_Height>;
|
|
1277
|
-
id: Scalars['ID']['input'];
|
|
1278
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1279
|
-
};
|
|
1280
|
-
type QueryBoughtEventsArgs = {
|
|
1281
|
-
block?: InputMaybe<Block_Height>;
|
|
1282
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1283
|
-
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
1284
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1285
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1286
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1287
|
-
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1288
|
-
};
|
|
1289
|
-
type QueryCurrenciesArgs = {
|
|
1290
|
-
block?: InputMaybe<Block_Height>;
|
|
1291
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1292
|
-
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
1293
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1294
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1295
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1296
|
-
where?: InputMaybe<Currency_Filter>;
|
|
1297
|
-
};
|
|
1298
|
-
type QueryCurrencyArgs = {
|
|
1299
|
-
block?: InputMaybe<Block_Height>;
|
|
1300
|
-
id: Scalars['ID']['input'];
|
|
1301
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1302
|
-
};
|
|
1303
|
-
type QueryDepositedEventArgs = {
|
|
1304
|
-
block?: InputMaybe<Block_Height>;
|
|
1305
|
-
id: Scalars['ID']['input'];
|
|
1306
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1307
|
-
};
|
|
1308
|
-
type QueryDepositedEventsArgs = {
|
|
1309
|
-
block?: InputMaybe<Block_Height>;
|
|
1310
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1311
|
-
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1312
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1313
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1314
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1315
|
-
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1316
|
-
};
|
|
1317
|
-
type QueryFactoriesArgs = {
|
|
1318
|
-
block?: InputMaybe<Block_Height>;
|
|
1319
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1320
|
-
orderBy?: InputMaybe<Factory_OrderBy>;
|
|
1321
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1322
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1323
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1324
|
-
where?: InputMaybe<Factory_Filter>;
|
|
1325
|
-
};
|
|
1326
|
-
type QueryFactoryArgs = {
|
|
1327
|
-
block?: InputMaybe<Block_Height>;
|
|
1328
|
-
id: Scalars['ID']['input'];
|
|
1329
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1330
|
-
};
|
|
1331
|
-
type QueryLiquidatedEventArgs = {
|
|
1332
|
-
block?: InputMaybe<Block_Height>;
|
|
1333
|
-
id: Scalars['ID']['input'];
|
|
1334
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1335
|
-
};
|
|
1336
|
-
type QueryLiquidatedEventsArgs = {
|
|
1337
|
-
block?: InputMaybe<Block_Height>;
|
|
1338
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1339
|
-
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1340
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1341
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1342
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1343
|
-
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1344
|
-
};
|
|
1345
|
-
type QueryMetadataSlotArgs = {
|
|
1346
|
-
block?: InputMaybe<Block_Height>;
|
|
1347
|
-
id: Scalars['ID']['input'];
|
|
1348
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1349
|
-
};
|
|
1350
|
-
type QueryMetadataSlotsArgs = {
|
|
1351
|
-
block?: InputMaybe<Block_Height>;
|
|
1352
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1353
|
-
orderBy?: InputMaybe<MetadataSlot_OrderBy>;
|
|
1354
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1355
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1356
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1357
|
-
where?: InputMaybe<MetadataSlot_Filter>;
|
|
1358
|
-
};
|
|
1359
|
-
type QueryMetadataUpdatedEventArgs = {
|
|
1360
|
-
block?: InputMaybe<Block_Height>;
|
|
1361
|
-
id: Scalars['ID']['input'];
|
|
1362
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1363
|
-
};
|
|
1364
|
-
type QueryMetadataUpdatedEventsArgs = {
|
|
1365
|
-
block?: InputMaybe<Block_Height>;
|
|
1366
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1367
|
-
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
1368
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1369
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1370
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1371
|
-
where?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
1372
|
-
};
|
|
1373
|
-
type QueryModuleArgs = {
|
|
1374
|
-
block?: InputMaybe<Block_Height>;
|
|
1375
|
-
id: Scalars['ID']['input'];
|
|
1376
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1377
|
-
};
|
|
1378
|
-
type QueryModuleUpdateProposedEventArgs = {
|
|
1379
|
-
block?: InputMaybe<Block_Height>;
|
|
1380
|
-
id: Scalars['ID']['input'];
|
|
1381
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1382
|
-
};
|
|
1383
|
-
type QueryModuleUpdateProposedEventsArgs = {
|
|
1384
|
-
block?: InputMaybe<Block_Height>;
|
|
1385
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1386
|
-
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
1387
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1388
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1389
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1390
|
-
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1391
|
-
};
|
|
1392
|
-
type QueryModulesArgs = {
|
|
1393
|
-
block?: InputMaybe<Block_Height>;
|
|
1394
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1395
|
-
orderBy?: InputMaybe<Module_OrderBy>;
|
|
1396
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1397
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1398
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1399
|
-
where?: InputMaybe<Module_Filter>;
|
|
1400
|
-
};
|
|
1401
|
-
type QueryPendingUpdateCancelledEventArgs = {
|
|
1402
|
-
block?: InputMaybe<Block_Height>;
|
|
1403
|
-
id: Scalars['ID']['input'];
|
|
1404
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1405
|
-
};
|
|
1406
|
-
type QueryPendingUpdateCancelledEventsArgs = {
|
|
1407
|
-
block?: InputMaybe<Block_Height>;
|
|
1408
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1409
|
-
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
1410
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1411
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1412
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1413
|
-
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1414
|
-
};
|
|
1415
|
-
type QueryPriceUpdatedEventArgs = {
|
|
1416
|
-
block?: InputMaybe<Block_Height>;
|
|
1417
|
-
id: Scalars['ID']['input'];
|
|
1418
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1419
|
-
};
|
|
1420
|
-
type QueryPriceUpdatedEventsArgs = {
|
|
1421
|
-
block?: InputMaybe<Block_Height>;
|
|
1422
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1423
|
-
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1424
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1425
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1426
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1427
|
-
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1428
|
-
};
|
|
1429
|
-
type QueryReleasedEventArgs = {
|
|
1430
|
-
block?: InputMaybe<Block_Height>;
|
|
1431
|
-
id: Scalars['ID']['input'];
|
|
1432
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1433
|
-
};
|
|
1434
|
-
type QueryReleasedEventsArgs = {
|
|
1435
|
-
block?: InputMaybe<Block_Height>;
|
|
1436
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1437
|
-
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1438
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1439
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1440
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1441
|
-
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1442
|
-
};
|
|
1443
|
-
type QuerySettledEventArgs = {
|
|
1444
|
-
block?: InputMaybe<Block_Height>;
|
|
1445
|
-
id: Scalars['ID']['input'];
|
|
1446
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1447
|
-
};
|
|
1448
|
-
type QuerySettledEventsArgs = {
|
|
1449
|
-
block?: InputMaybe<Block_Height>;
|
|
1450
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1451
|
-
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1452
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1453
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1454
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1455
|
-
where?: InputMaybe<SettledEvent_Filter>;
|
|
1456
|
-
};
|
|
1457
|
-
type QuerySlotArgs = {
|
|
1458
|
-
block?: InputMaybe<Block_Height>;
|
|
1459
|
-
id: Scalars['ID']['input'];
|
|
1460
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1461
|
-
};
|
|
1462
|
-
type QuerySlotDeployedEventArgs = {
|
|
1463
|
-
block?: InputMaybe<Block_Height>;
|
|
1464
|
-
id: Scalars['ID']['input'];
|
|
1465
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1466
|
-
};
|
|
1467
|
-
type QuerySlotDeployedEventsArgs = {
|
|
1468
|
-
block?: InputMaybe<Block_Height>;
|
|
1469
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1470
|
-
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
1471
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1472
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1473
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1474
|
-
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
1475
|
-
};
|
|
1476
|
-
type QuerySlotsArgs = {
|
|
1477
|
-
block?: InputMaybe<Block_Height>;
|
|
1478
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1479
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
1480
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1481
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1482
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1483
|
-
where?: InputMaybe<Slot_Filter>;
|
|
1484
|
-
};
|
|
1485
|
-
type QueryTaxCollectedEventArgs = {
|
|
1486
|
-
block?: InputMaybe<Block_Height>;
|
|
1487
|
-
id: Scalars['ID']['input'];
|
|
1488
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1489
|
-
};
|
|
1490
|
-
type QueryTaxCollectedEventsArgs = {
|
|
1491
|
-
block?: InputMaybe<Block_Height>;
|
|
1492
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1493
|
-
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1494
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1495
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1496
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1497
|
-
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1498
|
-
};
|
|
1499
|
-
type QueryTaxUpdateProposedEventArgs = {
|
|
1500
|
-
block?: InputMaybe<Block_Height>;
|
|
1501
|
-
id: Scalars['ID']['input'];
|
|
1502
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1503
|
-
};
|
|
1504
|
-
type QueryTaxUpdateProposedEventsArgs = {
|
|
1505
|
-
block?: InputMaybe<Block_Height>;
|
|
1506
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1507
|
-
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
1508
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1509
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1510
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1511
|
-
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1512
|
-
};
|
|
1513
|
-
type QueryWithdrawnEventArgs = {
|
|
1514
|
-
block?: InputMaybe<Block_Height>;
|
|
1515
|
-
id: Scalars['ID']['input'];
|
|
1516
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1517
|
-
};
|
|
1518
|
-
type QueryWithdrawnEventsArgs = {
|
|
1519
|
-
block?: InputMaybe<Block_Height>;
|
|
1520
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1521
|
-
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1522
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1523
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1524
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
1525
|
-
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1526
|
-
};
|
|
1527
|
-
type ReleasedEvent = {
|
|
1528
|
-
__typename?: 'ReleasedEvent';
|
|
1529
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1530
|
-
currency: Currency;
|
|
1531
|
-
id: Scalars['ID']['output'];
|
|
1532
|
-
occupant: Scalars['Bytes']['output'];
|
|
1533
|
-
refund: Scalars['BigInt']['output'];
|
|
1534
|
-
slot: Slot;
|
|
1535
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1536
|
-
tx: Scalars['Bytes']['output'];
|
|
1537
|
-
};
|
|
1538
|
-
type ReleasedEvent_Filter = {
|
|
1539
|
-
/** Filter for the block changed event. */
|
|
1540
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1541
|
-
and?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1542
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1543
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1544
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1545
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1546
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1547
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1548
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1549
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1550
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1551
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
1552
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1553
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1554
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1555
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1556
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1557
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1558
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1559
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1560
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1561
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1562
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1563
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1564
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1565
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1566
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1567
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1568
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1569
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1570
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1571
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1572
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1573
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1574
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1575
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1576
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1577
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1578
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1579
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1580
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1581
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1582
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1583
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1584
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1585
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1586
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1587
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1588
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1589
|
-
or?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1590
|
-
refund?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1591
|
-
refund_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1592
|
-
refund_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1593
|
-
refund_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1594
|
-
refund_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1595
|
-
refund_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1596
|
-
refund_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1597
|
-
refund_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1598
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1599
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1600
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1601
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1602
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1603
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1604
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1605
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1606
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1607
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1608
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1609
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1610
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1611
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1612
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1613
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1614
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1615
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1616
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1617
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1618
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1619
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1620
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1621
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1622
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1623
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1624
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1625
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1626
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1627
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1628
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1629
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1630
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1631
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1632
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1633
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1634
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1635
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1636
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1637
|
-
};
|
|
1638
|
-
type ReleasedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'refund' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
1639
|
-
type SettledEvent = {
|
|
1640
|
-
__typename?: 'SettledEvent';
|
|
1641
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1642
|
-
currency: Currency;
|
|
1643
|
-
depositRemaining: Scalars['BigInt']['output'];
|
|
1644
|
-
id: Scalars['ID']['output'];
|
|
1645
|
-
slot: Slot;
|
|
1646
|
-
taxOwed: Scalars['BigInt']['output'];
|
|
1647
|
-
taxPaid: Scalars['BigInt']['output'];
|
|
1648
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1649
|
-
tx: Scalars['Bytes']['output'];
|
|
1650
|
-
};
|
|
1651
|
-
type SettledEvent_Filter = {
|
|
1652
|
-
/** Filter for the block changed event. */
|
|
1653
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1654
|
-
and?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1655
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1656
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1657
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1658
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1659
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1660
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1661
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1662
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1663
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1664
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
1665
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1666
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1667
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1668
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1669
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1670
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1671
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1672
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1673
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1674
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1675
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1676
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1677
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1678
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1679
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1680
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1681
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1682
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1683
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1684
|
-
depositRemaining?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1685
|
-
depositRemaining_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1686
|
-
depositRemaining_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1687
|
-
depositRemaining_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1688
|
-
depositRemaining_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1689
|
-
depositRemaining_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1690
|
-
depositRemaining_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1691
|
-
depositRemaining_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1692
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1693
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1694
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1695
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1696
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1697
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1698
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1699
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1700
|
-
or?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
1701
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1702
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
1703
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1704
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1705
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1706
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1707
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1708
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1709
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1710
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1711
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1712
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1713
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1714
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1715
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1716
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1717
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1718
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1719
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1720
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1721
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1722
|
-
taxOwed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1723
|
-
taxOwed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1724
|
-
taxOwed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1725
|
-
taxOwed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1726
|
-
taxOwed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1727
|
-
taxOwed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1728
|
-
taxOwed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1729
|
-
taxOwed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1730
|
-
taxPaid?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1731
|
-
taxPaid_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1732
|
-
taxPaid_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1733
|
-
taxPaid_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1734
|
-
taxPaid_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1735
|
-
taxPaid_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1736
|
-
taxPaid_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1737
|
-
taxPaid_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1738
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1739
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1740
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1741
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1742
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1743
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1744
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1745
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1746
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1747
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1748
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1749
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1750
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1751
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1752
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1753
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1754
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1755
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1756
|
-
};
|
|
1757
|
-
type SettledEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositRemaining' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
1758
|
-
type Slot = {
|
|
1759
|
-
__typename?: 'Slot';
|
|
1760
|
-
collectedTax: Scalars['BigInt']['output'];
|
|
1761
|
-
createdAt: Scalars['BigInt']['output'];
|
|
1762
|
-
createdTx: Scalars['Bytes']['output'];
|
|
1763
|
-
currency: Currency;
|
|
1764
|
-
deployEvent?: Maybe<SlotDeployedEvent>;
|
|
1765
|
-
deposit: Scalars['BigInt']['output'];
|
|
1766
|
-
deposits: Array<DepositedEvent>;
|
|
1767
|
-
id: Scalars['ID']['output'];
|
|
1768
|
-
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1769
|
-
liquidations: Array<LiquidatedEvent>;
|
|
1770
|
-
manager: Scalars['Bytes']['output'];
|
|
1771
|
-
metadata?: Maybe<MetadataSlot>;
|
|
1772
|
-
metadataUpdates: Array<MetadataUpdatedEvent>;
|
|
1773
|
-
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1774
|
-
module?: Maybe<Module>;
|
|
1775
|
-
moduleUpdateProposals: Array<ModuleUpdateProposedEvent>;
|
|
1776
|
-
mutableModule: Scalars['Boolean']['output'];
|
|
1777
|
-
mutableTax: Scalars['Boolean']['output'];
|
|
1778
|
-
occupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1779
|
-
occupantAccount?: Maybe<Account>;
|
|
1780
|
-
pendingUpdateCancellations: Array<PendingUpdateCancelledEvent>;
|
|
1781
|
-
price: Scalars['BigInt']['output'];
|
|
1782
|
-
priceUpdates: Array<PriceUpdatedEvent>;
|
|
1783
|
-
purchases: Array<BoughtEvent>;
|
|
1784
|
-
recipient: Scalars['Bytes']['output'];
|
|
1785
|
-
recipientAccount: Account;
|
|
1786
|
-
releases: Array<ReleasedEvent>;
|
|
1787
|
-
settlements: Array<SettledEvent>;
|
|
1788
|
-
taxCollections: Array<TaxCollectedEvent>;
|
|
1789
|
-
taxPercentage: Scalars['BigInt']['output'];
|
|
1790
|
-
taxUpdateProposals: Array<TaxUpdateProposedEvent>;
|
|
1791
|
-
totalCollected: Scalars['BigInt']['output'];
|
|
1792
|
-
updatedAt: Scalars['BigInt']['output'];
|
|
1793
|
-
withdrawals: Array<WithdrawnEvent>;
|
|
1794
|
-
};
|
|
1795
|
-
type SlotDepositsArgs = {
|
|
1796
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1797
|
-
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1798
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1799
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1800
|
-
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1801
|
-
};
|
|
1802
|
-
type SlotLiquidationsArgs = {
|
|
1803
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1804
|
-
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1805
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1806
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1807
|
-
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1808
|
-
};
|
|
1809
|
-
type SlotMetadataUpdatesArgs = {
|
|
1810
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1811
|
-
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
1812
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1813
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1814
|
-
where?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
1815
|
-
};
|
|
1816
|
-
type SlotModuleUpdateProposalsArgs = {
|
|
1817
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1818
|
-
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
1819
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1820
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1821
|
-
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1822
|
-
};
|
|
1823
|
-
type SlotPendingUpdateCancellationsArgs = {
|
|
1824
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1825
|
-
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
1826
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1827
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1828
|
-
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1829
|
-
};
|
|
1830
|
-
type SlotPriceUpdatesArgs = {
|
|
1831
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1832
|
-
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1833
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1834
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1835
|
-
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1836
|
-
};
|
|
1837
|
-
type SlotPurchasesArgs = {
|
|
1838
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1839
|
-
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
1840
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1841
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1842
|
-
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1843
|
-
};
|
|
1844
|
-
type SlotReleasesArgs = {
|
|
1845
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1846
|
-
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1847
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1848
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1849
|
-
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1850
|
-
};
|
|
1851
|
-
type SlotSettlementsArgs = {
|
|
1852
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1853
|
-
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1854
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1855
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1856
|
-
where?: InputMaybe<SettledEvent_Filter>;
|
|
1857
|
-
};
|
|
1858
|
-
type SlotTaxCollectionsArgs = {
|
|
1859
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1860
|
-
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1861
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1862
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1863
|
-
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1864
|
-
};
|
|
1865
|
-
type SlotTaxUpdateProposalsArgs = {
|
|
1866
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1867
|
-
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
1868
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1869
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1870
|
-
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1871
|
-
};
|
|
1872
|
-
type SlotWithdrawalsArgs = {
|
|
1873
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1874
|
-
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1875
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1876
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1877
|
-
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1878
|
-
};
|
|
1879
|
-
type SlotDeployedEvent = {
|
|
1880
|
-
__typename?: 'SlotDeployedEvent';
|
|
1881
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
1882
|
-
currency: Currency;
|
|
1883
|
-
deployer: Scalars['Bytes']['output'];
|
|
1884
|
-
id: Scalars['ID']['output'];
|
|
1885
|
-
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1886
|
-
manager: Scalars['Bytes']['output'];
|
|
1887
|
-
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1888
|
-
module: Scalars['Bytes']['output'];
|
|
1889
|
-
mutableModule: Scalars['Boolean']['output'];
|
|
1890
|
-
mutableTax: Scalars['Boolean']['output'];
|
|
1891
|
-
recipient: Scalars['Bytes']['output'];
|
|
1892
|
-
slot: Slot;
|
|
1893
|
-
taxPercentage: Scalars['BigInt']['output'];
|
|
1894
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1895
|
-
tx: Scalars['Bytes']['output'];
|
|
1896
|
-
};
|
|
1897
|
-
type SlotDeployedEvent_Filter = {
|
|
1898
|
-
/** Filter for the block changed event. */
|
|
1899
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1900
|
-
and?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
1901
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1902
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1903
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1904
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1905
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1906
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1907
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1908
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1909
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1910
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
1911
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1912
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1913
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1914
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1915
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1916
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1917
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1918
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1919
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1920
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1921
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1922
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1923
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1924
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1925
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1926
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1927
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1928
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1929
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1930
|
-
deployer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1931
|
-
deployer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1932
|
-
deployer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1933
|
-
deployer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1934
|
-
deployer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1935
|
-
deployer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1936
|
-
deployer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1937
|
-
deployer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1938
|
-
deployer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1939
|
-
deployer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1940
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1941
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1942
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1943
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1944
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1945
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1946
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1947
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1948
|
-
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1949
|
-
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1950
|
-
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1951
|
-
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1952
|
-
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1953
|
-
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1954
|
-
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1955
|
-
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1956
|
-
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1957
|
-
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1958
|
-
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1959
|
-
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1960
|
-
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1961
|
-
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1962
|
-
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1963
|
-
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1964
|
-
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1965
|
-
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1966
|
-
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1967
|
-
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1968
|
-
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1969
|
-
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1970
|
-
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1971
|
-
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1972
|
-
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1973
|
-
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1974
|
-
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1975
|
-
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1976
|
-
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1977
|
-
module_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1978
|
-
module_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1979
|
-
module_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1980
|
-
module_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1981
|
-
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1982
|
-
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1983
|
-
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1984
|
-
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1985
|
-
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1986
|
-
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1987
|
-
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1988
|
-
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1989
|
-
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1990
|
-
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1991
|
-
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1992
|
-
or?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
1993
|
-
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1994
|
-
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1995
|
-
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1996
|
-
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1997
|
-
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1998
|
-
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1999
|
-
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2000
|
-
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2001
|
-
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2002
|
-
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2003
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2004
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2005
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2006
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2007
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2008
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2009
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2010
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2011
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2012
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2013
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2014
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2015
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2016
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2017
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2018
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2019
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2020
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2021
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2022
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2023
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2024
|
-
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2025
|
-
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2026
|
-
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2027
|
-
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2028
|
-
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2029
|
-
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2030
|
-
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2031
|
-
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2032
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2033
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2034
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2035
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2036
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2037
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2038
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2039
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2040
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2041
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2042
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2043
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2044
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2045
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2046
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2047
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2048
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2049
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2050
|
-
};
|
|
2051
|
-
type SlotDeployedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deployer' | 'id' | 'liquidationBountyBps' | 'manager' | 'minDepositSeconds' | 'module' | 'mutableModule' | 'mutableTax' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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' | 'taxPercentage' | 'timestamp' | 'tx';
|
|
2052
|
-
type Slot_Filter = {
|
|
2053
|
-
/** Filter for the block changed event. */
|
|
2054
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2055
|
-
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
2056
|
-
collectedTax?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2057
|
-
collectedTax_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2058
|
-
collectedTax_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2059
|
-
collectedTax_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2060
|
-
collectedTax_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2061
|
-
collectedTax_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2062
|
-
collectedTax_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2063
|
-
collectedTax_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2064
|
-
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2065
|
-
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2066
|
-
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2067
|
-
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2068
|
-
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2069
|
-
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2070
|
-
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2071
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2072
|
-
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2073
|
-
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2074
|
-
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2075
|
-
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2076
|
-
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2077
|
-
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2078
|
-
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2079
|
-
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2080
|
-
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2081
|
-
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2082
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2083
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
2084
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2085
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2086
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2087
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2088
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2089
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2090
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2091
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2092
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2093
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2094
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2095
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2096
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2097
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2098
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2099
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2100
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2101
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2102
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2103
|
-
deployEvent_?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
2104
|
-
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2105
|
-
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2106
|
-
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2107
|
-
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2108
|
-
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2109
|
-
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2110
|
-
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2111
|
-
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2112
|
-
deposits_?: InputMaybe<DepositedEvent_Filter>;
|
|
2113
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2114
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2115
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2116
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2117
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2118
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2119
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2120
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2121
|
-
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2122
|
-
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2123
|
-
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2124
|
-
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2125
|
-
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2126
|
-
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2127
|
-
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2128
|
-
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2129
|
-
liquidations_?: InputMaybe<LiquidatedEvent_Filter>;
|
|
2130
|
-
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2131
|
-
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2132
|
-
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2133
|
-
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2134
|
-
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2135
|
-
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2136
|
-
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2137
|
-
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2138
|
-
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2139
|
-
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2140
|
-
metadataUpdates_?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
2141
|
-
metadata_?: InputMaybe<MetadataSlot_Filter>;
|
|
2142
|
-
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2143
|
-
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2144
|
-
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2145
|
-
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2146
|
-
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2147
|
-
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2148
|
-
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2149
|
-
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2150
|
-
module?: InputMaybe<Scalars['String']['input']>;
|
|
2151
|
-
moduleUpdateProposals_?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
2152
|
-
module_?: InputMaybe<Module_Filter>;
|
|
2153
|
-
module_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2154
|
-
module_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2155
|
-
module_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2156
|
-
module_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2157
|
-
module_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2158
|
-
module_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2159
|
-
module_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2160
|
-
module_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2161
|
-
module_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2162
|
-
module_not?: InputMaybe<Scalars['String']['input']>;
|
|
2163
|
-
module_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2164
|
-
module_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2165
|
-
module_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2166
|
-
module_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2167
|
-
module_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2168
|
-
module_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2169
|
-
module_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2170
|
-
module_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2171
|
-
module_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2172
|
-
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2173
|
-
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2174
|
-
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2175
|
-
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2176
|
-
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2177
|
-
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2178
|
-
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2179
|
-
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2180
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2181
|
-
occupantAccount?: InputMaybe<Scalars['String']['input']>;
|
|
2182
|
-
occupantAccount_?: InputMaybe<Account_Filter>;
|
|
2183
|
-
occupantAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2184
|
-
occupantAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2185
|
-
occupantAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2186
|
-
occupantAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2187
|
-
occupantAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2188
|
-
occupantAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2189
|
-
occupantAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2190
|
-
occupantAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2191
|
-
occupantAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2192
|
-
occupantAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
2193
|
-
occupantAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2194
|
-
occupantAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2195
|
-
occupantAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2196
|
-
occupantAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2197
|
-
occupantAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2198
|
-
occupantAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2199
|
-
occupantAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2200
|
-
occupantAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2201
|
-
occupantAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2202
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2203
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2204
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2205
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2206
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2207
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2208
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2209
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2210
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2211
|
-
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
2212
|
-
pendingUpdateCancellations_?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
2213
|
-
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2214
|
-
priceUpdates_?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
2215
|
-
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2216
|
-
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2217
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2218
|
-
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2219
|
-
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2220
|
-
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2221
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2222
|
-
purchases_?: InputMaybe<BoughtEvent_Filter>;
|
|
2223
|
-
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2224
|
-
recipientAccount?: InputMaybe<Scalars['String']['input']>;
|
|
2225
|
-
recipientAccount_?: InputMaybe<Account_Filter>;
|
|
2226
|
-
recipientAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2227
|
-
recipientAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2228
|
-
recipientAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2229
|
-
recipientAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2230
|
-
recipientAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2231
|
-
recipientAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2232
|
-
recipientAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2233
|
-
recipientAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2234
|
-
recipientAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2235
|
-
recipientAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
2236
|
-
recipientAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2237
|
-
recipientAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2238
|
-
recipientAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2239
|
-
recipientAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2240
|
-
recipientAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2241
|
-
recipientAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2242
|
-
recipientAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2243
|
-
recipientAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2244
|
-
recipientAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2245
|
-
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2246
|
-
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2247
|
-
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2248
|
-
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2249
|
-
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2250
|
-
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2251
|
-
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2252
|
-
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2253
|
-
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2254
|
-
releases_?: InputMaybe<ReleasedEvent_Filter>;
|
|
2255
|
-
settlements_?: InputMaybe<SettledEvent_Filter>;
|
|
2256
|
-
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
2257
|
-
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2258
|
-
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2259
|
-
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2260
|
-
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2261
|
-
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2262
|
-
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2263
|
-
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2264
|
-
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2265
|
-
taxUpdateProposals_?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
2266
|
-
totalCollected?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2267
|
-
totalCollected_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2268
|
-
totalCollected_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2269
|
-
totalCollected_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2270
|
-
totalCollected_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2271
|
-
totalCollected_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2272
|
-
totalCollected_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2273
|
-
totalCollected_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2274
|
-
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2275
|
-
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2276
|
-
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2277
|
-
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2278
|
-
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2279
|
-
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2280
|
-
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2281
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2282
|
-
withdrawals_?: InputMaybe<WithdrawnEvent_Filter>;
|
|
2283
|
-
};
|
|
2284
|
-
type Slot_OrderBy = 'collectedTax' | 'createdAt' | 'createdTx' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deployEvent' | 'deployEvent__blockNumber' | 'deployEvent__deployer' | 'deployEvent__id' | 'deployEvent__liquidationBountyBps' | 'deployEvent__manager' | 'deployEvent__minDepositSeconds' | 'deployEvent__module' | 'deployEvent__mutableModule' | 'deployEvent__mutableTax' | 'deployEvent__recipient' | 'deployEvent__taxPercentage' | 'deployEvent__timestamp' | 'deployEvent__tx' | 'deposit' | 'deposits' | 'id' | 'liquidationBountyBps' | 'liquidations' | 'manager' | 'metadata' | 'metadataUpdates' | 'metadata__createdAt' | 'metadata__createdTx' | 'metadata__id' | 'metadata__updateCount' | 'metadata__updatedAt' | 'metadata__updatedBy' | 'metadata__updatedTx' | 'metadata__uri' | 'minDepositSeconds' | 'module' | 'moduleUpdateProposals' | 'module__id' | 'module__name' | 'module__verified' | 'module__version' | 'mutableModule' | 'mutableTax' | 'occupant' | 'occupantAccount' | 'occupantAccount__id' | 'occupantAccount__occupiedCount' | 'occupantAccount__slotCount' | 'occupantAccount__type' | 'pendingUpdateCancellations' | 'price' | 'priceUpdates' | 'purchases' | 'recipient' | 'recipientAccount' | 'recipientAccount__id' | 'recipientAccount__occupiedCount' | 'recipientAccount__slotCount' | 'recipientAccount__type' | 'releases' | 'settlements' | 'taxCollections' | 'taxPercentage' | 'taxUpdateProposals' | 'totalCollected' | 'updatedAt' | 'withdrawals';
|
|
2285
|
-
type TaxCollectedEvent = {
|
|
2286
|
-
__typename?: 'TaxCollectedEvent';
|
|
2287
|
-
amount: Scalars['BigInt']['output'];
|
|
2288
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
2289
|
-
currency: Currency;
|
|
2290
|
-
id: Scalars['ID']['output'];
|
|
2291
|
-
recipient: Scalars['Bytes']['output'];
|
|
2292
|
-
slot: Slot;
|
|
2293
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2294
|
-
tx: Scalars['Bytes']['output'];
|
|
2295
|
-
};
|
|
2296
|
-
type TaxCollectedEvent_Filter = {
|
|
2297
|
-
/** Filter for the block changed event. */
|
|
2298
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2299
|
-
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2300
|
-
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2301
|
-
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2302
|
-
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2303
|
-
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2304
|
-
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2305
|
-
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2306
|
-
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2307
|
-
and?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
2308
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2309
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2310
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2311
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2312
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2313
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2314
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2315
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2316
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2317
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
2318
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2319
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2320
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2321
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2322
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2323
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2324
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2325
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2326
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2327
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2328
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2329
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2330
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2331
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2332
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2333
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2334
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2335
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2336
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2337
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2338
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2339
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2340
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2341
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2342
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2343
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2344
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2345
|
-
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
2346
|
-
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2347
|
-
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2348
|
-
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2349
|
-
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2350
|
-
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2351
|
-
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2352
|
-
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2353
|
-
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2354
|
-
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2355
|
-
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2356
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2357
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2358
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2359
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2360
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2361
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2362
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2363
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2364
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2365
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2366
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2367
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2368
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2369
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2370
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2371
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2372
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2373
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2374
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2375
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2376
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2377
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2378
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2379
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2380
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2381
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2382
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2383
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2384
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2385
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2386
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2387
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2388
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2389
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2390
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2391
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2392
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2393
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2394
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2395
|
-
};
|
|
2396
|
-
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
2397
|
-
type TaxUpdateProposedEvent = {
|
|
2398
|
-
__typename?: 'TaxUpdateProposedEvent';
|
|
2399
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
2400
|
-
id: Scalars['ID']['output'];
|
|
2401
|
-
newPercentage: Scalars['BigInt']['output'];
|
|
2402
|
-
slot: Slot;
|
|
2403
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2404
|
-
tx: Scalars['Bytes']['output'];
|
|
2405
|
-
};
|
|
2406
|
-
type TaxUpdateProposedEvent_Filter = {
|
|
2407
|
-
/** Filter for the block changed event. */
|
|
2408
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2409
|
-
and?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
2410
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2411
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2412
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2413
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2414
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2415
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2416
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2417
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2418
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2419
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2420
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2421
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2422
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2423
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2424
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2425
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2426
|
-
newPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2427
|
-
newPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2428
|
-
newPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2429
|
-
newPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2430
|
-
newPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2431
|
-
newPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2432
|
-
newPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2433
|
-
newPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2434
|
-
or?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
2435
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2436
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2437
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2438
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2439
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2440
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2441
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2442
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2443
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2444
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2445
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2446
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2447
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2448
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2449
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2450
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2451
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2452
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2453
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2454
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2455
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2456
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2457
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2458
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2459
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2460
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2461
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2462
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2463
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2464
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2465
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2466
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2467
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2468
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2469
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2470
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2471
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2472
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2473
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2474
|
-
};
|
|
2475
|
-
type TaxUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newPercentage' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
2476
|
-
type WithdrawnEvent = {
|
|
2477
|
-
__typename?: 'WithdrawnEvent';
|
|
2478
|
-
amount: Scalars['BigInt']['output'];
|
|
2479
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
2480
|
-
currency: Currency;
|
|
2481
|
-
id: Scalars['ID']['output'];
|
|
2482
|
-
occupant: Scalars['Bytes']['output'];
|
|
2483
|
-
slot: Slot;
|
|
2484
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2485
|
-
tx: Scalars['Bytes']['output'];
|
|
2486
|
-
};
|
|
2487
|
-
type WithdrawnEvent_Filter = {
|
|
2488
|
-
/** Filter for the block changed event. */
|
|
2489
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2490
|
-
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2491
|
-
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2492
|
-
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2493
|
-
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2494
|
-
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2495
|
-
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2496
|
-
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2497
|
-
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2498
|
-
and?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2499
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2500
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2501
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2502
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2503
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2504
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2505
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2506
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2507
|
-
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2508
|
-
currency_?: InputMaybe<Currency_Filter>;
|
|
2509
|
-
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2510
|
-
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2511
|
-
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2512
|
-
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2513
|
-
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2514
|
-
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2515
|
-
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2516
|
-
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2517
|
-
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2518
|
-
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2519
|
-
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2520
|
-
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2521
|
-
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2522
|
-
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2523
|
-
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2524
|
-
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2525
|
-
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2526
|
-
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2527
|
-
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2528
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2529
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2530
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2531
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2532
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2533
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2534
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2535
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2536
|
-
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2537
|
-
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2538
|
-
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2539
|
-
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2540
|
-
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2541
|
-
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2542
|
-
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2543
|
-
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2544
|
-
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2545
|
-
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2546
|
-
or?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2547
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2548
|
-
slot_?: InputMaybe<Slot_Filter>;
|
|
2549
|
-
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2550
|
-
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2551
|
-
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2552
|
-
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2553
|
-
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2554
|
-
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2555
|
-
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2556
|
-
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2557
|
-
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2558
|
-
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2559
|
-
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2560
|
-
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2561
|
-
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2562
|
-
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2563
|
-
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2564
|
-
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2565
|
-
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2566
|
-
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2567
|
-
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2568
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2569
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2570
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2571
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2572
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2573
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2574
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2575
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2576
|
-
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2577
|
-
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2578
|
-
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2579
|
-
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2580
|
-
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2581
|
-
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2582
|
-
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2583
|
-
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2584
|
-
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2585
|
-
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2586
|
-
};
|
|
2587
|
-
type WithdrawnEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | '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';
|
|
2588
|
-
type _Block_ = {
|
|
2589
|
-
__typename?: '_Block_';
|
|
2590
|
-
/** The hash of the block */
|
|
2591
|
-
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
2592
|
-
/** The block number */
|
|
2593
|
-
number: Scalars['Int']['output'];
|
|
2594
|
-
/** The hash of the parent block */
|
|
2595
|
-
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
2596
|
-
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
2597
|
-
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2598
|
-
};
|
|
2599
|
-
/** The type for the top-level _meta field */
|
|
2600
|
-
type _Meta_ = {
|
|
2601
|
-
__typename?: '_Meta_';
|
|
2602
|
-
/**
|
|
2603
|
-
* Information about a specific subgraph block. The hash of the block
|
|
2604
|
-
* will be null if the _meta field has a block constraint that asks for
|
|
2605
|
-
* a block number. It will be filled if the _meta field has no block constraint
|
|
2606
|
-
* and therefore asks for the latest block
|
|
2607
|
-
*/
|
|
2608
|
-
block: _Block_;
|
|
2609
|
-
/** The deployment ID */
|
|
2610
|
-
deployment: Scalars['String']['output'];
|
|
2611
|
-
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
2612
|
-
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
2613
|
-
};
|
|
2614
|
-
type _SubgraphErrorPolicy_ =
|
|
2615
|
-
/** Data will be returned even if the subgraph has indexing errors */
|
|
2616
|
-
'allow'
|
|
2617
|
-
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
2618
|
-
| 'deny';
|
|
2619
|
-
type AccountFieldsFragment = {
|
|
2620
|
-
__typename?: 'Account';
|
|
2621
|
-
id: string;
|
|
2622
|
-
type: AccountType;
|
|
2623
|
-
slotCount: number;
|
|
2624
|
-
occupiedCount: number;
|
|
2625
|
-
slotsAsRecipient: Array<{
|
|
2626
|
-
__typename?: 'Slot';
|
|
2627
|
-
id: string;
|
|
2628
|
-
}>;
|
|
2629
|
-
slotsAsOccupant: Array<{
|
|
2630
|
-
__typename?: 'Slot';
|
|
2631
|
-
id: string;
|
|
2632
|
-
}>;
|
|
2633
|
-
};
|
|
2634
|
-
type GetAccountQueryVariables = Exact<{
|
|
2635
|
-
id: Scalars['ID']['input'];
|
|
2636
|
-
block?: InputMaybe<Block_Height>;
|
|
2637
|
-
}>;
|
|
2638
|
-
type GetAccountQuery = {
|
|
2639
|
-
__typename?: 'Query';
|
|
2640
|
-
account?: {
|
|
2641
|
-
__typename?: 'Account';
|
|
2642
|
-
id: string;
|
|
2643
|
-
type: AccountType;
|
|
2644
|
-
slotCount: number;
|
|
2645
|
-
occupiedCount: number;
|
|
2646
|
-
slotsAsRecipient: Array<{
|
|
2647
|
-
__typename?: 'Slot';
|
|
2648
|
-
id: string;
|
|
2649
|
-
}>;
|
|
2650
|
-
slotsAsOccupant: Array<{
|
|
2651
|
-
__typename?: 'Slot';
|
|
2652
|
-
id: string;
|
|
2653
|
-
}>;
|
|
2654
|
-
} | null;
|
|
2655
|
-
};
|
|
2656
|
-
type GetAccountsQueryVariables = Exact<{
|
|
2657
|
-
first: Scalars['Int']['input'];
|
|
2658
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2659
|
-
orderBy?: InputMaybe<Account_OrderBy>;
|
|
2660
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
2661
|
-
where?: InputMaybe<Account_Filter>;
|
|
2662
|
-
block?: InputMaybe<Block_Height>;
|
|
2663
|
-
}>;
|
|
2664
|
-
type GetAccountsQuery = {
|
|
2665
|
-
__typename?: 'Query';
|
|
2666
|
-
accounts: Array<{
|
|
2667
|
-
__typename?: 'Account';
|
|
2668
|
-
id: string;
|
|
2669
|
-
type: AccountType;
|
|
2670
|
-
slotCount: number;
|
|
2671
|
-
occupiedCount: number;
|
|
2672
|
-
slotsAsRecipient: Array<{
|
|
2673
|
-
__typename?: 'Slot';
|
|
2674
|
-
id: string;
|
|
2675
|
-
}>;
|
|
2676
|
-
slotsAsOccupant: Array<{
|
|
2677
|
-
__typename?: 'Slot';
|
|
2678
|
-
id: string;
|
|
2679
|
-
}>;
|
|
2680
|
-
}>;
|
|
2681
|
-
};
|
|
2682
|
-
type CurrencyFieldsFragment = {
|
|
2683
|
-
__typename?: 'Currency';
|
|
2684
|
-
id: string;
|
|
2685
|
-
name?: string | null;
|
|
2686
|
-
symbol?: string | null;
|
|
2687
|
-
decimals: number;
|
|
2688
|
-
};
|
|
2689
|
-
type GetSlotDeployedEventsQueryVariables = Exact<{
|
|
2690
|
-
first: Scalars['Int']['input'];
|
|
2691
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2692
|
-
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
2693
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
2694
|
-
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
2695
|
-
block?: InputMaybe<Block_Height>;
|
|
2696
|
-
}>;
|
|
2697
|
-
type GetSlotDeployedEventsQuery = {
|
|
2698
|
-
__typename?: 'Query';
|
|
2699
|
-
slotDeployedEvents: Array<{
|
|
2700
|
-
__typename?: 'SlotDeployedEvent';
|
|
2701
|
-
id: string;
|
|
2702
|
-
recipient: string;
|
|
2703
|
-
manager: string;
|
|
2704
|
-
mutableTax: boolean;
|
|
2705
|
-
mutableModule: boolean;
|
|
2706
|
-
taxPercentage: string;
|
|
2707
|
-
module: string;
|
|
2708
|
-
liquidationBountyBps: string;
|
|
2709
|
-
minDepositSeconds: string;
|
|
2710
|
-
deployer: string;
|
|
2711
|
-
timestamp: string;
|
|
2712
|
-
blockNumber: string;
|
|
2713
|
-
tx: string;
|
|
2714
|
-
slot: {
|
|
2715
|
-
__typename?: 'Slot';
|
|
2716
|
-
id: string;
|
|
2717
|
-
};
|
|
2718
|
-
currency: {
|
|
2719
|
-
__typename?: 'Currency';
|
|
2720
|
-
id: string;
|
|
2721
|
-
name?: string | null;
|
|
2722
|
-
symbol?: string | null;
|
|
2723
|
-
decimals: number;
|
|
2724
|
-
};
|
|
2725
|
-
}>;
|
|
2726
|
-
};
|
|
2727
|
-
type GetRecentEventsQueryVariables = Exact<{
|
|
2728
|
-
first: Scalars['Int']['input'];
|
|
2729
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2730
|
-
}>;
|
|
2731
|
-
type GetRecentEventsQuery = {
|
|
2732
|
-
__typename?: 'Query';
|
|
2733
|
-
slotDeployedEvents: Array<{
|
|
2734
|
-
__typename?: 'SlotDeployedEvent';
|
|
2735
|
-
id: string;
|
|
2736
|
-
recipient: string;
|
|
2737
|
-
deployer: string;
|
|
2738
|
-
timestamp: string;
|
|
2739
|
-
tx: string;
|
|
2740
|
-
slot: {
|
|
2741
|
-
__typename?: 'Slot';
|
|
2742
|
-
id: string;
|
|
2743
|
-
};
|
|
2744
|
-
currency: {
|
|
2745
|
-
__typename?: 'Currency';
|
|
2746
|
-
id: string;
|
|
2747
|
-
name?: string | null;
|
|
2748
|
-
symbol?: string | null;
|
|
2749
|
-
decimals: number;
|
|
2750
|
-
};
|
|
2751
|
-
}>;
|
|
2752
|
-
boughtEvents: Array<{
|
|
2753
|
-
__typename?: 'BoughtEvent';
|
|
2754
|
-
id: string;
|
|
2755
|
-
buyer: string;
|
|
2756
|
-
previousOccupant: string;
|
|
2757
|
-
price: string;
|
|
2758
|
-
selfAssessedPrice: string;
|
|
2759
|
-
deposit: string;
|
|
2760
|
-
timestamp: string;
|
|
2761
|
-
tx: string;
|
|
2762
|
-
slot: {
|
|
2763
|
-
__typename?: 'Slot';
|
|
2764
|
-
id: string;
|
|
2765
|
-
};
|
|
2766
|
-
currency: {
|
|
2767
|
-
__typename?: 'Currency';
|
|
2768
|
-
id: string;
|
|
2769
|
-
name?: string | null;
|
|
2770
|
-
symbol?: string | null;
|
|
2771
|
-
decimals: number;
|
|
2772
|
-
};
|
|
2773
|
-
}>;
|
|
2774
|
-
releasedEvents: Array<{
|
|
2775
|
-
__typename?: 'ReleasedEvent';
|
|
2776
|
-
id: string;
|
|
2777
|
-
occupant: string;
|
|
2778
|
-
refund: string;
|
|
2779
|
-
timestamp: string;
|
|
2780
|
-
tx: string;
|
|
2781
|
-
slot: {
|
|
2782
|
-
__typename?: 'Slot';
|
|
2783
|
-
id: string;
|
|
2784
|
-
};
|
|
2785
|
-
currency: {
|
|
2786
|
-
__typename?: 'Currency';
|
|
2787
|
-
id: string;
|
|
2788
|
-
name?: string | null;
|
|
2789
|
-
symbol?: string | null;
|
|
2790
|
-
decimals: number;
|
|
2791
|
-
};
|
|
2792
|
-
}>;
|
|
2793
|
-
liquidatedEvents: Array<{
|
|
2794
|
-
__typename?: 'LiquidatedEvent';
|
|
2795
|
-
id: string;
|
|
2796
|
-
liquidator: string;
|
|
2797
|
-
occupant: string;
|
|
2798
|
-
bounty: string;
|
|
2799
|
-
timestamp: string;
|
|
2800
|
-
tx: string;
|
|
2801
|
-
slot: {
|
|
2802
|
-
__typename?: 'Slot';
|
|
2803
|
-
id: string;
|
|
2804
|
-
};
|
|
2805
|
-
currency: {
|
|
2806
|
-
__typename?: 'Currency';
|
|
2807
|
-
id: string;
|
|
2808
|
-
name?: string | null;
|
|
2809
|
-
symbol?: string | null;
|
|
2810
|
-
decimals: number;
|
|
2811
|
-
};
|
|
2812
|
-
}>;
|
|
2813
|
-
priceUpdatedEvents: Array<{
|
|
2814
|
-
__typename?: 'PriceUpdatedEvent';
|
|
2815
|
-
id: string;
|
|
2816
|
-
oldPrice: string;
|
|
2817
|
-
newPrice: string;
|
|
2818
|
-
timestamp: string;
|
|
2819
|
-
tx: string;
|
|
2820
|
-
slot: {
|
|
2821
|
-
__typename?: 'Slot';
|
|
2822
|
-
id: string;
|
|
2823
|
-
};
|
|
2824
|
-
currency: {
|
|
2825
|
-
__typename?: 'Currency';
|
|
2826
|
-
id: string;
|
|
2827
|
-
name?: string | null;
|
|
2828
|
-
symbol?: string | null;
|
|
2829
|
-
decimals: number;
|
|
2830
|
-
};
|
|
2831
|
-
}>;
|
|
2832
|
-
depositedEvents: Array<{
|
|
2833
|
-
__typename?: 'DepositedEvent';
|
|
2834
|
-
id: string;
|
|
2835
|
-
depositor: string;
|
|
2836
|
-
amount: string;
|
|
2837
|
-
timestamp: string;
|
|
2838
|
-
tx: string;
|
|
2839
|
-
slot: {
|
|
2840
|
-
__typename?: 'Slot';
|
|
2841
|
-
id: string;
|
|
2842
|
-
};
|
|
2843
|
-
currency: {
|
|
2844
|
-
__typename?: 'Currency';
|
|
2845
|
-
id: string;
|
|
2846
|
-
name?: string | null;
|
|
2847
|
-
symbol?: string | null;
|
|
2848
|
-
decimals: number;
|
|
2849
|
-
};
|
|
2850
|
-
}>;
|
|
2851
|
-
withdrawnEvents: Array<{
|
|
2852
|
-
__typename?: 'WithdrawnEvent';
|
|
2853
|
-
id: string;
|
|
2854
|
-
occupant: string;
|
|
2855
|
-
amount: string;
|
|
2856
|
-
timestamp: string;
|
|
2857
|
-
tx: string;
|
|
2858
|
-
slot: {
|
|
2859
|
-
__typename?: 'Slot';
|
|
2860
|
-
id: string;
|
|
2861
|
-
};
|
|
2862
|
-
currency: {
|
|
2863
|
-
__typename?: 'Currency';
|
|
2864
|
-
id: string;
|
|
2865
|
-
name?: string | null;
|
|
2866
|
-
symbol?: string | null;
|
|
2867
|
-
decimals: number;
|
|
2868
|
-
};
|
|
2869
|
-
}>;
|
|
2870
|
-
taxCollectedEvents: Array<{
|
|
2871
|
-
__typename?: 'TaxCollectedEvent';
|
|
2872
|
-
id: string;
|
|
2873
|
-
recipient: string;
|
|
2874
|
-
amount: string;
|
|
2875
|
-
timestamp: string;
|
|
2876
|
-
tx: string;
|
|
2877
|
-
slot: {
|
|
2878
|
-
__typename?: 'Slot';
|
|
2879
|
-
id: string;
|
|
2880
|
-
};
|
|
2881
|
-
currency: {
|
|
2882
|
-
__typename?: 'Currency';
|
|
2883
|
-
id: string;
|
|
2884
|
-
name?: string | null;
|
|
2885
|
-
symbol?: string | null;
|
|
2886
|
-
decimals: number;
|
|
2887
|
-
};
|
|
2888
|
-
}>;
|
|
2889
|
-
taxUpdateProposedEvents: Array<{
|
|
2890
|
-
__typename?: 'TaxUpdateProposedEvent';
|
|
2891
|
-
id: string;
|
|
2892
|
-
newPercentage: string;
|
|
2893
|
-
timestamp: string;
|
|
2894
|
-
tx: string;
|
|
2895
|
-
slot: {
|
|
2896
|
-
__typename?: 'Slot';
|
|
2897
|
-
id: string;
|
|
2898
|
-
};
|
|
2899
|
-
}>;
|
|
2900
|
-
moduleUpdateProposedEvents: Array<{
|
|
2901
|
-
__typename?: 'ModuleUpdateProposedEvent';
|
|
2902
|
-
id: string;
|
|
2903
|
-
newModule: string;
|
|
2904
|
-
timestamp: string;
|
|
2905
|
-
tx: string;
|
|
2906
|
-
slot: {
|
|
2907
|
-
__typename?: 'Slot';
|
|
2908
|
-
id: string;
|
|
2909
|
-
};
|
|
2910
|
-
}>;
|
|
2911
|
-
pendingUpdateCancelledEvents: Array<{
|
|
2912
|
-
__typename?: 'PendingUpdateCancelledEvent';
|
|
2913
|
-
id: string;
|
|
2914
|
-
timestamp: string;
|
|
2915
|
-
tx: string;
|
|
2916
|
-
slot: {
|
|
2917
|
-
__typename?: 'Slot';
|
|
2918
|
-
id: string;
|
|
2919
|
-
};
|
|
2920
|
-
}>;
|
|
2921
|
-
};
|
|
2922
|
-
type GetBoughtEventsQueryVariables = Exact<{
|
|
2923
|
-
first: Scalars['Int']['input'];
|
|
2924
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2925
|
-
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
2926
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
2927
|
-
where?: InputMaybe<BoughtEvent_Filter>;
|
|
2928
|
-
block?: InputMaybe<Block_Height>;
|
|
2929
|
-
}>;
|
|
2930
|
-
type GetBoughtEventsQuery = {
|
|
2931
|
-
__typename?: 'Query';
|
|
2932
|
-
boughtEvents: Array<{
|
|
2933
|
-
__typename?: 'BoughtEvent';
|
|
2934
|
-
id: string;
|
|
2935
|
-
buyer: string;
|
|
2936
|
-
previousOccupant: string;
|
|
2937
|
-
price: string;
|
|
2938
|
-
deposit: string;
|
|
2939
|
-
selfAssessedPrice: string;
|
|
2940
|
-
timestamp: string;
|
|
2941
|
-
blockNumber: string;
|
|
2942
|
-
tx: string;
|
|
2943
|
-
slot: {
|
|
2944
|
-
__typename?: 'Slot';
|
|
2945
|
-
id: string;
|
|
2946
|
-
};
|
|
2947
|
-
currency: {
|
|
2948
|
-
__typename?: 'Currency';
|
|
2949
|
-
id: string;
|
|
2950
|
-
name?: string | null;
|
|
2951
|
-
symbol?: string | null;
|
|
2952
|
-
decimals: number;
|
|
2953
|
-
};
|
|
2954
|
-
}>;
|
|
2955
|
-
};
|
|
2956
|
-
type GetReleasedEventsQueryVariables = Exact<{
|
|
2957
|
-
first: Scalars['Int']['input'];
|
|
2958
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2959
|
-
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
2960
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
2961
|
-
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
2962
|
-
block?: InputMaybe<Block_Height>;
|
|
2963
|
-
}>;
|
|
2964
|
-
type GetReleasedEventsQuery = {
|
|
2965
|
-
__typename?: 'Query';
|
|
2966
|
-
releasedEvents: Array<{
|
|
2967
|
-
__typename?: 'ReleasedEvent';
|
|
2968
|
-
id: string;
|
|
2969
|
-
occupant: string;
|
|
2970
|
-
refund: string;
|
|
2971
|
-
timestamp: string;
|
|
2972
|
-
blockNumber: string;
|
|
2973
|
-
tx: string;
|
|
2974
|
-
slot: {
|
|
2975
|
-
__typename?: 'Slot';
|
|
2976
|
-
id: string;
|
|
2977
|
-
};
|
|
2978
|
-
currency: {
|
|
2979
|
-
__typename?: 'Currency';
|
|
2980
|
-
id: string;
|
|
2981
|
-
name?: string | null;
|
|
2982
|
-
symbol?: string | null;
|
|
2983
|
-
decimals: number;
|
|
2984
|
-
};
|
|
2985
|
-
}>;
|
|
2986
|
-
};
|
|
2987
|
-
type GetLiquidatedEventsQueryVariables = Exact<{
|
|
2988
|
-
first: Scalars['Int']['input'];
|
|
2989
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2990
|
-
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
2991
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
2992
|
-
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
2993
|
-
block?: InputMaybe<Block_Height>;
|
|
2994
|
-
}>;
|
|
2995
|
-
type GetLiquidatedEventsQuery = {
|
|
2996
|
-
__typename?: 'Query';
|
|
2997
|
-
liquidatedEvents: Array<{
|
|
2998
|
-
__typename?: 'LiquidatedEvent';
|
|
2999
|
-
id: string;
|
|
3000
|
-
liquidator: string;
|
|
3001
|
-
occupant: string;
|
|
3002
|
-
bounty: string;
|
|
3003
|
-
timestamp: string;
|
|
3004
|
-
blockNumber: string;
|
|
3005
|
-
tx: string;
|
|
3006
|
-
slot: {
|
|
3007
|
-
__typename?: 'Slot';
|
|
3008
|
-
id: string;
|
|
3009
|
-
};
|
|
3010
|
-
currency: {
|
|
3011
|
-
__typename?: 'Currency';
|
|
3012
|
-
id: string;
|
|
3013
|
-
name?: string | null;
|
|
3014
|
-
symbol?: string | null;
|
|
3015
|
-
decimals: number;
|
|
3016
|
-
};
|
|
3017
|
-
}>;
|
|
3018
|
-
};
|
|
3019
|
-
type GetSettledEventsQueryVariables = Exact<{
|
|
3020
|
-
first: Scalars['Int']['input'];
|
|
3021
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3022
|
-
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
3023
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3024
|
-
where?: InputMaybe<SettledEvent_Filter>;
|
|
3025
|
-
block?: InputMaybe<Block_Height>;
|
|
3026
|
-
}>;
|
|
3027
|
-
type GetSettledEventsQuery = {
|
|
3028
|
-
__typename?: 'Query';
|
|
3029
|
-
settledEvents: Array<{
|
|
3030
|
-
__typename?: 'SettledEvent';
|
|
3031
|
-
id: string;
|
|
3032
|
-
taxOwed: string;
|
|
3033
|
-
taxPaid: string;
|
|
3034
|
-
depositRemaining: string;
|
|
3035
|
-
timestamp: string;
|
|
3036
|
-
blockNumber: string;
|
|
3037
|
-
tx: string;
|
|
3038
|
-
slot: {
|
|
3039
|
-
__typename?: 'Slot';
|
|
3040
|
-
id: string;
|
|
3041
|
-
};
|
|
3042
|
-
currency: {
|
|
3043
|
-
__typename?: 'Currency';
|
|
3044
|
-
id: string;
|
|
3045
|
-
name?: string | null;
|
|
3046
|
-
symbol?: string | null;
|
|
3047
|
-
decimals: number;
|
|
3048
|
-
};
|
|
3049
|
-
}>;
|
|
3050
|
-
};
|
|
3051
|
-
type GetTaxCollectedEventsQueryVariables = Exact<{
|
|
3052
|
-
first: Scalars['Int']['input'];
|
|
3053
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3054
|
-
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
3055
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3056
|
-
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
3057
|
-
block?: InputMaybe<Block_Height>;
|
|
3058
|
-
}>;
|
|
3059
|
-
type GetTaxCollectedEventsQuery = {
|
|
3060
|
-
__typename?: 'Query';
|
|
3061
|
-
taxCollectedEvents: Array<{
|
|
3062
|
-
__typename?: 'TaxCollectedEvent';
|
|
3063
|
-
id: string;
|
|
3064
|
-
recipient: string;
|
|
3065
|
-
amount: string;
|
|
3066
|
-
timestamp: string;
|
|
3067
|
-
blockNumber: string;
|
|
3068
|
-
tx: string;
|
|
3069
|
-
slot: {
|
|
3070
|
-
__typename?: 'Slot';
|
|
3071
|
-
id: string;
|
|
3072
|
-
};
|
|
3073
|
-
currency: {
|
|
3074
|
-
__typename?: 'Currency';
|
|
3075
|
-
id: string;
|
|
3076
|
-
name?: string | null;
|
|
3077
|
-
symbol?: string | null;
|
|
3078
|
-
decimals: number;
|
|
3079
|
-
};
|
|
3080
|
-
}>;
|
|
3081
|
-
};
|
|
3082
|
-
type GetDepositedEventsQueryVariables = Exact<{
|
|
3083
|
-
first: Scalars['Int']['input'];
|
|
3084
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3085
|
-
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
3086
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3087
|
-
where?: InputMaybe<DepositedEvent_Filter>;
|
|
3088
|
-
block?: InputMaybe<Block_Height>;
|
|
3089
|
-
}>;
|
|
3090
|
-
type GetDepositedEventsQuery = {
|
|
3091
|
-
__typename?: 'Query';
|
|
3092
|
-
depositedEvents: Array<{
|
|
3093
|
-
__typename?: 'DepositedEvent';
|
|
3094
|
-
id: string;
|
|
3095
|
-
depositor: string;
|
|
3096
|
-
amount: string;
|
|
3097
|
-
timestamp: string;
|
|
3098
|
-
blockNumber: string;
|
|
3099
|
-
tx: string;
|
|
3100
|
-
slot: {
|
|
3101
|
-
__typename?: 'Slot';
|
|
3102
|
-
id: string;
|
|
3103
|
-
};
|
|
3104
|
-
currency: {
|
|
3105
|
-
__typename?: 'Currency';
|
|
3106
|
-
id: string;
|
|
3107
|
-
name?: string | null;
|
|
3108
|
-
symbol?: string | null;
|
|
3109
|
-
decimals: number;
|
|
3110
|
-
};
|
|
3111
|
-
}>;
|
|
3112
|
-
};
|
|
3113
|
-
type GetWithdrawnEventsQueryVariables = Exact<{
|
|
3114
|
-
first: Scalars['Int']['input'];
|
|
3115
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3116
|
-
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
3117
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3118
|
-
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
3119
|
-
block?: InputMaybe<Block_Height>;
|
|
3120
|
-
}>;
|
|
3121
|
-
type GetWithdrawnEventsQuery = {
|
|
3122
|
-
__typename?: 'Query';
|
|
3123
|
-
withdrawnEvents: Array<{
|
|
3124
|
-
__typename?: 'WithdrawnEvent';
|
|
3125
|
-
id: string;
|
|
3126
|
-
occupant: string;
|
|
3127
|
-
amount: string;
|
|
3128
|
-
timestamp: string;
|
|
3129
|
-
blockNumber: string;
|
|
3130
|
-
tx: string;
|
|
3131
|
-
slot: {
|
|
3132
|
-
__typename?: 'Slot';
|
|
3133
|
-
id: string;
|
|
3134
|
-
};
|
|
3135
|
-
currency: {
|
|
3136
|
-
__typename?: 'Currency';
|
|
3137
|
-
id: string;
|
|
3138
|
-
name?: string | null;
|
|
3139
|
-
symbol?: string | null;
|
|
3140
|
-
decimals: number;
|
|
3141
|
-
};
|
|
3142
|
-
}>;
|
|
3143
|
-
};
|
|
3144
|
-
type GetPriceUpdatedEventsQueryVariables = Exact<{
|
|
3145
|
-
first: Scalars['Int']['input'];
|
|
3146
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3147
|
-
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
3148
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3149
|
-
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
3150
|
-
block?: InputMaybe<Block_Height>;
|
|
3151
|
-
}>;
|
|
3152
|
-
type GetPriceUpdatedEventsQuery = {
|
|
3153
|
-
__typename?: 'Query';
|
|
3154
|
-
priceUpdatedEvents: Array<{
|
|
3155
|
-
__typename?: 'PriceUpdatedEvent';
|
|
3156
|
-
id: string;
|
|
3157
|
-
oldPrice: string;
|
|
3158
|
-
newPrice: string;
|
|
3159
|
-
timestamp: string;
|
|
3160
|
-
blockNumber: string;
|
|
3161
|
-
tx: string;
|
|
3162
|
-
slot: {
|
|
3163
|
-
__typename?: 'Slot';
|
|
3164
|
-
id: string;
|
|
3165
|
-
};
|
|
3166
|
-
currency: {
|
|
3167
|
-
__typename?: 'Currency';
|
|
3168
|
-
id: string;
|
|
3169
|
-
name?: string | null;
|
|
3170
|
-
symbol?: string | null;
|
|
3171
|
-
decimals: number;
|
|
3172
|
-
};
|
|
3173
|
-
}>;
|
|
3174
|
-
};
|
|
3175
|
-
type GetSlotActivityQueryVariables = Exact<{
|
|
3176
|
-
slotId: Scalars['String']['input'];
|
|
3177
|
-
first: Scalars['Int']['input'];
|
|
3178
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3179
|
-
}>;
|
|
3180
|
-
type GetSlotActivityQuery = {
|
|
3181
|
-
__typename?: 'Query';
|
|
3182
|
-
boughtEvents: Array<{
|
|
3183
|
-
__typename?: 'BoughtEvent';
|
|
3184
|
-
id: string;
|
|
3185
|
-
buyer: string;
|
|
3186
|
-
previousOccupant: string;
|
|
3187
|
-
price: string;
|
|
3188
|
-
selfAssessedPrice: string;
|
|
3189
|
-
deposit: string;
|
|
3190
|
-
timestamp: string;
|
|
3191
|
-
tx: string;
|
|
3192
|
-
currency: {
|
|
3193
|
-
__typename?: 'Currency';
|
|
3194
|
-
id: string;
|
|
3195
|
-
name?: string | null;
|
|
3196
|
-
symbol?: string | null;
|
|
3197
|
-
decimals: number;
|
|
3198
|
-
};
|
|
3199
|
-
}>;
|
|
3200
|
-
releasedEvents: Array<{
|
|
3201
|
-
__typename?: 'ReleasedEvent';
|
|
3202
|
-
id: string;
|
|
3203
|
-
occupant: string;
|
|
3204
|
-
refund: string;
|
|
3205
|
-
timestamp: string;
|
|
3206
|
-
tx: string;
|
|
3207
|
-
currency: {
|
|
3208
|
-
__typename?: 'Currency';
|
|
3209
|
-
id: string;
|
|
3210
|
-
name?: string | null;
|
|
3211
|
-
symbol?: string | null;
|
|
3212
|
-
decimals: number;
|
|
3213
|
-
};
|
|
3214
|
-
}>;
|
|
3215
|
-
liquidatedEvents: Array<{
|
|
3216
|
-
__typename?: 'LiquidatedEvent';
|
|
3217
|
-
id: string;
|
|
3218
|
-
liquidator: string;
|
|
3219
|
-
occupant: string;
|
|
3220
|
-
bounty: string;
|
|
3221
|
-
timestamp: string;
|
|
3222
|
-
tx: string;
|
|
3223
|
-
currency: {
|
|
3224
|
-
__typename?: 'Currency';
|
|
3225
|
-
id: string;
|
|
3226
|
-
name?: string | null;
|
|
3227
|
-
symbol?: string | null;
|
|
3228
|
-
decimals: number;
|
|
3229
|
-
};
|
|
3230
|
-
}>;
|
|
3231
|
-
priceUpdatedEvents: Array<{
|
|
3232
|
-
__typename?: 'PriceUpdatedEvent';
|
|
3233
|
-
id: string;
|
|
3234
|
-
oldPrice: string;
|
|
3235
|
-
newPrice: string;
|
|
3236
|
-
timestamp: string;
|
|
3237
|
-
tx: string;
|
|
3238
|
-
currency: {
|
|
3239
|
-
__typename?: 'Currency';
|
|
3240
|
-
id: string;
|
|
3241
|
-
name?: string | null;
|
|
3242
|
-
symbol?: string | null;
|
|
3243
|
-
decimals: number;
|
|
3244
|
-
};
|
|
3245
|
-
}>;
|
|
3246
|
-
depositedEvents: Array<{
|
|
3247
|
-
__typename?: 'DepositedEvent';
|
|
3248
|
-
id: string;
|
|
3249
|
-
depositor: string;
|
|
3250
|
-
amount: string;
|
|
3251
|
-
timestamp: string;
|
|
3252
|
-
tx: string;
|
|
3253
|
-
currency: {
|
|
3254
|
-
__typename?: 'Currency';
|
|
3255
|
-
id: string;
|
|
3256
|
-
name?: string | null;
|
|
3257
|
-
symbol?: string | null;
|
|
3258
|
-
decimals: number;
|
|
3259
|
-
};
|
|
3260
|
-
}>;
|
|
3261
|
-
withdrawnEvents: Array<{
|
|
3262
|
-
__typename?: 'WithdrawnEvent';
|
|
3263
|
-
id: string;
|
|
3264
|
-
occupant: string;
|
|
3265
|
-
amount: string;
|
|
3266
|
-
timestamp: string;
|
|
3267
|
-
tx: string;
|
|
3268
|
-
currency: {
|
|
3269
|
-
__typename?: 'Currency';
|
|
3270
|
-
id: string;
|
|
3271
|
-
name?: string | null;
|
|
3272
|
-
symbol?: string | null;
|
|
3273
|
-
decimals: number;
|
|
3274
|
-
};
|
|
3275
|
-
}>;
|
|
3276
|
-
taxCollectedEvents: Array<{
|
|
3277
|
-
__typename?: 'TaxCollectedEvent';
|
|
3278
|
-
id: string;
|
|
3279
|
-
recipient: string;
|
|
3280
|
-
amount: string;
|
|
3281
|
-
timestamp: string;
|
|
3282
|
-
tx: string;
|
|
3283
|
-
currency: {
|
|
3284
|
-
__typename?: 'Currency';
|
|
3285
|
-
id: string;
|
|
3286
|
-
name?: string | null;
|
|
3287
|
-
symbol?: string | null;
|
|
3288
|
-
decimals: number;
|
|
3289
|
-
};
|
|
3290
|
-
}>;
|
|
3291
|
-
taxUpdateProposedEvents: Array<{
|
|
3292
|
-
__typename?: 'TaxUpdateProposedEvent';
|
|
3293
|
-
id: string;
|
|
3294
|
-
newPercentage: string;
|
|
3295
|
-
timestamp: string;
|
|
3296
|
-
tx: string;
|
|
3297
|
-
}>;
|
|
3298
|
-
moduleUpdateProposedEvents: Array<{
|
|
3299
|
-
__typename?: 'ModuleUpdateProposedEvent';
|
|
3300
|
-
id: string;
|
|
3301
|
-
newModule: string;
|
|
3302
|
-
timestamp: string;
|
|
3303
|
-
tx: string;
|
|
3304
|
-
}>;
|
|
3305
|
-
pendingUpdateCancelledEvents: Array<{
|
|
3306
|
-
__typename?: 'PendingUpdateCancelledEvent';
|
|
3307
|
-
id: string;
|
|
3308
|
-
timestamp: string;
|
|
3309
|
-
tx: string;
|
|
3310
|
-
}>;
|
|
3311
|
-
};
|
|
3312
|
-
type GetFactoryQueryVariables = Exact<{
|
|
3313
|
-
[key: string]: never;
|
|
3314
|
-
}>;
|
|
3315
|
-
type GetFactoryQuery = {
|
|
3316
|
-
__typename?: 'Query';
|
|
3317
|
-
factories: Array<{
|
|
3318
|
-
__typename?: 'Factory';
|
|
3319
|
-
id: string;
|
|
3320
|
-
slotCount: string;
|
|
3321
|
-
}>;
|
|
3322
|
-
};
|
|
3323
|
-
type GetModulesQueryVariables = Exact<{
|
|
3324
|
-
first: Scalars['Int']['input'];
|
|
3325
|
-
}>;
|
|
3326
|
-
type GetModulesQuery = {
|
|
3327
|
-
__typename?: 'Query';
|
|
3328
|
-
modules: Array<{
|
|
3329
|
-
__typename?: 'Module';
|
|
3330
|
-
id: string;
|
|
3331
|
-
verified: boolean;
|
|
3332
|
-
name: string;
|
|
3333
|
-
version: string;
|
|
3334
|
-
}>;
|
|
3335
|
-
};
|
|
3336
|
-
type MetadataSlotFieldsFragment = {
|
|
3337
|
-
__typename?: 'MetadataSlot';
|
|
3338
|
-
id: string;
|
|
3339
|
-
uri: string;
|
|
3340
|
-
updatedBy: string;
|
|
3341
|
-
updateCount: string;
|
|
3342
|
-
createdAt: string;
|
|
3343
|
-
createdTx: string;
|
|
3344
|
-
updatedAt: string;
|
|
3345
|
-
updatedTx: string;
|
|
3346
|
-
slot: {
|
|
3347
|
-
__typename?: 'Slot';
|
|
3348
|
-
id: string;
|
|
3349
|
-
recipient: string;
|
|
3350
|
-
occupant?: string | null;
|
|
3351
|
-
price: string;
|
|
3352
|
-
deposit: string;
|
|
3353
|
-
currency: {
|
|
3354
|
-
__typename?: 'Currency';
|
|
3355
|
-
id: string;
|
|
3356
|
-
symbol?: string | null;
|
|
3357
|
-
decimals: number;
|
|
3358
|
-
};
|
|
3359
|
-
};
|
|
3360
|
-
};
|
|
3361
|
-
type GetMetadataSlotsQueryVariables = Exact<{
|
|
3362
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3363
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3364
|
-
orderBy?: InputMaybe<MetadataSlot_OrderBy>;
|
|
3365
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3366
|
-
}>;
|
|
3367
|
-
type GetMetadataSlotsQuery = {
|
|
3368
|
-
__typename?: 'Query';
|
|
3369
|
-
metadataSlots: Array<{
|
|
3370
|
-
__typename?: 'MetadataSlot';
|
|
3371
|
-
id: string;
|
|
3372
|
-
uri: string;
|
|
3373
|
-
updatedBy: string;
|
|
3374
|
-
updateCount: string;
|
|
3375
|
-
createdAt: string;
|
|
3376
|
-
createdTx: string;
|
|
3377
|
-
updatedAt: string;
|
|
3378
|
-
updatedTx: string;
|
|
3379
|
-
slot: {
|
|
3380
|
-
__typename?: 'Slot';
|
|
3381
|
-
id: string;
|
|
3382
|
-
recipient: string;
|
|
3383
|
-
occupant?: string | null;
|
|
3384
|
-
price: string;
|
|
3385
|
-
deposit: string;
|
|
3386
|
-
currency: {
|
|
3387
|
-
__typename?: 'Currency';
|
|
3388
|
-
id: string;
|
|
3389
|
-
symbol?: string | null;
|
|
3390
|
-
decimals: number;
|
|
3391
|
-
};
|
|
3392
|
-
};
|
|
3393
|
-
}>;
|
|
3394
|
-
};
|
|
3395
|
-
type GetMetadataSlotQueryVariables = Exact<{
|
|
3396
|
-
id: Scalars['ID']['input'];
|
|
3397
|
-
}>;
|
|
3398
|
-
type GetMetadataSlotQuery = {
|
|
3399
|
-
__typename?: 'Query';
|
|
3400
|
-
metadataSlot?: {
|
|
3401
|
-
__typename?: 'MetadataSlot';
|
|
3402
|
-
id: string;
|
|
3403
|
-
uri: string;
|
|
3404
|
-
updatedBy: string;
|
|
3405
|
-
updateCount: string;
|
|
3406
|
-
createdAt: string;
|
|
3407
|
-
createdTx: string;
|
|
3408
|
-
updatedAt: string;
|
|
3409
|
-
updatedTx: string;
|
|
3410
|
-
slot: {
|
|
3411
|
-
__typename?: 'Slot';
|
|
3412
|
-
id: string;
|
|
3413
|
-
recipient: string;
|
|
3414
|
-
occupant?: string | null;
|
|
3415
|
-
price: string;
|
|
3416
|
-
deposit: string;
|
|
3417
|
-
currency: {
|
|
3418
|
-
__typename?: 'Currency';
|
|
3419
|
-
id: string;
|
|
3420
|
-
symbol?: string | null;
|
|
3421
|
-
decimals: number;
|
|
3422
|
-
};
|
|
3423
|
-
};
|
|
3424
|
-
} | null;
|
|
3425
|
-
};
|
|
3426
|
-
type GetMetadataSlotsByRecipientQueryVariables = Exact<{
|
|
3427
|
-
recipient: Scalars['Bytes']['input'];
|
|
3428
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3429
|
-
}>;
|
|
3430
|
-
type GetMetadataSlotsByRecipientQuery = {
|
|
3431
|
-
__typename?: 'Query';
|
|
3432
|
-
metadataSlots: Array<{
|
|
3433
|
-
__typename?: 'MetadataSlot';
|
|
3434
|
-
id: string;
|
|
3435
|
-
uri: string;
|
|
3436
|
-
updatedBy: string;
|
|
3437
|
-
updateCount: string;
|
|
3438
|
-
createdAt: string;
|
|
3439
|
-
createdTx: string;
|
|
3440
|
-
updatedAt: string;
|
|
3441
|
-
updatedTx: string;
|
|
3442
|
-
slot: {
|
|
3443
|
-
__typename?: 'Slot';
|
|
3444
|
-
id: string;
|
|
3445
|
-
recipient: string;
|
|
3446
|
-
occupant?: string | null;
|
|
3447
|
-
price: string;
|
|
3448
|
-
deposit: string;
|
|
3449
|
-
currency: {
|
|
3450
|
-
__typename?: 'Currency';
|
|
3451
|
-
id: string;
|
|
3452
|
-
symbol?: string | null;
|
|
3453
|
-
decimals: number;
|
|
3454
|
-
};
|
|
3455
|
-
};
|
|
3456
|
-
}>;
|
|
3457
|
-
};
|
|
3458
|
-
type GetMetadataUpdatedEventsQueryVariables = Exact<{
|
|
3459
|
-
slot?: InputMaybe<Scalars['String']['input']>;
|
|
3460
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3461
|
-
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
3462
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3463
|
-
}>;
|
|
3464
|
-
type GetMetadataUpdatedEventsQuery = {
|
|
3465
|
-
__typename?: 'Query';
|
|
3466
|
-
metadataUpdatedEvents: Array<{
|
|
3467
|
-
__typename?: 'MetadataUpdatedEvent';
|
|
3468
|
-
id: string;
|
|
3469
|
-
uri: string;
|
|
3470
|
-
timestamp: string;
|
|
3471
|
-
blockNumber: string;
|
|
3472
|
-
tx: string;
|
|
3473
|
-
slot: {
|
|
3474
|
-
__typename?: 'Slot';
|
|
3475
|
-
id: string;
|
|
3476
|
-
};
|
|
3477
|
-
author: {
|
|
3478
|
-
__typename?: 'Account';
|
|
3479
|
-
id: string;
|
|
3480
|
-
type: AccountType;
|
|
3481
|
-
};
|
|
3482
|
-
}>;
|
|
3483
|
-
};
|
|
3484
|
-
type SlotFieldsFragment = {
|
|
3485
|
-
__typename?: 'Slot';
|
|
3486
|
-
id: string;
|
|
3487
|
-
recipient: string;
|
|
3488
|
-
manager: string;
|
|
3489
|
-
mutableTax: boolean;
|
|
3490
|
-
mutableModule: boolean;
|
|
3491
|
-
taxPercentage: string;
|
|
3492
|
-
occupant?: string | null;
|
|
3493
|
-
price: string;
|
|
3494
|
-
deposit: string;
|
|
3495
|
-
collectedTax: string;
|
|
3496
|
-
totalCollected: string;
|
|
3497
|
-
liquidationBountyBps: string;
|
|
3498
|
-
minDepositSeconds: string;
|
|
3499
|
-
createdAt: string;
|
|
3500
|
-
createdTx: string;
|
|
3501
|
-
updatedAt: string;
|
|
3502
|
-
recipientAccount: {
|
|
3503
|
-
__typename?: 'Account';
|
|
3504
|
-
id: string;
|
|
3505
|
-
type: AccountType;
|
|
3506
|
-
slotCount: number;
|
|
3507
|
-
occupiedCount: number;
|
|
3508
|
-
};
|
|
3509
|
-
currency: {
|
|
3510
|
-
__typename?: 'Currency';
|
|
3511
|
-
id: string;
|
|
3512
|
-
name?: string | null;
|
|
3513
|
-
symbol?: string | null;
|
|
3514
|
-
decimals: number;
|
|
3515
|
-
};
|
|
3516
|
-
module?: {
|
|
3517
|
-
__typename?: 'Module';
|
|
3518
|
-
id: string;
|
|
3519
|
-
verified: boolean;
|
|
3520
|
-
name: string;
|
|
3521
|
-
version: string;
|
|
3522
|
-
} | null;
|
|
3523
|
-
occupantAccount?: {
|
|
3524
|
-
__typename?: 'Account';
|
|
3525
|
-
id: string;
|
|
3526
|
-
type: AccountType;
|
|
3527
|
-
slotCount: number;
|
|
3528
|
-
occupiedCount: number;
|
|
3529
|
-
} | null;
|
|
3530
|
-
};
|
|
3531
|
-
type GetSlotsQueryVariables = Exact<{
|
|
3532
|
-
first: Scalars['Int']['input'];
|
|
3533
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3534
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
3535
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3536
|
-
where?: InputMaybe<Slot_Filter>;
|
|
3537
|
-
block?: InputMaybe<Block_Height>;
|
|
3538
|
-
}>;
|
|
3539
|
-
type GetSlotsQuery = {
|
|
3540
|
-
__typename?: 'Query';
|
|
3541
|
-
slots: Array<{
|
|
3542
|
-
__typename?: 'Slot';
|
|
3543
|
-
id: string;
|
|
3544
|
-
recipient: string;
|
|
3545
|
-
manager: string;
|
|
3546
|
-
mutableTax: boolean;
|
|
3547
|
-
mutableModule: boolean;
|
|
3548
|
-
taxPercentage: string;
|
|
3549
|
-
occupant?: string | null;
|
|
3550
|
-
price: string;
|
|
3551
|
-
deposit: string;
|
|
3552
|
-
collectedTax: string;
|
|
3553
|
-
totalCollected: string;
|
|
3554
|
-
liquidationBountyBps: string;
|
|
3555
|
-
minDepositSeconds: string;
|
|
3556
|
-
createdAt: string;
|
|
3557
|
-
createdTx: string;
|
|
3558
|
-
updatedAt: string;
|
|
3559
|
-
recipientAccount: {
|
|
3560
|
-
__typename?: 'Account';
|
|
3561
|
-
id: string;
|
|
3562
|
-
type: AccountType;
|
|
3563
|
-
slotCount: number;
|
|
3564
|
-
occupiedCount: number;
|
|
3565
|
-
};
|
|
3566
|
-
currency: {
|
|
3567
|
-
__typename?: 'Currency';
|
|
3568
|
-
id: string;
|
|
3569
|
-
name?: string | null;
|
|
3570
|
-
symbol?: string | null;
|
|
3571
|
-
decimals: number;
|
|
3572
|
-
};
|
|
3573
|
-
module?: {
|
|
3574
|
-
__typename?: 'Module';
|
|
3575
|
-
id: string;
|
|
3576
|
-
verified: boolean;
|
|
3577
|
-
name: string;
|
|
3578
|
-
version: string;
|
|
3579
|
-
} | null;
|
|
3580
|
-
occupantAccount?: {
|
|
3581
|
-
__typename?: 'Account';
|
|
3582
|
-
id: string;
|
|
3583
|
-
type: AccountType;
|
|
3584
|
-
slotCount: number;
|
|
3585
|
-
occupiedCount: number;
|
|
3586
|
-
} | null;
|
|
3587
|
-
}>;
|
|
3588
|
-
};
|
|
3589
|
-
type GetSlotQueryVariables = Exact<{
|
|
3590
|
-
id: Scalars['ID']['input'];
|
|
3591
|
-
block?: InputMaybe<Block_Height>;
|
|
3592
|
-
}>;
|
|
3593
|
-
type GetSlotQuery = {
|
|
3594
|
-
__typename?: 'Query';
|
|
3595
|
-
slot?: {
|
|
3596
|
-
__typename?: 'Slot';
|
|
3597
|
-
id: string;
|
|
3598
|
-
recipient: string;
|
|
3599
|
-
manager: string;
|
|
3600
|
-
mutableTax: boolean;
|
|
3601
|
-
mutableModule: boolean;
|
|
3602
|
-
taxPercentage: string;
|
|
3603
|
-
occupant?: string | null;
|
|
3604
|
-
price: string;
|
|
3605
|
-
deposit: string;
|
|
3606
|
-
collectedTax: string;
|
|
3607
|
-
totalCollected: string;
|
|
3608
|
-
liquidationBountyBps: string;
|
|
3609
|
-
minDepositSeconds: string;
|
|
3610
|
-
createdAt: string;
|
|
3611
|
-
createdTx: string;
|
|
3612
|
-
updatedAt: string;
|
|
3613
|
-
recipientAccount: {
|
|
3614
|
-
__typename?: 'Account';
|
|
3615
|
-
id: string;
|
|
3616
|
-
type: AccountType;
|
|
3617
|
-
slotCount: number;
|
|
3618
|
-
occupiedCount: number;
|
|
3619
|
-
};
|
|
3620
|
-
currency: {
|
|
3621
|
-
__typename?: 'Currency';
|
|
3622
|
-
id: string;
|
|
3623
|
-
name?: string | null;
|
|
3624
|
-
symbol?: string | null;
|
|
3625
|
-
decimals: number;
|
|
3626
|
-
};
|
|
3627
|
-
module?: {
|
|
3628
|
-
__typename?: 'Module';
|
|
3629
|
-
id: string;
|
|
3630
|
-
verified: boolean;
|
|
3631
|
-
name: string;
|
|
3632
|
-
version: string;
|
|
3633
|
-
} | null;
|
|
3634
|
-
occupantAccount?: {
|
|
3635
|
-
__typename?: 'Account';
|
|
3636
|
-
id: string;
|
|
3637
|
-
type: AccountType;
|
|
3638
|
-
slotCount: number;
|
|
3639
|
-
occupiedCount: number;
|
|
3640
|
-
} | null;
|
|
3641
|
-
} | null;
|
|
3642
|
-
};
|
|
3643
|
-
type GetSlotsByRecipientQueryVariables = Exact<{
|
|
3644
|
-
recipient: Scalars['Bytes']['input'];
|
|
3645
|
-
first: Scalars['Int']['input'];
|
|
3646
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3647
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
3648
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3649
|
-
block?: InputMaybe<Block_Height>;
|
|
3650
|
-
}>;
|
|
3651
|
-
type GetSlotsByRecipientQuery = {
|
|
3652
|
-
__typename?: 'Query';
|
|
3653
|
-
slots: Array<{
|
|
3654
|
-
__typename?: 'Slot';
|
|
3655
|
-
id: string;
|
|
3656
|
-
recipient: string;
|
|
3657
|
-
manager: string;
|
|
3658
|
-
mutableTax: boolean;
|
|
3659
|
-
mutableModule: boolean;
|
|
3660
|
-
taxPercentage: string;
|
|
3661
|
-
occupant?: string | null;
|
|
3662
|
-
price: string;
|
|
3663
|
-
deposit: string;
|
|
3664
|
-
collectedTax: string;
|
|
3665
|
-
totalCollected: string;
|
|
3666
|
-
liquidationBountyBps: string;
|
|
3667
|
-
minDepositSeconds: string;
|
|
3668
|
-
createdAt: string;
|
|
3669
|
-
createdTx: string;
|
|
3670
|
-
updatedAt: string;
|
|
3671
|
-
recipientAccount: {
|
|
3672
|
-
__typename?: 'Account';
|
|
3673
|
-
id: string;
|
|
3674
|
-
type: AccountType;
|
|
3675
|
-
slotCount: number;
|
|
3676
|
-
occupiedCount: number;
|
|
3677
|
-
};
|
|
3678
|
-
currency: {
|
|
3679
|
-
__typename?: 'Currency';
|
|
3680
|
-
id: string;
|
|
3681
|
-
name?: string | null;
|
|
3682
|
-
symbol?: string | null;
|
|
3683
|
-
decimals: number;
|
|
3684
|
-
};
|
|
3685
|
-
module?: {
|
|
3686
|
-
__typename?: 'Module';
|
|
3687
|
-
id: string;
|
|
3688
|
-
verified: boolean;
|
|
3689
|
-
name: string;
|
|
3690
|
-
version: string;
|
|
3691
|
-
} | null;
|
|
3692
|
-
occupantAccount?: {
|
|
3693
|
-
__typename?: 'Account';
|
|
3694
|
-
id: string;
|
|
3695
|
-
type: AccountType;
|
|
3696
|
-
slotCount: number;
|
|
3697
|
-
occupiedCount: number;
|
|
3698
|
-
} | null;
|
|
3699
|
-
}>;
|
|
3700
|
-
};
|
|
3701
|
-
type GetSlotsByOccupantQueryVariables = Exact<{
|
|
3702
|
-
occupant: Scalars['Bytes']['input'];
|
|
3703
|
-
first: Scalars['Int']['input'];
|
|
3704
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3705
|
-
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
3706
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
3707
|
-
block?: InputMaybe<Block_Height>;
|
|
3708
|
-
}>;
|
|
3709
|
-
type GetSlotsByOccupantQuery = {
|
|
3710
|
-
__typename?: 'Query';
|
|
3711
|
-
slots: Array<{
|
|
3712
|
-
__typename?: 'Slot';
|
|
3713
|
-
id: string;
|
|
3714
|
-
recipient: string;
|
|
3715
|
-
manager: string;
|
|
3716
|
-
mutableTax: boolean;
|
|
3717
|
-
mutableModule: boolean;
|
|
3718
|
-
taxPercentage: string;
|
|
3719
|
-
occupant?: string | null;
|
|
3720
|
-
price: string;
|
|
3721
|
-
deposit: string;
|
|
3722
|
-
collectedTax: string;
|
|
3723
|
-
totalCollected: string;
|
|
3724
|
-
liquidationBountyBps: string;
|
|
3725
|
-
minDepositSeconds: string;
|
|
3726
|
-
createdAt: string;
|
|
3727
|
-
createdTx: string;
|
|
3728
|
-
updatedAt: string;
|
|
3729
|
-
recipientAccount: {
|
|
3730
|
-
__typename?: 'Account';
|
|
3731
|
-
id: string;
|
|
3732
|
-
type: AccountType;
|
|
3733
|
-
slotCount: number;
|
|
3734
|
-
occupiedCount: number;
|
|
3735
|
-
};
|
|
3736
|
-
currency: {
|
|
3737
|
-
__typename?: 'Currency';
|
|
3738
|
-
id: string;
|
|
3739
|
-
name?: string | null;
|
|
3740
|
-
symbol?: string | null;
|
|
3741
|
-
decimals: number;
|
|
3742
|
-
};
|
|
3743
|
-
module?: {
|
|
3744
|
-
__typename?: 'Module';
|
|
3745
|
-
id: string;
|
|
3746
|
-
verified: boolean;
|
|
3747
|
-
name: string;
|
|
3748
|
-
version: string;
|
|
3749
|
-
} | null;
|
|
3750
|
-
occupantAccount?: {
|
|
3751
|
-
__typename?: 'Account';
|
|
3752
|
-
id: string;
|
|
3753
|
-
type: AccountType;
|
|
3754
|
-
slotCount: number;
|
|
3755
|
-
occupiedCount: number;
|
|
3756
|
-
} | null;
|
|
3757
|
-
}>;
|
|
3758
|
-
};
|
|
3759
|
-
declare const AccountFieldsFragmentDoc: graphql.DocumentNode;
|
|
3760
|
-
declare const CurrencyFieldsFragmentDoc: graphql.DocumentNode;
|
|
3761
|
-
declare const MetadataSlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
3762
|
-
declare const SlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
3763
|
-
declare const GetAccountDocument: graphql.DocumentNode;
|
|
3764
|
-
declare const GetAccountsDocument: graphql.DocumentNode;
|
|
3765
|
-
declare const GetSlotDeployedEventsDocument: graphql.DocumentNode;
|
|
3766
|
-
declare const GetRecentEventsDocument: graphql.DocumentNode;
|
|
3767
|
-
declare const GetBoughtEventsDocument: graphql.DocumentNode;
|
|
3768
|
-
declare const GetReleasedEventsDocument: graphql.DocumentNode;
|
|
3769
|
-
declare const GetLiquidatedEventsDocument: graphql.DocumentNode;
|
|
3770
|
-
declare const GetSettledEventsDocument: graphql.DocumentNode;
|
|
3771
|
-
declare const GetTaxCollectedEventsDocument: graphql.DocumentNode;
|
|
3772
|
-
declare const GetDepositedEventsDocument: graphql.DocumentNode;
|
|
3773
|
-
declare const GetWithdrawnEventsDocument: graphql.DocumentNode;
|
|
3774
|
-
declare const GetPriceUpdatedEventsDocument: graphql.DocumentNode;
|
|
3775
|
-
declare const GetSlotActivityDocument: graphql.DocumentNode;
|
|
3776
|
-
declare const GetFactoryDocument: graphql.DocumentNode;
|
|
3777
|
-
declare const GetModulesDocument: graphql.DocumentNode;
|
|
3778
|
-
declare const GetMetadataSlotsDocument: graphql.DocumentNode;
|
|
3779
|
-
declare const GetMetadataSlotDocument: graphql.DocumentNode;
|
|
3780
|
-
declare const GetMetadataSlotsByRecipientDocument: graphql.DocumentNode;
|
|
3781
|
-
declare const GetMetadataUpdatedEventsDocument: graphql.DocumentNode;
|
|
3782
|
-
declare const GetSlotsDocument: graphql.DocumentNode;
|
|
3783
|
-
declare const GetSlotDocument: graphql.DocumentNode;
|
|
3784
|
-
declare const GetSlotsByRecipientDocument: graphql.DocumentNode;
|
|
3785
|
-
declare const GetSlotsByOccupantDocument: graphql.DocumentNode;
|
|
3786
|
-
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
3787
|
-
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
3788
|
-
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
3789
|
-
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
3790
|
-
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
3791
|
-
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
3792
|
-
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
3793
|
-
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
3794
|
-
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
3795
|
-
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
3796
|
-
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
3797
|
-
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
3798
|
-
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
3799
|
-
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
3800
|
-
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
3801
|
-
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
3802
|
-
GetModules(variables: GetModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
3803
|
-
GetMetadataSlots(variables?: GetMetadataSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsQuery>;
|
|
3804
|
-
GetMetadataSlot(variables: GetMetadataSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotQuery>;
|
|
3805
|
-
GetMetadataSlotsByRecipient(variables: GetMetadataSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
3806
|
-
GetMetadataUpdatedEvents(variables?: GetMetadataUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataUpdatedEventsQuery>;
|
|
3807
|
-
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
3808
|
-
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
3809
|
-
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
3810
|
-
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
3811
|
-
};
|
|
3812
|
-
type Sdk = ReturnType<typeof getSdk>;
|
|
3813
|
-
|
|
3814
|
-
/**
|
|
3815
|
-
* Module namespace for MetadataModule operations.
|
|
3816
|
-
* Accessible via `client.modules.metadata`.
|
|
3817
|
-
*
|
|
3818
|
-
* Read: subgraph queries for MetadataSlot entities
|
|
3819
|
-
* Write: `updateMetadata(moduleAddress, slot, uri)` on the MetadataModule contract
|
|
3820
|
-
* RPC read: `tokenURI(moduleAddress, slot)` on the MetadataModule contract
|
|
3821
|
-
*/
|
|
3822
|
-
declare class MetadataModuleClient {
|
|
3823
|
-
private readonly sdk;
|
|
3824
|
-
private readonly _publicClient?;
|
|
3825
|
-
private readonly _walletClient?;
|
|
3826
|
-
constructor(opts: {
|
|
3827
|
-
sdk: ReturnType<typeof getSdk>;
|
|
3828
|
-
publicClient?: PublicClient;
|
|
3829
|
-
walletClient?: WalletClient;
|
|
3830
|
-
});
|
|
3831
|
-
private get wallet();
|
|
3832
|
-
private get account();
|
|
3833
|
-
private get chain();
|
|
3834
|
-
private get publicClient();
|
|
3835
|
-
private query;
|
|
3836
|
-
/**
|
|
3837
|
-
* Verify that a given address is a MetadataModule by calling `name()` on-chain.
|
|
3838
|
-
* @param moduleAddress - The module contract address to verify
|
|
3839
|
-
* @throws SlotsError if the contract doesn't return the expected name
|
|
3840
|
-
*/
|
|
3841
|
-
private verifyModule;
|
|
3842
|
-
/** Get all slots with metadata, ordered by most recently updated. */
|
|
3843
|
-
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlots"]>): Promise<GetMetadataSlotsQuery>;
|
|
3844
|
-
/** Get a single metadata slot by slot address. */
|
|
3845
|
-
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlot"]>): Promise<GetMetadataSlotQuery>;
|
|
3846
|
-
/** Get all metadata slots for a given recipient. */
|
|
3847
|
-
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlotsByRecipient"]>): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
3848
|
-
/** Get metadata update history for a slot. */
|
|
3849
|
-
getUpdateHistory(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataUpdatedEvents"]>): Promise<GetMetadataUpdatedEventsQuery>;
|
|
3850
|
-
/**
|
|
3851
|
-
* Read the current URI for a slot directly from chain (bypasses subgraph).
|
|
3852
|
-
* @param moduleAddress - The MetadataModule contract address (from the slot's on-chain module field)
|
|
3853
|
-
* @param slot - The slot contract address
|
|
3854
|
-
*/
|
|
3855
|
-
getURI(moduleAddress: Address, slot: Address): Promise<string>;
|
|
3856
|
-
/**
|
|
3857
|
-
* Update the metadata URI for a slot. Only callable by the current occupant.
|
|
3858
|
-
* Verifies on-chain that the address is a MetadataModule before writing.
|
|
3859
|
-
* @param moduleAddress - The MetadataModule contract address (from the slot's on-chain module field)
|
|
3860
|
-
* @param slot - The slot contract address
|
|
3861
|
-
* @param uri - The new URI (e.g. ipfs://..., https://...)
|
|
3862
|
-
* @returns Transaction hash
|
|
3863
|
-
*/
|
|
3864
|
-
updateMetadata(moduleAddress: Address, slot: Address, uri: string): Promise<Hash>;
|
|
3865
|
-
}
|
|
3866
|
-
|
|
3867
|
-
interface SubgraphMeta {
|
|
3868
|
-
_meta: {
|
|
3869
|
-
block: {
|
|
3870
|
-
number: number;
|
|
3871
|
-
hash: string;
|
|
3872
|
-
timestamp: number;
|
|
3873
|
-
};
|
|
3874
|
-
hasIndexingErrors: boolean;
|
|
3875
|
-
};
|
|
3876
|
-
}
|
|
3877
|
-
declare enum SlotsChain {
|
|
3878
|
-
BASE_SEPOLIA = 84532,
|
|
3879
|
-
ARBITRUM = 42161
|
|
3880
|
-
}
|
|
3881
|
-
declare const SUBGRAPH_URLS: Record<SlotsChain, string>;
|
|
3882
|
-
interface SlotConfig {
|
|
3883
|
-
mutableTax: boolean;
|
|
3884
|
-
mutableModule: boolean;
|
|
3885
|
-
manager: Address;
|
|
3886
|
-
}
|
|
3887
|
-
interface SlotInitParams {
|
|
3888
|
-
taxPercentage: bigint;
|
|
3889
|
-
module: Address;
|
|
3890
|
-
liquidationBountyBps: bigint;
|
|
3891
|
-
minDepositSeconds: bigint;
|
|
3892
|
-
}
|
|
3893
|
-
interface CreateSlotParams {
|
|
3894
|
-
recipient: Address;
|
|
3895
|
-
currency: Address;
|
|
3896
|
-
config: SlotConfig;
|
|
3897
|
-
initParams: SlotInitParams;
|
|
3898
|
-
}
|
|
3899
|
-
interface CreateSlotsParams extends CreateSlotParams {
|
|
3900
|
-
count: bigint;
|
|
3901
|
-
}
|
|
3902
|
-
interface BuyParams {
|
|
3903
|
-
slot: Address;
|
|
3904
|
-
depositAmount: bigint;
|
|
3905
|
-
selfAssessedPrice: bigint;
|
|
3906
|
-
}
|
|
3907
|
-
interface SlotsClientConfig {
|
|
3908
|
-
chainId: SlotsChain;
|
|
3909
|
-
factoryAddress?: Address;
|
|
3910
|
-
publicClient?: PublicClient;
|
|
3911
|
-
walletClient?: WalletClient;
|
|
3912
|
-
subgraphUrl?: string;
|
|
3913
|
-
subgraphApiKey?: string;
|
|
3914
|
-
headers?: Record<string, string>;
|
|
3915
|
-
}
|
|
3916
|
-
/**
|
|
3917
|
-
* Client for reading and writing 0xSlots protocol data.
|
|
3918
|
-
*
|
|
3919
|
-
* Reads come from a Graph Protocol subgraph (via graphql-request).
|
|
3920
|
-
* Writes go through a viem WalletClient and handle ERC-20 approvals automatically.
|
|
3921
|
-
*
|
|
3922
|
-
* @example
|
|
3923
|
-
* ```ts
|
|
3924
|
-
* const client = new SlotsClient({
|
|
3925
|
-
* chainId: SlotsChain.ARBITRUM,
|
|
3926
|
-
* publicClient,
|
|
3927
|
-
* walletClient,
|
|
3928
|
-
* });
|
|
3929
|
-
* const slots = await client.getSlots({ first: 10 });
|
|
3930
|
-
* ```
|
|
3931
|
-
*/
|
|
3932
|
-
declare class SlotsClient {
|
|
3933
|
-
private readonly sdk;
|
|
3934
|
-
private readonly chainId;
|
|
3935
|
-
private readonly gqlClient;
|
|
3936
|
-
private readonly _publicClient?;
|
|
3937
|
-
private readonly walletClient?;
|
|
3938
|
-
private readonly _factory?;
|
|
3939
|
-
private _atomicSupport;
|
|
3940
|
-
/** Module namespaces for protocol extensions. */
|
|
3941
|
-
readonly modules: {
|
|
3942
|
-
metadata: MetadataModuleClient;
|
|
3943
|
-
};
|
|
3944
|
-
constructor(config: SlotsClientConfig);
|
|
3945
|
-
/** Returns the chain ID this client was configured for. */
|
|
3946
|
-
getChainId(): SlotsChain;
|
|
3947
|
-
/** Returns the underlying GraphQL client (for advanced usage). */
|
|
3948
|
-
getClient(): GraphQLClient;
|
|
3949
|
-
/** Returns the generated GraphQL SDK (for queries not wrapped by this client). */
|
|
3950
|
-
getSdk(): {
|
|
3951
|
-
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
3952
|
-
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
3953
|
-
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
3954
|
-
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
3955
|
-
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
3956
|
-
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
3957
|
-
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
3958
|
-
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
3959
|
-
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
3960
|
-
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
3961
|
-
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
3962
|
-
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
3963
|
-
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
3964
|
-
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
3965
|
-
GetModules(variables: GetModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
3966
|
-
GetMetadataSlots(variables?: GetMetadataSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsQuery>;
|
|
3967
|
-
GetMetadataSlot(variables: GetMetadataSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotQuery>;
|
|
3968
|
-
GetMetadataSlotsByRecipient(variables: GetMetadataSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
3969
|
-
GetMetadataUpdatedEvents(variables?: GetMetadataUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataUpdatedEventsQuery>;
|
|
3970
|
-
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
3971
|
-
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
3972
|
-
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
3973
|
-
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
3974
|
-
};
|
|
3975
|
-
private get publicClient();
|
|
3976
|
-
private get factory();
|
|
3977
|
-
private get wallet();
|
|
3978
|
-
private get account();
|
|
3979
|
-
private get chain();
|
|
3980
|
-
private assertPositive;
|
|
3981
|
-
private query;
|
|
3982
|
-
/** Fetch a paginated list of slots. */
|
|
3983
|
-
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetSlots"]>): Promise<GetSlotsQuery>;
|
|
3984
|
-
/** Fetch a single slot by its address. */
|
|
3985
|
-
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetSlot"]>): Promise<GetSlotQuery>;
|
|
3986
|
-
/** Fetch all slots owned by a given recipient address. */
|
|
3987
|
-
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByRecipient"]>): Promise<GetSlotsByRecipientQuery>;
|
|
3988
|
-
/** Fetch all slots currently occupied by a given address. */
|
|
3989
|
-
getSlotsByOccupant(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByOccupant"]>): Promise<GetSlotsByOccupantQuery>;
|
|
3990
|
-
/** Fetch factory configuration. */
|
|
3991
|
-
getFactory(): Promise<GetFactoryQuery>;
|
|
3992
|
-
/** Fetch registered modules. */
|
|
3993
|
-
getModules(...args: Parameters<ReturnType<typeof getSdk>["GetModules"]>): Promise<GetModulesQuery>;
|
|
3994
|
-
/** Fetch slot deployed events with optional filters. */
|
|
3995
|
-
getSlotDeployedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSlotDeployedEvents"]>): Promise<GetSlotDeployedEventsQuery>;
|
|
3996
|
-
/** Fetch bought events with optional filters. */
|
|
3997
|
-
getBoughtEvents(...args: Parameters<ReturnType<typeof getSdk>["GetBoughtEvents"]>): Promise<GetBoughtEventsQuery>;
|
|
3998
|
-
/** Fetch settled events with optional filters. */
|
|
3999
|
-
getSettledEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSettledEvents"]>): Promise<GetSettledEventsQuery>;
|
|
4000
|
-
/** Fetch tax-collected events with optional filters. */
|
|
4001
|
-
getTaxCollectedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetTaxCollectedEvents"]>): Promise<GetTaxCollectedEventsQuery>;
|
|
4002
|
-
/** Fetch all activity for a specific slot (all event types). */
|
|
4003
|
-
getSlotActivity(...args: Parameters<ReturnType<typeof getSdk>["GetSlotActivity"]>): Promise<GetSlotActivityQuery>;
|
|
4004
|
-
/** Fetch the most recent events across all slots. */
|
|
4005
|
-
getRecentEvents(...args: Parameters<ReturnType<typeof getSdk>["GetRecentEvents"]>): Promise<GetRecentEventsQuery>;
|
|
4006
|
-
/** Fetch a single account by address. */
|
|
4007
|
-
getAccount(...args: Parameters<ReturnType<typeof getSdk>["GetAccount"]>): Promise<GetAccountQuery>;
|
|
4008
|
-
/** Fetch a paginated list of accounts. */
|
|
4009
|
-
getAccounts(...args: Parameters<ReturnType<typeof getSdk>["GetAccounts"]>): Promise<GetAccountsQuery>;
|
|
4010
|
-
/** Fetch released events with optional filters. */
|
|
4011
|
-
getReleasedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetReleasedEvents"]>): Promise<GetReleasedEventsQuery>;
|
|
4012
|
-
/** Fetch liquidated events with optional filters. */
|
|
4013
|
-
getLiquidatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetLiquidatedEvents"]>): Promise<GetLiquidatedEventsQuery>;
|
|
4014
|
-
/** Fetch deposited events with optional filters. */
|
|
4015
|
-
getDepositedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetDepositedEvents"]>): Promise<GetDepositedEventsQuery>;
|
|
4016
|
-
/** Fetch withdrawn events with optional filters. */
|
|
4017
|
-
getWithdrawnEvents(...args: Parameters<ReturnType<typeof getSdk>["GetWithdrawnEvents"]>): Promise<GetWithdrawnEventsQuery>;
|
|
4018
|
-
/** Fetch price-updated events with optional filters. */
|
|
4019
|
-
getPriceUpdatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetPriceUpdatedEvents"]>): Promise<GetPriceUpdatedEventsQuery>;
|
|
4020
|
-
/** Fetch subgraph indexing metadata (latest block, indexing errors). */
|
|
4021
|
-
getMeta(): Promise<SubgraphMeta>;
|
|
4022
|
-
/**
|
|
4023
|
-
* Read full slot info from on-chain (RPC, not subgraph).
|
|
4024
|
-
* @param slot - Slot contract address.
|
|
4025
|
-
* @returns On-chain slot info tuple.
|
|
4026
|
-
* @throws {SlotsError} If the RPC call fails.
|
|
4027
|
-
*/
|
|
4028
|
-
getSlotInfo(slot: Address): Promise<{
|
|
4029
|
-
recipient: `0x${string}`;
|
|
4030
|
-
currency: `0x${string}`;
|
|
4031
|
-
manager: `0x${string}`;
|
|
4032
|
-
mutableTax: boolean;
|
|
4033
|
-
mutableModule: boolean;
|
|
4034
|
-
occupant: `0x${string}`;
|
|
4035
|
-
price: bigint;
|
|
4036
|
-
taxPercentage: bigint;
|
|
4037
|
-
module: `0x${string}`;
|
|
4038
|
-
liquidationBountyBps: bigint;
|
|
4039
|
-
minDepositSeconds: bigint;
|
|
4040
|
-
deposit: bigint;
|
|
4041
|
-
collectedTax: bigint;
|
|
4042
|
-
taxOwed: bigint;
|
|
4043
|
-
secondsUntilLiquidation: bigint;
|
|
4044
|
-
insolvent: boolean;
|
|
4045
|
-
hasPendingTax: boolean;
|
|
4046
|
-
pendingTaxPercentage: bigint;
|
|
4047
|
-
hasPendingModule: boolean;
|
|
4048
|
-
pendingModule: `0x${string}`;
|
|
4049
|
-
}>;
|
|
4050
|
-
/**
|
|
4051
|
-
* Deploy a new slot via the factory contract.
|
|
4052
|
-
* @param params - Slot creation parameters (recipient, currency, config, initParams).
|
|
4053
|
-
* @returns Transaction hash.
|
|
4054
|
-
*/
|
|
4055
|
-
createSlot(params: CreateSlotParams): Promise<Hash>;
|
|
4056
|
-
/**
|
|
4057
|
-
* Deploy multiple identical slots in a single transaction via the factory contract.
|
|
4058
|
-
* @param params - Slot creation parameters including count.
|
|
4059
|
-
* @returns Transaction hash.
|
|
4060
|
-
*/
|
|
4061
|
-
createSlots(params: CreateSlotsParams): Promise<Hash>;
|
|
4062
|
-
/**
|
|
4063
|
-
* Buy a slot (or force-buy an occupied one). Handles ERC-20 approval automatically.
|
|
4064
|
-
* @param params - Buy parameters (slot address, deposit amount, self-assessed price).
|
|
4065
|
-
* @returns Transaction hash.
|
|
4066
|
-
* @throws {SlotsError} If depositAmount or selfAssessedPrice is not positive, or the transaction fails.
|
|
4067
|
-
*/
|
|
4068
|
-
buy(params: BuyParams): Promise<Hash>;
|
|
4069
|
-
/**
|
|
4070
|
-
* Self-assess a new price for an occupied slot (occupant only).
|
|
4071
|
-
* @param slot - The slot contract address.
|
|
4072
|
-
* @param newPrice - The new self-assessed price (can be 0).
|
|
4073
|
-
* @returns Transaction hash.
|
|
4074
|
-
*/
|
|
4075
|
-
selfAssess(slot: Address, newPrice: bigint): Promise<Hash>;
|
|
4076
|
-
/**
|
|
4077
|
-
* Top up deposit on a slot (occupant only). Handles ERC-20 approval automatically.
|
|
4078
|
-
* @param slot - The slot contract address.
|
|
4079
|
-
* @param amount - The amount to deposit (must be > 0).
|
|
4080
|
-
* @returns Transaction hash.
|
|
4081
|
-
* @throws {SlotsError} If amount is not positive, or the transaction fails.
|
|
4082
|
-
*/
|
|
4083
|
-
topUp(slot: Address, amount: bigint): Promise<Hash>;
|
|
4084
|
-
/**
|
|
4085
|
-
* Withdraw from deposit (occupant only). Cannot go below minimum deposit.
|
|
4086
|
-
* @param slot - The slot contract address.
|
|
4087
|
-
* @param amount - The amount to withdraw (must be > 0).
|
|
4088
|
-
* @returns Transaction hash.
|
|
4089
|
-
* @throws {SlotsError} If amount is not positive, or the transaction fails.
|
|
4090
|
-
*/
|
|
4091
|
-
withdraw(slot: Address, amount: bigint): Promise<Hash>;
|
|
4092
|
-
/**
|
|
4093
|
-
* Release a slot (occupant only). Returns remaining deposit to the occupant.
|
|
4094
|
-
* @param slot - The slot contract address.
|
|
4095
|
-
* @returns Transaction hash.
|
|
4096
|
-
*/
|
|
4097
|
-
release(slot: Address): Promise<Hash>;
|
|
4098
|
-
/**
|
|
4099
|
-
* Collect accumulated tax (permissionless).
|
|
4100
|
-
* @param slot - The slot contract address.
|
|
4101
|
-
* @returns Transaction hash.
|
|
4102
|
-
*/
|
|
4103
|
-
collect(slot: Address): Promise<Hash>;
|
|
4104
|
-
/**
|
|
4105
|
-
* Liquidate an insolvent slot (permissionless). Caller receives bounty.
|
|
4106
|
-
* @param slot - The slot contract address.
|
|
4107
|
-
* @returns Transaction hash.
|
|
4108
|
-
*/
|
|
4109
|
-
liquidate(slot: Address): Promise<Hash>;
|
|
4110
|
-
/**
|
|
4111
|
-
* Propose a tax rate update (manager only, slot must have mutableTax).
|
|
4112
|
-
* @param slot - The slot contract address.
|
|
4113
|
-
* @param newPct - The new tax percentage.
|
|
4114
|
-
* @returns Transaction hash.
|
|
4115
|
-
*/
|
|
4116
|
-
proposeTaxUpdate(slot: Address, newPct: bigint): Promise<Hash>;
|
|
4117
|
-
/**
|
|
4118
|
-
* Propose a module update (manager only, slot must have mutableModule).
|
|
4119
|
-
* @param slot - The slot contract address.
|
|
4120
|
-
* @param newModule - The new module contract address.
|
|
4121
|
-
* @returns Transaction hash.
|
|
4122
|
-
*/
|
|
4123
|
-
proposeModuleUpdate(slot: Address, newModule: Address): Promise<Hash>;
|
|
4124
|
-
/**
|
|
4125
|
-
* Cancel pending updates (manager only).
|
|
4126
|
-
* @param slot - The slot contract address.
|
|
4127
|
-
* @returns Transaction hash.
|
|
4128
|
-
*/
|
|
4129
|
-
cancelPendingUpdates(slot: Address): Promise<Hash>;
|
|
4130
|
-
/**
|
|
4131
|
-
* Set liquidation bounty bps (manager only).
|
|
4132
|
-
* @param slot - The slot contract address.
|
|
4133
|
-
* @param newBps - The new bounty in basis points (0-10000).
|
|
4134
|
-
* @returns Transaction hash.
|
|
4135
|
-
* @throws {SlotsError} If newBps is outside 0-10000, or the transaction fails.
|
|
4136
|
-
*/
|
|
4137
|
-
setLiquidationBounty(slot: Address, newBps: bigint): Promise<Hash>;
|
|
4138
|
-
/**
|
|
4139
|
-
* Batch multiple slot calls into one transaction via multicall.
|
|
4140
|
-
* @param slot - The slot contract address.
|
|
4141
|
-
* @param calls - Array of function calls to batch.
|
|
4142
|
-
* @returns Transaction hash.
|
|
4143
|
-
* @throws {SlotsError} If calls array is empty, or the transaction fails.
|
|
4144
|
-
*/
|
|
4145
|
-
multicall(slot: Address, calls: {
|
|
4146
|
-
functionName: string;
|
|
4147
|
-
args?: any[];
|
|
4148
|
-
}[]): Promise<Hash>;
|
|
4149
|
-
/** Check if wallet supports atomic batch calls (EIP-5792). */
|
|
4150
|
-
private supportsAtomicBatch;
|
|
4151
|
-
/** Poll EIP-5792 getCallsStatus until the batch settles, then return a tx hash. */
|
|
4152
|
-
private pollBatchReceipt;
|
|
4153
|
-
/**
|
|
4154
|
-
* Execute a contract call that needs ERC-20 allowance.
|
|
4155
|
-
* If wallet supports atomic batch (EIP-5792): sends approve + action as one atomic call.
|
|
4156
|
-
* Otherwise: chains approve tx (if needed) then action tx.
|
|
4157
|
-
*/
|
|
4158
|
-
private withAllowance;
|
|
4159
|
-
}
|
|
4160
|
-
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
1
|
+
export { A as Account, a as AccountFieldsFragment, b as AccountFieldsFragmentDoc, c as AccountSlotsAsOccupantArgs, d as AccountSlotsAsRecipientArgs, e as AccountType, f as Account_Filter, g as Account_OrderBy, h as Aggregation_Current, i as Aggregation_Interval, B as BlockChangedFilter, j as Block_Height, k as BoughtEvent, l as BoughtEvent_Filter, m as BoughtEvent_OrderBy, n as BuyParams, C as CreateSlotParams, o as CreateSlotsParams, p as Currency, q as CurrencyFieldsFragment, r as CurrencyFieldsFragmentDoc, s as Currency_Filter, t as Currency_OrderBy, D as DepositedEvent, u as DepositedEvent_Filter, v as DepositedEvent_OrderBy, E as Exact, F as Factory, w as FactoryModulesArgs, x as Factory_Filter, y as Factory_OrderBy, G as GetAccountDocument, z as GetAccountQuery, H as GetAccountQueryVariables, I as GetAccountsDocument, J as GetAccountsQuery, K as GetAccountsQueryVariables, L as GetBoughtEventsDocument, M as GetBoughtEventsQuery, N as GetBoughtEventsQueryVariables, O as GetDepositedEventsDocument, P as GetDepositedEventsQuery, Q as GetDepositedEventsQueryVariables, R as GetFactoryDocument, S as GetFactoryQuery, T as GetFactoryQueryVariables, U as GetLiquidatedEventsDocument, V as GetLiquidatedEventsQuery, W as GetLiquidatedEventsQueryVariables, X as GetMetadataSlotDocument, Y as GetMetadataSlotQuery, Z as GetMetadataSlotQueryVariables, _ as GetMetadataSlotsByRecipientDocument, $ as GetMetadataSlotsByRecipientQuery, a0 as GetMetadataSlotsByRecipientQueryVariables, a1 as GetMetadataSlotsDocument, a2 as GetMetadataSlotsQuery, a3 as GetMetadataSlotsQueryVariables, a4 as GetMetadataUpdatedEventsDocument, a5 as GetMetadataUpdatedEventsQuery, a6 as GetMetadataUpdatedEventsQueryVariables, a7 as GetModulesDocument, a8 as GetModulesQuery, a9 as GetModulesQueryVariables, aa as GetPriceUpdatedEventsDocument, ab as GetPriceUpdatedEventsQuery, ac as GetPriceUpdatedEventsQueryVariables, ad as GetRecentEventsDocument, ae as GetRecentEventsQuery, af as GetRecentEventsQueryVariables, ag as GetReleasedEventsDocument, ah as GetReleasedEventsQuery, ai as GetReleasedEventsQueryVariables, aj as GetSettledEventsDocument, ak as GetSettledEventsQuery, al as GetSettledEventsQueryVariables, am as GetSlotActivityDocument, an as GetSlotActivityQuery, ao as GetSlotActivityQueryVariables, ap as GetSlotDeployedEventsDocument, aq as GetSlotDeployedEventsQuery, ar as GetSlotDeployedEventsQueryVariables, as as GetSlotDocument, at as GetSlotQuery, au as GetSlotQueryVariables, av as GetSlotsByOccupantDocument, aw as GetSlotsByOccupantQuery, ax as GetSlotsByOccupantQueryVariables, ay as GetSlotsByRecipientDocument, az as GetSlotsByRecipientQuery, aA as GetSlotsByRecipientQueryVariables, aB as GetSlotsDocument, aC as GetSlotsQuery, aD as GetSlotsQueryVariables, aE as GetTaxCollectedEventsDocument, aF as GetTaxCollectedEventsQuery, aG as GetTaxCollectedEventsQueryVariables, aH as GetWithdrawnEventsDocument, aI as GetWithdrawnEventsQuery, aJ as GetWithdrawnEventsQueryVariables, aK as Incremental, aL as InputMaybe, aM as LiquidatedEvent, aN as LiquidatedEvent_Filter, aO as LiquidatedEvent_OrderBy, aP as MakeEmpty, aQ as MakeMaybe, aR as MakeOptional, aS as Maybe, aT as MetadataModuleClient, aU as MetadataSlot, aV as MetadataSlotFieldsFragment, aW as MetadataSlotFieldsFragmentDoc, aX as MetadataSlot_Filter, aY as MetadataSlot_OrderBy, aZ as MetadataUpdatedEvent, a_ as MetadataUpdatedEvent_Filter, a$ as MetadataUpdatedEvent_OrderBy, b0 as Module, b1 as ModuleUpdateProposedEvent, b2 as ModuleUpdateProposedEvent_Filter, b3 as ModuleUpdateProposedEvent_OrderBy, b4 as Module_Filter, b5 as Module_OrderBy, b6 as NftCollection, b7 as NftCollectionTokensArgs, b8 as NftCollection_Filter, b9 as NftCollection_OrderBy, ba as NftToken, bb as NftToken_Filter, bc as NftToken_OrderBy, bd as OrderDirection, be as PendingUpdateCancelledEvent, bf as PendingUpdateCancelledEvent_Filter, bg as PendingUpdateCancelledEvent_OrderBy, bh as PriceUpdatedEvent, bi as PriceUpdatedEvent_Filter, bj as PriceUpdatedEvent_OrderBy, bk as Query, bl as QueryAccountArgs, bm as QueryAccountsArgs, bn as QueryBoughtEventArgs, bo as QueryBoughtEventsArgs, bp as QueryCurrenciesArgs, bq as QueryCurrencyArgs, br as QueryDepositedEventArgs, bs as QueryDepositedEventsArgs, bt as QueryFactoriesArgs, bu as QueryFactoryArgs, bv as QueryLiquidatedEventArgs, bw as QueryLiquidatedEventsArgs, bx as QueryMetadataSlotArgs, by as QueryMetadataSlotsArgs, bz as QueryMetadataUpdatedEventArgs, bA as QueryMetadataUpdatedEventsArgs, bB as QueryModuleArgs, bC as QueryModuleUpdateProposedEventArgs, bD as QueryModuleUpdateProposedEventsArgs, bE as QueryModulesArgs, bF as QueryNftcollectionArgs, bG as QueryNftcollectionsArgs, bH as QueryNfttokenArgs, bI as QueryNfttokensArgs, bJ as QueryPendingUpdateCancelledEventArgs, bK as QueryPendingUpdateCancelledEventsArgs, bL as QueryPriceUpdatedEventArgs, bM as QueryPriceUpdatedEventsArgs, bN as QueryReleasedEventArgs, bO as QueryReleasedEventsArgs, bP as QuerySettledEventArgs, bQ as QuerySettledEventsArgs, bR as QuerySlotArgs, bS as QuerySlotDeployedEventArgs, bT as QuerySlotDeployedEventsArgs, bU as QuerySlotsArgs, bV as QueryTaxCollectedEventArgs, bW as QueryTaxCollectedEventsArgs, bX as QueryTaxUpdateProposedEventArgs, bY as QueryTaxUpdateProposedEventsArgs, bZ as QueryWithdrawnEventArgs, b_ as QueryWithdrawnEventsArgs, b$ as Query_MetaArgs, c0 as ReleasedEvent, c1 as ReleasedEvent_Filter, c2 as ReleasedEvent_OrderBy, c3 as SUBGRAPH_URLS, c4 as Scalars, c5 as Sdk, c6 as SdkFunctionWrapper, c7 as SettledEvent, c8 as SettledEvent_Filter, c9 as SettledEvent_OrderBy, ca as Slot, cb as SlotConfig, cc as SlotDeployedEvent, cd as SlotDeployedEvent_Filter, ce as SlotDeployedEvent_OrderBy, cf as SlotDepositsArgs, cg as SlotFieldsFragment, ch as SlotFieldsFragmentDoc, ci as SlotInitParams, cj as SlotLiquidationsArgs, ck as SlotMetadataUpdatesArgs, cl as SlotModuleUpdateProposalsArgs, cm as SlotPendingUpdateCancellationsArgs, cn as SlotPriceUpdatesArgs, co as SlotPurchasesArgs, cp as SlotReleasesArgs, cq as SlotSettlementsArgs, cr as SlotTaxCollectionsArgs, cs as SlotTaxUpdateProposalsArgs, ct as SlotWithdrawalsArgs, cu as Slot_Filter, cv as Slot_OrderBy, cw as SlotsChain, cx as SlotsClient, cy as SlotsClientConfig, cz as SubgraphMeta, cA as TaxCollectedEvent, cB as TaxCollectedEvent_Filter, cC as TaxCollectedEvent_OrderBy, cD as TaxUpdateProposedEvent, cE as TaxUpdateProposedEvent_Filter, cF as TaxUpdateProposedEvent_OrderBy, cG as WithdrawnEvent, cH as WithdrawnEvent_Filter, cI as WithdrawnEvent_OrderBy, cJ as _Block_, cK as _Meta_, cL as _SubgraphErrorPolicy_, cM as createSlotsClient, cN as getSdk } from './client-BtZNzXuf.js';
|
|
2
|
+
import 'graphql-request';
|
|
3
|
+
import 'graphql';
|
|
4
|
+
import 'viem';
|
|
4161
5
|
|
|
4162
6
|
/** Error thrown by SlotsClient operations, wrapping the original cause with operation context. */
|
|
4163
7
|
declare class SlotsError extends Error {
|
|
@@ -4166,4 +10,4 @@ declare class SlotsError extends Error {
|
|
|
4166
10
|
constructor(operation: string, cause: unknown);
|
|
4167
11
|
}
|
|
4168
12
|
|
|
4169
|
-
export {
|
|
13
|
+
export { SlotsError };
|