@0xslots/sdk 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +200 -0
- package/dist/index.d.ts +2166 -0
- package/dist/index.js +449 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2166 @@
|
|
|
1
|
+
import { GraphQLClient, RequestOptions } from 'graphql-request';
|
|
2
|
+
import * as graphql from 'graphql';
|
|
3
|
+
|
|
4
|
+
type Maybe<T> = T | null;
|
|
5
|
+
type InputMaybe<T> = T | null;
|
|
6
|
+
type Exact<T extends {
|
|
7
|
+
[key: string]: unknown;
|
|
8
|
+
}> = {
|
|
9
|
+
[K in keyof T]: T[K];
|
|
10
|
+
};
|
|
11
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
13
|
+
};
|
|
14
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
15
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
16
|
+
};
|
|
17
|
+
type MakeEmpty<T extends {
|
|
18
|
+
[key: string]: unknown;
|
|
19
|
+
}, K extends keyof T> = {
|
|
20
|
+
[_ in K]?: never;
|
|
21
|
+
};
|
|
22
|
+
type Incremental<T> = T | {
|
|
23
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
24
|
+
};
|
|
25
|
+
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
|
|
26
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
27
|
+
type Scalars = {
|
|
28
|
+
ID: {
|
|
29
|
+
input: string;
|
|
30
|
+
output: string;
|
|
31
|
+
};
|
|
32
|
+
String: {
|
|
33
|
+
input: string;
|
|
34
|
+
output: string;
|
|
35
|
+
};
|
|
36
|
+
Boolean: {
|
|
37
|
+
input: boolean;
|
|
38
|
+
output: boolean;
|
|
39
|
+
};
|
|
40
|
+
Int: {
|
|
41
|
+
input: number;
|
|
42
|
+
output: number;
|
|
43
|
+
};
|
|
44
|
+
Float: {
|
|
45
|
+
input: number;
|
|
46
|
+
output: number;
|
|
47
|
+
};
|
|
48
|
+
BigDecimal: {
|
|
49
|
+
input: any;
|
|
50
|
+
output: any;
|
|
51
|
+
};
|
|
52
|
+
BigInt: {
|
|
53
|
+
input: string;
|
|
54
|
+
output: string;
|
|
55
|
+
};
|
|
56
|
+
Bytes: {
|
|
57
|
+
input: string;
|
|
58
|
+
output: string;
|
|
59
|
+
};
|
|
60
|
+
Int8: {
|
|
61
|
+
input: any;
|
|
62
|
+
output: any;
|
|
63
|
+
};
|
|
64
|
+
Timestamp: {
|
|
65
|
+
input: any;
|
|
66
|
+
output: any;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
type Aggregation_Interval = 'day' | 'hour';
|
|
70
|
+
type BlockChangedFilter = {
|
|
71
|
+
number_gte: Scalars['Int']['input'];
|
|
72
|
+
};
|
|
73
|
+
type Block_Height = {
|
|
74
|
+
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
75
|
+
number?: InputMaybe<Scalars['Int']['input']>;
|
|
76
|
+
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
77
|
+
};
|
|
78
|
+
type Currency = {
|
|
79
|
+
__typename?: 'Currency';
|
|
80
|
+
allowed: Scalars['Boolean']['output'];
|
|
81
|
+
decimals?: Maybe<Scalars['Int']['output']>;
|
|
82
|
+
hub: Hub;
|
|
83
|
+
id: Scalars['ID']['output'];
|
|
84
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
85
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
86
|
+
underlyingDecimals?: Maybe<Scalars['Int']['output']>;
|
|
87
|
+
underlyingName?: Maybe<Scalars['String']['output']>;
|
|
88
|
+
underlyingSymbol?: Maybe<Scalars['String']['output']>;
|
|
89
|
+
underlyingToken?: Maybe<Scalars['Bytes']['output']>;
|
|
90
|
+
};
|
|
91
|
+
type Currency_Filter = {
|
|
92
|
+
/** Filter for the block changed event. */
|
|
93
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
94
|
+
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95
|
+
allowed_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
96
|
+
allowed_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97
|
+
allowed_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
98
|
+
and?: InputMaybe<Array<InputMaybe<Currency_Filter>>>;
|
|
99
|
+
decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
100
|
+
decimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
101
|
+
decimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
102
|
+
decimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
103
|
+
decimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
104
|
+
decimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
105
|
+
decimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
106
|
+
decimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
107
|
+
hub?: InputMaybe<Scalars['String']['input']>;
|
|
108
|
+
hub_?: InputMaybe<Hub_Filter>;
|
|
109
|
+
hub_contains?: InputMaybe<Scalars['String']['input']>;
|
|
110
|
+
hub_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
111
|
+
hub_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
112
|
+
hub_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
113
|
+
hub_gt?: InputMaybe<Scalars['String']['input']>;
|
|
114
|
+
hub_gte?: InputMaybe<Scalars['String']['input']>;
|
|
115
|
+
hub_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
116
|
+
hub_lt?: InputMaybe<Scalars['String']['input']>;
|
|
117
|
+
hub_lte?: InputMaybe<Scalars['String']['input']>;
|
|
118
|
+
hub_not?: InputMaybe<Scalars['String']['input']>;
|
|
119
|
+
hub_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
120
|
+
hub_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
121
|
+
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
+
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
+
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
124
|
+
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
125
|
+
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
126
|
+
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
127
|
+
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
128
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
129
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
130
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
131
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
132
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
133
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
134
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
135
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
136
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
137
|
+
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
138
|
+
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
139
|
+
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
140
|
+
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
141
|
+
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
142
|
+
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
143
|
+
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
144
|
+
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
145
|
+
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
146
|
+
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
147
|
+
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
148
|
+
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
149
|
+
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
150
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
151
|
+
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
152
|
+
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
153
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
154
|
+
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
155
|
+
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
156
|
+
or?: InputMaybe<Array<InputMaybe<Currency_Filter>>>;
|
|
157
|
+
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
158
|
+
symbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
159
|
+
symbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
160
|
+
symbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
161
|
+
symbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
162
|
+
symbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
163
|
+
symbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
164
|
+
symbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165
|
+
symbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
166
|
+
symbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
167
|
+
symbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
168
|
+
symbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
169
|
+
symbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
170
|
+
symbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
171
|
+
symbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
172
|
+
symbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
173
|
+
symbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
174
|
+
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
175
|
+
symbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
176
|
+
symbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
177
|
+
underlyingDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
178
|
+
underlyingDecimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
179
|
+
underlyingDecimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
180
|
+
underlyingDecimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
181
|
+
underlyingDecimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
182
|
+
underlyingDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
183
|
+
underlyingDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
184
|
+
underlyingDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
185
|
+
underlyingName?: InputMaybe<Scalars['String']['input']>;
|
|
186
|
+
underlyingName_contains?: InputMaybe<Scalars['String']['input']>;
|
|
187
|
+
underlyingName_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
188
|
+
underlyingName_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
+
underlyingName_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
190
|
+
underlyingName_gt?: InputMaybe<Scalars['String']['input']>;
|
|
191
|
+
underlyingName_gte?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
underlyingName_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193
|
+
underlyingName_lt?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
+
underlyingName_lte?: InputMaybe<Scalars['String']['input']>;
|
|
195
|
+
underlyingName_not?: InputMaybe<Scalars['String']['input']>;
|
|
196
|
+
underlyingName_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
+
underlyingName_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
198
|
+
underlyingName_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
+
underlyingName_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
200
|
+
underlyingName_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201
|
+
underlyingName_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
202
|
+
underlyingName_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
203
|
+
underlyingName_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
204
|
+
underlyingName_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
205
|
+
underlyingSymbol?: InputMaybe<Scalars['String']['input']>;
|
|
206
|
+
underlyingSymbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
207
|
+
underlyingSymbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
+
underlyingSymbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
209
|
+
underlyingSymbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
210
|
+
underlyingSymbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
211
|
+
underlyingSymbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
212
|
+
underlyingSymbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
213
|
+
underlyingSymbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
214
|
+
underlyingSymbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
215
|
+
underlyingSymbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
+
underlyingSymbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
217
|
+
underlyingSymbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
218
|
+
underlyingSymbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
+
underlyingSymbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
220
|
+
underlyingSymbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
221
|
+
underlyingSymbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
222
|
+
underlyingSymbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
+
underlyingSymbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
224
|
+
underlyingSymbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
underlyingToken?: InputMaybe<Scalars['Bytes']['input']>;
|
|
226
|
+
underlyingToken_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
227
|
+
underlyingToken_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
228
|
+
underlyingToken_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
229
|
+
underlyingToken_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
230
|
+
underlyingToken_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
231
|
+
underlyingToken_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
232
|
+
underlyingToken_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
233
|
+
underlyingToken_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
234
|
+
underlyingToken_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
235
|
+
};
|
|
236
|
+
type Currency_OrderBy = 'allowed' | 'decimals' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotPrice' | 'id' | 'name' | 'symbol' | 'underlyingDecimals' | 'underlyingName' | 'underlyingSymbol' | 'underlyingToken';
|
|
237
|
+
type FlowChange = {
|
|
238
|
+
__typename?: 'FlowChange';
|
|
239
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
240
|
+
from: Scalars['Bytes']['output'];
|
|
241
|
+
id: Scalars['ID']['output'];
|
|
242
|
+
newRate: Scalars['BigInt']['output'];
|
|
243
|
+
oldRate: Scalars['BigInt']['output'];
|
|
244
|
+
operation: Scalars['String']['output'];
|
|
245
|
+
timestamp: Scalars['BigInt']['output'];
|
|
246
|
+
to: Scalars['Bytes']['output'];
|
|
247
|
+
tx: Scalars['Bytes']['output'];
|
|
248
|
+
};
|
|
249
|
+
type FlowChange_Filter = {
|
|
250
|
+
/** Filter for the block changed event. */
|
|
251
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
252
|
+
and?: InputMaybe<Array<InputMaybe<FlowChange_Filter>>>;
|
|
253
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
254
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
255
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
256
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
257
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
258
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
259
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
260
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
261
|
+
from?: InputMaybe<Scalars['Bytes']['input']>;
|
|
262
|
+
from_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
263
|
+
from_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
264
|
+
from_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
265
|
+
from_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
266
|
+
from_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
267
|
+
from_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
268
|
+
from_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
269
|
+
from_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
270
|
+
from_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
271
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
272
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
273
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
274
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
275
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
276
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
277
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
278
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
279
|
+
newRate?: InputMaybe<Scalars['BigInt']['input']>;
|
|
280
|
+
newRate_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
281
|
+
newRate_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
282
|
+
newRate_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
283
|
+
newRate_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
284
|
+
newRate_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
285
|
+
newRate_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
286
|
+
newRate_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
287
|
+
oldRate?: InputMaybe<Scalars['BigInt']['input']>;
|
|
288
|
+
oldRate_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
289
|
+
oldRate_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
290
|
+
oldRate_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
291
|
+
oldRate_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
292
|
+
oldRate_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
293
|
+
oldRate_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
294
|
+
oldRate_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
295
|
+
operation?: InputMaybe<Scalars['String']['input']>;
|
|
296
|
+
operation_contains?: InputMaybe<Scalars['String']['input']>;
|
|
297
|
+
operation_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
298
|
+
operation_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
299
|
+
operation_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
300
|
+
operation_gt?: InputMaybe<Scalars['String']['input']>;
|
|
301
|
+
operation_gte?: InputMaybe<Scalars['String']['input']>;
|
|
302
|
+
operation_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
303
|
+
operation_lt?: InputMaybe<Scalars['String']['input']>;
|
|
304
|
+
operation_lte?: InputMaybe<Scalars['String']['input']>;
|
|
305
|
+
operation_not?: InputMaybe<Scalars['String']['input']>;
|
|
306
|
+
operation_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
307
|
+
operation_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
308
|
+
operation_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
309
|
+
operation_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
310
|
+
operation_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
311
|
+
operation_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
312
|
+
operation_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
313
|
+
operation_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
314
|
+
operation_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
315
|
+
or?: InputMaybe<Array<InputMaybe<FlowChange_Filter>>>;
|
|
316
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
317
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
318
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
319
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
320
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
321
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
322
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
323
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
324
|
+
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
325
|
+
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
326
|
+
to_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
327
|
+
to_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
328
|
+
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
329
|
+
to_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
330
|
+
to_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
331
|
+
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
332
|
+
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
333
|
+
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
334
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
335
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
336
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
337
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
338
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
339
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
340
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
341
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
342
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
343
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
344
|
+
};
|
|
345
|
+
type FlowChange_OrderBy = 'blockNumber' | 'from' | 'id' | 'newRate' | 'oldRate' | 'operation' | 'timestamp' | 'to' | 'tx';
|
|
346
|
+
type Hub = {
|
|
347
|
+
__typename?: 'Hub';
|
|
348
|
+
allowedCurrencies: Array<Currency>;
|
|
349
|
+
allowedModules: Array<Module>;
|
|
350
|
+
defaultCurrency?: Maybe<Currency>;
|
|
351
|
+
defaultMaxTaxPercentage: Scalars['BigInt']['output'];
|
|
352
|
+
defaultMinTaxUpdatePeriod: Scalars['BigInt']['output'];
|
|
353
|
+
defaultModule: Scalars['Bytes']['output'];
|
|
354
|
+
defaultPrice: Scalars['BigInt']['output'];
|
|
355
|
+
defaultSlotCount: Scalars['BigInt']['output'];
|
|
356
|
+
defaultTaxPercentage: Scalars['BigInt']['output'];
|
|
357
|
+
id: Scalars['ID']['output'];
|
|
358
|
+
lands: Array<Land>;
|
|
359
|
+
protocolFeeBps: Scalars['BigInt']['output'];
|
|
360
|
+
protocolFeeRecipient: Scalars['Bytes']['output'];
|
|
361
|
+
slotPrice: Scalars['BigInt']['output'];
|
|
362
|
+
};
|
|
363
|
+
type HubAllowedCurrenciesArgs = {
|
|
364
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
365
|
+
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
366
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
367
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
368
|
+
where?: InputMaybe<Currency_Filter>;
|
|
369
|
+
};
|
|
370
|
+
type HubAllowedModulesArgs = {
|
|
371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
372
|
+
orderBy?: InputMaybe<Module_OrderBy>;
|
|
373
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
374
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
375
|
+
where?: InputMaybe<Module_Filter>;
|
|
376
|
+
};
|
|
377
|
+
type HubLandsArgs = {
|
|
378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
379
|
+
orderBy?: InputMaybe<Land_OrderBy>;
|
|
380
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
381
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
382
|
+
where?: InputMaybe<Land_Filter>;
|
|
383
|
+
};
|
|
384
|
+
type Hub_Filter = {
|
|
385
|
+
/** Filter for the block changed event. */
|
|
386
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
387
|
+
allowedCurrencies_?: InputMaybe<Currency_Filter>;
|
|
388
|
+
allowedModules_?: InputMaybe<Module_Filter>;
|
|
389
|
+
and?: InputMaybe<Array<InputMaybe<Hub_Filter>>>;
|
|
390
|
+
defaultCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
391
|
+
defaultCurrency_?: InputMaybe<Currency_Filter>;
|
|
392
|
+
defaultCurrency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
393
|
+
defaultCurrency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
394
|
+
defaultCurrency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
395
|
+
defaultCurrency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
396
|
+
defaultCurrency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
397
|
+
defaultCurrency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
398
|
+
defaultCurrency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
399
|
+
defaultCurrency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
400
|
+
defaultCurrency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
401
|
+
defaultCurrency_not?: InputMaybe<Scalars['String']['input']>;
|
|
402
|
+
defaultCurrency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
403
|
+
defaultCurrency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
404
|
+
defaultCurrency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
405
|
+
defaultCurrency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
406
|
+
defaultCurrency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
407
|
+
defaultCurrency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
408
|
+
defaultCurrency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
409
|
+
defaultCurrency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
410
|
+
defaultCurrency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
411
|
+
defaultMaxTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
412
|
+
defaultMaxTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
413
|
+
defaultMaxTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
414
|
+
defaultMaxTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
415
|
+
defaultMaxTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
416
|
+
defaultMaxTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
417
|
+
defaultMaxTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
418
|
+
defaultMaxTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
419
|
+
defaultMinTaxUpdatePeriod?: InputMaybe<Scalars['BigInt']['input']>;
|
|
420
|
+
defaultMinTaxUpdatePeriod_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
421
|
+
defaultMinTaxUpdatePeriod_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
422
|
+
defaultMinTaxUpdatePeriod_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
423
|
+
defaultMinTaxUpdatePeriod_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
424
|
+
defaultMinTaxUpdatePeriod_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
425
|
+
defaultMinTaxUpdatePeriod_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
426
|
+
defaultMinTaxUpdatePeriod_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
427
|
+
defaultModule?: InputMaybe<Scalars['Bytes']['input']>;
|
|
428
|
+
defaultModule_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
429
|
+
defaultModule_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
430
|
+
defaultModule_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
431
|
+
defaultModule_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
432
|
+
defaultModule_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
433
|
+
defaultModule_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
434
|
+
defaultModule_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
435
|
+
defaultModule_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
436
|
+
defaultModule_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
437
|
+
defaultPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
438
|
+
defaultPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
439
|
+
defaultPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
440
|
+
defaultPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
441
|
+
defaultPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
442
|
+
defaultPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
443
|
+
defaultPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
444
|
+
defaultPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
445
|
+
defaultSlotCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
446
|
+
defaultSlotCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
447
|
+
defaultSlotCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
448
|
+
defaultSlotCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
449
|
+
defaultSlotCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
450
|
+
defaultSlotCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
451
|
+
defaultSlotCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
452
|
+
defaultSlotCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
453
|
+
defaultTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
454
|
+
defaultTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
455
|
+
defaultTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
456
|
+
defaultTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
457
|
+
defaultTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
458
|
+
defaultTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
459
|
+
defaultTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
460
|
+
defaultTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
461
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
462
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
463
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
464
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
465
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
466
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
467
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
468
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
469
|
+
lands_?: InputMaybe<Land_Filter>;
|
|
470
|
+
or?: InputMaybe<Array<InputMaybe<Hub_Filter>>>;
|
|
471
|
+
protocolFeeBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
472
|
+
protocolFeeBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
473
|
+
protocolFeeBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
474
|
+
protocolFeeBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
475
|
+
protocolFeeBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
476
|
+
protocolFeeBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
477
|
+
protocolFeeBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
478
|
+
protocolFeeBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
479
|
+
protocolFeeRecipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
480
|
+
protocolFeeRecipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
481
|
+
protocolFeeRecipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
482
|
+
protocolFeeRecipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
483
|
+
protocolFeeRecipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
484
|
+
protocolFeeRecipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
485
|
+
protocolFeeRecipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
486
|
+
protocolFeeRecipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
487
|
+
protocolFeeRecipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
488
|
+
protocolFeeRecipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
489
|
+
slotPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
490
|
+
slotPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
491
|
+
slotPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
492
|
+
slotPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
493
|
+
slotPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
494
|
+
slotPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
495
|
+
slotPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
496
|
+
slotPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
497
|
+
};
|
|
498
|
+
type Hub_OrderBy = 'allowedCurrencies' | 'allowedModules' | 'defaultCurrency' | 'defaultCurrency__allowed' | 'defaultCurrency__decimals' | 'defaultCurrency__id' | 'defaultCurrency__name' | 'defaultCurrency__symbol' | 'defaultCurrency__underlyingDecimals' | 'defaultCurrency__underlyingName' | 'defaultCurrency__underlyingSymbol' | 'defaultCurrency__underlyingToken' | 'defaultMaxTaxPercentage' | 'defaultMinTaxUpdatePeriod' | 'defaultModule' | 'defaultPrice' | 'defaultSlotCount' | 'defaultTaxPercentage' | 'id' | 'lands' | 'protocolFeeBps' | 'protocolFeeRecipient' | 'slotPrice';
|
|
499
|
+
type Land = {
|
|
500
|
+
__typename?: 'Land';
|
|
501
|
+
createdAt: Scalars['BigInt']['output'];
|
|
502
|
+
createdTx: Scalars['Bytes']['output'];
|
|
503
|
+
hub: Hub;
|
|
504
|
+
id: Scalars['ID']['output'];
|
|
505
|
+
owner: Scalars['Bytes']['output'];
|
|
506
|
+
slots: Array<Slot>;
|
|
507
|
+
};
|
|
508
|
+
type LandSlotsArgs = {
|
|
509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
510
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
511
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
512
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
513
|
+
where?: InputMaybe<Slot_Filter>;
|
|
514
|
+
};
|
|
515
|
+
type LandOpenedEvent = {
|
|
516
|
+
__typename?: 'LandOpenedEvent';
|
|
517
|
+
account: Scalars['Bytes']['output'];
|
|
518
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
519
|
+
id: Scalars['ID']['output'];
|
|
520
|
+
land: Land;
|
|
521
|
+
timestamp: Scalars['BigInt']['output'];
|
|
522
|
+
tx: Scalars['Bytes']['output'];
|
|
523
|
+
};
|
|
524
|
+
type LandOpenedEvent_Filter = {
|
|
525
|
+
/** Filter for the block changed event. */
|
|
526
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
527
|
+
account?: InputMaybe<Scalars['Bytes']['input']>;
|
|
528
|
+
account_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
529
|
+
account_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
530
|
+
account_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
531
|
+
account_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
532
|
+
account_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
533
|
+
account_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
534
|
+
account_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
535
|
+
account_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
536
|
+
account_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
537
|
+
and?: InputMaybe<Array<InputMaybe<LandOpenedEvent_Filter>>>;
|
|
538
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
539
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
540
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
541
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
542
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
543
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
544
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
545
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
546
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
547
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
548
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
549
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
550
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
551
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
552
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
553
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
554
|
+
land?: InputMaybe<Scalars['String']['input']>;
|
|
555
|
+
land_?: InputMaybe<Land_Filter>;
|
|
556
|
+
land_contains?: InputMaybe<Scalars['String']['input']>;
|
|
557
|
+
land_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
558
|
+
land_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
559
|
+
land_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
560
|
+
land_gt?: InputMaybe<Scalars['String']['input']>;
|
|
561
|
+
land_gte?: InputMaybe<Scalars['String']['input']>;
|
|
562
|
+
land_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
563
|
+
land_lt?: InputMaybe<Scalars['String']['input']>;
|
|
564
|
+
land_lte?: InputMaybe<Scalars['String']['input']>;
|
|
565
|
+
land_not?: InputMaybe<Scalars['String']['input']>;
|
|
566
|
+
land_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
567
|
+
land_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
568
|
+
land_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
569
|
+
land_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
570
|
+
land_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
571
|
+
land_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
572
|
+
land_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
573
|
+
land_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
574
|
+
land_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
575
|
+
or?: InputMaybe<Array<InputMaybe<LandOpenedEvent_Filter>>>;
|
|
576
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
577
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
578
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
579
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
580
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
581
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
582
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
583
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
584
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
585
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
586
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
587
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
588
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
589
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
590
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
591
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
592
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
593
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
594
|
+
};
|
|
595
|
+
type LandOpenedEvent_OrderBy = 'account' | 'blockNumber' | 'id' | 'land' | 'land__createdAt' | 'land__createdTx' | 'land__id' | 'land__owner' | 'timestamp' | 'tx';
|
|
596
|
+
type Land_Filter = {
|
|
597
|
+
/** Filter for the block changed event. */
|
|
598
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
599
|
+
and?: InputMaybe<Array<InputMaybe<Land_Filter>>>;
|
|
600
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
601
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
602
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
603
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
604
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
605
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
606
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
607
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
608
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
609
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
610
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
611
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
612
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
613
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
614
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
615
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
616
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
617
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
618
|
+
hub?: InputMaybe<Scalars['String']['input']>;
|
|
619
|
+
hub_?: InputMaybe<Hub_Filter>;
|
|
620
|
+
hub_contains?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
+
hub_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
622
|
+
hub_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
623
|
+
hub_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
624
|
+
hub_gt?: InputMaybe<Scalars['String']['input']>;
|
|
625
|
+
hub_gte?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
+
hub_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
627
|
+
hub_lt?: InputMaybe<Scalars['String']['input']>;
|
|
628
|
+
hub_lte?: InputMaybe<Scalars['String']['input']>;
|
|
629
|
+
hub_not?: InputMaybe<Scalars['String']['input']>;
|
|
630
|
+
hub_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
631
|
+
hub_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
632
|
+
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
633
|
+
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
634
|
+
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
635
|
+
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
636
|
+
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
637
|
+
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
638
|
+
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
639
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
640
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
641
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
642
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
643
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
644
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
645
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
646
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
647
|
+
or?: InputMaybe<Array<InputMaybe<Land_Filter>>>;
|
|
648
|
+
owner?: InputMaybe<Scalars['Bytes']['input']>;
|
|
649
|
+
owner_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
650
|
+
owner_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
651
|
+
owner_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
652
|
+
owner_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
653
|
+
owner_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
654
|
+
owner_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
655
|
+
owner_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
656
|
+
owner_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
657
|
+
owner_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
658
|
+
slots_?: InputMaybe<Slot_Filter>;
|
|
659
|
+
};
|
|
660
|
+
type Land_OrderBy = 'createdAt' | 'createdTx' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotPrice' | 'id' | 'owner' | 'slots';
|
|
661
|
+
type Module = {
|
|
662
|
+
__typename?: 'Module';
|
|
663
|
+
allowed: Scalars['Boolean']['output'];
|
|
664
|
+
hub: Hub;
|
|
665
|
+
id: Scalars['ID']['output'];
|
|
666
|
+
name: Scalars['String']['output'];
|
|
667
|
+
version: Scalars['String']['output'];
|
|
668
|
+
};
|
|
669
|
+
type Module_Filter = {
|
|
670
|
+
/** Filter for the block changed event. */
|
|
671
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
672
|
+
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
673
|
+
allowed_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
674
|
+
allowed_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
675
|
+
allowed_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
676
|
+
and?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
677
|
+
hub?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
+
hub_?: InputMaybe<Hub_Filter>;
|
|
679
|
+
hub_contains?: InputMaybe<Scalars['String']['input']>;
|
|
680
|
+
hub_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
681
|
+
hub_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
682
|
+
hub_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
683
|
+
hub_gt?: InputMaybe<Scalars['String']['input']>;
|
|
684
|
+
hub_gte?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
+
hub_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
686
|
+
hub_lt?: InputMaybe<Scalars['String']['input']>;
|
|
687
|
+
hub_lte?: InputMaybe<Scalars['String']['input']>;
|
|
688
|
+
hub_not?: InputMaybe<Scalars['String']['input']>;
|
|
689
|
+
hub_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
+
hub_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
691
|
+
hub_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
692
|
+
hub_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
693
|
+
hub_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
694
|
+
hub_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
695
|
+
hub_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
696
|
+
hub_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
697
|
+
hub_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
698
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
699
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
700
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
701
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
702
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
703
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
704
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
705
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
706
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
+
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
708
|
+
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
709
|
+
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
710
|
+
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
711
|
+
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
712
|
+
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
713
|
+
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
714
|
+
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
715
|
+
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
716
|
+
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
717
|
+
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
718
|
+
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
719
|
+
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
720
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
721
|
+
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
722
|
+
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
723
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
724
|
+
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
725
|
+
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
726
|
+
or?: InputMaybe<Array<InputMaybe<Module_Filter>>>;
|
|
727
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
728
|
+
version_contains?: InputMaybe<Scalars['String']['input']>;
|
|
729
|
+
version_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
version_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
version_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
version_gt?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
+
version_gte?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
+
version_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
735
|
+
version_lt?: InputMaybe<Scalars['String']['input']>;
|
|
736
|
+
version_lte?: InputMaybe<Scalars['String']['input']>;
|
|
737
|
+
version_not?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
+
version_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
739
|
+
version_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
+
version_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
741
|
+
version_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
742
|
+
version_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
743
|
+
version_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
744
|
+
version_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
745
|
+
version_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
+
version_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
747
|
+
};
|
|
748
|
+
type Module_OrderBy = 'allowed' | 'hub' | 'hub__defaultMaxTaxPercentage' | 'hub__defaultMinTaxUpdatePeriod' | 'hub__defaultModule' | 'hub__defaultPrice' | 'hub__defaultSlotCount' | 'hub__defaultTaxPercentage' | 'hub__id' | 'hub__protocolFeeBps' | 'hub__protocolFeeRecipient' | 'hub__slotPrice' | 'id' | 'name' | 'version';
|
|
749
|
+
/** Defines the order direction, either ascending or descending */
|
|
750
|
+
type OrderDirection = 'asc' | 'desc';
|
|
751
|
+
type PriceUpdate = {
|
|
752
|
+
__typename?: 'PriceUpdate';
|
|
753
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
754
|
+
id: Scalars['ID']['output'];
|
|
755
|
+
newPrice: Scalars['BigInt']['output'];
|
|
756
|
+
oldPrice: Scalars['BigInt']['output'];
|
|
757
|
+
slot: Slot;
|
|
758
|
+
timestamp: Scalars['BigInt']['output'];
|
|
759
|
+
tx: Scalars['Bytes']['output'];
|
|
760
|
+
};
|
|
761
|
+
type PriceUpdate_Filter = {
|
|
762
|
+
/** Filter for the block changed event. */
|
|
763
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
764
|
+
and?: InputMaybe<Array<InputMaybe<PriceUpdate_Filter>>>;
|
|
765
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
766
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
767
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
768
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
769
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
770
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
771
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
772
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
773
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
774
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
775
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
776
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
777
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
778
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
779
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
780
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
781
|
+
newPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
782
|
+
newPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
783
|
+
newPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
784
|
+
newPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
785
|
+
newPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
786
|
+
newPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
787
|
+
newPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
788
|
+
newPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
789
|
+
oldPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
790
|
+
oldPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
791
|
+
oldPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
792
|
+
oldPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
793
|
+
oldPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
794
|
+
oldPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
795
|
+
oldPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
796
|
+
oldPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
797
|
+
or?: InputMaybe<Array<InputMaybe<PriceUpdate_Filter>>>;
|
|
798
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
799
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
800
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
801
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
802
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
803
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
804
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
805
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
806
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
807
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
808
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
809
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
810
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
811
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
812
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
813
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
814
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
815
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
816
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
817
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
818
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
819
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
820
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
821
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
822
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
823
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
824
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
825
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
826
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
827
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
828
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
829
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
830
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
831
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
832
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
833
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
834
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
835
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
836
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
837
|
+
};
|
|
838
|
+
type PriceUpdate_OrderBy = 'blockNumber' | 'id' | 'newPrice' | 'oldPrice' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
839
|
+
type Query = {
|
|
840
|
+
__typename?: 'Query';
|
|
841
|
+
/** Access to subgraph metadata */
|
|
842
|
+
_meta?: Maybe<_Meta_>;
|
|
843
|
+
currencies: Array<Currency>;
|
|
844
|
+
currency?: Maybe<Currency>;
|
|
845
|
+
flowChange?: Maybe<FlowChange>;
|
|
846
|
+
flowChanges: Array<FlowChange>;
|
|
847
|
+
hub?: Maybe<Hub>;
|
|
848
|
+
hubs: Array<Hub>;
|
|
849
|
+
land?: Maybe<Land>;
|
|
850
|
+
landOpenedEvent?: Maybe<LandOpenedEvent>;
|
|
851
|
+
landOpenedEvents: Array<LandOpenedEvent>;
|
|
852
|
+
lands: Array<Land>;
|
|
853
|
+
module?: Maybe<Module>;
|
|
854
|
+
modules: Array<Module>;
|
|
855
|
+
priceUpdate?: Maybe<PriceUpdate>;
|
|
856
|
+
priceUpdates: Array<PriceUpdate>;
|
|
857
|
+
slot?: Maybe<Slot>;
|
|
858
|
+
slotCreatedEvent?: Maybe<SlotCreatedEvent>;
|
|
859
|
+
slotCreatedEvents: Array<SlotCreatedEvent>;
|
|
860
|
+
slotPurchase?: Maybe<SlotPurchase>;
|
|
861
|
+
slotPurchases: Array<SlotPurchase>;
|
|
862
|
+
slotReleasedEvent?: Maybe<SlotReleasedEvent>;
|
|
863
|
+
slotReleasedEvents: Array<SlotReleasedEvent>;
|
|
864
|
+
slots: Array<Slot>;
|
|
865
|
+
taxRateChange?: Maybe<TaxRateChange>;
|
|
866
|
+
taxRateChanges: Array<TaxRateChange>;
|
|
867
|
+
};
|
|
868
|
+
type Query_MetaArgs = {
|
|
869
|
+
block?: InputMaybe<Block_Height>;
|
|
870
|
+
};
|
|
871
|
+
type QueryCurrenciesArgs = {
|
|
872
|
+
block?: InputMaybe<Block_Height>;
|
|
873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
874
|
+
orderBy?: InputMaybe<Currency_OrderBy>;
|
|
875
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
876
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
877
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
878
|
+
where?: InputMaybe<Currency_Filter>;
|
|
879
|
+
};
|
|
880
|
+
type QueryCurrencyArgs = {
|
|
881
|
+
block?: InputMaybe<Block_Height>;
|
|
882
|
+
id: Scalars['ID']['input'];
|
|
883
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
884
|
+
};
|
|
885
|
+
type QueryFlowChangeArgs = {
|
|
886
|
+
block?: InputMaybe<Block_Height>;
|
|
887
|
+
id: Scalars['ID']['input'];
|
|
888
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
889
|
+
};
|
|
890
|
+
type QueryFlowChangesArgs = {
|
|
891
|
+
block?: InputMaybe<Block_Height>;
|
|
892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
893
|
+
orderBy?: InputMaybe<FlowChange_OrderBy>;
|
|
894
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
895
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
896
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
897
|
+
where?: InputMaybe<FlowChange_Filter>;
|
|
898
|
+
};
|
|
899
|
+
type QueryHubArgs = {
|
|
900
|
+
block?: InputMaybe<Block_Height>;
|
|
901
|
+
id: Scalars['ID']['input'];
|
|
902
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
903
|
+
};
|
|
904
|
+
type QueryHubsArgs = {
|
|
905
|
+
block?: InputMaybe<Block_Height>;
|
|
906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
907
|
+
orderBy?: InputMaybe<Hub_OrderBy>;
|
|
908
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
909
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
910
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
911
|
+
where?: InputMaybe<Hub_Filter>;
|
|
912
|
+
};
|
|
913
|
+
type QueryLandArgs = {
|
|
914
|
+
block?: InputMaybe<Block_Height>;
|
|
915
|
+
id: Scalars['ID']['input'];
|
|
916
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
917
|
+
};
|
|
918
|
+
type QueryLandOpenedEventArgs = {
|
|
919
|
+
block?: InputMaybe<Block_Height>;
|
|
920
|
+
id: Scalars['ID']['input'];
|
|
921
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
922
|
+
};
|
|
923
|
+
type QueryLandOpenedEventsArgs = {
|
|
924
|
+
block?: InputMaybe<Block_Height>;
|
|
925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
926
|
+
orderBy?: InputMaybe<LandOpenedEvent_OrderBy>;
|
|
927
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
928
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
929
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
930
|
+
where?: InputMaybe<LandOpenedEvent_Filter>;
|
|
931
|
+
};
|
|
932
|
+
type QueryLandsArgs = {
|
|
933
|
+
block?: InputMaybe<Block_Height>;
|
|
934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
935
|
+
orderBy?: InputMaybe<Land_OrderBy>;
|
|
936
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
937
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
938
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
939
|
+
where?: InputMaybe<Land_Filter>;
|
|
940
|
+
};
|
|
941
|
+
type QueryModuleArgs = {
|
|
942
|
+
block?: InputMaybe<Block_Height>;
|
|
943
|
+
id: Scalars['ID']['input'];
|
|
944
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
945
|
+
};
|
|
946
|
+
type QueryModulesArgs = {
|
|
947
|
+
block?: InputMaybe<Block_Height>;
|
|
948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
949
|
+
orderBy?: InputMaybe<Module_OrderBy>;
|
|
950
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
951
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
952
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
953
|
+
where?: InputMaybe<Module_Filter>;
|
|
954
|
+
};
|
|
955
|
+
type QueryPriceUpdateArgs = {
|
|
956
|
+
block?: InputMaybe<Block_Height>;
|
|
957
|
+
id: Scalars['ID']['input'];
|
|
958
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
959
|
+
};
|
|
960
|
+
type QueryPriceUpdatesArgs = {
|
|
961
|
+
block?: InputMaybe<Block_Height>;
|
|
962
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
963
|
+
orderBy?: InputMaybe<PriceUpdate_OrderBy>;
|
|
964
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
965
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
966
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
967
|
+
where?: InputMaybe<PriceUpdate_Filter>;
|
|
968
|
+
};
|
|
969
|
+
type QuerySlotArgs = {
|
|
970
|
+
block?: InputMaybe<Block_Height>;
|
|
971
|
+
id: Scalars['ID']['input'];
|
|
972
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
973
|
+
};
|
|
974
|
+
type QuerySlotCreatedEventArgs = {
|
|
975
|
+
block?: InputMaybe<Block_Height>;
|
|
976
|
+
id: Scalars['ID']['input'];
|
|
977
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
978
|
+
};
|
|
979
|
+
type QuerySlotCreatedEventsArgs = {
|
|
980
|
+
block?: InputMaybe<Block_Height>;
|
|
981
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
982
|
+
orderBy?: InputMaybe<SlotCreatedEvent_OrderBy>;
|
|
983
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
984
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
985
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
986
|
+
where?: InputMaybe<SlotCreatedEvent_Filter>;
|
|
987
|
+
};
|
|
988
|
+
type QuerySlotPurchaseArgs = {
|
|
989
|
+
block?: InputMaybe<Block_Height>;
|
|
990
|
+
id: Scalars['ID']['input'];
|
|
991
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
992
|
+
};
|
|
993
|
+
type QuerySlotPurchasesArgs = {
|
|
994
|
+
block?: InputMaybe<Block_Height>;
|
|
995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
996
|
+
orderBy?: InputMaybe<SlotPurchase_OrderBy>;
|
|
997
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
998
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
999
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1000
|
+
where?: InputMaybe<SlotPurchase_Filter>;
|
|
1001
|
+
};
|
|
1002
|
+
type QuerySlotReleasedEventArgs = {
|
|
1003
|
+
block?: InputMaybe<Block_Height>;
|
|
1004
|
+
id: Scalars['ID']['input'];
|
|
1005
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1006
|
+
};
|
|
1007
|
+
type QuerySlotReleasedEventsArgs = {
|
|
1008
|
+
block?: InputMaybe<Block_Height>;
|
|
1009
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1010
|
+
orderBy?: InputMaybe<SlotReleasedEvent_OrderBy>;
|
|
1011
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1012
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1013
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1014
|
+
where?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1015
|
+
};
|
|
1016
|
+
type QuerySlotsArgs = {
|
|
1017
|
+
block?: InputMaybe<Block_Height>;
|
|
1018
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1019
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
1020
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1021
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1022
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1023
|
+
where?: InputMaybe<Slot_Filter>;
|
|
1024
|
+
};
|
|
1025
|
+
type QueryTaxRateChangeArgs = {
|
|
1026
|
+
block?: InputMaybe<Block_Height>;
|
|
1027
|
+
id: Scalars['ID']['input'];
|
|
1028
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1029
|
+
};
|
|
1030
|
+
type QueryTaxRateChangesArgs = {
|
|
1031
|
+
block?: InputMaybe<Block_Height>;
|
|
1032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1033
|
+
orderBy?: InputMaybe<TaxRateChange_OrderBy>;
|
|
1034
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1035
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1036
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1037
|
+
where?: InputMaybe<TaxRateChange_Filter>;
|
|
1038
|
+
};
|
|
1039
|
+
type Slot = {
|
|
1040
|
+
__typename?: 'Slot';
|
|
1041
|
+
active: Scalars['Boolean']['output'];
|
|
1042
|
+
basePrice: Scalars['BigInt']['output'];
|
|
1043
|
+
createdAt: Scalars['BigInt']['output'];
|
|
1044
|
+
createdEvent?: Maybe<SlotCreatedEvent>;
|
|
1045
|
+
currency: Scalars['Bytes']['output'];
|
|
1046
|
+
id: Scalars['ID']['output'];
|
|
1047
|
+
land: Land;
|
|
1048
|
+
maxTaxPercentage: Scalars['BigInt']['output'];
|
|
1049
|
+
minTaxUpdatePeriod: Scalars['BigInt']['output'];
|
|
1050
|
+
module?: Maybe<Scalars['Bytes']['output']>;
|
|
1051
|
+
occupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1052
|
+
price: Scalars['BigInt']['output'];
|
|
1053
|
+
priceHistory: Array<PriceUpdate>;
|
|
1054
|
+
purchases: Array<SlotPurchase>;
|
|
1055
|
+
releases: Array<SlotReleasedEvent>;
|
|
1056
|
+
slotId: Scalars['BigInt']['output'];
|
|
1057
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
1058
|
+
taxUpdates: Array<TaxRateChange>;
|
|
1059
|
+
updatedAt: Scalars['BigInt']['output'];
|
|
1060
|
+
};
|
|
1061
|
+
type SlotPriceHistoryArgs = {
|
|
1062
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1063
|
+
orderBy?: InputMaybe<PriceUpdate_OrderBy>;
|
|
1064
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1065
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1066
|
+
where?: InputMaybe<PriceUpdate_Filter>;
|
|
1067
|
+
};
|
|
1068
|
+
type SlotPurchasesArgs = {
|
|
1069
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1070
|
+
orderBy?: InputMaybe<SlotPurchase_OrderBy>;
|
|
1071
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1072
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1073
|
+
where?: InputMaybe<SlotPurchase_Filter>;
|
|
1074
|
+
};
|
|
1075
|
+
type SlotReleasesArgs = {
|
|
1076
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1077
|
+
orderBy?: InputMaybe<SlotReleasedEvent_OrderBy>;
|
|
1078
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1079
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1080
|
+
where?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1081
|
+
};
|
|
1082
|
+
type SlotTaxUpdatesArgs = {
|
|
1083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1084
|
+
orderBy?: InputMaybe<TaxRateChange_OrderBy>;
|
|
1085
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1086
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1087
|
+
where?: InputMaybe<TaxRateChange_Filter>;
|
|
1088
|
+
};
|
|
1089
|
+
type SlotCreatedEvent = {
|
|
1090
|
+
__typename?: 'SlotCreatedEvent';
|
|
1091
|
+
basePrice: Scalars['BigInt']['output'];
|
|
1092
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1093
|
+
currency: Scalars['Bytes']['output'];
|
|
1094
|
+
id: Scalars['ID']['output'];
|
|
1095
|
+
land: Scalars['Bytes']['output'];
|
|
1096
|
+
price: Scalars['BigInt']['output'];
|
|
1097
|
+
slot: Slot;
|
|
1098
|
+
slotId: Scalars['BigInt']['output'];
|
|
1099
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
1100
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1101
|
+
tx: Scalars['Bytes']['output'];
|
|
1102
|
+
};
|
|
1103
|
+
type SlotCreatedEvent_Filter = {
|
|
1104
|
+
/** Filter for the block changed event. */
|
|
1105
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1106
|
+
and?: InputMaybe<Array<InputMaybe<SlotCreatedEvent_Filter>>>;
|
|
1107
|
+
basePrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1108
|
+
basePrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1109
|
+
basePrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1110
|
+
basePrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1111
|
+
basePrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1112
|
+
basePrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1113
|
+
basePrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1114
|
+
basePrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1115
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1116
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1117
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1118
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1119
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1120
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1121
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1122
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1123
|
+
currency?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1124
|
+
currency_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1125
|
+
currency_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1126
|
+
currency_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1127
|
+
currency_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1128
|
+
currency_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1129
|
+
currency_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1130
|
+
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1131
|
+
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1132
|
+
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1133
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1134
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1135
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1136
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1137
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1138
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1139
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1140
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1141
|
+
land?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1142
|
+
land_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1143
|
+
land_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1144
|
+
land_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1145
|
+
land_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1146
|
+
land_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1147
|
+
land_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1148
|
+
land_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1149
|
+
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1150
|
+
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1151
|
+
or?: InputMaybe<Array<InputMaybe<SlotCreatedEvent_Filter>>>;
|
|
1152
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1153
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1154
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1155
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1156
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1157
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1158
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1159
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1160
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1161
|
+
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1162
|
+
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1163
|
+
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1164
|
+
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1165
|
+
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1166
|
+
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1167
|
+
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1168
|
+
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1169
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1170
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1171
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1172
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1173
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1174
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1176
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1177
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1178
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1179
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1183
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1185
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1190
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1191
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1192
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1193
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1194
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1195
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1196
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1197
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1198
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1199
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1200
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1201
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1202
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1203
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1204
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1205
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1206
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1207
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1208
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1209
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1210
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1211
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1212
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1213
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1214
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1215
|
+
};
|
|
1216
|
+
type SlotCreatedEvent_OrderBy = 'basePrice' | 'blockNumber' | 'currency' | 'id' | 'land' | 'price' | 'slot' | 'slotId' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'taxPercentage' | 'timestamp' | 'tx';
|
|
1217
|
+
type SlotPurchase = {
|
|
1218
|
+
__typename?: 'SlotPurchase';
|
|
1219
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1220
|
+
id: Scalars['ID']['output'];
|
|
1221
|
+
newOccupant: Scalars['Bytes']['output'];
|
|
1222
|
+
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1223
|
+
slot: Slot;
|
|
1224
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1225
|
+
tx: Scalars['Bytes']['output'];
|
|
1226
|
+
};
|
|
1227
|
+
type SlotPurchase_Filter = {
|
|
1228
|
+
/** Filter for the block changed event. */
|
|
1229
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1230
|
+
and?: InputMaybe<Array<InputMaybe<SlotPurchase_Filter>>>;
|
|
1231
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1232
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1233
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1234
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1235
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1236
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1237
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1238
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1239
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1240
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1241
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1242
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1243
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1244
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1245
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1246
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1247
|
+
newOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1248
|
+
newOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1249
|
+
newOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1250
|
+
newOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1251
|
+
newOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1252
|
+
newOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1253
|
+
newOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1254
|
+
newOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1255
|
+
newOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1256
|
+
newOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1257
|
+
or?: InputMaybe<Array<InputMaybe<SlotPurchase_Filter>>>;
|
|
1258
|
+
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1259
|
+
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1260
|
+
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1261
|
+
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1262
|
+
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1263
|
+
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1264
|
+
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1265
|
+
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1266
|
+
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1267
|
+
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1268
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1269
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1270
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1271
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1272
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1273
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1274
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1275
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1276
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1277
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1278
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1279
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1280
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1281
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1282
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1283
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1284
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1285
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1286
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1287
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1288
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1289
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1290
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1291
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1292
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1293
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1294
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1295
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1296
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1297
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1298
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1299
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1300
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1301
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1302
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1303
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1304
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1305
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1306
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1307
|
+
};
|
|
1308
|
+
type SlotPurchase_OrderBy = 'blockNumber' | 'id' | 'newOccupant' | 'previousOccupant' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1309
|
+
type SlotReleasedEvent = {
|
|
1310
|
+
__typename?: 'SlotReleasedEvent';
|
|
1311
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1312
|
+
id: Scalars['ID']['output'];
|
|
1313
|
+
land: Scalars['Bytes']['output'];
|
|
1314
|
+
previousOccupant?: Maybe<Scalars['Bytes']['output']>;
|
|
1315
|
+
slot: Slot;
|
|
1316
|
+
slotId: Scalars['BigInt']['output'];
|
|
1317
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1318
|
+
tx: Scalars['Bytes']['output'];
|
|
1319
|
+
};
|
|
1320
|
+
type SlotReleasedEvent_Filter = {
|
|
1321
|
+
/** Filter for the block changed event. */
|
|
1322
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1323
|
+
and?: InputMaybe<Array<InputMaybe<SlotReleasedEvent_Filter>>>;
|
|
1324
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1325
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1326
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1327
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1328
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1329
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1330
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1331
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1332
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1333
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1334
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1335
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1336
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1337
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1338
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1339
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1340
|
+
land?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1341
|
+
land_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1342
|
+
land_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1343
|
+
land_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1344
|
+
land_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1345
|
+
land_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1346
|
+
land_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1347
|
+
land_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1348
|
+
land_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1349
|
+
land_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1350
|
+
or?: InputMaybe<Array<InputMaybe<SlotReleasedEvent_Filter>>>;
|
|
1351
|
+
previousOccupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1352
|
+
previousOccupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1353
|
+
previousOccupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1354
|
+
previousOccupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1355
|
+
previousOccupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1356
|
+
previousOccupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1357
|
+
previousOccupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1358
|
+
previousOccupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1359
|
+
previousOccupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1360
|
+
previousOccupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1361
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1362
|
+
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1363
|
+
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1364
|
+
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1365
|
+
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1366
|
+
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1367
|
+
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1368
|
+
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1369
|
+
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1370
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1371
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1372
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1373
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1374
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1375
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1376
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1377
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1378
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1379
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1380
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1381
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1382
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1383
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1384
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1385
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1386
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1387
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1388
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1389
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1390
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1391
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1392
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1393
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1394
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1395
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1396
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1397
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1398
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1399
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1400
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1401
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1402
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1403
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1404
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1405
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1406
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1407
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1408
|
+
};
|
|
1409
|
+
type SlotReleasedEvent_OrderBy = 'blockNumber' | 'id' | 'land' | 'previousOccupant' | 'slot' | 'slotId' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1410
|
+
type Slot_Filter = {
|
|
1411
|
+
/** Filter for the block changed event. */
|
|
1412
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1413
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1414
|
+
active_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1415
|
+
active_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1416
|
+
active_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1417
|
+
and?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1418
|
+
basePrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1419
|
+
basePrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1420
|
+
basePrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1421
|
+
basePrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1422
|
+
basePrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1423
|
+
basePrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1424
|
+
basePrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1425
|
+
basePrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1426
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1427
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1428
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1429
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1430
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1431
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1432
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1433
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1434
|
+
createdEvent_?: InputMaybe<SlotCreatedEvent_Filter>;
|
|
1435
|
+
currency?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1436
|
+
currency_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1437
|
+
currency_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1438
|
+
currency_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1439
|
+
currency_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1440
|
+
currency_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1441
|
+
currency_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1442
|
+
currency_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1443
|
+
currency_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1444
|
+
currency_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1445
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1446
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1447
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1448
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1449
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1450
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1451
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1452
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1453
|
+
land?: InputMaybe<Scalars['String']['input']>;
|
|
1454
|
+
land_?: InputMaybe<Land_Filter>;
|
|
1455
|
+
land_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1456
|
+
land_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1457
|
+
land_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1458
|
+
land_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1459
|
+
land_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1460
|
+
land_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1461
|
+
land_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1462
|
+
land_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1463
|
+
land_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1464
|
+
land_not?: InputMaybe<Scalars['String']['input']>;
|
|
1465
|
+
land_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1466
|
+
land_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1467
|
+
land_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1468
|
+
land_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1469
|
+
land_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1470
|
+
land_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1471
|
+
land_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1472
|
+
land_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1473
|
+
land_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1474
|
+
maxTaxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1475
|
+
maxTaxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1476
|
+
maxTaxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1477
|
+
maxTaxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1478
|
+
maxTaxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1479
|
+
maxTaxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1480
|
+
maxTaxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1481
|
+
maxTaxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1482
|
+
minTaxUpdatePeriod?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1483
|
+
minTaxUpdatePeriod_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1484
|
+
minTaxUpdatePeriod_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1485
|
+
minTaxUpdatePeriod_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1486
|
+
minTaxUpdatePeriod_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1487
|
+
minTaxUpdatePeriod_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1488
|
+
minTaxUpdatePeriod_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1489
|
+
minTaxUpdatePeriod_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1490
|
+
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1491
|
+
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1492
|
+
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1493
|
+
module_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1494
|
+
module_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1495
|
+
module_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1496
|
+
module_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1497
|
+
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1498
|
+
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1499
|
+
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1500
|
+
occupant?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1501
|
+
occupant_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1502
|
+
occupant_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1503
|
+
occupant_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1504
|
+
occupant_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1505
|
+
occupant_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1506
|
+
occupant_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1507
|
+
occupant_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1508
|
+
occupant_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1509
|
+
occupant_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1510
|
+
or?: InputMaybe<Array<InputMaybe<Slot_Filter>>>;
|
|
1511
|
+
price?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1512
|
+
priceHistory_?: InputMaybe<PriceUpdate_Filter>;
|
|
1513
|
+
price_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1514
|
+
price_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1515
|
+
price_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1516
|
+
price_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1517
|
+
price_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1518
|
+
price_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1519
|
+
price_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1520
|
+
purchases_?: InputMaybe<SlotPurchase_Filter>;
|
|
1521
|
+
releases_?: InputMaybe<SlotReleasedEvent_Filter>;
|
|
1522
|
+
slotId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1523
|
+
slotId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1524
|
+
slotId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1525
|
+
slotId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1526
|
+
slotId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1527
|
+
slotId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1528
|
+
slotId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1529
|
+
slotId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1530
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1531
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1532
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1533
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1534
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1535
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1536
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1537
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1538
|
+
taxUpdates_?: InputMaybe<TaxRateChange_Filter>;
|
|
1539
|
+
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1540
|
+
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1541
|
+
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1542
|
+
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1543
|
+
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1544
|
+
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1545
|
+
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1546
|
+
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1547
|
+
};
|
|
1548
|
+
type Slot_OrderBy = 'active' | 'basePrice' | 'createdAt' | 'createdEvent' | 'createdEvent__basePrice' | 'createdEvent__blockNumber' | 'createdEvent__currency' | 'createdEvent__id' | 'createdEvent__land' | 'createdEvent__price' | 'createdEvent__slotId' | 'createdEvent__taxPercentage' | 'createdEvent__timestamp' | 'createdEvent__tx' | 'currency' | 'id' | 'land' | 'land__createdAt' | 'land__createdTx' | 'land__id' | 'land__owner' | 'maxTaxPercentage' | 'minTaxUpdatePeriod' | 'module' | 'occupant' | 'price' | 'priceHistory' | 'purchases' | 'releases' | 'slotId' | 'taxPercentage' | 'taxUpdates' | 'updatedAt';
|
|
1549
|
+
type TaxRateChange = {
|
|
1550
|
+
__typename?: 'TaxRateChange';
|
|
1551
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1552
|
+
confirmableAt?: Maybe<Scalars['BigInt']['output']>;
|
|
1553
|
+
id: Scalars['ID']['output'];
|
|
1554
|
+
kind: Scalars['String']['output'];
|
|
1555
|
+
newPercentage?: Maybe<Scalars['BigInt']['output']>;
|
|
1556
|
+
oldPercentage?: Maybe<Scalars['BigInt']['output']>;
|
|
1557
|
+
slot: Slot;
|
|
1558
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1559
|
+
tx: Scalars['Bytes']['output'];
|
|
1560
|
+
};
|
|
1561
|
+
type TaxRateChange_Filter = {
|
|
1562
|
+
/** Filter for the block changed event. */
|
|
1563
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1564
|
+
and?: InputMaybe<Array<InputMaybe<TaxRateChange_Filter>>>;
|
|
1565
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1566
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1567
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1568
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1569
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1570
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1571
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1572
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1573
|
+
confirmableAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1574
|
+
confirmableAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1575
|
+
confirmableAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1576
|
+
confirmableAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1577
|
+
confirmableAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1578
|
+
confirmableAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1579
|
+
confirmableAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1580
|
+
confirmableAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1581
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1582
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1583
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1584
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1585
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1586
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1587
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1588
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1589
|
+
kind?: InputMaybe<Scalars['String']['input']>;
|
|
1590
|
+
kind_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1591
|
+
kind_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1592
|
+
kind_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1593
|
+
kind_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1594
|
+
kind_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1595
|
+
kind_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1596
|
+
kind_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1597
|
+
kind_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1598
|
+
kind_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1599
|
+
kind_not?: InputMaybe<Scalars['String']['input']>;
|
|
1600
|
+
kind_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1601
|
+
kind_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1602
|
+
kind_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1603
|
+
kind_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1604
|
+
kind_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1605
|
+
kind_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1606
|
+
kind_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1607
|
+
kind_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1608
|
+
kind_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1609
|
+
newPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1610
|
+
newPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1611
|
+
newPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1612
|
+
newPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1613
|
+
newPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1614
|
+
newPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1615
|
+
newPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1616
|
+
newPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1617
|
+
oldPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1618
|
+
oldPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1619
|
+
oldPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1620
|
+
oldPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1621
|
+
oldPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1622
|
+
oldPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1623
|
+
oldPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1624
|
+
oldPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1625
|
+
or?: InputMaybe<Array<InputMaybe<TaxRateChange_Filter>>>;
|
|
1626
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1627
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1628
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1629
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1630
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1631
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1632
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1633
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1634
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1635
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1636
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1637
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1638
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1639
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1640
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1641
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1642
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1643
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1644
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1645
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1646
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1647
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1648
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1649
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1650
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1651
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1652
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1653
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1654
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1655
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1656
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1657
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1658
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1659
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1660
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1661
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1662
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1663
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1664
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1665
|
+
};
|
|
1666
|
+
type TaxRateChange_OrderBy = 'blockNumber' | 'confirmableAt' | 'id' | 'kind' | 'newPercentage' | 'oldPercentage' | 'slot' | 'slot__active' | 'slot__basePrice' | 'slot__createdAt' | 'slot__currency' | 'slot__id' | 'slot__maxTaxPercentage' | 'slot__minTaxUpdatePeriod' | 'slot__module' | 'slot__occupant' | 'slot__price' | 'slot__slotId' | 'slot__taxPercentage' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1667
|
+
type _Block_ = {
|
|
1668
|
+
__typename?: '_Block_';
|
|
1669
|
+
/** The hash of the block */
|
|
1670
|
+
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
1671
|
+
/** The block number */
|
|
1672
|
+
number: Scalars['Int']['output'];
|
|
1673
|
+
/** The hash of the parent block */
|
|
1674
|
+
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
1675
|
+
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
1676
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1677
|
+
};
|
|
1678
|
+
/** The type for the top-level _meta field */
|
|
1679
|
+
type _Meta_ = {
|
|
1680
|
+
__typename?: '_Meta_';
|
|
1681
|
+
/**
|
|
1682
|
+
* Information about a specific subgraph block. The hash of the block
|
|
1683
|
+
* will be null if the _meta field has a block constraint that asks for
|
|
1684
|
+
* a block number. It will be filled if the _meta field has no block constraint
|
|
1685
|
+
* and therefore asks for the latest block
|
|
1686
|
+
*/
|
|
1687
|
+
block: _Block_;
|
|
1688
|
+
/** The deployment ID */
|
|
1689
|
+
deployment: Scalars['String']['output'];
|
|
1690
|
+
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
1691
|
+
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
1692
|
+
};
|
|
1693
|
+
type _SubgraphErrorPolicy_ =
|
|
1694
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
1695
|
+
'allow'
|
|
1696
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
1697
|
+
| 'deny';
|
|
1698
|
+
type GetSlotPurchasesQueryVariables = Exact<{
|
|
1699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1700
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1701
|
+
orderBy?: InputMaybe<SlotPurchase_OrderBy>;
|
|
1702
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1703
|
+
where?: InputMaybe<SlotPurchase_Filter>;
|
|
1704
|
+
}>;
|
|
1705
|
+
type GetSlotPurchasesQuery = {
|
|
1706
|
+
__typename?: 'Query';
|
|
1707
|
+
slotPurchases: Array<{
|
|
1708
|
+
__typename?: 'SlotPurchase';
|
|
1709
|
+
id: string;
|
|
1710
|
+
newOccupant: string;
|
|
1711
|
+
previousOccupant?: string | null;
|
|
1712
|
+
timestamp: string;
|
|
1713
|
+
blockNumber: string;
|
|
1714
|
+
tx: string;
|
|
1715
|
+
slot: {
|
|
1716
|
+
__typename?: 'Slot';
|
|
1717
|
+
id: string;
|
|
1718
|
+
slotId: string;
|
|
1719
|
+
land: {
|
|
1720
|
+
__typename?: 'Land';
|
|
1721
|
+
id: string;
|
|
1722
|
+
};
|
|
1723
|
+
};
|
|
1724
|
+
}>;
|
|
1725
|
+
};
|
|
1726
|
+
type GetLandOpenedEventsQueryVariables = Exact<{
|
|
1727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1728
|
+
orderBy?: InputMaybe<LandOpenedEvent_OrderBy>;
|
|
1729
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1730
|
+
}>;
|
|
1731
|
+
type GetLandOpenedEventsQuery = {
|
|
1732
|
+
__typename?: 'Query';
|
|
1733
|
+
landOpenedEvents: Array<{
|
|
1734
|
+
__typename?: 'LandOpenedEvent';
|
|
1735
|
+
id: string;
|
|
1736
|
+
account: string;
|
|
1737
|
+
timestamp: string;
|
|
1738
|
+
blockNumber: string;
|
|
1739
|
+
tx: string;
|
|
1740
|
+
land: {
|
|
1741
|
+
__typename?: 'Land';
|
|
1742
|
+
id: string;
|
|
1743
|
+
};
|
|
1744
|
+
}>;
|
|
1745
|
+
};
|
|
1746
|
+
type GetSlotCreatedEventsQueryVariables = Exact<{
|
|
1747
|
+
landId: Scalars['Bytes']['input'];
|
|
1748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1749
|
+
}>;
|
|
1750
|
+
type GetSlotCreatedEventsQuery = {
|
|
1751
|
+
__typename?: 'Query';
|
|
1752
|
+
slotCreatedEvents: Array<{
|
|
1753
|
+
__typename?: 'SlotCreatedEvent';
|
|
1754
|
+
id: string;
|
|
1755
|
+
land: string;
|
|
1756
|
+
slotId: string;
|
|
1757
|
+
currency: string;
|
|
1758
|
+
basePrice: string;
|
|
1759
|
+
price: string;
|
|
1760
|
+
taxPercentage: string;
|
|
1761
|
+
timestamp: string;
|
|
1762
|
+
blockNumber: string;
|
|
1763
|
+
tx: string;
|
|
1764
|
+
slot: {
|
|
1765
|
+
__typename?: 'Slot';
|
|
1766
|
+
id: string;
|
|
1767
|
+
slotId: string;
|
|
1768
|
+
};
|
|
1769
|
+
}>;
|
|
1770
|
+
};
|
|
1771
|
+
type GetFlowChangesQueryVariables = Exact<{
|
|
1772
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1773
|
+
where?: InputMaybe<FlowChange_Filter>;
|
|
1774
|
+
}>;
|
|
1775
|
+
type GetFlowChangesQuery = {
|
|
1776
|
+
__typename?: 'Query';
|
|
1777
|
+
flowChanges: Array<{
|
|
1778
|
+
__typename?: 'FlowChange';
|
|
1779
|
+
id: string;
|
|
1780
|
+
from: string;
|
|
1781
|
+
to: string;
|
|
1782
|
+
oldRate: string;
|
|
1783
|
+
newRate: string;
|
|
1784
|
+
operation: string;
|
|
1785
|
+
timestamp: string;
|
|
1786
|
+
blockNumber: string;
|
|
1787
|
+
tx: string;
|
|
1788
|
+
}>;
|
|
1789
|
+
};
|
|
1790
|
+
type GetHubQueryVariables = Exact<{
|
|
1791
|
+
id: Scalars['ID']['input'];
|
|
1792
|
+
}>;
|
|
1793
|
+
type GetHubQuery = {
|
|
1794
|
+
__typename?: 'Query';
|
|
1795
|
+
hub?: {
|
|
1796
|
+
__typename?: 'Hub';
|
|
1797
|
+
id: string;
|
|
1798
|
+
protocolFeeBps: string;
|
|
1799
|
+
protocolFeeRecipient: string;
|
|
1800
|
+
slotPrice: string;
|
|
1801
|
+
defaultSlotCount: string;
|
|
1802
|
+
defaultPrice: string;
|
|
1803
|
+
defaultTaxPercentage: string;
|
|
1804
|
+
defaultMaxTaxPercentage: string;
|
|
1805
|
+
defaultMinTaxUpdatePeriod: string;
|
|
1806
|
+
defaultModule: string;
|
|
1807
|
+
defaultCurrency?: {
|
|
1808
|
+
__typename?: 'Currency';
|
|
1809
|
+
id: string;
|
|
1810
|
+
name?: string | null;
|
|
1811
|
+
symbol?: string | null;
|
|
1812
|
+
decimals?: number | null;
|
|
1813
|
+
} | null;
|
|
1814
|
+
} | null;
|
|
1815
|
+
};
|
|
1816
|
+
type GetAllowedModulesQueryVariables = Exact<{
|
|
1817
|
+
hubId: Scalars['String']['input'];
|
|
1818
|
+
}>;
|
|
1819
|
+
type GetAllowedModulesQuery = {
|
|
1820
|
+
__typename?: 'Query';
|
|
1821
|
+
modules: Array<{
|
|
1822
|
+
__typename?: 'Module';
|
|
1823
|
+
id: string;
|
|
1824
|
+
name: string;
|
|
1825
|
+
version: string;
|
|
1826
|
+
allowed: boolean;
|
|
1827
|
+
}>;
|
|
1828
|
+
};
|
|
1829
|
+
type GetAllowedCurrenciesQueryVariables = Exact<{
|
|
1830
|
+
hubId: Scalars['String']['input'];
|
|
1831
|
+
}>;
|
|
1832
|
+
type GetAllowedCurrenciesQuery = {
|
|
1833
|
+
__typename?: 'Query';
|
|
1834
|
+
currencies: Array<{
|
|
1835
|
+
__typename?: 'Currency';
|
|
1836
|
+
id: string;
|
|
1837
|
+
name?: string | null;
|
|
1838
|
+
symbol?: string | null;
|
|
1839
|
+
decimals?: number | null;
|
|
1840
|
+
underlyingToken?: string | null;
|
|
1841
|
+
underlyingName?: string | null;
|
|
1842
|
+
underlyingSymbol?: string | null;
|
|
1843
|
+
underlyingDecimals?: number | null;
|
|
1844
|
+
}>;
|
|
1845
|
+
};
|
|
1846
|
+
type GetLandsQueryVariables = Exact<{
|
|
1847
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1848
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1849
|
+
orderBy?: InputMaybe<Land_OrderBy>;
|
|
1850
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1851
|
+
}>;
|
|
1852
|
+
type GetLandsQuery = {
|
|
1853
|
+
__typename?: 'Query';
|
|
1854
|
+
lands: Array<{
|
|
1855
|
+
__typename?: 'Land';
|
|
1856
|
+
id: string;
|
|
1857
|
+
owner: string;
|
|
1858
|
+
createdAt: string;
|
|
1859
|
+
createdTx: string;
|
|
1860
|
+
hub: {
|
|
1861
|
+
__typename?: 'Hub';
|
|
1862
|
+
id: string;
|
|
1863
|
+
};
|
|
1864
|
+
}>;
|
|
1865
|
+
};
|
|
1866
|
+
type GetLandQueryVariables = Exact<{
|
|
1867
|
+
id: Scalars['ID']['input'];
|
|
1868
|
+
}>;
|
|
1869
|
+
type GetLandQuery = {
|
|
1870
|
+
__typename?: 'Query';
|
|
1871
|
+
land?: {
|
|
1872
|
+
__typename?: 'Land';
|
|
1873
|
+
id: string;
|
|
1874
|
+
owner: string;
|
|
1875
|
+
createdAt: string;
|
|
1876
|
+
createdTx: string;
|
|
1877
|
+
hub: {
|
|
1878
|
+
__typename?: 'Hub';
|
|
1879
|
+
id: string;
|
|
1880
|
+
};
|
|
1881
|
+
slots: Array<{
|
|
1882
|
+
__typename?: 'Slot';
|
|
1883
|
+
id: string;
|
|
1884
|
+
slotId: string;
|
|
1885
|
+
occupant?: string | null;
|
|
1886
|
+
currency: string;
|
|
1887
|
+
price: string;
|
|
1888
|
+
taxPercentage: string;
|
|
1889
|
+
active: boolean;
|
|
1890
|
+
}>;
|
|
1891
|
+
} | null;
|
|
1892
|
+
};
|
|
1893
|
+
type GetLandsByOwnerQueryVariables = Exact<{
|
|
1894
|
+
owner: Scalars['Bytes']['input'];
|
|
1895
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1896
|
+
}>;
|
|
1897
|
+
type GetLandsByOwnerQuery = {
|
|
1898
|
+
__typename?: 'Query';
|
|
1899
|
+
lands: Array<{
|
|
1900
|
+
__typename?: 'Land';
|
|
1901
|
+
id: string;
|
|
1902
|
+
owner: string;
|
|
1903
|
+
createdAt: string;
|
|
1904
|
+
createdTx: string;
|
|
1905
|
+
}>;
|
|
1906
|
+
};
|
|
1907
|
+
type GetSlotsQueryVariables = Exact<{
|
|
1908
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1909
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1910
|
+
orderBy?: InputMaybe<Slot_OrderBy>;
|
|
1911
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1912
|
+
where?: InputMaybe<Slot_Filter>;
|
|
1913
|
+
}>;
|
|
1914
|
+
type GetSlotsQuery = {
|
|
1915
|
+
__typename?: 'Query';
|
|
1916
|
+
slots: Array<{
|
|
1917
|
+
__typename?: 'Slot';
|
|
1918
|
+
id: string;
|
|
1919
|
+
slotId: string;
|
|
1920
|
+
occupant?: string | null;
|
|
1921
|
+
currency: string;
|
|
1922
|
+
basePrice: string;
|
|
1923
|
+
price: string;
|
|
1924
|
+
taxPercentage: string;
|
|
1925
|
+
maxTaxPercentage: string;
|
|
1926
|
+
minTaxUpdatePeriod: string;
|
|
1927
|
+
module?: string | null;
|
|
1928
|
+
active: boolean;
|
|
1929
|
+
createdAt: string;
|
|
1930
|
+
updatedAt: string;
|
|
1931
|
+
land: {
|
|
1932
|
+
__typename?: 'Land';
|
|
1933
|
+
id: string;
|
|
1934
|
+
owner: string;
|
|
1935
|
+
};
|
|
1936
|
+
}>;
|
|
1937
|
+
};
|
|
1938
|
+
type GetSlotQueryVariables = Exact<{
|
|
1939
|
+
id: Scalars['ID']['input'];
|
|
1940
|
+
}>;
|
|
1941
|
+
type GetSlotQuery = {
|
|
1942
|
+
__typename?: 'Query';
|
|
1943
|
+
slot?: {
|
|
1944
|
+
__typename?: 'Slot';
|
|
1945
|
+
id: string;
|
|
1946
|
+
slotId: string;
|
|
1947
|
+
occupant?: string | null;
|
|
1948
|
+
currency: string;
|
|
1949
|
+
basePrice: string;
|
|
1950
|
+
price: string;
|
|
1951
|
+
taxPercentage: string;
|
|
1952
|
+
maxTaxPercentage: string;
|
|
1953
|
+
minTaxUpdatePeriod: string;
|
|
1954
|
+
module?: string | null;
|
|
1955
|
+
active: boolean;
|
|
1956
|
+
createdAt: string;
|
|
1957
|
+
updatedAt: string;
|
|
1958
|
+
land: {
|
|
1959
|
+
__typename?: 'Land';
|
|
1960
|
+
id: string;
|
|
1961
|
+
owner: string;
|
|
1962
|
+
};
|
|
1963
|
+
priceHistory: Array<{
|
|
1964
|
+
__typename?: 'PriceUpdate';
|
|
1965
|
+
id: string;
|
|
1966
|
+
oldPrice: string;
|
|
1967
|
+
newPrice: string;
|
|
1968
|
+
timestamp: string;
|
|
1969
|
+
tx: string;
|
|
1970
|
+
}>;
|
|
1971
|
+
taxUpdates: Array<{
|
|
1972
|
+
__typename?: 'TaxRateChange';
|
|
1973
|
+
id: string;
|
|
1974
|
+
kind: string;
|
|
1975
|
+
oldPercentage?: string | null;
|
|
1976
|
+
newPercentage?: string | null;
|
|
1977
|
+
confirmableAt?: string | null;
|
|
1978
|
+
timestamp: string;
|
|
1979
|
+
tx: string;
|
|
1980
|
+
}>;
|
|
1981
|
+
} | null;
|
|
1982
|
+
};
|
|
1983
|
+
type GetSlotsByOccupantQueryVariables = Exact<{
|
|
1984
|
+
occupant: Scalars['Bytes']['input'];
|
|
1985
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1986
|
+
}>;
|
|
1987
|
+
type GetSlotsByOccupantQuery = {
|
|
1988
|
+
__typename?: 'Query';
|
|
1989
|
+
slots: Array<{
|
|
1990
|
+
__typename?: 'Slot';
|
|
1991
|
+
id: string;
|
|
1992
|
+
slotId: string;
|
|
1993
|
+
occupant?: string | null;
|
|
1994
|
+
price: string;
|
|
1995
|
+
taxPercentage: string;
|
|
1996
|
+
active: boolean;
|
|
1997
|
+
land: {
|
|
1998
|
+
__typename?: 'Land';
|
|
1999
|
+
id: string;
|
|
2000
|
+
};
|
|
2001
|
+
}>;
|
|
2002
|
+
};
|
|
2003
|
+
type GetAvailableSlotsQueryVariables = Exact<{
|
|
2004
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2005
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2006
|
+
}>;
|
|
2007
|
+
type GetAvailableSlotsQuery = {
|
|
2008
|
+
__typename?: 'Query';
|
|
2009
|
+
slots: Array<{
|
|
2010
|
+
__typename?: 'Slot';
|
|
2011
|
+
id: string;
|
|
2012
|
+
slotId: string;
|
|
2013
|
+
currency: string;
|
|
2014
|
+
price: string;
|
|
2015
|
+
taxPercentage: string;
|
|
2016
|
+
land: {
|
|
2017
|
+
__typename?: 'Land';
|
|
2018
|
+
id: string;
|
|
2019
|
+
owner: string;
|
|
2020
|
+
};
|
|
2021
|
+
}>;
|
|
2022
|
+
};
|
|
2023
|
+
declare const GetSlotPurchasesDocument: graphql.DocumentNode;
|
|
2024
|
+
declare const GetLandOpenedEventsDocument: graphql.DocumentNode;
|
|
2025
|
+
declare const GetSlotCreatedEventsDocument: graphql.DocumentNode;
|
|
2026
|
+
declare const GetFlowChangesDocument: graphql.DocumentNode;
|
|
2027
|
+
declare const GetHubDocument: graphql.DocumentNode;
|
|
2028
|
+
declare const GetAllowedModulesDocument: graphql.DocumentNode;
|
|
2029
|
+
declare const GetAllowedCurrenciesDocument: graphql.DocumentNode;
|
|
2030
|
+
declare const GetLandsDocument: graphql.DocumentNode;
|
|
2031
|
+
declare const GetLandDocument: graphql.DocumentNode;
|
|
2032
|
+
declare const GetLandsByOwnerDocument: graphql.DocumentNode;
|
|
2033
|
+
declare const GetSlotsDocument: graphql.DocumentNode;
|
|
2034
|
+
declare const GetSlotDocument: graphql.DocumentNode;
|
|
2035
|
+
declare const GetSlotsByOccupantDocument: graphql.DocumentNode;
|
|
2036
|
+
declare const GetAvailableSlotsDocument: graphql.DocumentNode;
|
|
2037
|
+
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
2038
|
+
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
2039
|
+
GetSlotPurchases(variables?: GetSlotPurchasesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotPurchasesQuery>;
|
|
2040
|
+
GetLandOpenedEvents(variables?: GetLandOpenedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLandOpenedEventsQuery>;
|
|
2041
|
+
GetSlotCreatedEvents(variables: GetSlotCreatedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotCreatedEventsQuery>;
|
|
2042
|
+
GetFlowChanges(variables?: GetFlowChangesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetFlowChangesQuery>;
|
|
2043
|
+
GetHub(variables: GetHubQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetHubQuery>;
|
|
2044
|
+
GetAllowedModules(variables: GetAllowedModulesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAllowedModulesQuery>;
|
|
2045
|
+
GetAllowedCurrencies(variables: GetAllowedCurrenciesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAllowedCurrenciesQuery>;
|
|
2046
|
+
GetLands(variables?: GetLandsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLandsQuery>;
|
|
2047
|
+
GetLand(variables: GetLandQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLandQuery>;
|
|
2048
|
+
GetLandsByOwner(variables: GetLandsByOwnerQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLandsByOwnerQuery>;
|
|
2049
|
+
GetSlots(variables?: GetSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2050
|
+
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2051
|
+
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2052
|
+
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2053
|
+
};
|
|
2054
|
+
type Sdk = ReturnType<typeof getSdk>;
|
|
2055
|
+
|
|
2056
|
+
/**
|
|
2057
|
+
* Supported chain IDs for 0xSlots protocol
|
|
2058
|
+
*/
|
|
2059
|
+
declare enum SlotsChain {
|
|
2060
|
+
BASE_SEPOLIA = 84532
|
|
2061
|
+
}
|
|
2062
|
+
/**
|
|
2063
|
+
* Subgraph endpoint URLs by chain ID
|
|
2064
|
+
*/
|
|
2065
|
+
declare const SUBGRAPH_URLS: Record<SlotsChain, string>;
|
|
2066
|
+
/**
|
|
2067
|
+
* Configuration options for the Slots client
|
|
2068
|
+
*/
|
|
2069
|
+
interface SlotsClientConfig {
|
|
2070
|
+
/**
|
|
2071
|
+
* The chain ID to query
|
|
2072
|
+
*/
|
|
2073
|
+
chainId: SlotsChain;
|
|
2074
|
+
/**
|
|
2075
|
+
* Optional custom subgraph URL (overrides default)
|
|
2076
|
+
*/
|
|
2077
|
+
subgraphUrl?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* Optional headers to include in requests
|
|
2080
|
+
*/
|
|
2081
|
+
headers?: Record<string, string>;
|
|
2082
|
+
}
|
|
2083
|
+
/**
|
|
2084
|
+
* Type-safe client for querying 0xSlots subgraph data
|
|
2085
|
+
*/
|
|
2086
|
+
declare class SlotsClient {
|
|
2087
|
+
private readonly sdk;
|
|
2088
|
+
private readonly chainId;
|
|
2089
|
+
private readonly client;
|
|
2090
|
+
/**
|
|
2091
|
+
* Create a new SlotsClient instance
|
|
2092
|
+
*
|
|
2093
|
+
* @param config - Client configuration
|
|
2094
|
+
*
|
|
2095
|
+
* @example
|
|
2096
|
+
* ```typescript
|
|
2097
|
+
* import { SlotsClient, SlotsChain } from '@0xslots/sdk';
|
|
2098
|
+
*
|
|
2099
|
+
* const client = new SlotsClient({
|
|
2100
|
+
* chainId: SlotsChain.BASE_SEPOLIA,
|
|
2101
|
+
* });
|
|
2102
|
+
*
|
|
2103
|
+
* const hub = await client.getHub({ id: '0x...' });
|
|
2104
|
+
* ```
|
|
2105
|
+
*/
|
|
2106
|
+
constructor(config: SlotsClientConfig);
|
|
2107
|
+
/**
|
|
2108
|
+
* Get the current chain ID
|
|
2109
|
+
*/
|
|
2110
|
+
getChainId(): SlotsChain;
|
|
2111
|
+
/**
|
|
2112
|
+
* Get the underlying GraphQL client
|
|
2113
|
+
*/
|
|
2114
|
+
getClient(): GraphQLClient;
|
|
2115
|
+
/**
|
|
2116
|
+
* Get the generated SDK with all typed query methods
|
|
2117
|
+
*/
|
|
2118
|
+
getSdk(): {
|
|
2119
|
+
GetSlotPurchases(variables?: GetSlotPurchasesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotPurchasesQuery>;
|
|
2120
|
+
GetLandOpenedEvents(variables?: GetLandOpenedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLandOpenedEventsQuery>;
|
|
2121
|
+
GetSlotCreatedEvents(variables: GetSlotCreatedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotCreatedEventsQuery>;
|
|
2122
|
+
GetFlowChanges(variables?: GetFlowChangesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetFlowChangesQuery>;
|
|
2123
|
+
GetHub(variables: GetHubQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetHubQuery>;
|
|
2124
|
+
GetAllowedModules(variables: GetAllowedModulesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAllowedModulesQuery>;
|
|
2125
|
+
GetAllowedCurrencies(variables: GetAllowedCurrenciesQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAllowedCurrenciesQuery>;
|
|
2126
|
+
GetLands(variables?: GetLandsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLandsQuery>;
|
|
2127
|
+
GetLand(variables: GetLandQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLandQuery>;
|
|
2128
|
+
GetLandsByOwner(variables: GetLandsByOwnerQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetLandsByOwnerQuery>;
|
|
2129
|
+
GetSlots(variables?: GetSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsQuery>;
|
|
2130
|
+
GetSlot(variables: GetSlotQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotQuery>;
|
|
2131
|
+
GetSlotsByOccupant(variables: GetSlotsByOccupantQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotsByOccupantQuery>;
|
|
2132
|
+
GetAvailableSlots(variables?: GetAvailableSlotsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAvailableSlotsQuery>;
|
|
2133
|
+
};
|
|
2134
|
+
getHub(...args: Parameters<ReturnType<typeof getSdk>['GetHub']>): Promise<GetHubQuery>;
|
|
2135
|
+
getAllowedModules(...args: Parameters<ReturnType<typeof getSdk>['GetAllowedModules']>): Promise<GetAllowedModulesQuery>;
|
|
2136
|
+
getAllowedCurrencies(...args: Parameters<ReturnType<typeof getSdk>['GetAllowedCurrencies']>): Promise<GetAllowedCurrenciesQuery>;
|
|
2137
|
+
getLands(...args: Parameters<ReturnType<typeof getSdk>['GetLands']>): Promise<GetLandsQuery>;
|
|
2138
|
+
getLand(...args: Parameters<ReturnType<typeof getSdk>['GetLand']>): Promise<GetLandQuery>;
|
|
2139
|
+
getLandsByOwner(...args: Parameters<ReturnType<typeof getSdk>['GetLandsByOwner']>): Promise<GetLandsByOwnerQuery>;
|
|
2140
|
+
getSlots(...args: Parameters<ReturnType<typeof getSdk>['GetSlots']>): Promise<GetSlotsQuery>;
|
|
2141
|
+
getSlot(...args: Parameters<ReturnType<typeof getSdk>['GetSlot']>): Promise<GetSlotQuery>;
|
|
2142
|
+
getSlotsByOccupant(...args: Parameters<ReturnType<typeof getSdk>['GetSlotsByOccupant']>): Promise<GetSlotsByOccupantQuery>;
|
|
2143
|
+
getAvailableSlots(...args: Parameters<ReturnType<typeof getSdk>['GetAvailableSlots']>): Promise<GetAvailableSlotsQuery>;
|
|
2144
|
+
getSlotPurchases(...args: Parameters<ReturnType<typeof getSdk>['GetSlotPurchases']>): Promise<GetSlotPurchasesQuery>;
|
|
2145
|
+
getLandOpenedEvents(...args: Parameters<ReturnType<typeof getSdk>['GetLandOpenedEvents']>): Promise<GetLandOpenedEventsQuery>;
|
|
2146
|
+
getSlotCreatedEvents(...args: Parameters<ReturnType<typeof getSdk>['GetSlotCreatedEvents']>): Promise<GetSlotCreatedEventsQuery>;
|
|
2147
|
+
getFlowChanges(...args: Parameters<ReturnType<typeof getSdk>['GetFlowChanges']>): Promise<GetFlowChangesQuery>;
|
|
2148
|
+
}
|
|
2149
|
+
/**
|
|
2150
|
+
* Create a SlotsClient instance
|
|
2151
|
+
*
|
|
2152
|
+
* @param config - Client configuration
|
|
2153
|
+
* @returns A new SlotsClient instance
|
|
2154
|
+
*
|
|
2155
|
+
* @example
|
|
2156
|
+
* ```typescript
|
|
2157
|
+
* import { createSlotsClient, SlotsChain } from '@0xslots/sdk';
|
|
2158
|
+
*
|
|
2159
|
+
* const client = createSlotsClient({
|
|
2160
|
+
* chainId: SlotsChain.BASE_SEPOLIA,
|
|
2161
|
+
* });
|
|
2162
|
+
* ```
|
|
2163
|
+
*/
|
|
2164
|
+
declare function createSlotsClient(config: SlotsClientConfig): SlotsClient;
|
|
2165
|
+
|
|
2166
|
+
export { type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type Currency, type Currency_Filter, type Currency_OrderBy, type Exact, type FlowChange, type FlowChange_Filter, type FlowChange_OrderBy, GetAllowedCurrenciesDocument, type GetAllowedCurrenciesQuery, type GetAllowedCurrenciesQueryVariables, GetAllowedModulesDocument, type GetAllowedModulesQuery, type GetAllowedModulesQueryVariables, GetAvailableSlotsDocument, type GetAvailableSlotsQuery, type GetAvailableSlotsQueryVariables, GetFlowChangesDocument, type GetFlowChangesQuery, type GetFlowChangesQueryVariables, GetHubDocument, type GetHubQuery, type GetHubQueryVariables, GetLandDocument, GetLandOpenedEventsDocument, type GetLandOpenedEventsQuery, type GetLandOpenedEventsQueryVariables, type GetLandQuery, type GetLandQueryVariables, GetLandsByOwnerDocument, type GetLandsByOwnerQuery, type GetLandsByOwnerQueryVariables, GetLandsDocument, type GetLandsQuery, type GetLandsQueryVariables, GetSlotCreatedEventsDocument, type GetSlotCreatedEventsQuery, type GetSlotCreatedEventsQueryVariables, GetSlotDocument, GetSlotPurchasesDocument, type GetSlotPurchasesQuery, type GetSlotPurchasesQueryVariables, type GetSlotQuery, type GetSlotQueryVariables, GetSlotsByOccupantDocument, type GetSlotsByOccupantQuery, type GetSlotsByOccupantQueryVariables, GetSlotsDocument, type GetSlotsQuery, type GetSlotsQueryVariables, type Hub, type HubAllowedCurrenciesArgs, type HubAllowedModulesArgs, type HubLandsArgs, type Hub_Filter, type Hub_OrderBy, type Incremental, type InputMaybe, type Land, type LandOpenedEvent, type LandOpenedEvent_Filter, type LandOpenedEvent_OrderBy, type LandSlotsArgs, type Land_Filter, type Land_OrderBy, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Module, type Module_Filter, type Module_OrderBy, type OrderDirection, type PriceUpdate, type PriceUpdate_Filter, type PriceUpdate_OrderBy, type Query, type QueryCurrenciesArgs, type QueryCurrencyArgs, type QueryFlowChangeArgs, type QueryFlowChangesArgs, type QueryHubArgs, type QueryHubsArgs, type QueryLandArgs, type QueryLandOpenedEventArgs, type QueryLandOpenedEventsArgs, type QueryLandsArgs, type QueryModuleArgs, type QueryModulesArgs, type QueryPriceUpdateArgs, type QueryPriceUpdatesArgs, type QuerySlotArgs, type QuerySlotCreatedEventArgs, type QuerySlotCreatedEventsArgs, type QuerySlotPurchaseArgs, type QuerySlotPurchasesArgs, type QuerySlotReleasedEventArgs, type QuerySlotReleasedEventsArgs, type QuerySlotsArgs, type QueryTaxRateChangeArgs, type QueryTaxRateChangesArgs, type Query_MetaArgs, SUBGRAPH_URLS, type Scalars, type Sdk, type SdkFunctionWrapper, type Slot, type SlotCreatedEvent, type SlotCreatedEvent_Filter, type SlotCreatedEvent_OrderBy, type SlotPriceHistoryArgs, type SlotPurchase, type SlotPurchase_Filter, type SlotPurchase_OrderBy, type SlotPurchasesArgs, type SlotReleasedEvent, type SlotReleasedEvent_Filter, type SlotReleasedEvent_OrderBy, type SlotReleasesArgs, type SlotTaxUpdatesArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, type TaxRateChange, type TaxRateChange_Filter, type TaxRateChange_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|