@0xslots/sdk 0.9.2 → 0.10.1
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-VQ5PSOCE.js +1628 -0
- package/dist/chunk-VQ5PSOCE.js.map +1 -0
- package/dist/client-BcIWQW9H.d.ts +4553 -0
- package/dist/index.d.ts +20 -4155
- package/dist/index.js +25 -1572
- package/dist/index.js.map +1 -1
- package/dist/react.d.ts +101 -0
- package/dist/react.js +331 -0
- package/dist/react.js.map +1 -0
- package/package.json +23 -4
|
@@ -0,0 +1,4553 @@
|
|
|
1
|
+
import { GraphQLClient, RequestOptions } from 'graphql-request';
|
|
2
|
+
import { PublicClient, WalletClient, Address, Hash } from 'viem';
|
|
3
|
+
import * as graphql from 'graphql';
|
|
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
|
+
adType?: Maybe<Scalars['String']['output']>;
|
|
632
|
+
createdAt: Scalars['BigInt']['output'];
|
|
633
|
+
createdTx: Scalars['Bytes']['output'];
|
|
634
|
+
id: Scalars['ID']['output'];
|
|
635
|
+
rawJson?: Maybe<Scalars['String']['output']>;
|
|
636
|
+
slot: Slot;
|
|
637
|
+
updateCount: Scalars['BigInt']['output'];
|
|
638
|
+
updatedAt: Scalars['BigInt']['output'];
|
|
639
|
+
updatedBy: Scalars['Bytes']['output'];
|
|
640
|
+
updatedTx: Scalars['Bytes']['output'];
|
|
641
|
+
uri: Scalars['String']['output'];
|
|
642
|
+
};
|
|
643
|
+
type MetadataSlot_Filter = {
|
|
644
|
+
/** Filter for the block changed event. */
|
|
645
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
646
|
+
adType?: InputMaybe<Scalars['String']['input']>;
|
|
647
|
+
adType_contains?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
+
adType_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
+
adType_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
650
|
+
adType_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
+
adType_gt?: InputMaybe<Scalars['String']['input']>;
|
|
652
|
+
adType_gte?: InputMaybe<Scalars['String']['input']>;
|
|
653
|
+
adType_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
654
|
+
adType_lt?: InputMaybe<Scalars['String']['input']>;
|
|
655
|
+
adType_lte?: InputMaybe<Scalars['String']['input']>;
|
|
656
|
+
adType_not?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
+
adType_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
658
|
+
adType_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
659
|
+
adType_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
660
|
+
adType_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
661
|
+
adType_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
662
|
+
adType_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
663
|
+
adType_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
664
|
+
adType_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
665
|
+
adType_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
666
|
+
and?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
667
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
668
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
669
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
670
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
671
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
672
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
673
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
674
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
675
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
676
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
677
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
678
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
679
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
680
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
681
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
682
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
683
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
684
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
685
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
686
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
687
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
688
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
689
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
690
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
691
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
692
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
693
|
+
or?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
694
|
+
rawJson?: InputMaybe<Scalars['String']['input']>;
|
|
695
|
+
rawJson_contains?: InputMaybe<Scalars['String']['input']>;
|
|
696
|
+
rawJson_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
697
|
+
rawJson_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
698
|
+
rawJson_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
699
|
+
rawJson_gt?: InputMaybe<Scalars['String']['input']>;
|
|
700
|
+
rawJson_gte?: InputMaybe<Scalars['String']['input']>;
|
|
701
|
+
rawJson_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
702
|
+
rawJson_lt?: InputMaybe<Scalars['String']['input']>;
|
|
703
|
+
rawJson_lte?: InputMaybe<Scalars['String']['input']>;
|
|
704
|
+
rawJson_not?: InputMaybe<Scalars['String']['input']>;
|
|
705
|
+
rawJson_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
706
|
+
rawJson_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
+
rawJson_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
708
|
+
rawJson_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
709
|
+
rawJson_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
710
|
+
rawJson_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
711
|
+
rawJson_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
712
|
+
rawJson_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
713
|
+
rawJson_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
714
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
715
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
716
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
717
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
718
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
719
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
720
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
721
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
722
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
723
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
724
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
725
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
726
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
727
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
728
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
729
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
731
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
735
|
+
updateCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
736
|
+
updateCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
737
|
+
updateCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
738
|
+
updateCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
739
|
+
updateCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
740
|
+
updateCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
741
|
+
updateCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
742
|
+
updateCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
743
|
+
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
744
|
+
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
745
|
+
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
746
|
+
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
747
|
+
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
748
|
+
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
749
|
+
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
750
|
+
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
751
|
+
updatedBy?: InputMaybe<Scalars['Bytes']['input']>;
|
|
752
|
+
updatedBy_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
753
|
+
updatedBy_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
754
|
+
updatedBy_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
755
|
+
updatedBy_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
756
|
+
updatedBy_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
757
|
+
updatedBy_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
758
|
+
updatedBy_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
759
|
+
updatedBy_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
760
|
+
updatedBy_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
761
|
+
updatedTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
762
|
+
updatedTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
763
|
+
updatedTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
764
|
+
updatedTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
765
|
+
updatedTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
766
|
+
updatedTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
767
|
+
updatedTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
768
|
+
updatedTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
769
|
+
updatedTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
770
|
+
updatedTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
771
|
+
uri?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
+
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
773
|
+
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
774
|
+
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
775
|
+
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
776
|
+
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
777
|
+
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
778
|
+
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
779
|
+
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
780
|
+
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
781
|
+
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
782
|
+
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
783
|
+
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
784
|
+
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
785
|
+
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
786
|
+
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
787
|
+
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
788
|
+
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
789
|
+
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
790
|
+
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
791
|
+
};
|
|
792
|
+
type MetadataSlot_OrderBy = 'adType' | 'createdAt' | 'createdTx' | 'id' | 'rawJson' | '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';
|
|
793
|
+
type MetadataUpdatedEvent = {
|
|
794
|
+
__typename?: 'MetadataUpdatedEvent';
|
|
795
|
+
adType?: Maybe<Scalars['String']['output']>;
|
|
796
|
+
author: Account;
|
|
797
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
798
|
+
id: Scalars['ID']['output'];
|
|
799
|
+
rawJson?: Maybe<Scalars['String']['output']>;
|
|
800
|
+
slot: Slot;
|
|
801
|
+
timestamp: Scalars['BigInt']['output'];
|
|
802
|
+
tx: Scalars['Bytes']['output'];
|
|
803
|
+
uri: Scalars['String']['output'];
|
|
804
|
+
};
|
|
805
|
+
type MetadataUpdatedEvent_Filter = {
|
|
806
|
+
/** Filter for the block changed event. */
|
|
807
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
808
|
+
adType?: InputMaybe<Scalars['String']['input']>;
|
|
809
|
+
adType_contains?: InputMaybe<Scalars['String']['input']>;
|
|
810
|
+
adType_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
811
|
+
adType_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
812
|
+
adType_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
813
|
+
adType_gt?: InputMaybe<Scalars['String']['input']>;
|
|
814
|
+
adType_gte?: InputMaybe<Scalars['String']['input']>;
|
|
815
|
+
adType_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
816
|
+
adType_lt?: InputMaybe<Scalars['String']['input']>;
|
|
817
|
+
adType_lte?: InputMaybe<Scalars['String']['input']>;
|
|
818
|
+
adType_not?: InputMaybe<Scalars['String']['input']>;
|
|
819
|
+
adType_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
+
adType_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
821
|
+
adType_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
822
|
+
adType_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
823
|
+
adType_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
824
|
+
adType_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
825
|
+
adType_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
826
|
+
adType_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
827
|
+
adType_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
828
|
+
and?: InputMaybe<Array<InputMaybe<MetadataUpdatedEvent_Filter>>>;
|
|
829
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
830
|
+
author_?: InputMaybe<Account_Filter>;
|
|
831
|
+
author_contains?: InputMaybe<Scalars['String']['input']>;
|
|
832
|
+
author_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
833
|
+
author_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
834
|
+
author_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
835
|
+
author_gt?: InputMaybe<Scalars['String']['input']>;
|
|
836
|
+
author_gte?: InputMaybe<Scalars['String']['input']>;
|
|
837
|
+
author_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
838
|
+
author_lt?: InputMaybe<Scalars['String']['input']>;
|
|
839
|
+
author_lte?: InputMaybe<Scalars['String']['input']>;
|
|
840
|
+
author_not?: InputMaybe<Scalars['String']['input']>;
|
|
841
|
+
author_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
842
|
+
author_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
843
|
+
author_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
844
|
+
author_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
845
|
+
author_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
846
|
+
author_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
847
|
+
author_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
848
|
+
author_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
849
|
+
author_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
850
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
851
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
852
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
853
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
854
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
855
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
856
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
857
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
858
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
859
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
860
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
861
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
862
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
863
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
864
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
865
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
866
|
+
or?: InputMaybe<Array<InputMaybe<MetadataUpdatedEvent_Filter>>>;
|
|
867
|
+
rawJson?: InputMaybe<Scalars['String']['input']>;
|
|
868
|
+
rawJson_contains?: InputMaybe<Scalars['String']['input']>;
|
|
869
|
+
rawJson_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
870
|
+
rawJson_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
871
|
+
rawJson_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
872
|
+
rawJson_gt?: InputMaybe<Scalars['String']['input']>;
|
|
873
|
+
rawJson_gte?: InputMaybe<Scalars['String']['input']>;
|
|
874
|
+
rawJson_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
875
|
+
rawJson_lt?: InputMaybe<Scalars['String']['input']>;
|
|
876
|
+
rawJson_lte?: InputMaybe<Scalars['String']['input']>;
|
|
877
|
+
rawJson_not?: InputMaybe<Scalars['String']['input']>;
|
|
878
|
+
rawJson_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
879
|
+
rawJson_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
880
|
+
rawJson_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
881
|
+
rawJson_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
882
|
+
rawJson_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
883
|
+
rawJson_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
884
|
+
rawJson_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
885
|
+
rawJson_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
886
|
+
rawJson_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
887
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
888
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
889
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
890
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
891
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
892
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
893
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
894
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
895
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
896
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
897
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
898
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
899
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
900
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
901
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
902
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
903
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
904
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
905
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
906
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
907
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
908
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
909
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
910
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
911
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
912
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
913
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
914
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
915
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
916
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
917
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
918
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
919
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
920
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
921
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
922
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
923
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
924
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
925
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
926
|
+
uri?: InputMaybe<Scalars['String']['input']>;
|
|
927
|
+
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
928
|
+
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
929
|
+
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
930
|
+
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
931
|
+
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
932
|
+
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
933
|
+
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
934
|
+
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
935
|
+
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
936
|
+
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
937
|
+
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
938
|
+
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
939
|
+
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
940
|
+
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
941
|
+
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
942
|
+
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
943
|
+
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
944
|
+
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
945
|
+
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
946
|
+
};
|
|
947
|
+
type MetadataUpdatedEvent_OrderBy = 'adType' | 'author' | 'author__id' | 'author__occupiedCount' | 'author__slotCount' | 'author__type' | 'blockNumber' | 'id' | 'rawJson' | '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';
|
|
948
|
+
type Module = {
|
|
949
|
+
__typename?: 'Module';
|
|
950
|
+
factory: Factory;
|
|
951
|
+
id: Scalars['ID']['output'];
|
|
952
|
+
name: Scalars['String']['output'];
|
|
953
|
+
verified: Scalars['Boolean']['output'];
|
|
954
|
+
version: Scalars['String']['output'];
|
|
955
|
+
};
|
|
956
|
+
type ModuleUpdateProposedEvent = {
|
|
957
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
958
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
959
|
+
id: Scalars['ID']['output'];
|
|
960
|
+
newModule: Scalars['Bytes']['output'];
|
|
961
|
+
slot: Slot;
|
|
962
|
+
timestamp: Scalars['BigInt']['output'];
|
|
963
|
+
tx: Scalars['Bytes']['output'];
|
|
964
|
+
};
|
|
965
|
+
type ModuleUpdateProposedEvent_Filter = {
|
|
966
|
+
/** Filter for the block changed event. */
|
|
967
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
968
|
+
and?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
969
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
970
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
971
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
972
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
973
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
974
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
975
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
976
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
977
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
978
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
979
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
980
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
981
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
982
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
983
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
984
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
985
|
+
newModule?: InputMaybe<Scalars['Bytes']['input']>;
|
|
986
|
+
newModule_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
987
|
+
newModule_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
988
|
+
newModule_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
989
|
+
newModule_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
990
|
+
newModule_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
991
|
+
newModule_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
992
|
+
newModule_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
993
|
+
newModule_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
994
|
+
newModule_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
995
|
+
or?: InputMaybe<Array<InputMaybe<ModuleUpdateProposedEvent_Filter>>>;
|
|
996
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
997
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
998
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
999
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1000
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1001
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1002
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1003
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1004
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1005
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1006
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1007
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1008
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1009
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1010
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1011
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1012
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1013
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1014
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1015
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1016
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1017
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1018
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1019
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1020
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1021
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1022
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1023
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1024
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1025
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1026
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1027
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1028
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1029
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1030
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1031
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1032
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1033
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1034
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1035
|
+
};
|
|
1036
|
+
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';
|
|
1037
|
+
type Module_Filter = {
|
|
1038
|
+
/** Filter for the block changed event. */
|
|
1039
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1040
|
+
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
1041
|
+
factory?: InputMaybe<Scalars['String']['input']>;
|
|
1042
|
+
factory_?: InputMaybe<Factory_Filter>;
|
|
1043
|
+
factory_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1044
|
+
factory_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1045
|
+
factory_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1046
|
+
factory_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1047
|
+
factory_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1048
|
+
factory_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1049
|
+
factory_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1050
|
+
factory_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1051
|
+
factory_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1052
|
+
factory_not?: InputMaybe<Scalars['String']['input']>;
|
|
1053
|
+
factory_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1054
|
+
factory_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1055
|
+
factory_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1056
|
+
factory_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1057
|
+
factory_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1058
|
+
factory_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1059
|
+
factory_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1060
|
+
factory_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1061
|
+
factory_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1062
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1063
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1064
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1065
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1066
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1067
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1068
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1069
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1070
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1071
|
+
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1072
|
+
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1073
|
+
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1074
|
+
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1075
|
+
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1076
|
+
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1077
|
+
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1078
|
+
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1079
|
+
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1080
|
+
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
1081
|
+
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1082
|
+
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1083
|
+
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1084
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1085
|
+
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1086
|
+
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1087
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1088
|
+
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1089
|
+
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1090
|
+
or?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
1091
|
+
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1092
|
+
verified_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1093
|
+
verified_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1094
|
+
verified_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1095
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
1096
|
+
version_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1097
|
+
version_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1098
|
+
version_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1099
|
+
version_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1100
|
+
version_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1101
|
+
version_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1102
|
+
version_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1103
|
+
version_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1104
|
+
version_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1105
|
+
version_not?: InputMaybe<Scalars['String']['input']>;
|
|
1106
|
+
version_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1107
|
+
version_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1108
|
+
version_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1109
|
+
version_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1110
|
+
version_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1111
|
+
version_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1112
|
+
version_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1113
|
+
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1114
|
+
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1115
|
+
};
|
|
1116
|
+
type Module_OrderBy = 'factory' | 'factory__id' | 'factory__slotCount' | 'id' | 'name' | 'verified' | 'version';
|
|
1117
|
+
type NftCollection = {
|
|
1118
|
+
__typename?: 'NFTCollection';
|
|
1119
|
+
createdAt: Scalars['BigInt']['output'];
|
|
1120
|
+
createdTx: Scalars['Bytes']['output'];
|
|
1121
|
+
creator: Scalars['Bytes']['output'];
|
|
1122
|
+
currency: Currency;
|
|
1123
|
+
factory: Scalars['Bytes']['output'];
|
|
1124
|
+
id: Scalars['ID']['output'];
|
|
1125
|
+
name: Scalars['String']['output'];
|
|
1126
|
+
symbol: Scalars['String']['output'];
|
|
1127
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
1128
|
+
tokens: Array<NftToken>;
|
|
1129
|
+
totalSupply: Scalars['BigInt']['output'];
|
|
1130
|
+
};
|
|
1131
|
+
type NftCollectionTokensArgs = {
|
|
1132
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1133
|
+
orderBy?: InputMaybe<NftToken_OrderBy>;
|
|
1134
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1135
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1136
|
+
where?: InputMaybe<NftToken_Filter>;
|
|
1137
|
+
};
|
|
1138
|
+
type NftCollection_Filter = {
|
|
1139
|
+
/** Filter for the block changed event. */
|
|
1140
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1141
|
+
and?: InputMaybe<Array<InputMaybe<NftCollection_Filter>>>;
|
|
1142
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1143
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1144
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1145
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1146
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1147
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1148
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1149
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1150
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1151
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1152
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1153
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1154
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1155
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1156
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1157
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1158
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1159
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1160
|
+
creator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1161
|
+
creator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1162
|
+
creator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1163
|
+
creator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1164
|
+
creator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1165
|
+
creator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1166
|
+
creator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1167
|
+
creator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1168
|
+
creator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1169
|
+
creator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1170
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1171
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
1172
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1173
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1174
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1176
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1177
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1178
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1179
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1183
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1187
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1190
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1191
|
+
factory?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1192
|
+
factory_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1193
|
+
factory_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1194
|
+
factory_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1195
|
+
factory_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1196
|
+
factory_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1197
|
+
factory_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1198
|
+
factory_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1199
|
+
factory_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1200
|
+
factory_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1201
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1202
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1203
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1204
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1205
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1206
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1207
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1208
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1209
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1210
|
+
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1211
|
+
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1212
|
+
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1213
|
+
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1214
|
+
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1215
|
+
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1216
|
+
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1217
|
+
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1218
|
+
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1219
|
+
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
1220
|
+
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1221
|
+
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1222
|
+
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1223
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1224
|
+
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1225
|
+
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1226
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1227
|
+
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1228
|
+
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1229
|
+
or?: InputMaybe<Array<InputMaybe<NftCollection_Filter>>>;
|
|
1230
|
+
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
1231
|
+
symbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1232
|
+
symbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1233
|
+
symbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1234
|
+
symbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1235
|
+
symbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1236
|
+
symbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1237
|
+
symbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1238
|
+
symbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1239
|
+
symbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1240
|
+
symbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
1241
|
+
symbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1242
|
+
symbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1243
|
+
symbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1244
|
+
symbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1245
|
+
symbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1246
|
+
symbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1247
|
+
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1248
|
+
symbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1249
|
+
symbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1250
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1251
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1252
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1253
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1254
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1255
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1256
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1257
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1258
|
+
tokens_?: InputMaybe<NftToken_Filter>;
|
|
1259
|
+
totalSupply?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1260
|
+
totalSupply_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1261
|
+
totalSupply_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1262
|
+
totalSupply_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1263
|
+
totalSupply_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1264
|
+
totalSupply_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1265
|
+
totalSupply_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1266
|
+
totalSupply_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1267
|
+
};
|
|
1268
|
+
type NftCollection_OrderBy = 'createdAt' | 'createdTx' | 'creator' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'factory' | 'id' | 'name' | 'symbol' | 'taxPercentage' | 'tokens' | 'totalSupply';
|
|
1269
|
+
type NftToken = {
|
|
1270
|
+
__typename?: 'NFTToken';
|
|
1271
|
+
collection: NftCollection;
|
|
1272
|
+
id: Scalars['ID']['output'];
|
|
1273
|
+
mintedAt: Scalars['BigInt']['output'];
|
|
1274
|
+
mintedTx: Scalars['Bytes']['output'];
|
|
1275
|
+
slot: Slot;
|
|
1276
|
+
tokenId: Scalars['BigInt']['output'];
|
|
1277
|
+
uri: Scalars['String']['output'];
|
|
1278
|
+
};
|
|
1279
|
+
type NftToken_Filter = {
|
|
1280
|
+
/** Filter for the block changed event. */
|
|
1281
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1282
|
+
and?: InputMaybe<Array<InputMaybe<NftToken_Filter>>>;
|
|
1283
|
+
collection?: InputMaybe<Scalars['String']['input']>;
|
|
1284
|
+
collection_?: InputMaybe<NftCollection_Filter>;
|
|
1285
|
+
collection_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1286
|
+
collection_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1287
|
+
collection_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1288
|
+
collection_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1289
|
+
collection_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1290
|
+
collection_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1291
|
+
collection_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1292
|
+
collection_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1293
|
+
collection_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1294
|
+
collection_not?: InputMaybe<Scalars['String']['input']>;
|
|
1295
|
+
collection_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1296
|
+
collection_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1297
|
+
collection_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1298
|
+
collection_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1299
|
+
collection_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1300
|
+
collection_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1301
|
+
collection_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1302
|
+
collection_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1303
|
+
collection_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1304
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1305
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1306
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1307
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1308
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1309
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1310
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1311
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1312
|
+
mintedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1313
|
+
mintedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1314
|
+
mintedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1315
|
+
mintedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1316
|
+
mintedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1317
|
+
mintedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1318
|
+
mintedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1319
|
+
mintedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1320
|
+
mintedTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1321
|
+
mintedTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1322
|
+
mintedTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1323
|
+
mintedTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1324
|
+
mintedTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1325
|
+
mintedTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1326
|
+
mintedTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1327
|
+
mintedTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1328
|
+
mintedTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1329
|
+
mintedTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1330
|
+
or?: InputMaybe<Array<InputMaybe<NftToken_Filter>>>;
|
|
1331
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1332
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1333
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1334
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1335
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1336
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1337
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1338
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1339
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1340
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1341
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1342
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1343
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1344
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1345
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1346
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1347
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1348
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1349
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1350
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1351
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1352
|
+
tokenId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1353
|
+
tokenId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1354
|
+
tokenId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1355
|
+
tokenId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1356
|
+
tokenId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1357
|
+
tokenId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1358
|
+
tokenId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1359
|
+
tokenId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1360
|
+
uri?: InputMaybe<Scalars['String']['input']>;
|
|
1361
|
+
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1362
|
+
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1363
|
+
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1364
|
+
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1365
|
+
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1366
|
+
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1367
|
+
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1368
|
+
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1369
|
+
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1370
|
+
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
1371
|
+
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1372
|
+
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1373
|
+
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1374
|
+
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1375
|
+
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1376
|
+
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1377
|
+
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1378
|
+
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1379
|
+
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1380
|
+
};
|
|
1381
|
+
type NftToken_OrderBy = 'collection' | 'collection__createdAt' | 'collection__createdTx' | 'collection__creator' | 'collection__factory' | 'collection__id' | 'collection__name' | 'collection__symbol' | 'collection__taxPercentage' | 'collection__totalSupply' | 'id' | 'mintedAt' | 'mintedTx' | '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' | 'tokenId' | 'uri';
|
|
1382
|
+
/** Defines the order direction, either ascending or descending */
|
|
1383
|
+
type OrderDirection = 'asc' | 'desc';
|
|
1384
|
+
type PendingUpdateCancelledEvent = {
|
|
1385
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
1386
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1387
|
+
id: Scalars['ID']['output'];
|
|
1388
|
+
slot: Slot;
|
|
1389
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1390
|
+
tx: Scalars['Bytes']['output'];
|
|
1391
|
+
};
|
|
1392
|
+
type PendingUpdateCancelledEvent_Filter = {
|
|
1393
|
+
/** Filter for the block changed event. */
|
|
1394
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1395
|
+
and?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
1396
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1397
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1398
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1399
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1400
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1401
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1402
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1403
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1404
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1405
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1406
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1407
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1408
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1409
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1410
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1411
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1412
|
+
or?: InputMaybe<Array<InputMaybe<PendingUpdateCancelledEvent_Filter>>>;
|
|
1413
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1414
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1415
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1416
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1417
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1418
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1419
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1420
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1421
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1422
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1423
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1424
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1425
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1426
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1428
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1429
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1430
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1431
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1432
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1434
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1435
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1436
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1437
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1438
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1439
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1440
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1441
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1442
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1443
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1444
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1445
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1446
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1447
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1448
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1449
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1450
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1451
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1452
|
+
};
|
|
1453
|
+
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';
|
|
1454
|
+
type PriceUpdatedEvent = {
|
|
1455
|
+
__typename?: 'PriceUpdatedEvent';
|
|
1456
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1457
|
+
currency: Currency;
|
|
1458
|
+
id: Scalars['ID']['output'];
|
|
1459
|
+
newPrice: Scalars['BigInt']['output'];
|
|
1460
|
+
oldPrice: Scalars['BigInt']['output'];
|
|
1461
|
+
slot: Slot;
|
|
1462
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1463
|
+
tx: Scalars['Bytes']['output'];
|
|
1464
|
+
};
|
|
1465
|
+
type PriceUpdatedEvent_Filter = {
|
|
1466
|
+
/** Filter for the block changed event. */
|
|
1467
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1468
|
+
and?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
1469
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1470
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1471
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1472
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1473
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1474
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1475
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1476
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1477
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1478
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
1479
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1480
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1481
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1482
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1483
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1484
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1485
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1486
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1487
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1488
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1489
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1490
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1491
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1492
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1493
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1494
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1495
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1496
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1497
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1498
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1499
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1500
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1501
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1502
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1503
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1504
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1505
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1506
|
+
newPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1507
|
+
newPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1508
|
+
newPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1509
|
+
newPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1510
|
+
newPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1511
|
+
newPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1512
|
+
newPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1513
|
+
newPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1514
|
+
oldPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1515
|
+
oldPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1516
|
+
oldPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1517
|
+
oldPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1518
|
+
oldPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1519
|
+
oldPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1520
|
+
oldPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1521
|
+
oldPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1522
|
+
or?: InputMaybe<Array<InputMaybe<PriceUpdatedEvent_Filter>>>;
|
|
1523
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1524
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1525
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1526
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1527
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1528
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1530
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1531
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1532
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1533
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1534
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1535
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1536
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1537
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1538
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1539
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1540
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1541
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1542
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1543
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1544
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1545
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1546
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1547
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1548
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1549
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1550
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1551
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1552
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1553
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1554
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1555
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1556
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1557
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1558
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1559
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1560
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1561
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1562
|
+
};
|
|
1563
|
+
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';
|
|
1564
|
+
type Query = {
|
|
1565
|
+
__typename?: 'Query';
|
|
1566
|
+
/** Access to subgraph metadata */
|
|
1567
|
+
_meta?: Maybe<_Meta_>;
|
|
1568
|
+
account?: Maybe<Account>;
|
|
1569
|
+
accounts: Array<Account>;
|
|
1570
|
+
boughtEvent?: Maybe<BoughtEvent>;
|
|
1571
|
+
boughtEvents: Array<BoughtEvent>;
|
|
1572
|
+
currencies: Array<Currency>;
|
|
1573
|
+
currency?: Maybe<Currency>;
|
|
1574
|
+
depositedEvent?: Maybe<DepositedEvent>;
|
|
1575
|
+
depositedEvents: Array<DepositedEvent>;
|
|
1576
|
+
factories: Array<Factory>;
|
|
1577
|
+
factory?: Maybe<Factory>;
|
|
1578
|
+
liquidatedEvent?: Maybe<LiquidatedEvent>;
|
|
1579
|
+
liquidatedEvents: Array<LiquidatedEvent>;
|
|
1580
|
+
metadataSlot?: Maybe<MetadataSlot>;
|
|
1581
|
+
metadataSlots: Array<MetadataSlot>;
|
|
1582
|
+
metadataUpdatedEvent?: Maybe<MetadataUpdatedEvent>;
|
|
1583
|
+
metadataUpdatedEvents: Array<MetadataUpdatedEvent>;
|
|
1584
|
+
module?: Maybe<Module>;
|
|
1585
|
+
moduleUpdateProposedEvent?: Maybe<ModuleUpdateProposedEvent>;
|
|
1586
|
+
moduleUpdateProposedEvents: Array<ModuleUpdateProposedEvent>;
|
|
1587
|
+
modules: Array<Module>;
|
|
1588
|
+
nftcollection?: Maybe<NftCollection>;
|
|
1589
|
+
nftcollections: Array<NftCollection>;
|
|
1590
|
+
nfttoken?: Maybe<NftToken>;
|
|
1591
|
+
nfttokens: Array<NftToken>;
|
|
1592
|
+
pendingUpdateCancelledEvent?: Maybe<PendingUpdateCancelledEvent>;
|
|
1593
|
+
pendingUpdateCancelledEvents: Array<PendingUpdateCancelledEvent>;
|
|
1594
|
+
priceUpdatedEvent?: Maybe<PriceUpdatedEvent>;
|
|
1595
|
+
priceUpdatedEvents: Array<PriceUpdatedEvent>;
|
|
1596
|
+
releasedEvent?: Maybe<ReleasedEvent>;
|
|
1597
|
+
releasedEvents: Array<ReleasedEvent>;
|
|
1598
|
+
settledEvent?: Maybe<SettledEvent>;
|
|
1599
|
+
settledEvents: Array<SettledEvent>;
|
|
1600
|
+
slot?: Maybe<Slot>;
|
|
1601
|
+
slotDeployedEvent?: Maybe<SlotDeployedEvent>;
|
|
1602
|
+
slotDeployedEvents: Array<SlotDeployedEvent>;
|
|
1603
|
+
slots: Array<Slot>;
|
|
1604
|
+
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
1605
|
+
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
1606
|
+
taxUpdateProposedEvent?: Maybe<TaxUpdateProposedEvent>;
|
|
1607
|
+
taxUpdateProposedEvents: Array<TaxUpdateProposedEvent>;
|
|
1608
|
+
withdrawnEvent?: Maybe<WithdrawnEvent>;
|
|
1609
|
+
withdrawnEvents: Array<WithdrawnEvent>;
|
|
1610
|
+
};
|
|
1611
|
+
type Query_MetaArgs = {
|
|
1612
|
+
block?: InputMaybe<Block_Height>;
|
|
1613
|
+
};
|
|
1614
|
+
type QueryAccountArgs = {
|
|
1615
|
+
block?: InputMaybe<Block_Height>;
|
|
1616
|
+
id: Scalars['ID']['input'];
|
|
1617
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1618
|
+
};
|
|
1619
|
+
type QueryAccountsArgs = {
|
|
1620
|
+
block?: InputMaybe<Block_Height>;
|
|
1621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1622
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
1623
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1624
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1625
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1626
|
+
where?: InputMaybe<Account_Filter>;
|
|
1627
|
+
};
|
|
1628
|
+
type QueryBoughtEventArgs = {
|
|
1629
|
+
block?: InputMaybe<Block_Height>;
|
|
1630
|
+
id: Scalars['ID']['input'];
|
|
1631
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1632
|
+
};
|
|
1633
|
+
type QueryBoughtEventsArgs = {
|
|
1634
|
+
block?: InputMaybe<Block_Height>;
|
|
1635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1636
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
1637
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1638
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1639
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1640
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
1641
|
+
};
|
|
1642
|
+
type QueryCurrenciesArgs = {
|
|
1643
|
+
block?: InputMaybe<Block_Height>;
|
|
1644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1645
|
+
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
1646
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1647
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1648
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1649
|
+
where?: InputMaybe<Currency_Filter>;
|
|
1650
|
+
};
|
|
1651
|
+
type QueryCurrencyArgs = {
|
|
1652
|
+
block?: InputMaybe<Block_Height>;
|
|
1653
|
+
id: Scalars['ID']['input'];
|
|
1654
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1655
|
+
};
|
|
1656
|
+
type QueryDepositedEventArgs = {
|
|
1657
|
+
block?: InputMaybe<Block_Height>;
|
|
1658
|
+
id: Scalars['ID']['input'];
|
|
1659
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1660
|
+
};
|
|
1661
|
+
type QueryDepositedEventsArgs = {
|
|
1662
|
+
block?: InputMaybe<Block_Height>;
|
|
1663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1664
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
1665
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1666
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1667
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1668
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
1669
|
+
};
|
|
1670
|
+
type QueryFactoriesArgs = {
|
|
1671
|
+
block?: InputMaybe<Block_Height>;
|
|
1672
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1673
|
+
orderBy?: InputMaybe<Factory_OrderBy>;
|
|
1674
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1675
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1676
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1677
|
+
where?: InputMaybe<Factory_Filter>;
|
|
1678
|
+
};
|
|
1679
|
+
type QueryFactoryArgs = {
|
|
1680
|
+
block?: InputMaybe<Block_Height>;
|
|
1681
|
+
id: Scalars['ID']['input'];
|
|
1682
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1683
|
+
};
|
|
1684
|
+
type QueryLiquidatedEventArgs = {
|
|
1685
|
+
block?: InputMaybe<Block_Height>;
|
|
1686
|
+
id: Scalars['ID']['input'];
|
|
1687
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1688
|
+
};
|
|
1689
|
+
type QueryLiquidatedEventsArgs = {
|
|
1690
|
+
block?: InputMaybe<Block_Height>;
|
|
1691
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1692
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
1693
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1694
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1695
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1696
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1697
|
+
};
|
|
1698
|
+
type QueryMetadataSlotArgs = {
|
|
1699
|
+
block?: InputMaybe<Block_Height>;
|
|
1700
|
+
id: Scalars['ID']['input'];
|
|
1701
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1702
|
+
};
|
|
1703
|
+
type QueryMetadataSlotsArgs = {
|
|
1704
|
+
block?: InputMaybe<Block_Height>;
|
|
1705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1706
|
+
orderBy?: InputMaybe<MetadataSlot_OrderBy>;
|
|
1707
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1708
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1709
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1710
|
+
where?: InputMaybe<MetadataSlot_Filter>;
|
|
1711
|
+
};
|
|
1712
|
+
type QueryMetadataUpdatedEventArgs = {
|
|
1713
|
+
block?: InputMaybe<Block_Height>;
|
|
1714
|
+
id: Scalars['ID']['input'];
|
|
1715
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1716
|
+
};
|
|
1717
|
+
type QueryMetadataUpdatedEventsArgs = {
|
|
1718
|
+
block?: InputMaybe<Block_Height>;
|
|
1719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1720
|
+
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
1721
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1722
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1723
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1724
|
+
where?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
1725
|
+
};
|
|
1726
|
+
type QueryModuleArgs = {
|
|
1727
|
+
block?: InputMaybe<Block_Height>;
|
|
1728
|
+
id: Scalars['ID']['input'];
|
|
1729
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1730
|
+
};
|
|
1731
|
+
type QueryModuleUpdateProposedEventArgs = {
|
|
1732
|
+
block?: InputMaybe<Block_Height>;
|
|
1733
|
+
id: Scalars['ID']['input'];
|
|
1734
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1735
|
+
};
|
|
1736
|
+
type QueryModuleUpdateProposedEventsArgs = {
|
|
1737
|
+
block?: InputMaybe<Block_Height>;
|
|
1738
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1739
|
+
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
1740
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1741
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1742
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1743
|
+
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
1744
|
+
};
|
|
1745
|
+
type QueryModulesArgs = {
|
|
1746
|
+
block?: InputMaybe<Block_Height>;
|
|
1747
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1748
|
+
orderBy?: InputMaybe<Module_OrderBy>;
|
|
1749
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1750
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1751
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1752
|
+
where?: InputMaybe<Module_Filter>;
|
|
1753
|
+
};
|
|
1754
|
+
type QueryNftcollectionArgs = {
|
|
1755
|
+
block?: InputMaybe<Block_Height>;
|
|
1756
|
+
id: Scalars['ID']['input'];
|
|
1757
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1758
|
+
};
|
|
1759
|
+
type QueryNftcollectionsArgs = {
|
|
1760
|
+
block?: InputMaybe<Block_Height>;
|
|
1761
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1762
|
+
orderBy?: InputMaybe<NftCollection_OrderBy>;
|
|
1763
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1764
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1765
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1766
|
+
where?: InputMaybe<NftCollection_Filter>;
|
|
1767
|
+
};
|
|
1768
|
+
type QueryNfttokenArgs = {
|
|
1769
|
+
block?: InputMaybe<Block_Height>;
|
|
1770
|
+
id: Scalars['ID']['input'];
|
|
1771
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1772
|
+
};
|
|
1773
|
+
type QueryNfttokensArgs = {
|
|
1774
|
+
block?: InputMaybe<Block_Height>;
|
|
1775
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1776
|
+
orderBy?: InputMaybe<NftToken_OrderBy>;
|
|
1777
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1778
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1779
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1780
|
+
where?: InputMaybe<NftToken_Filter>;
|
|
1781
|
+
};
|
|
1782
|
+
type QueryPendingUpdateCancelledEventArgs = {
|
|
1783
|
+
block?: InputMaybe<Block_Height>;
|
|
1784
|
+
id: Scalars['ID']['input'];
|
|
1785
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1786
|
+
};
|
|
1787
|
+
type QueryPendingUpdateCancelledEventsArgs = {
|
|
1788
|
+
block?: InputMaybe<Block_Height>;
|
|
1789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1790
|
+
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
1791
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1792
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1793
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1794
|
+
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
1795
|
+
};
|
|
1796
|
+
type QueryPriceUpdatedEventArgs = {
|
|
1797
|
+
block?: InputMaybe<Block_Height>;
|
|
1798
|
+
id: Scalars['ID']['input'];
|
|
1799
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1800
|
+
};
|
|
1801
|
+
type QueryPriceUpdatedEventsArgs = {
|
|
1802
|
+
block?: InputMaybe<Block_Height>;
|
|
1803
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1804
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
1805
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1806
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1807
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1808
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
1809
|
+
};
|
|
1810
|
+
type QueryReleasedEventArgs = {
|
|
1811
|
+
block?: InputMaybe<Block_Height>;
|
|
1812
|
+
id: Scalars['ID']['input'];
|
|
1813
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1814
|
+
};
|
|
1815
|
+
type QueryReleasedEventsArgs = {
|
|
1816
|
+
block?: InputMaybe<Block_Height>;
|
|
1817
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1818
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
1819
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1820
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1821
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1822
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
1823
|
+
};
|
|
1824
|
+
type QuerySettledEventArgs = {
|
|
1825
|
+
block?: InputMaybe<Block_Height>;
|
|
1826
|
+
id: Scalars['ID']['input'];
|
|
1827
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1828
|
+
};
|
|
1829
|
+
type QuerySettledEventsArgs = {
|
|
1830
|
+
block?: InputMaybe<Block_Height>;
|
|
1831
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1832
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
1833
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1834
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1835
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1836
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
1837
|
+
};
|
|
1838
|
+
type QuerySlotArgs = {
|
|
1839
|
+
block?: InputMaybe<Block_Height>;
|
|
1840
|
+
id: Scalars['ID']['input'];
|
|
1841
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1842
|
+
};
|
|
1843
|
+
type QuerySlotDeployedEventArgs = {
|
|
1844
|
+
block?: InputMaybe<Block_Height>;
|
|
1845
|
+
id: Scalars['ID']['input'];
|
|
1846
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1847
|
+
};
|
|
1848
|
+
type QuerySlotDeployedEventsArgs = {
|
|
1849
|
+
block?: InputMaybe<Block_Height>;
|
|
1850
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1851
|
+
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
1852
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1853
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1854
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1855
|
+
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
1856
|
+
};
|
|
1857
|
+
type QuerySlotsArgs = {
|
|
1858
|
+
block?: InputMaybe<Block_Height>;
|
|
1859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1860
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
1861
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1862
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1863
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1864
|
+
where?: InputMaybe<Slot_Filter>;
|
|
1865
|
+
};
|
|
1866
|
+
type QueryTaxCollectedEventArgs = {
|
|
1867
|
+
block?: InputMaybe<Block_Height>;
|
|
1868
|
+
id: Scalars['ID']['input'];
|
|
1869
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1870
|
+
};
|
|
1871
|
+
type QueryTaxCollectedEventsArgs = {
|
|
1872
|
+
block?: InputMaybe<Block_Height>;
|
|
1873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1874
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
1875
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1876
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1877
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1878
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
1879
|
+
};
|
|
1880
|
+
type QueryTaxUpdateProposedEventArgs = {
|
|
1881
|
+
block?: InputMaybe<Block_Height>;
|
|
1882
|
+
id: Scalars['ID']['input'];
|
|
1883
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1884
|
+
};
|
|
1885
|
+
type QueryTaxUpdateProposedEventsArgs = {
|
|
1886
|
+
block?: InputMaybe<Block_Height>;
|
|
1887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1888
|
+
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
1889
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1890
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1891
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1892
|
+
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
1893
|
+
};
|
|
1894
|
+
type QueryWithdrawnEventArgs = {
|
|
1895
|
+
block?: InputMaybe<Block_Height>;
|
|
1896
|
+
id: Scalars['ID']['input'];
|
|
1897
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1898
|
+
};
|
|
1899
|
+
type QueryWithdrawnEventsArgs = {
|
|
1900
|
+
block?: InputMaybe<Block_Height>;
|
|
1901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1902
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
1903
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1904
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1905
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1906
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1907
|
+
};
|
|
1908
|
+
type ReleasedEvent = {
|
|
1909
|
+
__typename?: 'ReleasedEvent';
|
|
1910
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1911
|
+
currency: Currency;
|
|
1912
|
+
id: Scalars['ID']['output'];
|
|
1913
|
+
occupant: Scalars['Bytes']['output'];
|
|
1914
|
+
refund: Scalars['BigInt']['output'];
|
|
1915
|
+
slot: Slot;
|
|
1916
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1917
|
+
tx: Scalars['Bytes']['output'];
|
|
1918
|
+
};
|
|
1919
|
+
type ReleasedEvent_Filter = {
|
|
1920
|
+
/** Filter for the block changed event. */
|
|
1921
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1922
|
+
and?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1923
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1924
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1925
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1926
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1927
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1928
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1929
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1930
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1931
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1932
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
1933
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1934
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1935
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1936
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1937
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1938
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1939
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1940
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1941
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1942
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1943
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1944
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1945
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1946
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1947
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1948
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1949
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1950
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1951
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1952
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1953
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1954
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1955
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1956
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1957
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1958
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1959
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1960
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1961
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1962
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1963
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1964
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1965
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1966
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1967
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1968
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1969
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1970
|
+
or?: InputMaybe<Array<InputMaybe<ReleasedEvent_Filter>>>;
|
|
1971
|
+
refund?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1972
|
+
refund_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1973
|
+
refund_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1974
|
+
refund_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1975
|
+
refund_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1976
|
+
refund_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1977
|
+
refund_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1978
|
+
refund_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1979
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1980
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1981
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1982
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1983
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1984
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1985
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1986
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1987
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1988
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1989
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1990
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1991
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1992
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1993
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1994
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1995
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1996
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1997
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1998
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1999
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2000
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2001
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2002
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2003
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2004
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2005
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2006
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2007
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2008
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2009
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2010
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2011
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2012
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2013
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2014
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2015
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2016
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2017
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2018
|
+
};
|
|
2019
|
+
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';
|
|
2020
|
+
type SettledEvent = {
|
|
2021
|
+
__typename?: 'SettledEvent';
|
|
2022
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2023
|
+
currency: Currency;
|
|
2024
|
+
depositRemaining: Scalars['BigInt']['output'];
|
|
2025
|
+
id: Scalars['ID']['output'];
|
|
2026
|
+
slot: Slot;
|
|
2027
|
+
taxOwed: Scalars['BigInt']['output'];
|
|
2028
|
+
taxPaid: Scalars['BigInt']['output'];
|
|
2029
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2030
|
+
tx: Scalars['Bytes']['output'];
|
|
2031
|
+
};
|
|
2032
|
+
type SettledEvent_Filter = {
|
|
2033
|
+
/** Filter for the block changed event. */
|
|
2034
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2035
|
+
and?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
2036
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2037
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2038
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2039
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2040
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2041
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2042
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2043
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2044
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2045
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
2046
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2047
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2048
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2049
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2050
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2051
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2052
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2053
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2054
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2055
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2056
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2057
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2058
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2059
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2060
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2061
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2062
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2063
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2064
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2065
|
+
depositRemaining?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2066
|
+
depositRemaining_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2067
|
+
depositRemaining_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2068
|
+
depositRemaining_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2069
|
+
depositRemaining_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2070
|
+
depositRemaining_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2071
|
+
depositRemaining_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2072
|
+
depositRemaining_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2073
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2074
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2075
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2076
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2077
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2078
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2079
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2080
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2081
|
+
or?: InputMaybe<Array<InputMaybe<SettledEvent_Filter>>>;
|
|
2082
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2083
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2084
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2085
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2086
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2087
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2088
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2089
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2090
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2091
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2092
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2093
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2094
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2095
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2096
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2097
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2098
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2099
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2100
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2101
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2102
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2103
|
+
taxOwed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2104
|
+
taxOwed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2105
|
+
taxOwed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2106
|
+
taxOwed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2107
|
+
taxOwed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2108
|
+
taxOwed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2109
|
+
taxOwed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2110
|
+
taxOwed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2111
|
+
taxPaid?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2112
|
+
taxPaid_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2113
|
+
taxPaid_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2114
|
+
taxPaid_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2115
|
+
taxPaid_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2116
|
+
taxPaid_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2117
|
+
taxPaid_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2118
|
+
taxPaid_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2119
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2120
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2121
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2122
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2123
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2124
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2125
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2126
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2127
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2128
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2129
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2130
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2131
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2132
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2133
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2134
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2135
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2136
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2137
|
+
};
|
|
2138
|
+
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';
|
|
2139
|
+
type Slot = {
|
|
2140
|
+
__typename?: 'Slot';
|
|
2141
|
+
collectedTax: Scalars['BigInt']['output'];
|
|
2142
|
+
createdAt: Scalars['BigInt']['output'];
|
|
2143
|
+
createdTx: Scalars['Bytes']['output'];
|
|
2144
|
+
currency: Currency;
|
|
2145
|
+
deployEvent?: Maybe<SlotDeployedEvent>;
|
|
2146
|
+
deposit: Scalars['BigInt']['output'];
|
|
2147
|
+
deposits: Array<DepositedEvent>;
|
|
2148
|
+
id: Scalars['ID']['output'];
|
|
2149
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
2150
|
+
liquidations: Array<LiquidatedEvent>;
|
|
2151
|
+
manager: Scalars['Bytes']['output'];
|
|
2152
|
+
metadata?: Maybe<MetadataSlot>;
|
|
2153
|
+
metadataUpdates: Array<MetadataUpdatedEvent>;
|
|
2154
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
2155
|
+
module?: Maybe<Module>;
|
|
2156
|
+
moduleUpdateProposals: Array<ModuleUpdateProposedEvent>;
|
|
2157
|
+
mutableModule: Scalars['Boolean']['output'];
|
|
2158
|
+
mutableTax: Scalars['Boolean']['output'];
|
|
2159
|
+
occupant?: Maybe<Scalars['Bytes']['output']>;
|
|
2160
|
+
occupantAccount?: Maybe<Account>;
|
|
2161
|
+
pendingUpdateCancellations: Array<PendingUpdateCancelledEvent>;
|
|
2162
|
+
price: Scalars['BigInt']['output'];
|
|
2163
|
+
priceUpdates: Array<PriceUpdatedEvent>;
|
|
2164
|
+
purchases: Array<BoughtEvent>;
|
|
2165
|
+
recipient: Scalars['Bytes']['output'];
|
|
2166
|
+
recipientAccount: Account;
|
|
2167
|
+
releases: Array<ReleasedEvent>;
|
|
2168
|
+
settlements: Array<SettledEvent>;
|
|
2169
|
+
taxCollections: Array<TaxCollectedEvent>;
|
|
2170
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
2171
|
+
taxUpdateProposals: Array<TaxUpdateProposedEvent>;
|
|
2172
|
+
totalCollected: Scalars['BigInt']['output'];
|
|
2173
|
+
updatedAt: Scalars['BigInt']['output'];
|
|
2174
|
+
withdrawals: Array<WithdrawnEvent>;
|
|
2175
|
+
};
|
|
2176
|
+
type SlotDepositsArgs = {
|
|
2177
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2178
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
2179
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2180
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2181
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
2182
|
+
};
|
|
2183
|
+
type SlotLiquidationsArgs = {
|
|
2184
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2185
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
2186
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2187
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2188
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
2189
|
+
};
|
|
2190
|
+
type SlotMetadataUpdatesArgs = {
|
|
2191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2192
|
+
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
2193
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2194
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2195
|
+
where?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
2196
|
+
};
|
|
2197
|
+
type SlotModuleUpdateProposalsArgs = {
|
|
2198
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2199
|
+
orderBy?: InputMaybe<ModuleUpdateProposedEvent_OrderBy>;
|
|
2200
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2201
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2202
|
+
where?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
2203
|
+
};
|
|
2204
|
+
type SlotPendingUpdateCancellationsArgs = {
|
|
2205
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2206
|
+
orderBy?: InputMaybe<PendingUpdateCancelledEvent_OrderBy>;
|
|
2207
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2208
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2209
|
+
where?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
2210
|
+
};
|
|
2211
|
+
type SlotPriceUpdatesArgs = {
|
|
2212
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2213
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
2214
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2215
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2216
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
2217
|
+
};
|
|
2218
|
+
type SlotPurchasesArgs = {
|
|
2219
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2220
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
2221
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2222
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2223
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
2224
|
+
};
|
|
2225
|
+
type SlotReleasesArgs = {
|
|
2226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2227
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
2228
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2229
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2230
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
2231
|
+
};
|
|
2232
|
+
type SlotSettlementsArgs = {
|
|
2233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2234
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
2235
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2236
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2237
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
2238
|
+
};
|
|
2239
|
+
type SlotTaxCollectionsArgs = {
|
|
2240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2241
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
2242
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2243
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2244
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
2245
|
+
};
|
|
2246
|
+
type SlotTaxUpdateProposalsArgs = {
|
|
2247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2248
|
+
orderBy?: InputMaybe<TaxUpdateProposedEvent_OrderBy>;
|
|
2249
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2250
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2251
|
+
where?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
2252
|
+
};
|
|
2253
|
+
type SlotWithdrawalsArgs = {
|
|
2254
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2255
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
2256
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2257
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2258
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
2259
|
+
};
|
|
2260
|
+
type SlotDeployedEvent = {
|
|
2261
|
+
__typename?: 'SlotDeployedEvent';
|
|
2262
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2263
|
+
currency: Currency;
|
|
2264
|
+
deployer: Scalars['Bytes']['output'];
|
|
2265
|
+
id: Scalars['ID']['output'];
|
|
2266
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
2267
|
+
manager: Scalars['Bytes']['output'];
|
|
2268
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
2269
|
+
module: Scalars['Bytes']['output'];
|
|
2270
|
+
mutableModule: Scalars['Boolean']['output'];
|
|
2271
|
+
mutableTax: Scalars['Boolean']['output'];
|
|
2272
|
+
recipient: Scalars['Bytes']['output'];
|
|
2273
|
+
slot: Slot;
|
|
2274
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
2275
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2276
|
+
tx: Scalars['Bytes']['output'];
|
|
2277
|
+
};
|
|
2278
|
+
type SlotDeployedEvent_Filter = {
|
|
2279
|
+
/** Filter for the block changed event. */
|
|
2280
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2281
|
+
and?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
2282
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2283
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2284
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2285
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2286
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2287
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2288
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2289
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2290
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2291
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
2292
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2293
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2294
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2295
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2296
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2297
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2298
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2299
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2300
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2301
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2302
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2303
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2304
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2305
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2306
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2307
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2308
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2309
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2310
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2311
|
+
deployer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2312
|
+
deployer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2313
|
+
deployer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2314
|
+
deployer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2315
|
+
deployer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2316
|
+
deployer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2317
|
+
deployer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2318
|
+
deployer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2319
|
+
deployer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2320
|
+
deployer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2321
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2322
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2323
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2324
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2325
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2326
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2327
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2328
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2329
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2330
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2331
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2332
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2333
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2334
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2335
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2336
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2337
|
+
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2338
|
+
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2339
|
+
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2340
|
+
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2341
|
+
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2342
|
+
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2343
|
+
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2344
|
+
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2345
|
+
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2346
|
+
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2347
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2348
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2349
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2350
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2351
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2352
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2353
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2354
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2355
|
+
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2356
|
+
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2357
|
+
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2358
|
+
module_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2359
|
+
module_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2360
|
+
module_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2361
|
+
module_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2362
|
+
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2363
|
+
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2364
|
+
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2365
|
+
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2366
|
+
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2367
|
+
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2368
|
+
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2369
|
+
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2370
|
+
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2371
|
+
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2372
|
+
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2373
|
+
or?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
2374
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2375
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2376
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2377
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2378
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2379
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2380
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2381
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2382
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2383
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2384
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2385
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2386
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2387
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2388
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2389
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2390
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2391
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2392
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2393
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2394
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2395
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2396
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2397
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2398
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2399
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2400
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2401
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2402
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2403
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2404
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2405
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2406
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2407
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2408
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2409
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2410
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2411
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2412
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2413
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2414
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2415
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2416
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2417
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2418
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2419
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2420
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2421
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2422
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2423
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2424
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2425
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2426
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2427
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2428
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2429
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2430
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2431
|
+
};
|
|
2432
|
+
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';
|
|
2433
|
+
type Slot_Filter = {
|
|
2434
|
+
/** Filter for the block changed event. */
|
|
2435
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2436
|
+
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
2437
|
+
collectedTax?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2438
|
+
collectedTax_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2439
|
+
collectedTax_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2440
|
+
collectedTax_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2441
|
+
collectedTax_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2442
|
+
collectedTax_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2443
|
+
collectedTax_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2444
|
+
collectedTax_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2445
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2446
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2447
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2448
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2449
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2450
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2451
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2452
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2453
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2454
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2455
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2456
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2457
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2458
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2459
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2460
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2461
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2462
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2463
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2464
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
2465
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2466
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2467
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2468
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2469
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2470
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2471
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2472
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2473
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2474
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2475
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2476
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2477
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2478
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2479
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2480
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2481
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2482
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2483
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2484
|
+
deployEvent_?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
2485
|
+
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2486
|
+
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2487
|
+
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2488
|
+
deposit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2489
|
+
deposit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2490
|
+
deposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2491
|
+
deposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2492
|
+
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2493
|
+
deposits_?: InputMaybe<DepositedEvent_Filter>;
|
|
2494
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2495
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2496
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2497
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2498
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2499
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2500
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2501
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2502
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2503
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2504
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2505
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2506
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2507
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2508
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2509
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2510
|
+
liquidations_?: InputMaybe<LiquidatedEvent_Filter>;
|
|
2511
|
+
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2512
|
+
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2513
|
+
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2514
|
+
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2515
|
+
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2516
|
+
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2517
|
+
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2518
|
+
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2519
|
+
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2520
|
+
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2521
|
+
metadataUpdates_?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
2522
|
+
metadata_?: InputMaybe<MetadataSlot_Filter>;
|
|
2523
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2524
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2525
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2526
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2527
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2528
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2529
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2530
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2531
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
2532
|
+
moduleUpdateProposals_?: InputMaybe<ModuleUpdateProposedEvent_Filter>;
|
|
2533
|
+
module_?: InputMaybe<Module_Filter>;
|
|
2534
|
+
module_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2535
|
+
module_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2536
|
+
module_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2537
|
+
module_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2538
|
+
module_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2539
|
+
module_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2540
|
+
module_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2541
|
+
module_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2542
|
+
module_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2543
|
+
module_not?: InputMaybe<Scalars['String']['input']>;
|
|
2544
|
+
module_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2545
|
+
module_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2546
|
+
module_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2547
|
+
module_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2548
|
+
module_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2549
|
+
module_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2550
|
+
module_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2551
|
+
module_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2552
|
+
module_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2553
|
+
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2554
|
+
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2555
|
+
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2556
|
+
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2557
|
+
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2558
|
+
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2559
|
+
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2560
|
+
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2561
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2562
|
+
occupantAccount?: InputMaybe<Scalars['String']['input']>;
|
|
2563
|
+
occupantAccount_?: InputMaybe<Account_Filter>;
|
|
2564
|
+
occupantAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2565
|
+
occupantAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2566
|
+
occupantAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2567
|
+
occupantAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2568
|
+
occupantAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2569
|
+
occupantAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2570
|
+
occupantAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2571
|
+
occupantAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2572
|
+
occupantAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2573
|
+
occupantAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
2574
|
+
occupantAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2575
|
+
occupantAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2576
|
+
occupantAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2577
|
+
occupantAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2578
|
+
occupantAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2579
|
+
occupantAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2580
|
+
occupantAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2581
|
+
occupantAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2582
|
+
occupantAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2583
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2584
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2585
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2586
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2587
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2588
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2589
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2590
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2591
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2592
|
+
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
2593
|
+
pendingUpdateCancellations_?: InputMaybe<PendingUpdateCancelledEvent_Filter>;
|
|
2594
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2595
|
+
priceUpdates_?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
2596
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2597
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2598
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2599
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2600
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2601
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2602
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2603
|
+
purchases_?: InputMaybe<BoughtEvent_Filter>;
|
|
2604
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2605
|
+
recipientAccount?: InputMaybe<Scalars['String']['input']>;
|
|
2606
|
+
recipientAccount_?: InputMaybe<Account_Filter>;
|
|
2607
|
+
recipientAccount_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2608
|
+
recipientAccount_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2609
|
+
recipientAccount_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2610
|
+
recipientAccount_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2611
|
+
recipientAccount_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2612
|
+
recipientAccount_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2613
|
+
recipientAccount_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2614
|
+
recipientAccount_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2615
|
+
recipientAccount_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2616
|
+
recipientAccount_not?: InputMaybe<Scalars['String']['input']>;
|
|
2617
|
+
recipientAccount_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2618
|
+
recipientAccount_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2619
|
+
recipientAccount_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2620
|
+
recipientAccount_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2621
|
+
recipientAccount_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2622
|
+
recipientAccount_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2623
|
+
recipientAccount_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2624
|
+
recipientAccount_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2625
|
+
recipientAccount_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2626
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2627
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2628
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2629
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2630
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2631
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2632
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2633
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2634
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2635
|
+
releases_?: InputMaybe<ReleasedEvent_Filter>;
|
|
2636
|
+
settlements_?: InputMaybe<SettledEvent_Filter>;
|
|
2637
|
+
taxCollections_?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
2638
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2639
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2640
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2641
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2642
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2643
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2644
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2645
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2646
|
+
taxUpdateProposals_?: InputMaybe<TaxUpdateProposedEvent_Filter>;
|
|
2647
|
+
totalCollected?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2648
|
+
totalCollected_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2649
|
+
totalCollected_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2650
|
+
totalCollected_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2651
|
+
totalCollected_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2652
|
+
totalCollected_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2653
|
+
totalCollected_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2654
|
+
totalCollected_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2655
|
+
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2656
|
+
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2657
|
+
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2658
|
+
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2659
|
+
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2660
|
+
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2661
|
+
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2662
|
+
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2663
|
+
withdrawals_?: InputMaybe<WithdrawnEvent_Filter>;
|
|
2664
|
+
};
|
|
2665
|
+
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__adType' | 'metadata__createdAt' | 'metadata__createdTx' | 'metadata__id' | 'metadata__rawJson' | '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';
|
|
2666
|
+
type TaxCollectedEvent = {
|
|
2667
|
+
__typename?: 'TaxCollectedEvent';
|
|
2668
|
+
amount: Scalars['BigInt']['output'];
|
|
2669
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2670
|
+
currency: Currency;
|
|
2671
|
+
id: Scalars['ID']['output'];
|
|
2672
|
+
recipient: Scalars['Bytes']['output'];
|
|
2673
|
+
slot: Slot;
|
|
2674
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2675
|
+
tx: Scalars['Bytes']['output'];
|
|
2676
|
+
};
|
|
2677
|
+
type TaxCollectedEvent_Filter = {
|
|
2678
|
+
/** Filter for the block changed event. */
|
|
2679
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2680
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2681
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2682
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2683
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2684
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2685
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2686
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2687
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2688
|
+
and?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
2689
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2690
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2691
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2692
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2693
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2694
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2695
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2696
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2697
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2698
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
2699
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2700
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2701
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2702
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2703
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2704
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2705
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2706
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2707
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2708
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2709
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2710
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2711
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2712
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2713
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2714
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2715
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2716
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2717
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2718
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2719
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2720
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2721
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2722
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2723
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2724
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2725
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2726
|
+
or?: InputMaybe<Array<InputMaybe<TaxCollectedEvent_Filter>>>;
|
|
2727
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2728
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2729
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2730
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2731
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2732
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2733
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2734
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2735
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2736
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2737
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2738
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2739
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2740
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2741
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2742
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2743
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2744
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2745
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2746
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2747
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2748
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2749
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2750
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2751
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2752
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2753
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2754
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2755
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2756
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2757
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2758
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2759
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2760
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2761
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2762
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2763
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2764
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2765
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2766
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2767
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2768
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2769
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2770
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2771
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2772
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2773
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2774
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2775
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2776
|
+
};
|
|
2777
|
+
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';
|
|
2778
|
+
type TaxUpdateProposedEvent = {
|
|
2779
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
2780
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2781
|
+
id: Scalars['ID']['output'];
|
|
2782
|
+
newPercentage: Scalars['BigInt']['output'];
|
|
2783
|
+
slot: Slot;
|
|
2784
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2785
|
+
tx: Scalars['Bytes']['output'];
|
|
2786
|
+
};
|
|
2787
|
+
type TaxUpdateProposedEvent_Filter = {
|
|
2788
|
+
/** Filter for the block changed event. */
|
|
2789
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2790
|
+
and?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
2791
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2792
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2793
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2794
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2795
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2796
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2797
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2798
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2799
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2800
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2801
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2802
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2803
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2804
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2805
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2806
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2807
|
+
newPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2808
|
+
newPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2809
|
+
newPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2810
|
+
newPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2811
|
+
newPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2812
|
+
newPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2813
|
+
newPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2814
|
+
newPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2815
|
+
or?: InputMaybe<Array<InputMaybe<TaxUpdateProposedEvent_Filter>>>;
|
|
2816
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2817
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2818
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2819
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2820
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2821
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2822
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2823
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2824
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2825
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2826
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2827
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2828
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2829
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2830
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2831
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2832
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2833
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2834
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2835
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2836
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2837
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2838
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2839
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2840
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2841
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2842
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2843
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2844
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2845
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2846
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2847
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2848
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2849
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2850
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2851
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2852
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2853
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2854
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2855
|
+
};
|
|
2856
|
+
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';
|
|
2857
|
+
type WithdrawnEvent = {
|
|
2858
|
+
__typename?: 'WithdrawnEvent';
|
|
2859
|
+
amount: Scalars['BigInt']['output'];
|
|
2860
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
2861
|
+
currency: Currency;
|
|
2862
|
+
id: Scalars['ID']['output'];
|
|
2863
|
+
occupant: Scalars['Bytes']['output'];
|
|
2864
|
+
slot: Slot;
|
|
2865
|
+
timestamp: Scalars['BigInt']['output'];
|
|
2866
|
+
tx: Scalars['Bytes']['output'];
|
|
2867
|
+
};
|
|
2868
|
+
type WithdrawnEvent_Filter = {
|
|
2869
|
+
/** Filter for the block changed event. */
|
|
2870
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2871
|
+
amount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2872
|
+
amount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2873
|
+
amount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2874
|
+
amount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2875
|
+
amount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2876
|
+
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2877
|
+
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2878
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2879
|
+
and?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2880
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2881
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2882
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2883
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2884
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2885
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2886
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2887
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2888
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
2889
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
2890
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2891
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2892
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2893
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2894
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2895
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2896
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2897
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2898
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2899
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
2900
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2901
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2902
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2903
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2904
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2905
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2906
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2907
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2908
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2909
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2910
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2911
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2912
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2913
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2914
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2915
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2916
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2917
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2918
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2919
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2920
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2921
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2922
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2923
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2924
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2925
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2926
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2927
|
+
or?: InputMaybe<Array<InputMaybe<WithdrawnEvent_Filter>>>;
|
|
2928
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
2929
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
2930
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2931
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2932
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2933
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2934
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2935
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
2936
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2937
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
2938
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
2939
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
2940
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2941
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2942
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2943
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2944
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2945
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2946
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2947
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2948
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2949
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2950
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2951
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2952
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2953
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2954
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2955
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2956
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2957
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2958
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2959
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2960
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2961
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2962
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2963
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2964
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2965
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2966
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2967
|
+
};
|
|
2968
|
+
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';
|
|
2969
|
+
type _Block_ = {
|
|
2970
|
+
__typename?: '_Block_';
|
|
2971
|
+
/** The hash of the block */
|
|
2972
|
+
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
2973
|
+
/** The block number */
|
|
2974
|
+
number: Scalars['Int']['output'];
|
|
2975
|
+
/** The hash of the parent block */
|
|
2976
|
+
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
2977
|
+
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
2978
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2979
|
+
};
|
|
2980
|
+
/** The type for the top-level _meta field */
|
|
2981
|
+
type _Meta_ = {
|
|
2982
|
+
__typename?: '_Meta_';
|
|
2983
|
+
/**
|
|
2984
|
+
* Information about a specific subgraph block. The hash of the block
|
|
2985
|
+
* will be null if the _meta field has a block constraint that asks for
|
|
2986
|
+
* a block number. It will be filled if the _meta field has no block constraint
|
|
2987
|
+
* and therefore asks for the latest block
|
|
2988
|
+
*/
|
|
2989
|
+
block: _Block_;
|
|
2990
|
+
/** The deployment ID */
|
|
2991
|
+
deployment: Scalars['String']['output'];
|
|
2992
|
+
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
2993
|
+
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
2994
|
+
};
|
|
2995
|
+
type _SubgraphErrorPolicy_ =
|
|
2996
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
2997
|
+
'allow'
|
|
2998
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
2999
|
+
| 'deny';
|
|
3000
|
+
type AccountFieldsFragment = {
|
|
3001
|
+
__typename?: 'Account';
|
|
3002
|
+
id: string;
|
|
3003
|
+
type: AccountType;
|
|
3004
|
+
slotCount: number;
|
|
3005
|
+
occupiedCount: number;
|
|
3006
|
+
slotsAsRecipient: Array<{
|
|
3007
|
+
__typename?: 'Slot';
|
|
3008
|
+
id: string;
|
|
3009
|
+
}>;
|
|
3010
|
+
slotsAsOccupant: Array<{
|
|
3011
|
+
__typename?: 'Slot';
|
|
3012
|
+
id: string;
|
|
3013
|
+
}>;
|
|
3014
|
+
};
|
|
3015
|
+
type GetAccountQueryVariables = Exact<{
|
|
3016
|
+
id: Scalars['ID']['input'];
|
|
3017
|
+
block?: InputMaybe<Block_Height>;
|
|
3018
|
+
}>;
|
|
3019
|
+
type GetAccountQuery = {
|
|
3020
|
+
__typename?: 'Query';
|
|
3021
|
+
account?: {
|
|
3022
|
+
__typename?: 'Account';
|
|
3023
|
+
id: string;
|
|
3024
|
+
type: AccountType;
|
|
3025
|
+
slotCount: number;
|
|
3026
|
+
occupiedCount: number;
|
|
3027
|
+
slotsAsRecipient: Array<{
|
|
3028
|
+
__typename?: 'Slot';
|
|
3029
|
+
id: string;
|
|
3030
|
+
}>;
|
|
3031
|
+
slotsAsOccupant: Array<{
|
|
3032
|
+
__typename?: 'Slot';
|
|
3033
|
+
id: string;
|
|
3034
|
+
}>;
|
|
3035
|
+
} | null;
|
|
3036
|
+
};
|
|
3037
|
+
type GetAccountsQueryVariables = Exact<{
|
|
3038
|
+
first: Scalars['Int']['input'];
|
|
3039
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3040
|
+
orderBy?: InputMaybe<Account_OrderBy>;
|
|
3041
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3042
|
+
where?: InputMaybe<Account_Filter>;
|
|
3043
|
+
block?: InputMaybe<Block_Height>;
|
|
3044
|
+
}>;
|
|
3045
|
+
type GetAccountsQuery = {
|
|
3046
|
+
__typename?: 'Query';
|
|
3047
|
+
accounts: Array<{
|
|
3048
|
+
__typename?: 'Account';
|
|
3049
|
+
id: string;
|
|
3050
|
+
type: AccountType;
|
|
3051
|
+
slotCount: number;
|
|
3052
|
+
occupiedCount: number;
|
|
3053
|
+
slotsAsRecipient: Array<{
|
|
3054
|
+
__typename?: 'Slot';
|
|
3055
|
+
id: string;
|
|
3056
|
+
}>;
|
|
3057
|
+
slotsAsOccupant: Array<{
|
|
3058
|
+
__typename?: 'Slot';
|
|
3059
|
+
id: string;
|
|
3060
|
+
}>;
|
|
3061
|
+
}>;
|
|
3062
|
+
};
|
|
3063
|
+
type CurrencyFieldsFragment = {
|
|
3064
|
+
__typename?: 'Currency';
|
|
3065
|
+
id: string;
|
|
3066
|
+
name?: string | null;
|
|
3067
|
+
symbol?: string | null;
|
|
3068
|
+
decimals: number;
|
|
3069
|
+
};
|
|
3070
|
+
type GetSlotDeployedEventsQueryVariables = Exact<{
|
|
3071
|
+
first: Scalars['Int']['input'];
|
|
3072
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3073
|
+
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
3074
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3075
|
+
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
3076
|
+
block?: InputMaybe<Block_Height>;
|
|
3077
|
+
}>;
|
|
3078
|
+
type GetSlotDeployedEventsQuery = {
|
|
3079
|
+
__typename?: 'Query';
|
|
3080
|
+
slotDeployedEvents: Array<{
|
|
3081
|
+
__typename?: 'SlotDeployedEvent';
|
|
3082
|
+
id: string;
|
|
3083
|
+
recipient: string;
|
|
3084
|
+
manager: string;
|
|
3085
|
+
mutableTax: boolean;
|
|
3086
|
+
mutableModule: boolean;
|
|
3087
|
+
taxPercentage: string;
|
|
3088
|
+
module: string;
|
|
3089
|
+
liquidationBountyBps: string;
|
|
3090
|
+
minDepositSeconds: string;
|
|
3091
|
+
deployer: string;
|
|
3092
|
+
timestamp: string;
|
|
3093
|
+
blockNumber: string;
|
|
3094
|
+
tx: string;
|
|
3095
|
+
slot: {
|
|
3096
|
+
__typename?: 'Slot';
|
|
3097
|
+
id: string;
|
|
3098
|
+
};
|
|
3099
|
+
currency: {
|
|
3100
|
+
__typename?: 'Currency';
|
|
3101
|
+
id: string;
|
|
3102
|
+
name?: string | null;
|
|
3103
|
+
symbol?: string | null;
|
|
3104
|
+
decimals: number;
|
|
3105
|
+
};
|
|
3106
|
+
}>;
|
|
3107
|
+
};
|
|
3108
|
+
type GetRecentEventsQueryVariables = Exact<{
|
|
3109
|
+
first: Scalars['Int']['input'];
|
|
3110
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3111
|
+
}>;
|
|
3112
|
+
type GetRecentEventsQuery = {
|
|
3113
|
+
__typename?: 'Query';
|
|
3114
|
+
slotDeployedEvents: Array<{
|
|
3115
|
+
__typename?: 'SlotDeployedEvent';
|
|
3116
|
+
id: string;
|
|
3117
|
+
recipient: string;
|
|
3118
|
+
deployer: string;
|
|
3119
|
+
timestamp: string;
|
|
3120
|
+
tx: string;
|
|
3121
|
+
slot: {
|
|
3122
|
+
__typename?: 'Slot';
|
|
3123
|
+
id: string;
|
|
3124
|
+
};
|
|
3125
|
+
currency: {
|
|
3126
|
+
__typename?: 'Currency';
|
|
3127
|
+
id: string;
|
|
3128
|
+
name?: string | null;
|
|
3129
|
+
symbol?: string | null;
|
|
3130
|
+
decimals: number;
|
|
3131
|
+
};
|
|
3132
|
+
}>;
|
|
3133
|
+
boughtEvents: Array<{
|
|
3134
|
+
__typename?: 'BoughtEvent';
|
|
3135
|
+
id: string;
|
|
3136
|
+
buyer: string;
|
|
3137
|
+
previousOccupant: string;
|
|
3138
|
+
price: string;
|
|
3139
|
+
selfAssessedPrice: string;
|
|
3140
|
+
deposit: string;
|
|
3141
|
+
timestamp: string;
|
|
3142
|
+
tx: string;
|
|
3143
|
+
slot: {
|
|
3144
|
+
__typename?: 'Slot';
|
|
3145
|
+
id: string;
|
|
3146
|
+
};
|
|
3147
|
+
currency: {
|
|
3148
|
+
__typename?: 'Currency';
|
|
3149
|
+
id: string;
|
|
3150
|
+
name?: string | null;
|
|
3151
|
+
symbol?: string | null;
|
|
3152
|
+
decimals: number;
|
|
3153
|
+
};
|
|
3154
|
+
}>;
|
|
3155
|
+
releasedEvents: Array<{
|
|
3156
|
+
__typename?: 'ReleasedEvent';
|
|
3157
|
+
id: string;
|
|
3158
|
+
occupant: string;
|
|
3159
|
+
refund: string;
|
|
3160
|
+
timestamp: 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
|
+
liquidatedEvents: Array<{
|
|
3175
|
+
__typename?: 'LiquidatedEvent';
|
|
3176
|
+
id: string;
|
|
3177
|
+
liquidator: string;
|
|
3178
|
+
occupant: string;
|
|
3179
|
+
bounty: string;
|
|
3180
|
+
timestamp: string;
|
|
3181
|
+
tx: string;
|
|
3182
|
+
slot: {
|
|
3183
|
+
__typename?: 'Slot';
|
|
3184
|
+
id: string;
|
|
3185
|
+
};
|
|
3186
|
+
currency: {
|
|
3187
|
+
__typename?: 'Currency';
|
|
3188
|
+
id: string;
|
|
3189
|
+
name?: string | null;
|
|
3190
|
+
symbol?: string | null;
|
|
3191
|
+
decimals: number;
|
|
3192
|
+
};
|
|
3193
|
+
}>;
|
|
3194
|
+
priceUpdatedEvents: Array<{
|
|
3195
|
+
__typename?: 'PriceUpdatedEvent';
|
|
3196
|
+
id: string;
|
|
3197
|
+
oldPrice: string;
|
|
3198
|
+
newPrice: string;
|
|
3199
|
+
timestamp: string;
|
|
3200
|
+
tx: string;
|
|
3201
|
+
slot: {
|
|
3202
|
+
__typename?: 'Slot';
|
|
3203
|
+
id: string;
|
|
3204
|
+
};
|
|
3205
|
+
currency: {
|
|
3206
|
+
__typename?: 'Currency';
|
|
3207
|
+
id: string;
|
|
3208
|
+
name?: string | null;
|
|
3209
|
+
symbol?: string | null;
|
|
3210
|
+
decimals: number;
|
|
3211
|
+
};
|
|
3212
|
+
}>;
|
|
3213
|
+
depositedEvents: Array<{
|
|
3214
|
+
__typename?: 'DepositedEvent';
|
|
3215
|
+
id: string;
|
|
3216
|
+
depositor: string;
|
|
3217
|
+
amount: string;
|
|
3218
|
+
timestamp: string;
|
|
3219
|
+
tx: string;
|
|
3220
|
+
slot: {
|
|
3221
|
+
__typename?: 'Slot';
|
|
3222
|
+
id: string;
|
|
3223
|
+
};
|
|
3224
|
+
currency: {
|
|
3225
|
+
__typename?: 'Currency';
|
|
3226
|
+
id: string;
|
|
3227
|
+
name?: string | null;
|
|
3228
|
+
symbol?: string | null;
|
|
3229
|
+
decimals: number;
|
|
3230
|
+
};
|
|
3231
|
+
}>;
|
|
3232
|
+
withdrawnEvents: Array<{
|
|
3233
|
+
__typename?: 'WithdrawnEvent';
|
|
3234
|
+
id: string;
|
|
3235
|
+
occupant: string;
|
|
3236
|
+
amount: string;
|
|
3237
|
+
timestamp: string;
|
|
3238
|
+
tx: string;
|
|
3239
|
+
slot: {
|
|
3240
|
+
__typename?: 'Slot';
|
|
3241
|
+
id: string;
|
|
3242
|
+
};
|
|
3243
|
+
currency: {
|
|
3244
|
+
__typename?: 'Currency';
|
|
3245
|
+
id: string;
|
|
3246
|
+
name?: string | null;
|
|
3247
|
+
symbol?: string | null;
|
|
3248
|
+
decimals: number;
|
|
3249
|
+
};
|
|
3250
|
+
}>;
|
|
3251
|
+
taxCollectedEvents: Array<{
|
|
3252
|
+
__typename?: 'TaxCollectedEvent';
|
|
3253
|
+
id: string;
|
|
3254
|
+
recipient: string;
|
|
3255
|
+
amount: string;
|
|
3256
|
+
timestamp: string;
|
|
3257
|
+
tx: string;
|
|
3258
|
+
slot: {
|
|
3259
|
+
__typename?: 'Slot';
|
|
3260
|
+
id: string;
|
|
3261
|
+
};
|
|
3262
|
+
currency: {
|
|
3263
|
+
__typename?: 'Currency';
|
|
3264
|
+
id: string;
|
|
3265
|
+
name?: string | null;
|
|
3266
|
+
symbol?: string | null;
|
|
3267
|
+
decimals: number;
|
|
3268
|
+
};
|
|
3269
|
+
}>;
|
|
3270
|
+
taxUpdateProposedEvents: Array<{
|
|
3271
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
3272
|
+
id: string;
|
|
3273
|
+
newPercentage: string;
|
|
3274
|
+
timestamp: string;
|
|
3275
|
+
tx: string;
|
|
3276
|
+
slot: {
|
|
3277
|
+
__typename?: 'Slot';
|
|
3278
|
+
id: string;
|
|
3279
|
+
};
|
|
3280
|
+
}>;
|
|
3281
|
+
moduleUpdateProposedEvents: Array<{
|
|
3282
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
3283
|
+
id: string;
|
|
3284
|
+
newModule: string;
|
|
3285
|
+
timestamp: string;
|
|
3286
|
+
tx: string;
|
|
3287
|
+
slot: {
|
|
3288
|
+
__typename?: 'Slot';
|
|
3289
|
+
id: string;
|
|
3290
|
+
};
|
|
3291
|
+
}>;
|
|
3292
|
+
pendingUpdateCancelledEvents: Array<{
|
|
3293
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
3294
|
+
id: string;
|
|
3295
|
+
timestamp: string;
|
|
3296
|
+
tx: string;
|
|
3297
|
+
slot: {
|
|
3298
|
+
__typename?: 'Slot';
|
|
3299
|
+
id: string;
|
|
3300
|
+
};
|
|
3301
|
+
}>;
|
|
3302
|
+
};
|
|
3303
|
+
type GetBoughtEventsQueryVariables = Exact<{
|
|
3304
|
+
first: Scalars['Int']['input'];
|
|
3305
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3306
|
+
orderBy?: InputMaybe<BoughtEvent_OrderBy>;
|
|
3307
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3308
|
+
where?: InputMaybe<BoughtEvent_Filter>;
|
|
3309
|
+
block?: InputMaybe<Block_Height>;
|
|
3310
|
+
}>;
|
|
3311
|
+
type GetBoughtEventsQuery = {
|
|
3312
|
+
__typename?: 'Query';
|
|
3313
|
+
boughtEvents: Array<{
|
|
3314
|
+
__typename?: 'BoughtEvent';
|
|
3315
|
+
id: string;
|
|
3316
|
+
buyer: string;
|
|
3317
|
+
previousOccupant: string;
|
|
3318
|
+
price: string;
|
|
3319
|
+
deposit: string;
|
|
3320
|
+
selfAssessedPrice: string;
|
|
3321
|
+
timestamp: string;
|
|
3322
|
+
blockNumber: string;
|
|
3323
|
+
tx: string;
|
|
3324
|
+
slot: {
|
|
3325
|
+
__typename?: 'Slot';
|
|
3326
|
+
id: string;
|
|
3327
|
+
};
|
|
3328
|
+
currency: {
|
|
3329
|
+
__typename?: 'Currency';
|
|
3330
|
+
id: string;
|
|
3331
|
+
name?: string | null;
|
|
3332
|
+
symbol?: string | null;
|
|
3333
|
+
decimals: number;
|
|
3334
|
+
};
|
|
3335
|
+
}>;
|
|
3336
|
+
};
|
|
3337
|
+
type GetReleasedEventsQueryVariables = Exact<{
|
|
3338
|
+
first: Scalars['Int']['input'];
|
|
3339
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3340
|
+
orderBy?: InputMaybe<ReleasedEvent_OrderBy>;
|
|
3341
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3342
|
+
where?: InputMaybe<ReleasedEvent_Filter>;
|
|
3343
|
+
block?: InputMaybe<Block_Height>;
|
|
3344
|
+
}>;
|
|
3345
|
+
type GetReleasedEventsQuery = {
|
|
3346
|
+
__typename?: 'Query';
|
|
3347
|
+
releasedEvents: Array<{
|
|
3348
|
+
__typename?: 'ReleasedEvent';
|
|
3349
|
+
id: string;
|
|
3350
|
+
occupant: string;
|
|
3351
|
+
refund: string;
|
|
3352
|
+
timestamp: string;
|
|
3353
|
+
blockNumber: string;
|
|
3354
|
+
tx: string;
|
|
3355
|
+
slot: {
|
|
3356
|
+
__typename?: 'Slot';
|
|
3357
|
+
id: string;
|
|
3358
|
+
};
|
|
3359
|
+
currency: {
|
|
3360
|
+
__typename?: 'Currency';
|
|
3361
|
+
id: string;
|
|
3362
|
+
name?: string | null;
|
|
3363
|
+
symbol?: string | null;
|
|
3364
|
+
decimals: number;
|
|
3365
|
+
};
|
|
3366
|
+
}>;
|
|
3367
|
+
};
|
|
3368
|
+
type GetLiquidatedEventsQueryVariables = Exact<{
|
|
3369
|
+
first: Scalars['Int']['input'];
|
|
3370
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3371
|
+
orderBy?: InputMaybe<LiquidatedEvent_OrderBy>;
|
|
3372
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3373
|
+
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
3374
|
+
block?: InputMaybe<Block_Height>;
|
|
3375
|
+
}>;
|
|
3376
|
+
type GetLiquidatedEventsQuery = {
|
|
3377
|
+
__typename?: 'Query';
|
|
3378
|
+
liquidatedEvents: Array<{
|
|
3379
|
+
__typename?: 'LiquidatedEvent';
|
|
3380
|
+
id: string;
|
|
3381
|
+
liquidator: string;
|
|
3382
|
+
occupant: string;
|
|
3383
|
+
bounty: string;
|
|
3384
|
+
timestamp: string;
|
|
3385
|
+
blockNumber: string;
|
|
3386
|
+
tx: string;
|
|
3387
|
+
slot: {
|
|
3388
|
+
__typename?: 'Slot';
|
|
3389
|
+
id: string;
|
|
3390
|
+
};
|
|
3391
|
+
currency: {
|
|
3392
|
+
__typename?: 'Currency';
|
|
3393
|
+
id: string;
|
|
3394
|
+
name?: string | null;
|
|
3395
|
+
symbol?: string | null;
|
|
3396
|
+
decimals: number;
|
|
3397
|
+
};
|
|
3398
|
+
}>;
|
|
3399
|
+
};
|
|
3400
|
+
type GetSettledEventsQueryVariables = Exact<{
|
|
3401
|
+
first: Scalars['Int']['input'];
|
|
3402
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3403
|
+
orderBy?: InputMaybe<SettledEvent_OrderBy>;
|
|
3404
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3405
|
+
where?: InputMaybe<SettledEvent_Filter>;
|
|
3406
|
+
block?: InputMaybe<Block_Height>;
|
|
3407
|
+
}>;
|
|
3408
|
+
type GetSettledEventsQuery = {
|
|
3409
|
+
__typename?: 'Query';
|
|
3410
|
+
settledEvents: Array<{
|
|
3411
|
+
__typename?: 'SettledEvent';
|
|
3412
|
+
id: string;
|
|
3413
|
+
taxOwed: string;
|
|
3414
|
+
taxPaid: string;
|
|
3415
|
+
depositRemaining: string;
|
|
3416
|
+
timestamp: string;
|
|
3417
|
+
blockNumber: string;
|
|
3418
|
+
tx: string;
|
|
3419
|
+
slot: {
|
|
3420
|
+
__typename?: 'Slot';
|
|
3421
|
+
id: string;
|
|
3422
|
+
};
|
|
3423
|
+
currency: {
|
|
3424
|
+
__typename?: 'Currency';
|
|
3425
|
+
id: string;
|
|
3426
|
+
name?: string | null;
|
|
3427
|
+
symbol?: string | null;
|
|
3428
|
+
decimals: number;
|
|
3429
|
+
};
|
|
3430
|
+
}>;
|
|
3431
|
+
};
|
|
3432
|
+
type GetTaxCollectedEventsQueryVariables = Exact<{
|
|
3433
|
+
first: Scalars['Int']['input'];
|
|
3434
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3435
|
+
orderBy?: InputMaybe<TaxCollectedEvent_OrderBy>;
|
|
3436
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3437
|
+
where?: InputMaybe<TaxCollectedEvent_Filter>;
|
|
3438
|
+
block?: InputMaybe<Block_Height>;
|
|
3439
|
+
}>;
|
|
3440
|
+
type GetTaxCollectedEventsQuery = {
|
|
3441
|
+
__typename?: 'Query';
|
|
3442
|
+
taxCollectedEvents: Array<{
|
|
3443
|
+
__typename?: 'TaxCollectedEvent';
|
|
3444
|
+
id: string;
|
|
3445
|
+
recipient: string;
|
|
3446
|
+
amount: string;
|
|
3447
|
+
timestamp: string;
|
|
3448
|
+
blockNumber: string;
|
|
3449
|
+
tx: string;
|
|
3450
|
+
slot: {
|
|
3451
|
+
__typename?: 'Slot';
|
|
3452
|
+
id: string;
|
|
3453
|
+
};
|
|
3454
|
+
currency: {
|
|
3455
|
+
__typename?: 'Currency';
|
|
3456
|
+
id: string;
|
|
3457
|
+
name?: string | null;
|
|
3458
|
+
symbol?: string | null;
|
|
3459
|
+
decimals: number;
|
|
3460
|
+
};
|
|
3461
|
+
}>;
|
|
3462
|
+
};
|
|
3463
|
+
type GetDepositedEventsQueryVariables = Exact<{
|
|
3464
|
+
first: Scalars['Int']['input'];
|
|
3465
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3466
|
+
orderBy?: InputMaybe<DepositedEvent_OrderBy>;
|
|
3467
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3468
|
+
where?: InputMaybe<DepositedEvent_Filter>;
|
|
3469
|
+
block?: InputMaybe<Block_Height>;
|
|
3470
|
+
}>;
|
|
3471
|
+
type GetDepositedEventsQuery = {
|
|
3472
|
+
__typename?: 'Query';
|
|
3473
|
+
depositedEvents: Array<{
|
|
3474
|
+
__typename?: 'DepositedEvent';
|
|
3475
|
+
id: string;
|
|
3476
|
+
depositor: string;
|
|
3477
|
+
amount: string;
|
|
3478
|
+
timestamp: string;
|
|
3479
|
+
blockNumber: string;
|
|
3480
|
+
tx: string;
|
|
3481
|
+
slot: {
|
|
3482
|
+
__typename?: 'Slot';
|
|
3483
|
+
id: string;
|
|
3484
|
+
};
|
|
3485
|
+
currency: {
|
|
3486
|
+
__typename?: 'Currency';
|
|
3487
|
+
id: string;
|
|
3488
|
+
name?: string | null;
|
|
3489
|
+
symbol?: string | null;
|
|
3490
|
+
decimals: number;
|
|
3491
|
+
};
|
|
3492
|
+
}>;
|
|
3493
|
+
};
|
|
3494
|
+
type GetWithdrawnEventsQueryVariables = Exact<{
|
|
3495
|
+
first: Scalars['Int']['input'];
|
|
3496
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3497
|
+
orderBy?: InputMaybe<WithdrawnEvent_OrderBy>;
|
|
3498
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3499
|
+
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
3500
|
+
block?: InputMaybe<Block_Height>;
|
|
3501
|
+
}>;
|
|
3502
|
+
type GetWithdrawnEventsQuery = {
|
|
3503
|
+
__typename?: 'Query';
|
|
3504
|
+
withdrawnEvents: Array<{
|
|
3505
|
+
__typename?: 'WithdrawnEvent';
|
|
3506
|
+
id: string;
|
|
3507
|
+
occupant: string;
|
|
3508
|
+
amount: string;
|
|
3509
|
+
timestamp: string;
|
|
3510
|
+
blockNumber: string;
|
|
3511
|
+
tx: string;
|
|
3512
|
+
slot: {
|
|
3513
|
+
__typename?: 'Slot';
|
|
3514
|
+
id: string;
|
|
3515
|
+
};
|
|
3516
|
+
currency: {
|
|
3517
|
+
__typename?: 'Currency';
|
|
3518
|
+
id: string;
|
|
3519
|
+
name?: string | null;
|
|
3520
|
+
symbol?: string | null;
|
|
3521
|
+
decimals: number;
|
|
3522
|
+
};
|
|
3523
|
+
}>;
|
|
3524
|
+
};
|
|
3525
|
+
type GetPriceUpdatedEventsQueryVariables = Exact<{
|
|
3526
|
+
first: Scalars['Int']['input'];
|
|
3527
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3528
|
+
orderBy?: InputMaybe<PriceUpdatedEvent_OrderBy>;
|
|
3529
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3530
|
+
where?: InputMaybe<PriceUpdatedEvent_Filter>;
|
|
3531
|
+
block?: InputMaybe<Block_Height>;
|
|
3532
|
+
}>;
|
|
3533
|
+
type GetPriceUpdatedEventsQuery = {
|
|
3534
|
+
__typename?: 'Query';
|
|
3535
|
+
priceUpdatedEvents: Array<{
|
|
3536
|
+
__typename?: 'PriceUpdatedEvent';
|
|
3537
|
+
id: string;
|
|
3538
|
+
oldPrice: string;
|
|
3539
|
+
newPrice: string;
|
|
3540
|
+
timestamp: string;
|
|
3541
|
+
blockNumber: string;
|
|
3542
|
+
tx: string;
|
|
3543
|
+
slot: {
|
|
3544
|
+
__typename?: 'Slot';
|
|
3545
|
+
id: string;
|
|
3546
|
+
};
|
|
3547
|
+
currency: {
|
|
3548
|
+
__typename?: 'Currency';
|
|
3549
|
+
id: string;
|
|
3550
|
+
name?: string | null;
|
|
3551
|
+
symbol?: string | null;
|
|
3552
|
+
decimals: number;
|
|
3553
|
+
};
|
|
3554
|
+
}>;
|
|
3555
|
+
};
|
|
3556
|
+
type GetSlotActivityQueryVariables = Exact<{
|
|
3557
|
+
slotId: Scalars['String']['input'];
|
|
3558
|
+
first: Scalars['Int']['input'];
|
|
3559
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3560
|
+
}>;
|
|
3561
|
+
type GetSlotActivityQuery = {
|
|
3562
|
+
__typename?: 'Query';
|
|
3563
|
+
boughtEvents: Array<{
|
|
3564
|
+
__typename?: 'BoughtEvent';
|
|
3565
|
+
id: string;
|
|
3566
|
+
buyer: string;
|
|
3567
|
+
previousOccupant: string;
|
|
3568
|
+
price: string;
|
|
3569
|
+
selfAssessedPrice: string;
|
|
3570
|
+
deposit: string;
|
|
3571
|
+
timestamp: string;
|
|
3572
|
+
tx: string;
|
|
3573
|
+
currency: {
|
|
3574
|
+
__typename?: 'Currency';
|
|
3575
|
+
id: string;
|
|
3576
|
+
name?: string | null;
|
|
3577
|
+
symbol?: string | null;
|
|
3578
|
+
decimals: number;
|
|
3579
|
+
};
|
|
3580
|
+
}>;
|
|
3581
|
+
releasedEvents: Array<{
|
|
3582
|
+
__typename?: 'ReleasedEvent';
|
|
3583
|
+
id: string;
|
|
3584
|
+
occupant: string;
|
|
3585
|
+
refund: string;
|
|
3586
|
+
timestamp: string;
|
|
3587
|
+
tx: string;
|
|
3588
|
+
currency: {
|
|
3589
|
+
__typename?: 'Currency';
|
|
3590
|
+
id: string;
|
|
3591
|
+
name?: string | null;
|
|
3592
|
+
symbol?: string | null;
|
|
3593
|
+
decimals: number;
|
|
3594
|
+
};
|
|
3595
|
+
}>;
|
|
3596
|
+
liquidatedEvents: Array<{
|
|
3597
|
+
__typename?: 'LiquidatedEvent';
|
|
3598
|
+
id: string;
|
|
3599
|
+
liquidator: string;
|
|
3600
|
+
occupant: string;
|
|
3601
|
+
bounty: string;
|
|
3602
|
+
timestamp: string;
|
|
3603
|
+
tx: string;
|
|
3604
|
+
currency: {
|
|
3605
|
+
__typename?: 'Currency';
|
|
3606
|
+
id: string;
|
|
3607
|
+
name?: string | null;
|
|
3608
|
+
symbol?: string | null;
|
|
3609
|
+
decimals: number;
|
|
3610
|
+
};
|
|
3611
|
+
}>;
|
|
3612
|
+
priceUpdatedEvents: Array<{
|
|
3613
|
+
__typename?: 'PriceUpdatedEvent';
|
|
3614
|
+
id: string;
|
|
3615
|
+
oldPrice: string;
|
|
3616
|
+
newPrice: string;
|
|
3617
|
+
timestamp: string;
|
|
3618
|
+
tx: string;
|
|
3619
|
+
currency: {
|
|
3620
|
+
__typename?: 'Currency';
|
|
3621
|
+
id: string;
|
|
3622
|
+
name?: string | null;
|
|
3623
|
+
symbol?: string | null;
|
|
3624
|
+
decimals: number;
|
|
3625
|
+
};
|
|
3626
|
+
}>;
|
|
3627
|
+
depositedEvents: Array<{
|
|
3628
|
+
__typename?: 'DepositedEvent';
|
|
3629
|
+
id: string;
|
|
3630
|
+
depositor: string;
|
|
3631
|
+
amount: string;
|
|
3632
|
+
timestamp: string;
|
|
3633
|
+
tx: string;
|
|
3634
|
+
currency: {
|
|
3635
|
+
__typename?: 'Currency';
|
|
3636
|
+
id: string;
|
|
3637
|
+
name?: string | null;
|
|
3638
|
+
symbol?: string | null;
|
|
3639
|
+
decimals: number;
|
|
3640
|
+
};
|
|
3641
|
+
}>;
|
|
3642
|
+
withdrawnEvents: Array<{
|
|
3643
|
+
__typename?: 'WithdrawnEvent';
|
|
3644
|
+
id: string;
|
|
3645
|
+
occupant: string;
|
|
3646
|
+
amount: string;
|
|
3647
|
+
timestamp: string;
|
|
3648
|
+
tx: string;
|
|
3649
|
+
currency: {
|
|
3650
|
+
__typename?: 'Currency';
|
|
3651
|
+
id: string;
|
|
3652
|
+
name?: string | null;
|
|
3653
|
+
symbol?: string | null;
|
|
3654
|
+
decimals: number;
|
|
3655
|
+
};
|
|
3656
|
+
}>;
|
|
3657
|
+
taxCollectedEvents: Array<{
|
|
3658
|
+
__typename?: 'TaxCollectedEvent';
|
|
3659
|
+
id: string;
|
|
3660
|
+
recipient: string;
|
|
3661
|
+
amount: string;
|
|
3662
|
+
timestamp: string;
|
|
3663
|
+
tx: string;
|
|
3664
|
+
currency: {
|
|
3665
|
+
__typename?: 'Currency';
|
|
3666
|
+
id: string;
|
|
3667
|
+
name?: string | null;
|
|
3668
|
+
symbol?: string | null;
|
|
3669
|
+
decimals: number;
|
|
3670
|
+
};
|
|
3671
|
+
}>;
|
|
3672
|
+
taxUpdateProposedEvents: Array<{
|
|
3673
|
+
__typename?: 'TaxUpdateProposedEvent';
|
|
3674
|
+
id: string;
|
|
3675
|
+
newPercentage: string;
|
|
3676
|
+
timestamp: string;
|
|
3677
|
+
tx: string;
|
|
3678
|
+
}>;
|
|
3679
|
+
moduleUpdateProposedEvents: Array<{
|
|
3680
|
+
__typename?: 'ModuleUpdateProposedEvent';
|
|
3681
|
+
id: string;
|
|
3682
|
+
newModule: string;
|
|
3683
|
+
timestamp: string;
|
|
3684
|
+
tx: string;
|
|
3685
|
+
}>;
|
|
3686
|
+
pendingUpdateCancelledEvents: Array<{
|
|
3687
|
+
__typename?: 'PendingUpdateCancelledEvent';
|
|
3688
|
+
id: string;
|
|
3689
|
+
timestamp: string;
|
|
3690
|
+
tx: string;
|
|
3691
|
+
}>;
|
|
3692
|
+
};
|
|
3693
|
+
type GetFactoryQueryVariables = Exact<{
|
|
3694
|
+
[key: string]: never;
|
|
3695
|
+
}>;
|
|
3696
|
+
type GetFactoryQuery = {
|
|
3697
|
+
__typename?: 'Query';
|
|
3698
|
+
factories: Array<{
|
|
3699
|
+
__typename?: 'Factory';
|
|
3700
|
+
id: string;
|
|
3701
|
+
slotCount: string;
|
|
3702
|
+
}>;
|
|
3703
|
+
};
|
|
3704
|
+
type GetModulesQueryVariables = Exact<{
|
|
3705
|
+
first: Scalars['Int']['input'];
|
|
3706
|
+
}>;
|
|
3707
|
+
type GetModulesQuery = {
|
|
3708
|
+
__typename?: 'Query';
|
|
3709
|
+
modules: Array<{
|
|
3710
|
+
__typename?: 'Module';
|
|
3711
|
+
id: string;
|
|
3712
|
+
verified: boolean;
|
|
3713
|
+
name: string;
|
|
3714
|
+
version: string;
|
|
3715
|
+
}>;
|
|
3716
|
+
};
|
|
3717
|
+
type MetadataSlotFieldsFragment = {
|
|
3718
|
+
__typename?: 'MetadataSlot';
|
|
3719
|
+
id: string;
|
|
3720
|
+
uri: string;
|
|
3721
|
+
rawJson?: string | null;
|
|
3722
|
+
adType?: string | null;
|
|
3723
|
+
updatedBy: string;
|
|
3724
|
+
updateCount: string;
|
|
3725
|
+
createdAt: string;
|
|
3726
|
+
createdTx: string;
|
|
3727
|
+
updatedAt: string;
|
|
3728
|
+
updatedTx: string;
|
|
3729
|
+
slot: {
|
|
3730
|
+
__typename?: 'Slot';
|
|
3731
|
+
id: string;
|
|
3732
|
+
recipient: string;
|
|
3733
|
+
occupant?: string | null;
|
|
3734
|
+
price: string;
|
|
3735
|
+
deposit: string;
|
|
3736
|
+
currency: {
|
|
3737
|
+
__typename?: 'Currency';
|
|
3738
|
+
id: string;
|
|
3739
|
+
symbol?: string | null;
|
|
3740
|
+
decimals: number;
|
|
3741
|
+
};
|
|
3742
|
+
};
|
|
3743
|
+
};
|
|
3744
|
+
type GetMetadataSlotsQueryVariables = Exact<{
|
|
3745
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3746
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3747
|
+
orderBy?: InputMaybe<MetadataSlot_OrderBy>;
|
|
3748
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3749
|
+
}>;
|
|
3750
|
+
type GetMetadataSlotsQuery = {
|
|
3751
|
+
__typename?: 'Query';
|
|
3752
|
+
metadataSlots: Array<{
|
|
3753
|
+
__typename?: 'MetadataSlot';
|
|
3754
|
+
id: string;
|
|
3755
|
+
uri: string;
|
|
3756
|
+
rawJson?: string | null;
|
|
3757
|
+
adType?: string | null;
|
|
3758
|
+
updatedBy: string;
|
|
3759
|
+
updateCount: string;
|
|
3760
|
+
createdAt: string;
|
|
3761
|
+
createdTx: string;
|
|
3762
|
+
updatedAt: string;
|
|
3763
|
+
updatedTx: string;
|
|
3764
|
+
slot: {
|
|
3765
|
+
__typename?: 'Slot';
|
|
3766
|
+
id: string;
|
|
3767
|
+
recipient: string;
|
|
3768
|
+
occupant?: string | null;
|
|
3769
|
+
price: string;
|
|
3770
|
+
deposit: string;
|
|
3771
|
+
currency: {
|
|
3772
|
+
__typename?: 'Currency';
|
|
3773
|
+
id: string;
|
|
3774
|
+
symbol?: string | null;
|
|
3775
|
+
decimals: number;
|
|
3776
|
+
};
|
|
3777
|
+
};
|
|
3778
|
+
}>;
|
|
3779
|
+
};
|
|
3780
|
+
type GetMetadataSlotQueryVariables = Exact<{
|
|
3781
|
+
id: Scalars['ID']['input'];
|
|
3782
|
+
}>;
|
|
3783
|
+
type GetMetadataSlotQuery = {
|
|
3784
|
+
__typename?: 'Query';
|
|
3785
|
+
metadataSlot?: {
|
|
3786
|
+
__typename?: 'MetadataSlot';
|
|
3787
|
+
id: string;
|
|
3788
|
+
uri: string;
|
|
3789
|
+
rawJson?: string | null;
|
|
3790
|
+
adType?: string | null;
|
|
3791
|
+
updatedBy: string;
|
|
3792
|
+
updateCount: string;
|
|
3793
|
+
createdAt: string;
|
|
3794
|
+
createdTx: string;
|
|
3795
|
+
updatedAt: string;
|
|
3796
|
+
updatedTx: string;
|
|
3797
|
+
slot: {
|
|
3798
|
+
__typename?: 'Slot';
|
|
3799
|
+
id: string;
|
|
3800
|
+
recipient: string;
|
|
3801
|
+
occupant?: string | null;
|
|
3802
|
+
price: string;
|
|
3803
|
+
deposit: string;
|
|
3804
|
+
currency: {
|
|
3805
|
+
__typename?: 'Currency';
|
|
3806
|
+
id: string;
|
|
3807
|
+
symbol?: string | null;
|
|
3808
|
+
decimals: number;
|
|
3809
|
+
};
|
|
3810
|
+
};
|
|
3811
|
+
} | null;
|
|
3812
|
+
};
|
|
3813
|
+
type GetMetadataSlotsByRecipientQueryVariables = Exact<{
|
|
3814
|
+
recipient: Scalars['Bytes']['input'];
|
|
3815
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3816
|
+
}>;
|
|
3817
|
+
type GetMetadataSlotsByRecipientQuery = {
|
|
3818
|
+
__typename?: 'Query';
|
|
3819
|
+
metadataSlots: Array<{
|
|
3820
|
+
__typename?: 'MetadataSlot';
|
|
3821
|
+
id: string;
|
|
3822
|
+
uri: string;
|
|
3823
|
+
rawJson?: string | null;
|
|
3824
|
+
adType?: string | null;
|
|
3825
|
+
updatedBy: string;
|
|
3826
|
+
updateCount: string;
|
|
3827
|
+
createdAt: string;
|
|
3828
|
+
createdTx: string;
|
|
3829
|
+
updatedAt: string;
|
|
3830
|
+
updatedTx: string;
|
|
3831
|
+
slot: {
|
|
3832
|
+
__typename?: 'Slot';
|
|
3833
|
+
id: string;
|
|
3834
|
+
recipient: string;
|
|
3835
|
+
occupant?: string | null;
|
|
3836
|
+
price: string;
|
|
3837
|
+
deposit: string;
|
|
3838
|
+
currency: {
|
|
3839
|
+
__typename?: 'Currency';
|
|
3840
|
+
id: string;
|
|
3841
|
+
symbol?: string | null;
|
|
3842
|
+
decimals: number;
|
|
3843
|
+
};
|
|
3844
|
+
};
|
|
3845
|
+
}>;
|
|
3846
|
+
};
|
|
3847
|
+
type GetMetadataUpdatedEventsQueryVariables = Exact<{
|
|
3848
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
3849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3850
|
+
orderBy?: InputMaybe<MetadataUpdatedEvent_OrderBy>;
|
|
3851
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3852
|
+
}>;
|
|
3853
|
+
type GetMetadataUpdatedEventsQuery = {
|
|
3854
|
+
__typename?: 'Query';
|
|
3855
|
+
metadataUpdatedEvents: Array<{
|
|
3856
|
+
__typename?: 'MetadataUpdatedEvent';
|
|
3857
|
+
id: string;
|
|
3858
|
+
uri: string;
|
|
3859
|
+
rawJson?: string | null;
|
|
3860
|
+
adType?: string | null;
|
|
3861
|
+
timestamp: string;
|
|
3862
|
+
blockNumber: string;
|
|
3863
|
+
tx: string;
|
|
3864
|
+
slot: {
|
|
3865
|
+
__typename?: 'Slot';
|
|
3866
|
+
id: string;
|
|
3867
|
+
};
|
|
3868
|
+
author: {
|
|
3869
|
+
__typename?: 'Account';
|
|
3870
|
+
id: string;
|
|
3871
|
+
type: AccountType;
|
|
3872
|
+
};
|
|
3873
|
+
}>;
|
|
3874
|
+
};
|
|
3875
|
+
type SlotFieldsFragment = {
|
|
3876
|
+
__typename?: 'Slot';
|
|
3877
|
+
id: string;
|
|
3878
|
+
recipient: string;
|
|
3879
|
+
manager: string;
|
|
3880
|
+
mutableTax: boolean;
|
|
3881
|
+
mutableModule: boolean;
|
|
3882
|
+
taxPercentage: string;
|
|
3883
|
+
occupant?: string | null;
|
|
3884
|
+
price: string;
|
|
3885
|
+
deposit: string;
|
|
3886
|
+
collectedTax: string;
|
|
3887
|
+
totalCollected: string;
|
|
3888
|
+
liquidationBountyBps: string;
|
|
3889
|
+
minDepositSeconds: string;
|
|
3890
|
+
createdAt: string;
|
|
3891
|
+
createdTx: string;
|
|
3892
|
+
updatedAt: string;
|
|
3893
|
+
recipientAccount: {
|
|
3894
|
+
__typename?: 'Account';
|
|
3895
|
+
id: string;
|
|
3896
|
+
type: AccountType;
|
|
3897
|
+
slotCount: number;
|
|
3898
|
+
occupiedCount: number;
|
|
3899
|
+
};
|
|
3900
|
+
currency: {
|
|
3901
|
+
__typename?: 'Currency';
|
|
3902
|
+
id: string;
|
|
3903
|
+
name?: string | null;
|
|
3904
|
+
symbol?: string | null;
|
|
3905
|
+
decimals: number;
|
|
3906
|
+
};
|
|
3907
|
+
module?: {
|
|
3908
|
+
__typename?: 'Module';
|
|
3909
|
+
id: string;
|
|
3910
|
+
verified: boolean;
|
|
3911
|
+
name: string;
|
|
3912
|
+
version: string;
|
|
3913
|
+
} | null;
|
|
3914
|
+
occupantAccount?: {
|
|
3915
|
+
__typename?: 'Account';
|
|
3916
|
+
id: string;
|
|
3917
|
+
type: AccountType;
|
|
3918
|
+
slotCount: number;
|
|
3919
|
+
occupiedCount: number;
|
|
3920
|
+
} | null;
|
|
3921
|
+
};
|
|
3922
|
+
type GetSlotsQueryVariables = Exact<{
|
|
3923
|
+
first: Scalars['Int']['input'];
|
|
3924
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3925
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
3926
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3927
|
+
where?: InputMaybe<Slot_Filter>;
|
|
3928
|
+
block?: InputMaybe<Block_Height>;
|
|
3929
|
+
}>;
|
|
3930
|
+
type GetSlotsQuery = {
|
|
3931
|
+
__typename?: 'Query';
|
|
3932
|
+
slots: Array<{
|
|
3933
|
+
__typename?: 'Slot';
|
|
3934
|
+
id: string;
|
|
3935
|
+
recipient: string;
|
|
3936
|
+
manager: string;
|
|
3937
|
+
mutableTax: boolean;
|
|
3938
|
+
mutableModule: boolean;
|
|
3939
|
+
taxPercentage: string;
|
|
3940
|
+
occupant?: string | null;
|
|
3941
|
+
price: string;
|
|
3942
|
+
deposit: string;
|
|
3943
|
+
collectedTax: string;
|
|
3944
|
+
totalCollected: string;
|
|
3945
|
+
liquidationBountyBps: string;
|
|
3946
|
+
minDepositSeconds: string;
|
|
3947
|
+
createdAt: string;
|
|
3948
|
+
createdTx: string;
|
|
3949
|
+
updatedAt: string;
|
|
3950
|
+
recipientAccount: {
|
|
3951
|
+
__typename?: 'Account';
|
|
3952
|
+
id: string;
|
|
3953
|
+
type: AccountType;
|
|
3954
|
+
slotCount: number;
|
|
3955
|
+
occupiedCount: number;
|
|
3956
|
+
};
|
|
3957
|
+
currency: {
|
|
3958
|
+
__typename?: 'Currency';
|
|
3959
|
+
id: string;
|
|
3960
|
+
name?: string | null;
|
|
3961
|
+
symbol?: string | null;
|
|
3962
|
+
decimals: number;
|
|
3963
|
+
};
|
|
3964
|
+
module?: {
|
|
3965
|
+
__typename?: 'Module';
|
|
3966
|
+
id: string;
|
|
3967
|
+
verified: boolean;
|
|
3968
|
+
name: string;
|
|
3969
|
+
version: string;
|
|
3970
|
+
} | null;
|
|
3971
|
+
occupantAccount?: {
|
|
3972
|
+
__typename?: 'Account';
|
|
3973
|
+
id: string;
|
|
3974
|
+
type: AccountType;
|
|
3975
|
+
slotCount: number;
|
|
3976
|
+
occupiedCount: number;
|
|
3977
|
+
} | null;
|
|
3978
|
+
}>;
|
|
3979
|
+
};
|
|
3980
|
+
type GetSlotQueryVariables = Exact<{
|
|
3981
|
+
id: Scalars['ID']['input'];
|
|
3982
|
+
block?: InputMaybe<Block_Height>;
|
|
3983
|
+
}>;
|
|
3984
|
+
type GetSlotQuery = {
|
|
3985
|
+
__typename?: 'Query';
|
|
3986
|
+
slot?: {
|
|
3987
|
+
__typename?: 'Slot';
|
|
3988
|
+
id: string;
|
|
3989
|
+
recipient: string;
|
|
3990
|
+
manager: string;
|
|
3991
|
+
mutableTax: boolean;
|
|
3992
|
+
mutableModule: boolean;
|
|
3993
|
+
taxPercentage: string;
|
|
3994
|
+
occupant?: string | null;
|
|
3995
|
+
price: string;
|
|
3996
|
+
deposit: string;
|
|
3997
|
+
collectedTax: string;
|
|
3998
|
+
totalCollected: string;
|
|
3999
|
+
liquidationBountyBps: string;
|
|
4000
|
+
minDepositSeconds: string;
|
|
4001
|
+
createdAt: string;
|
|
4002
|
+
createdTx: string;
|
|
4003
|
+
updatedAt: string;
|
|
4004
|
+
recipientAccount: {
|
|
4005
|
+
__typename?: 'Account';
|
|
4006
|
+
id: string;
|
|
4007
|
+
type: AccountType;
|
|
4008
|
+
slotCount: number;
|
|
4009
|
+
occupiedCount: number;
|
|
4010
|
+
};
|
|
4011
|
+
currency: {
|
|
4012
|
+
__typename?: 'Currency';
|
|
4013
|
+
id: string;
|
|
4014
|
+
name?: string | null;
|
|
4015
|
+
symbol?: string | null;
|
|
4016
|
+
decimals: number;
|
|
4017
|
+
};
|
|
4018
|
+
module?: {
|
|
4019
|
+
__typename?: 'Module';
|
|
4020
|
+
id: string;
|
|
4021
|
+
verified: boolean;
|
|
4022
|
+
name: string;
|
|
4023
|
+
version: string;
|
|
4024
|
+
} | null;
|
|
4025
|
+
occupantAccount?: {
|
|
4026
|
+
__typename?: 'Account';
|
|
4027
|
+
id: string;
|
|
4028
|
+
type: AccountType;
|
|
4029
|
+
slotCount: number;
|
|
4030
|
+
occupiedCount: number;
|
|
4031
|
+
} | null;
|
|
4032
|
+
} | null;
|
|
4033
|
+
};
|
|
4034
|
+
type GetSlotsByRecipientQueryVariables = Exact<{
|
|
4035
|
+
recipient: Scalars['Bytes']['input'];
|
|
4036
|
+
first: Scalars['Int']['input'];
|
|
4037
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
4038
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
4039
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
4040
|
+
block?: InputMaybe<Block_Height>;
|
|
4041
|
+
}>;
|
|
4042
|
+
type GetSlotsByRecipientQuery = {
|
|
4043
|
+
__typename?: 'Query';
|
|
4044
|
+
slots: Array<{
|
|
4045
|
+
__typename?: 'Slot';
|
|
4046
|
+
id: string;
|
|
4047
|
+
recipient: string;
|
|
4048
|
+
manager: string;
|
|
4049
|
+
mutableTax: boolean;
|
|
4050
|
+
mutableModule: boolean;
|
|
4051
|
+
taxPercentage: string;
|
|
4052
|
+
occupant?: string | null;
|
|
4053
|
+
price: string;
|
|
4054
|
+
deposit: string;
|
|
4055
|
+
collectedTax: string;
|
|
4056
|
+
totalCollected: string;
|
|
4057
|
+
liquidationBountyBps: string;
|
|
4058
|
+
minDepositSeconds: string;
|
|
4059
|
+
createdAt: string;
|
|
4060
|
+
createdTx: string;
|
|
4061
|
+
updatedAt: string;
|
|
4062
|
+
recipientAccount: {
|
|
4063
|
+
__typename?: 'Account';
|
|
4064
|
+
id: string;
|
|
4065
|
+
type: AccountType;
|
|
4066
|
+
slotCount: number;
|
|
4067
|
+
occupiedCount: number;
|
|
4068
|
+
};
|
|
4069
|
+
currency: {
|
|
4070
|
+
__typename?: 'Currency';
|
|
4071
|
+
id: string;
|
|
4072
|
+
name?: string | null;
|
|
4073
|
+
symbol?: string | null;
|
|
4074
|
+
decimals: number;
|
|
4075
|
+
};
|
|
4076
|
+
module?: {
|
|
4077
|
+
__typename?: 'Module';
|
|
4078
|
+
id: string;
|
|
4079
|
+
verified: boolean;
|
|
4080
|
+
name: string;
|
|
4081
|
+
version: string;
|
|
4082
|
+
} | null;
|
|
4083
|
+
occupantAccount?: {
|
|
4084
|
+
__typename?: 'Account';
|
|
4085
|
+
id: string;
|
|
4086
|
+
type: AccountType;
|
|
4087
|
+
slotCount: number;
|
|
4088
|
+
occupiedCount: number;
|
|
4089
|
+
} | null;
|
|
4090
|
+
}>;
|
|
4091
|
+
};
|
|
4092
|
+
type GetSlotsByOccupantQueryVariables = Exact<{
|
|
4093
|
+
occupant: Scalars['Bytes']['input'];
|
|
4094
|
+
first: Scalars['Int']['input'];
|
|
4095
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
4096
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
4097
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
4098
|
+
block?: InputMaybe<Block_Height>;
|
|
4099
|
+
}>;
|
|
4100
|
+
type GetSlotsByOccupantQuery = {
|
|
4101
|
+
__typename?: 'Query';
|
|
4102
|
+
slots: Array<{
|
|
4103
|
+
__typename?: 'Slot';
|
|
4104
|
+
id: string;
|
|
4105
|
+
recipient: string;
|
|
4106
|
+
manager: string;
|
|
4107
|
+
mutableTax: boolean;
|
|
4108
|
+
mutableModule: boolean;
|
|
4109
|
+
taxPercentage: string;
|
|
4110
|
+
occupant?: string | null;
|
|
4111
|
+
price: string;
|
|
4112
|
+
deposit: string;
|
|
4113
|
+
collectedTax: string;
|
|
4114
|
+
totalCollected: string;
|
|
4115
|
+
liquidationBountyBps: string;
|
|
4116
|
+
minDepositSeconds: string;
|
|
4117
|
+
createdAt: string;
|
|
4118
|
+
createdTx: string;
|
|
4119
|
+
updatedAt: string;
|
|
4120
|
+
recipientAccount: {
|
|
4121
|
+
__typename?: 'Account';
|
|
4122
|
+
id: string;
|
|
4123
|
+
type: AccountType;
|
|
4124
|
+
slotCount: number;
|
|
4125
|
+
occupiedCount: number;
|
|
4126
|
+
};
|
|
4127
|
+
currency: {
|
|
4128
|
+
__typename?: 'Currency';
|
|
4129
|
+
id: string;
|
|
4130
|
+
name?: string | null;
|
|
4131
|
+
symbol?: string | null;
|
|
4132
|
+
decimals: number;
|
|
4133
|
+
};
|
|
4134
|
+
module?: {
|
|
4135
|
+
__typename?: 'Module';
|
|
4136
|
+
id: string;
|
|
4137
|
+
verified: boolean;
|
|
4138
|
+
name: string;
|
|
4139
|
+
version: string;
|
|
4140
|
+
} | null;
|
|
4141
|
+
occupantAccount?: {
|
|
4142
|
+
__typename?: 'Account';
|
|
4143
|
+
id: string;
|
|
4144
|
+
type: AccountType;
|
|
4145
|
+
slotCount: number;
|
|
4146
|
+
occupiedCount: number;
|
|
4147
|
+
} | null;
|
|
4148
|
+
}>;
|
|
4149
|
+
};
|
|
4150
|
+
declare const AccountFieldsFragmentDoc: graphql.DocumentNode;
|
|
4151
|
+
declare const CurrencyFieldsFragmentDoc: graphql.DocumentNode;
|
|
4152
|
+
declare const MetadataSlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
4153
|
+
declare const SlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
4154
|
+
declare const GetAccountDocument: graphql.DocumentNode;
|
|
4155
|
+
declare const GetAccountsDocument: graphql.DocumentNode;
|
|
4156
|
+
declare const GetSlotDeployedEventsDocument: graphql.DocumentNode;
|
|
4157
|
+
declare const GetRecentEventsDocument: graphql.DocumentNode;
|
|
4158
|
+
declare const GetBoughtEventsDocument: graphql.DocumentNode;
|
|
4159
|
+
declare const GetReleasedEventsDocument: graphql.DocumentNode;
|
|
4160
|
+
declare const GetLiquidatedEventsDocument: graphql.DocumentNode;
|
|
4161
|
+
declare const GetSettledEventsDocument: graphql.DocumentNode;
|
|
4162
|
+
declare const GetTaxCollectedEventsDocument: graphql.DocumentNode;
|
|
4163
|
+
declare const GetDepositedEventsDocument: graphql.DocumentNode;
|
|
4164
|
+
declare const GetWithdrawnEventsDocument: graphql.DocumentNode;
|
|
4165
|
+
declare const GetPriceUpdatedEventsDocument: graphql.DocumentNode;
|
|
4166
|
+
declare const GetSlotActivityDocument: graphql.DocumentNode;
|
|
4167
|
+
declare const GetFactoryDocument: graphql.DocumentNode;
|
|
4168
|
+
declare const GetModulesDocument: graphql.DocumentNode;
|
|
4169
|
+
declare const GetMetadataSlotsDocument: graphql.DocumentNode;
|
|
4170
|
+
declare const GetMetadataSlotDocument: graphql.DocumentNode;
|
|
4171
|
+
declare const GetMetadataSlotsByRecipientDocument: graphql.DocumentNode;
|
|
4172
|
+
declare const GetMetadataUpdatedEventsDocument: graphql.DocumentNode;
|
|
4173
|
+
declare const GetSlotsDocument: graphql.DocumentNode;
|
|
4174
|
+
declare const GetSlotDocument: graphql.DocumentNode;
|
|
4175
|
+
declare const GetSlotsByRecipientDocument: graphql.DocumentNode;
|
|
4176
|
+
declare const GetSlotsByOccupantDocument: graphql.DocumentNode;
|
|
4177
|
+
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
4178
|
+
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
4179
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
4180
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
4181
|
+
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
4182
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
4183
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
4184
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
4185
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
4186
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
4187
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
4188
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
4189
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
4190
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
4191
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
4192
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
4193
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
4194
|
+
GetMetadataSlots(variables?: GetMetadataSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsQuery>;
|
|
4195
|
+
GetMetadataSlot(variables: GetMetadataSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotQuery>;
|
|
4196
|
+
GetMetadataSlotsByRecipient(variables: GetMetadataSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
4197
|
+
GetMetadataUpdatedEvents(variables?: GetMetadataUpdatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetMetadataUpdatedEventsQuery>;
|
|
4198
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
4199
|
+
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
4200
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
4201
|
+
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
4202
|
+
};
|
|
4203
|
+
type Sdk = ReturnType<typeof getSdk>;
|
|
4204
|
+
|
|
4205
|
+
/**
|
|
4206
|
+
* Module namespace for MetadataModule operations.
|
|
4207
|
+
* Accessible via `client.modules.metadata`.
|
|
4208
|
+
*
|
|
4209
|
+
* Read: subgraph queries for MetadataSlot entities
|
|
4210
|
+
* Write: `updateMetadata(moduleAddress, slot, uri)` on the MetadataModule contract
|
|
4211
|
+
* RPC read: `tokenURI(moduleAddress, slot)` on the MetadataModule contract
|
|
4212
|
+
*/
|
|
4213
|
+
declare class MetadataModuleClient {
|
|
4214
|
+
private readonly sdk;
|
|
4215
|
+
private readonly _publicClient?;
|
|
4216
|
+
private readonly _walletClient?;
|
|
4217
|
+
constructor(opts: {
|
|
4218
|
+
sdk: ReturnType<typeof getSdk>;
|
|
4219
|
+
publicClient?: PublicClient;
|
|
4220
|
+
walletClient?: WalletClient;
|
|
4221
|
+
});
|
|
4222
|
+
private get wallet();
|
|
4223
|
+
private get account();
|
|
4224
|
+
private get chain();
|
|
4225
|
+
private get publicClient();
|
|
4226
|
+
private query;
|
|
4227
|
+
/**
|
|
4228
|
+
* Verify that a given address is a MetadataModule by calling `name()` on-chain.
|
|
4229
|
+
* @param moduleAddress - The module contract address to verify
|
|
4230
|
+
* @throws SlotsError if the contract doesn't return the expected name
|
|
4231
|
+
*/
|
|
4232
|
+
private verifyModule;
|
|
4233
|
+
/** Get all slots with metadata, ordered by most recently updated. */
|
|
4234
|
+
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlots"]>): Promise<GetMetadataSlotsQuery>;
|
|
4235
|
+
/** Get a single metadata slot by slot address. */
|
|
4236
|
+
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlot"]>): Promise<GetMetadataSlotQuery>;
|
|
4237
|
+
/** Get all metadata slots for a given recipient. */
|
|
4238
|
+
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataSlotsByRecipient"]>): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
4239
|
+
/** Get metadata update history for a slot. */
|
|
4240
|
+
getUpdateHistory(...args: Parameters<ReturnType<typeof getSdk>["GetMetadataUpdatedEvents"]>): Promise<GetMetadataUpdatedEventsQuery>;
|
|
4241
|
+
/**
|
|
4242
|
+
* Read the current URI for a slot directly from chain (bypasses subgraph).
|
|
4243
|
+
* @param moduleAddress - The MetadataModule contract address (from the slot's on-chain module field)
|
|
4244
|
+
* @param slot - The slot contract address
|
|
4245
|
+
*/
|
|
4246
|
+
getURI(moduleAddress: Address, slot: Address): Promise<string>;
|
|
4247
|
+
/**
|
|
4248
|
+
* Update the metadata URI for a slot. Only callable by the current occupant.
|
|
4249
|
+
* Verifies on-chain that the address is a MetadataModule before writing.
|
|
4250
|
+
* @param moduleAddress - The MetadataModule contract address (from the slot's on-chain module field)
|
|
4251
|
+
* @param slot - The slot contract address
|
|
4252
|
+
* @param uri - The new URI (e.g. ipfs://..., https://...)
|
|
4253
|
+
* @returns Transaction hash
|
|
4254
|
+
*/
|
|
4255
|
+
updateMetadata(moduleAddress: Address, slot: Address, uri: string): Promise<Hash>;
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
interface SubgraphMeta {
|
|
4259
|
+
_meta: {
|
|
4260
|
+
block: {
|
|
4261
|
+
number: number;
|
|
4262
|
+
hash: string;
|
|
4263
|
+
timestamp: number;
|
|
4264
|
+
};
|
|
4265
|
+
hasIndexingErrors: boolean;
|
|
4266
|
+
};
|
|
4267
|
+
}
|
|
4268
|
+
declare enum SlotsChain {
|
|
4269
|
+
BASE = 8453,
|
|
4270
|
+
BASE_SEPOLIA = 84532
|
|
4271
|
+
}
|
|
4272
|
+
declare const SUBGRAPH_URLS: Record<SlotsChain, string>;
|
|
4273
|
+
interface SlotConfig {
|
|
4274
|
+
mutableTax: boolean;
|
|
4275
|
+
mutableModule: boolean;
|
|
4276
|
+
manager: Address;
|
|
4277
|
+
}
|
|
4278
|
+
interface SlotInitParams {
|
|
4279
|
+
taxPercentage: bigint;
|
|
4280
|
+
module: Address;
|
|
4281
|
+
liquidationBountyBps: bigint;
|
|
4282
|
+
minDepositSeconds: bigint;
|
|
4283
|
+
}
|
|
4284
|
+
interface CreateSlotParams {
|
|
4285
|
+
recipient: Address;
|
|
4286
|
+
currency: Address;
|
|
4287
|
+
config: SlotConfig;
|
|
4288
|
+
initParams: SlotInitParams;
|
|
4289
|
+
}
|
|
4290
|
+
interface CreateSlotsParams extends CreateSlotParams {
|
|
4291
|
+
count: bigint;
|
|
4292
|
+
}
|
|
4293
|
+
interface BuyParams {
|
|
4294
|
+
slot: Address;
|
|
4295
|
+
depositAmount: bigint;
|
|
4296
|
+
selfAssessedPrice: bigint;
|
|
4297
|
+
}
|
|
4298
|
+
interface SlotsClientConfig {
|
|
4299
|
+
chainId: SlotsChain;
|
|
4300
|
+
factoryAddress?: Address;
|
|
4301
|
+
publicClient?: PublicClient;
|
|
4302
|
+
walletClient?: WalletClient;
|
|
4303
|
+
subgraphUrl?: string;
|
|
4304
|
+
subgraphApiKey?: string;
|
|
4305
|
+
headers?: Record<string, string>;
|
|
4306
|
+
}
|
|
4307
|
+
/**
|
|
4308
|
+
* Client for reading and writing 0xSlots protocol data.
|
|
4309
|
+
*
|
|
4310
|
+
* Reads come from a Graph Protocol subgraph (via graphql-request).
|
|
4311
|
+
* Writes go through a viem WalletClient and handle ERC-20 approvals automatically.
|
|
4312
|
+
*
|
|
4313
|
+
* @example
|
|
4314
|
+
* ```ts
|
|
4315
|
+
* const client = new SlotsClient({
|
|
4316
|
+
* chainId: SlotsChain.BASE,
|
|
4317
|
+
* publicClient,
|
|
4318
|
+
* walletClient,
|
|
4319
|
+
* });
|
|
4320
|
+
* const slots = await client.getSlots({ first: 10 });
|
|
4321
|
+
* ```
|
|
4322
|
+
*/
|
|
4323
|
+
declare class SlotsClient {
|
|
4324
|
+
private readonly sdk;
|
|
4325
|
+
private readonly chainId;
|
|
4326
|
+
private readonly gqlClient;
|
|
4327
|
+
private readonly _publicClient?;
|
|
4328
|
+
private readonly walletClient?;
|
|
4329
|
+
private readonly _factory?;
|
|
4330
|
+
private _atomicSupport;
|
|
4331
|
+
/** Module namespaces for protocol extensions. */
|
|
4332
|
+
readonly modules: {
|
|
4333
|
+
metadata: MetadataModuleClient;
|
|
4334
|
+
};
|
|
4335
|
+
constructor(config: SlotsClientConfig);
|
|
4336
|
+
/** Returns the chain ID this client was configured for. */
|
|
4337
|
+
getChainId(): SlotsChain;
|
|
4338
|
+
/** Returns the underlying GraphQL client (for advanced usage). */
|
|
4339
|
+
getClient(): GraphQLClient;
|
|
4340
|
+
/** Returns the generated GraphQL SDK (for queries not wrapped by this client). */
|
|
4341
|
+
getSdk(): {
|
|
4342
|
+
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
4343
|
+
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
4344
|
+
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
4345
|
+
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
4346
|
+
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
4347
|
+
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
4348
|
+
GetLiquidatedEvents(variables: GetLiquidatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLiquidatedEventsQuery>;
|
|
4349
|
+
GetSettledEvents(variables: GetSettledEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSettledEventsQuery>;
|
|
4350
|
+
GetTaxCollectedEvents(variables: GetTaxCollectedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetTaxCollectedEventsQuery>;
|
|
4351
|
+
GetDepositedEvents(variables: GetDepositedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetDepositedEventsQuery>;
|
|
4352
|
+
GetWithdrawnEvents(variables: GetWithdrawnEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetWithdrawnEventsQuery>;
|
|
4353
|
+
GetPriceUpdatedEvents(variables: GetPriceUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetPriceUpdatedEventsQuery>;
|
|
4354
|
+
GetSlotActivity(variables: GetSlotActivityQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotActivityQuery>;
|
|
4355
|
+
GetFactory(variables?: GetFactoryQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetFactoryQuery>;
|
|
4356
|
+
GetModules(variables: GetModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetModulesQuery>;
|
|
4357
|
+
GetMetadataSlots(variables?: GetMetadataSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsQuery>;
|
|
4358
|
+
GetMetadataSlot(variables: GetMetadataSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotQuery>;
|
|
4359
|
+
GetMetadataSlotsByRecipient(variables: GetMetadataSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataSlotsByRecipientQuery>;
|
|
4360
|
+
GetMetadataUpdatedEvents(variables?: GetMetadataUpdatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetMetadataUpdatedEventsQuery>;
|
|
4361
|
+
GetSlots(variables: GetSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
4362
|
+
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
4363
|
+
GetSlotsByRecipient(variables: GetSlotsByRecipientQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByRecipientQuery>;
|
|
4364
|
+
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
4365
|
+
};
|
|
4366
|
+
private get publicClient();
|
|
4367
|
+
private get factory();
|
|
4368
|
+
private get wallet();
|
|
4369
|
+
private get account();
|
|
4370
|
+
private get chain();
|
|
4371
|
+
private assertPositive;
|
|
4372
|
+
private query;
|
|
4373
|
+
/** Fetch a paginated list of slots. */
|
|
4374
|
+
getSlots(...args: Parameters<ReturnType<typeof getSdk>["GetSlots"]>): Promise<GetSlotsQuery>;
|
|
4375
|
+
/** Fetch a single slot by its address. */
|
|
4376
|
+
getSlot(...args: Parameters<ReturnType<typeof getSdk>["GetSlot"]>): Promise<GetSlotQuery>;
|
|
4377
|
+
/** Fetch all slots owned by a given recipient address. */
|
|
4378
|
+
getSlotsByRecipient(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByRecipient"]>): Promise<GetSlotsByRecipientQuery>;
|
|
4379
|
+
/** Fetch all slots currently occupied by a given address. */
|
|
4380
|
+
getSlotsByOccupant(...args: Parameters<ReturnType<typeof getSdk>["GetSlotsByOccupant"]>): Promise<GetSlotsByOccupantQuery>;
|
|
4381
|
+
/** Fetch factory configuration. */
|
|
4382
|
+
getFactory(): Promise<GetFactoryQuery>;
|
|
4383
|
+
/** Fetch registered modules. */
|
|
4384
|
+
getModules(...args: Parameters<ReturnType<typeof getSdk>["GetModules"]>): Promise<GetModulesQuery>;
|
|
4385
|
+
/** Fetch slot deployed events with optional filters. */
|
|
4386
|
+
getSlotDeployedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSlotDeployedEvents"]>): Promise<GetSlotDeployedEventsQuery>;
|
|
4387
|
+
/** Fetch bought events with optional filters. */
|
|
4388
|
+
getBoughtEvents(...args: Parameters<ReturnType<typeof getSdk>["GetBoughtEvents"]>): Promise<GetBoughtEventsQuery>;
|
|
4389
|
+
/** Fetch settled events with optional filters. */
|
|
4390
|
+
getSettledEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSettledEvents"]>): Promise<GetSettledEventsQuery>;
|
|
4391
|
+
/** Fetch tax-collected events with optional filters. */
|
|
4392
|
+
getTaxCollectedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetTaxCollectedEvents"]>): Promise<GetTaxCollectedEventsQuery>;
|
|
4393
|
+
/** Fetch all activity for a specific slot (all event types). */
|
|
4394
|
+
getSlotActivity(...args: Parameters<ReturnType<typeof getSdk>["GetSlotActivity"]>): Promise<GetSlotActivityQuery>;
|
|
4395
|
+
/** Fetch the most recent events across all slots. */
|
|
4396
|
+
getRecentEvents(...args: Parameters<ReturnType<typeof getSdk>["GetRecentEvents"]>): Promise<GetRecentEventsQuery>;
|
|
4397
|
+
/** Fetch a single account by address. */
|
|
4398
|
+
getAccount(...args: Parameters<ReturnType<typeof getSdk>["GetAccount"]>): Promise<GetAccountQuery>;
|
|
4399
|
+
/** Fetch a paginated list of accounts. */
|
|
4400
|
+
getAccounts(...args: Parameters<ReturnType<typeof getSdk>["GetAccounts"]>): Promise<GetAccountsQuery>;
|
|
4401
|
+
/** Fetch released events with optional filters. */
|
|
4402
|
+
getReleasedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetReleasedEvents"]>): Promise<GetReleasedEventsQuery>;
|
|
4403
|
+
/** Fetch liquidated events with optional filters. */
|
|
4404
|
+
getLiquidatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetLiquidatedEvents"]>): Promise<GetLiquidatedEventsQuery>;
|
|
4405
|
+
/** Fetch deposited events with optional filters. */
|
|
4406
|
+
getDepositedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetDepositedEvents"]>): Promise<GetDepositedEventsQuery>;
|
|
4407
|
+
/** Fetch withdrawn events with optional filters. */
|
|
4408
|
+
getWithdrawnEvents(...args: Parameters<ReturnType<typeof getSdk>["GetWithdrawnEvents"]>): Promise<GetWithdrawnEventsQuery>;
|
|
4409
|
+
/** Fetch price-updated events with optional filters. */
|
|
4410
|
+
getPriceUpdatedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetPriceUpdatedEvents"]>): Promise<GetPriceUpdatedEventsQuery>;
|
|
4411
|
+
/** Fetch subgraph indexing metadata (latest block, indexing errors). */
|
|
4412
|
+
getMeta(): Promise<SubgraphMeta>;
|
|
4413
|
+
/**
|
|
4414
|
+
* Read full slot info from on-chain (RPC, not subgraph).
|
|
4415
|
+
* @param slot - Slot contract address.
|
|
4416
|
+
* @returns On-chain slot info tuple.
|
|
4417
|
+
* @throws {SlotsError} If the RPC call fails.
|
|
4418
|
+
*/
|
|
4419
|
+
getSlotInfo(slot: Address): Promise<{
|
|
4420
|
+
recipient: `0x${string}`;
|
|
4421
|
+
currency: `0x${string}`;
|
|
4422
|
+
manager: `0x${string}`;
|
|
4423
|
+
mutableTax: boolean;
|
|
4424
|
+
mutableModule: boolean;
|
|
4425
|
+
occupant: `0x${string}`;
|
|
4426
|
+
price: bigint;
|
|
4427
|
+
taxPercentage: bigint;
|
|
4428
|
+
module: `0x${string}`;
|
|
4429
|
+
liquidationBountyBps: bigint;
|
|
4430
|
+
minDepositSeconds: bigint;
|
|
4431
|
+
deposit: bigint;
|
|
4432
|
+
collectedTax: bigint;
|
|
4433
|
+
taxOwed: bigint;
|
|
4434
|
+
secondsUntilLiquidation: bigint;
|
|
4435
|
+
insolvent: boolean;
|
|
4436
|
+
hasPendingTax: boolean;
|
|
4437
|
+
pendingTaxPercentage: bigint;
|
|
4438
|
+
hasPendingModule: boolean;
|
|
4439
|
+
pendingModule: `0x${string}`;
|
|
4440
|
+
}>;
|
|
4441
|
+
/**
|
|
4442
|
+
* Deploy a new slot via the factory contract.
|
|
4443
|
+
* @param params - Slot creation parameters (recipient, currency, config, initParams).
|
|
4444
|
+
* @returns Transaction hash.
|
|
4445
|
+
*/
|
|
4446
|
+
createSlot(params: CreateSlotParams): Promise<Hash>;
|
|
4447
|
+
/**
|
|
4448
|
+
* Deploy multiple identical slots in a single transaction via the factory contract.
|
|
4449
|
+
* @param params - Slot creation parameters including count.
|
|
4450
|
+
* @returns Transaction hash.
|
|
4451
|
+
*/
|
|
4452
|
+
createSlots(params: CreateSlotsParams): Promise<Hash>;
|
|
4453
|
+
/**
|
|
4454
|
+
* Buy a slot (or force-buy an occupied one). Handles ERC-20 approval automatically.
|
|
4455
|
+
* @param params - Buy parameters (slot address, deposit amount, self-assessed price).
|
|
4456
|
+
* @returns Transaction hash.
|
|
4457
|
+
* @throws {SlotsError} If depositAmount or selfAssessedPrice is not positive, or the transaction fails.
|
|
4458
|
+
*/
|
|
4459
|
+
buy(params: BuyParams): Promise<Hash>;
|
|
4460
|
+
/**
|
|
4461
|
+
* Self-assess a new price for an occupied slot (occupant only).
|
|
4462
|
+
* @param slot - The slot contract address.
|
|
4463
|
+
* @param newPrice - The new self-assessed price (can be 0).
|
|
4464
|
+
* @returns Transaction hash.
|
|
4465
|
+
*/
|
|
4466
|
+
selfAssess(slot: Address, newPrice: bigint): Promise<Hash>;
|
|
4467
|
+
/**
|
|
4468
|
+
* Top up deposit on a slot (occupant only). Handles ERC-20 approval automatically.
|
|
4469
|
+
* @param slot - The slot contract address.
|
|
4470
|
+
* @param amount - The amount to deposit (must be > 0).
|
|
4471
|
+
* @returns Transaction hash.
|
|
4472
|
+
* @throws {SlotsError} If amount is not positive, or the transaction fails.
|
|
4473
|
+
*/
|
|
4474
|
+
topUp(slot: Address, amount: bigint): Promise<Hash>;
|
|
4475
|
+
/**
|
|
4476
|
+
* Withdraw from deposit (occupant only). Cannot go below minimum deposit.
|
|
4477
|
+
* @param slot - The slot contract address.
|
|
4478
|
+
* @param amount - The amount to withdraw (must be > 0).
|
|
4479
|
+
* @returns Transaction hash.
|
|
4480
|
+
* @throws {SlotsError} If amount is not positive, or the transaction fails.
|
|
4481
|
+
*/
|
|
4482
|
+
withdraw(slot: Address, amount: bigint): Promise<Hash>;
|
|
4483
|
+
/**
|
|
4484
|
+
* Release a slot (occupant only). Returns remaining deposit to the occupant.
|
|
4485
|
+
* @param slot - The slot contract address.
|
|
4486
|
+
* @returns Transaction hash.
|
|
4487
|
+
*/
|
|
4488
|
+
release(slot: Address): Promise<Hash>;
|
|
4489
|
+
/**
|
|
4490
|
+
* Collect accumulated tax (permissionless).
|
|
4491
|
+
* @param slot - The slot contract address.
|
|
4492
|
+
* @returns Transaction hash.
|
|
4493
|
+
*/
|
|
4494
|
+
collect(slot: Address): Promise<Hash>;
|
|
4495
|
+
/**
|
|
4496
|
+
* Liquidate an insolvent slot (permissionless). Caller receives bounty.
|
|
4497
|
+
* @param slot - The slot contract address.
|
|
4498
|
+
* @returns Transaction hash.
|
|
4499
|
+
*/
|
|
4500
|
+
liquidate(slot: Address): Promise<Hash>;
|
|
4501
|
+
/**
|
|
4502
|
+
* Propose a tax rate update (manager only, slot must have mutableTax).
|
|
4503
|
+
* @param slot - The slot contract address.
|
|
4504
|
+
* @param newPct - The new tax percentage.
|
|
4505
|
+
* @returns Transaction hash.
|
|
4506
|
+
*/
|
|
4507
|
+
proposeTaxUpdate(slot: Address, newPct: bigint): Promise<Hash>;
|
|
4508
|
+
/**
|
|
4509
|
+
* Propose a module update (manager only, slot must have mutableModule).
|
|
4510
|
+
* @param slot - The slot contract address.
|
|
4511
|
+
* @param newModule - The new module contract address.
|
|
4512
|
+
* @returns Transaction hash.
|
|
4513
|
+
*/
|
|
4514
|
+
proposeModuleUpdate(slot: Address, newModule: Address): Promise<Hash>;
|
|
4515
|
+
/**
|
|
4516
|
+
* Cancel pending updates (manager only).
|
|
4517
|
+
* @param slot - The slot contract address.
|
|
4518
|
+
* @returns Transaction hash.
|
|
4519
|
+
*/
|
|
4520
|
+
cancelPendingUpdates(slot: Address): Promise<Hash>;
|
|
4521
|
+
/**
|
|
4522
|
+
* Set liquidation bounty bps (manager only).
|
|
4523
|
+
* @param slot - The slot contract address.
|
|
4524
|
+
* @param newBps - The new bounty in basis points (0-10000).
|
|
4525
|
+
* @returns Transaction hash.
|
|
4526
|
+
* @throws {SlotsError} If newBps is outside 0-10000, or the transaction fails.
|
|
4527
|
+
*/
|
|
4528
|
+
setLiquidationBounty(slot: Address, newBps: bigint): Promise<Hash>;
|
|
4529
|
+
/**
|
|
4530
|
+
* Batch multiple slot calls into one transaction via multicall.
|
|
4531
|
+
* @param slot - The slot contract address.
|
|
4532
|
+
* @param calls - Array of function calls to batch.
|
|
4533
|
+
* @returns Transaction hash.
|
|
4534
|
+
* @throws {SlotsError} If calls array is empty, or the transaction fails.
|
|
4535
|
+
*/
|
|
4536
|
+
multicall(slot: Address, calls: {
|
|
4537
|
+
functionName: string;
|
|
4538
|
+
args?: any[];
|
|
4539
|
+
}[]): Promise<Hash>;
|
|
4540
|
+
/** Check if wallet supports atomic batch calls (EIP-5792). */
|
|
4541
|
+
private supportsAtomicBatch;
|
|
4542
|
+
/** Poll EIP-5792 getCallsStatus until the batch settles, then return a tx hash. */
|
|
4543
|
+
private pollBatchReceipt;
|
|
4544
|
+
/**
|
|
4545
|
+
* Execute a contract call that needs ERC-20 allowance.
|
|
4546
|
+
* If wallet supports atomic batch (EIP-5792): sends approve + action as one atomic call.
|
|
4547
|
+
* Otherwise: chains approve tx (if needed) then action tx.
|
|
4548
|
+
*/
|
|
4549
|
+
private withAllowance;
|
|
4550
|
+
}
|
|
4551
|
+
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
4552
|
+
|
|
4553
|
+
export { GetMetadataSlotsByRecipientDocument as $, type Account as A, type BlockChangedFilter as B, type CreateSlotParams as C, type DepositedEvent as D, type Exact as E, type Factory as F, GetAccountDocument as G, type GetAccountQueryVariables as H, GetAccountsDocument as I, type GetAccountsQuery as J, type GetAccountsQueryVariables as K, GetBoughtEventsDocument as L, type GetBoughtEventsQuery as M, type GetBoughtEventsQueryVariables as N, GetDepositedEventsDocument as O, type GetDepositedEventsQuery as P, type GetDepositedEventsQueryVariables as Q, GetFactoryDocument as R, SlotsChain as S, type GetFactoryQuery as T, type GetFactoryQueryVariables as U, GetLiquidatedEventsDocument as V, type GetLiquidatedEventsQuery as W, type GetLiquidatedEventsQueryVariables as X, GetMetadataSlotDocument as Y, type GetMetadataSlotQuery as Z, type GetMetadataSlotQueryVariables as _, type AccountFieldsFragment as a, type MetadataUpdatedEvent_Filter as a$, type GetMetadataSlotsByRecipientQuery as a0, type GetMetadataSlotsByRecipientQueryVariables as a1, GetMetadataSlotsDocument as a2, type GetMetadataSlotsQuery as a3, type GetMetadataSlotsQueryVariables as a4, GetMetadataUpdatedEventsDocument as a5, type GetMetadataUpdatedEventsQuery as a6, type GetMetadataUpdatedEventsQueryVariables as a7, GetModulesDocument as a8, type GetModulesQuery as a9, type GetSlotsByRecipientQuery as aA, type GetSlotsByRecipientQueryVariables as aB, GetSlotsDocument as aC, type GetSlotsQuery as aD, type GetSlotsQueryVariables as aE, GetTaxCollectedEventsDocument as aF, type GetTaxCollectedEventsQuery as aG, type GetTaxCollectedEventsQueryVariables as aH, GetWithdrawnEventsDocument as aI, type GetWithdrawnEventsQuery as aJ, type GetWithdrawnEventsQueryVariables as aK, type Incremental as aL, type InputMaybe as aM, type LiquidatedEvent as aN, type LiquidatedEvent_Filter as aO, type LiquidatedEvent_OrderBy as aP, type MakeEmpty as aQ, type MakeMaybe as aR, type MakeOptional as aS, type Maybe as aT, MetadataModuleClient as aU, type MetadataSlot as aV, type MetadataSlotFieldsFragment as aW, MetadataSlotFieldsFragmentDoc as aX, type MetadataSlot_Filter as aY, type MetadataSlot_OrderBy as aZ, type MetadataUpdatedEvent as a_, type GetModulesQueryVariables as aa, GetPriceUpdatedEventsDocument as ab, type GetPriceUpdatedEventsQuery as ac, type GetPriceUpdatedEventsQueryVariables as ad, GetRecentEventsDocument as ae, type GetRecentEventsQuery as af, type GetRecentEventsQueryVariables as ag, GetReleasedEventsDocument as ah, type GetReleasedEventsQuery as ai, type GetReleasedEventsQueryVariables as aj, GetSettledEventsDocument as ak, type GetSettledEventsQuery as al, type GetSettledEventsQueryVariables as am, GetSlotActivityDocument as an, type GetSlotActivityQuery as ao, type GetSlotActivityQueryVariables as ap, GetSlotDeployedEventsDocument as aq, type GetSlotDeployedEventsQuery as ar, type GetSlotDeployedEventsQueryVariables as as, GetSlotDocument as at, type GetSlotQuery as au, type GetSlotQueryVariables as av, GetSlotsByOccupantDocument as aw, type GetSlotsByOccupantQuery as ax, type GetSlotsByOccupantQueryVariables as ay, GetSlotsByRecipientDocument as az, AccountFieldsFragmentDoc as b, type QueryWithdrawnEventsArgs as b$, type MetadataUpdatedEvent_OrderBy as b0, type Module as b1, type ModuleUpdateProposedEvent as b2, type ModuleUpdateProposedEvent_Filter as b3, type ModuleUpdateProposedEvent_OrderBy as b4, type Module_Filter as b5, type Module_OrderBy as b6, type NftCollection as b7, type NftCollectionTokensArgs as b8, type NftCollection_Filter as b9, type QueryMetadataUpdatedEventArgs as bA, type QueryMetadataUpdatedEventsArgs as bB, type QueryModuleArgs as bC, type QueryModuleUpdateProposedEventArgs as bD, type QueryModuleUpdateProposedEventsArgs as bE, type QueryModulesArgs as bF, type QueryNftcollectionArgs as bG, type QueryNftcollectionsArgs as bH, type QueryNfttokenArgs as bI, type QueryNfttokensArgs as bJ, type QueryPendingUpdateCancelledEventArgs as bK, type QueryPendingUpdateCancelledEventsArgs as bL, type QueryPriceUpdatedEventArgs as bM, type QueryPriceUpdatedEventsArgs as bN, type QueryReleasedEventArgs as bO, type QueryReleasedEventsArgs as bP, type QuerySettledEventArgs as bQ, type QuerySettledEventsArgs as bR, type QuerySlotArgs as bS, type QuerySlotDeployedEventArgs as bT, type QuerySlotDeployedEventsArgs as bU, type QuerySlotsArgs as bV, type QueryTaxCollectedEventArgs as bW, type QueryTaxCollectedEventsArgs as bX, type QueryTaxUpdateProposedEventArgs as bY, type QueryTaxUpdateProposedEventsArgs as bZ, type QueryWithdrawnEventArgs as b_, type NftCollection_OrderBy as ba, type NftToken as bb, type NftToken_Filter as bc, type NftToken_OrderBy as bd, type OrderDirection as be, type PendingUpdateCancelledEvent as bf, type PendingUpdateCancelledEvent_Filter as bg, type PendingUpdateCancelledEvent_OrderBy as bh, type PriceUpdatedEvent as bi, type PriceUpdatedEvent_Filter as bj, type PriceUpdatedEvent_OrderBy as bk, type Query as bl, type QueryAccountArgs as bm, type QueryAccountsArgs as bn, type QueryBoughtEventArgs as bo, type QueryBoughtEventsArgs as bp, type QueryCurrenciesArgs as bq, type QueryCurrencyArgs as br, type QueryDepositedEventArgs as bs, type QueryDepositedEventsArgs as bt, type QueryFactoriesArgs as bu, type QueryFactoryArgs as bv, type QueryLiquidatedEventArgs as bw, type QueryLiquidatedEventsArgs as bx, type QueryMetadataSlotArgs as by, type QueryMetadataSlotsArgs as bz, type AccountSlotsAsOccupantArgs as c, type Query_MetaArgs as c0, type ReleasedEvent as c1, type ReleasedEvent_Filter as c2, type ReleasedEvent_OrderBy as c3, SUBGRAPH_URLS as c4, type Scalars as c5, type Sdk as c6, type SdkFunctionWrapper as c7, type SettledEvent as c8, type SettledEvent_Filter as c9, type TaxCollectedEvent as cA, type TaxCollectedEvent_Filter as cB, type TaxCollectedEvent_OrderBy as cC, type TaxUpdateProposedEvent as cD, type TaxUpdateProposedEvent_Filter as cE, type TaxUpdateProposedEvent_OrderBy as cF, type WithdrawnEvent as cG, type WithdrawnEvent_Filter as cH, type WithdrawnEvent_OrderBy as cI, type _Block_ as cJ, type _Meta_ as cK, type _SubgraphErrorPolicy_ as cL, createSlotsClient as cM, getSdk as cN, type SettledEvent_OrderBy as ca, type Slot as cb, type SlotConfig as cc, type SlotDeployedEvent as cd, type SlotDeployedEvent_Filter as ce, type SlotDeployedEvent_OrderBy as cf, type SlotDepositsArgs as cg, type SlotFieldsFragment as ch, SlotFieldsFragmentDoc as ci, type SlotInitParams as cj, type SlotLiquidationsArgs as ck, type SlotMetadataUpdatesArgs as cl, type SlotModuleUpdateProposalsArgs as cm, type SlotPendingUpdateCancellationsArgs as cn, type SlotPriceUpdatesArgs as co, type SlotPurchasesArgs as cp, type SlotReleasesArgs as cq, type SlotSettlementsArgs as cr, type SlotTaxCollectionsArgs as cs, type SlotTaxUpdateProposalsArgs as ct, type SlotWithdrawalsArgs as cu, type Slot_Filter as cv, type Slot_OrderBy as cw, SlotsClient as cx, type SlotsClientConfig as cy, type SubgraphMeta as cz, type AccountSlotsAsRecipientArgs as d, type AccountType as e, type Account_Filter as f, type Account_OrderBy as g, type Aggregation_Current as h, type Aggregation_Interval as i, type Block_Height as j, type BoughtEvent as k, type BoughtEvent_Filter as l, type BoughtEvent_OrderBy as m, type BuyParams as n, type CreateSlotsParams as o, type Currency as p, type CurrencyFieldsFragment as q, CurrencyFieldsFragmentDoc as r, type Currency_Filter as s, type Currency_OrderBy as t, type DepositedEvent_Filter as u, type DepositedEvent_OrderBy as v, type FactoryModulesArgs as w, type Factory_Filter as x, type Factory_OrderBy as y, type GetAccountQuery as z };
|