@zoralabs/coins-sdk 0.0.3 → 0.0.4
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/CHANGELOG.md +8 -0
- package/dist/api/queries.d.ts +9 -205
- package/dist/api/queries.d.ts.map +1 -1
- package/dist/client/sdk.gen.d.ts +310 -272
- package/dist/client/sdk.gen.d.ts.map +1 -1
- package/dist/client/types.gen.d.ts +828 -322
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/index.cjs +2 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/queries.ts +12 -18
- package/src/client/sdk.gen.ts +18 -0
- package/src/client/types.gen.ts +834 -322
package/src/client/types.gen.ts
CHANGED
|
@@ -10,62 +10,148 @@ export type GetCoinData = {
|
|
|
10
10
|
url: "/coin";
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
+
export type GetCoinErrors = {
|
|
14
|
+
/**
|
|
15
|
+
* Bad request
|
|
16
|
+
*/
|
|
17
|
+
400: unknown;
|
|
18
|
+
/**
|
|
19
|
+
* Internal server error
|
|
20
|
+
*/
|
|
21
|
+
500: unknown;
|
|
22
|
+
};
|
|
23
|
+
|
|
13
24
|
export type GetCoinResponses = {
|
|
14
25
|
/**
|
|
15
|
-
*
|
|
26
|
+
* Successful operation
|
|
16
27
|
*/
|
|
17
28
|
200: {
|
|
18
29
|
zora20Token?: {
|
|
19
30
|
/**
|
|
20
31
|
* The Globally Unique ID of this object
|
|
21
32
|
*/
|
|
22
|
-
id
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
id: string;
|
|
34
|
+
/**
|
|
35
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
36
|
+
*/
|
|
37
|
+
name: string;
|
|
38
|
+
/**
|
|
39
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
40
|
+
*/
|
|
41
|
+
description: string;
|
|
42
|
+
address: string;
|
|
43
|
+
/**
|
|
44
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
45
|
+
*/
|
|
46
|
+
symbol: string;
|
|
47
|
+
/**
|
|
48
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
49
|
+
*/
|
|
50
|
+
totalSupply: string;
|
|
51
|
+
/**
|
|
52
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
53
|
+
*/
|
|
54
|
+
totalVolume: string;
|
|
55
|
+
/**
|
|
56
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
57
|
+
*/
|
|
58
|
+
volume24h: string;
|
|
59
|
+
/**
|
|
60
|
+
* Date with time (isoformat)
|
|
61
|
+
*/
|
|
30
62
|
createdAt?: string;
|
|
31
63
|
creatorAddress?: string;
|
|
32
|
-
creatorEarnings
|
|
33
|
-
amount
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
64
|
+
creatorEarnings: Array<{
|
|
65
|
+
amount: {
|
|
66
|
+
currencyAddress: string;
|
|
67
|
+
/**
|
|
68
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
69
|
+
*/
|
|
70
|
+
amountRaw: string;
|
|
71
|
+
/**
|
|
72
|
+
* The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
|
|
73
|
+
*/
|
|
74
|
+
amountDecimal: number;
|
|
39
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
78
|
+
*/
|
|
40
79
|
amountUsd?: string;
|
|
41
80
|
}>;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
81
|
+
/**
|
|
82
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
83
|
+
*/
|
|
84
|
+
marketCap: string;
|
|
85
|
+
/**
|
|
86
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
87
|
+
*/
|
|
88
|
+
marketCapDelta24h: string;
|
|
89
|
+
/**
|
|
90
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
91
|
+
*/
|
|
92
|
+
chainId: number;
|
|
93
|
+
creatorProfile?: {
|
|
94
|
+
/**
|
|
95
|
+
* The Globally Unique ID of this object
|
|
96
|
+
*/
|
|
97
|
+
id: string;
|
|
98
|
+
/**
|
|
99
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
100
|
+
*/
|
|
101
|
+
handle: string;
|
|
102
|
+
avatar?: {
|
|
103
|
+
previewImage: {
|
|
104
|
+
/**
|
|
105
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
106
|
+
*/
|
|
107
|
+
blurhash?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
110
|
+
*/
|
|
111
|
+
medium: string;
|
|
112
|
+
/**
|
|
113
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
114
|
+
*/
|
|
115
|
+
small: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
51
118
|
};
|
|
52
|
-
|
|
119
|
+
mediaContent?: {
|
|
120
|
+
/**
|
|
121
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
122
|
+
*/
|
|
53
123
|
mimeType?: string;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
124
|
+
/**
|
|
125
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
126
|
+
*/
|
|
127
|
+
originalUri: string;
|
|
128
|
+
previewImage?: {
|
|
129
|
+
/**
|
|
130
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
131
|
+
*/
|
|
132
|
+
small: string;
|
|
133
|
+
/**
|
|
134
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
135
|
+
*/
|
|
136
|
+
medium: string;
|
|
137
|
+
/**
|
|
138
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
139
|
+
*/
|
|
140
|
+
blurhash?: string;
|
|
141
|
+
};
|
|
62
142
|
};
|
|
63
|
-
|
|
64
|
-
zoraComments?: {
|
|
143
|
+
transfers: {
|
|
65
144
|
/**
|
|
66
|
-
*
|
|
145
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
67
146
|
*/
|
|
68
|
-
|
|
147
|
+
count: number;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
151
|
+
*/
|
|
152
|
+
uniqueHolders: number;
|
|
153
|
+
zoraComments: {
|
|
154
|
+
pageInfo: {
|
|
69
155
|
/**
|
|
70
156
|
* When paginating forwards, the cursor to continue.
|
|
71
157
|
*/
|
|
@@ -73,25 +159,53 @@ export type GetCoinResponses = {
|
|
|
73
159
|
/**
|
|
74
160
|
* When paginating forwards, are there more items?
|
|
75
161
|
*/
|
|
76
|
-
hasNextPage
|
|
162
|
+
hasNextPage: boolean;
|
|
77
163
|
};
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
164
|
+
/**
|
|
165
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
166
|
+
*/
|
|
167
|
+
count: number;
|
|
168
|
+
edges: Array<{
|
|
169
|
+
node: {
|
|
170
|
+
/**
|
|
171
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
172
|
+
*/
|
|
173
|
+
txHash: string;
|
|
174
|
+
/**
|
|
175
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
176
|
+
*/
|
|
177
|
+
comment: string;
|
|
178
|
+
userAddress: string;
|
|
179
|
+
/**
|
|
180
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
181
|
+
*/
|
|
182
|
+
timestamp: number;
|
|
183
|
+
userProfile?: {
|
|
184
|
+
/**
|
|
185
|
+
* The Globally Unique ID of this object
|
|
186
|
+
*/
|
|
187
|
+
id: string;
|
|
188
|
+
/**
|
|
189
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
190
|
+
*/
|
|
191
|
+
handle: string;
|
|
192
|
+
avatar?: {
|
|
193
|
+
previewImage: {
|
|
194
|
+
/**
|
|
195
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
196
|
+
*/
|
|
197
|
+
blurhash?: string;
|
|
198
|
+
/**
|
|
199
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
200
|
+
*/
|
|
201
|
+
small: string;
|
|
202
|
+
/**
|
|
203
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
204
|
+
*/
|
|
205
|
+
medium: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
};
|
|
95
209
|
};
|
|
96
210
|
}>;
|
|
97
211
|
};
|
|
@@ -113,17 +227,25 @@ export type GetCoinCommentsData = {
|
|
|
113
227
|
url: "/coinComments";
|
|
114
228
|
};
|
|
115
229
|
|
|
230
|
+
export type GetCoinCommentsErrors = {
|
|
231
|
+
/**
|
|
232
|
+
* Bad request
|
|
233
|
+
*/
|
|
234
|
+
400: unknown;
|
|
235
|
+
/**
|
|
236
|
+
* Internal server error
|
|
237
|
+
*/
|
|
238
|
+
500: unknown;
|
|
239
|
+
};
|
|
240
|
+
|
|
116
241
|
export type GetCoinCommentsResponses = {
|
|
117
242
|
/**
|
|
118
|
-
*
|
|
243
|
+
* Successful operation
|
|
119
244
|
*/
|
|
120
245
|
200: {
|
|
121
246
|
zora20Token?: {
|
|
122
|
-
zoraComments
|
|
123
|
-
|
|
124
|
-
* Information to aid in pagination.
|
|
125
|
-
*/
|
|
126
|
-
pageInfo?: {
|
|
247
|
+
zoraComments: {
|
|
248
|
+
pageInfo: {
|
|
127
249
|
/**
|
|
128
250
|
* When paginating forwards, the cursor to continue.
|
|
129
251
|
*/
|
|
@@ -131,47 +253,102 @@ export type GetCoinCommentsResponses = {
|
|
|
131
253
|
/**
|
|
132
254
|
* When paginating forwards, are there more items?
|
|
133
255
|
*/
|
|
134
|
-
hasNextPage
|
|
256
|
+
hasNextPage: boolean;
|
|
135
257
|
};
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
previewImage?: string;
|
|
258
|
+
/**
|
|
259
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
260
|
+
*/
|
|
261
|
+
count: number;
|
|
262
|
+
edges: Array<{
|
|
263
|
+
node: {
|
|
264
|
+
/**
|
|
265
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
266
|
+
*/
|
|
267
|
+
txHash: string;
|
|
268
|
+
/**
|
|
269
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
270
|
+
*/
|
|
271
|
+
comment: string;
|
|
272
|
+
userAddress: string;
|
|
273
|
+
/**
|
|
274
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
275
|
+
*/
|
|
276
|
+
timestamp: number;
|
|
277
|
+
userProfile?: {
|
|
278
|
+
/**
|
|
279
|
+
* The Globally Unique ID of this object
|
|
280
|
+
*/
|
|
281
|
+
id: string;
|
|
282
|
+
/**
|
|
283
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
284
|
+
*/
|
|
285
|
+
handle: string;
|
|
286
|
+
avatar?: {
|
|
287
|
+
previewImage: {
|
|
288
|
+
/**
|
|
289
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
290
|
+
*/
|
|
170
291
|
blurhash?: string;
|
|
171
|
-
|
|
292
|
+
/**
|
|
293
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
294
|
+
*/
|
|
295
|
+
small: string;
|
|
296
|
+
/**
|
|
297
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
298
|
+
*/
|
|
299
|
+
medium: string;
|
|
172
300
|
};
|
|
173
301
|
};
|
|
174
|
-
}
|
|
302
|
+
};
|
|
303
|
+
replies: {
|
|
304
|
+
/**
|
|
305
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
306
|
+
*/
|
|
307
|
+
count: number;
|
|
308
|
+
edges: Array<{
|
|
309
|
+
node: {
|
|
310
|
+
/**
|
|
311
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
312
|
+
*/
|
|
313
|
+
txHash: string;
|
|
314
|
+
/**
|
|
315
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
316
|
+
*/
|
|
317
|
+
comment: string;
|
|
318
|
+
userAddress: string;
|
|
319
|
+
/**
|
|
320
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
321
|
+
*/
|
|
322
|
+
timestamp: number;
|
|
323
|
+
userProfile?: {
|
|
324
|
+
/**
|
|
325
|
+
* The Globally Unique ID of this object
|
|
326
|
+
*/
|
|
327
|
+
id: string;
|
|
328
|
+
/**
|
|
329
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
330
|
+
*/
|
|
331
|
+
handle: string;
|
|
332
|
+
avatar?: {
|
|
333
|
+
previewImage: {
|
|
334
|
+
/**
|
|
335
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
336
|
+
*/
|
|
337
|
+
blurhash?: string;
|
|
338
|
+
/**
|
|
339
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
340
|
+
*/
|
|
341
|
+
small: string;
|
|
342
|
+
/**
|
|
343
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
344
|
+
*/
|
|
345
|
+
medium: string;
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
}>;
|
|
351
|
+
};
|
|
175
352
|
};
|
|
176
353
|
}>;
|
|
177
354
|
};
|
|
@@ -187,69 +364,158 @@ export type GetCoinsData = {
|
|
|
187
364
|
path?: never;
|
|
188
365
|
query: {
|
|
189
366
|
coins: Array<{
|
|
190
|
-
|
|
191
|
-
|
|
367
|
+
/**
|
|
368
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
369
|
+
*/
|
|
370
|
+
chainId: number;
|
|
371
|
+
collectionAddress: string;
|
|
192
372
|
}>;
|
|
193
373
|
};
|
|
194
374
|
url: "/coins";
|
|
195
375
|
};
|
|
196
376
|
|
|
377
|
+
export type GetCoinsErrors = {
|
|
378
|
+
/**
|
|
379
|
+
* Bad request
|
|
380
|
+
*/
|
|
381
|
+
400: unknown;
|
|
382
|
+
/**
|
|
383
|
+
* Internal server error
|
|
384
|
+
*/
|
|
385
|
+
500: unknown;
|
|
386
|
+
};
|
|
387
|
+
|
|
197
388
|
export type GetCoinsResponses = {
|
|
198
389
|
/**
|
|
199
|
-
*
|
|
390
|
+
* Successful operation
|
|
200
391
|
*/
|
|
201
392
|
200: {
|
|
202
|
-
zora20Tokens
|
|
393
|
+
zora20Tokens: Array<{
|
|
203
394
|
/**
|
|
204
395
|
* The Globally Unique ID of this object
|
|
205
396
|
*/
|
|
206
|
-
id
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
397
|
+
id: string;
|
|
398
|
+
/**
|
|
399
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
400
|
+
*/
|
|
401
|
+
name: string;
|
|
402
|
+
/**
|
|
403
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
404
|
+
*/
|
|
405
|
+
description: string;
|
|
406
|
+
address: string;
|
|
407
|
+
/**
|
|
408
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
409
|
+
*/
|
|
410
|
+
symbol: string;
|
|
411
|
+
/**
|
|
412
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
413
|
+
*/
|
|
414
|
+
totalSupply: string;
|
|
415
|
+
/**
|
|
416
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
417
|
+
*/
|
|
418
|
+
totalVolume: string;
|
|
419
|
+
/**
|
|
420
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
421
|
+
*/
|
|
422
|
+
volume24h: string;
|
|
423
|
+
/**
|
|
424
|
+
* Date with time (isoformat)
|
|
425
|
+
*/
|
|
214
426
|
createdAt?: string;
|
|
215
427
|
creatorAddress?: string;
|
|
216
|
-
creatorEarnings
|
|
217
|
-
amount
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
428
|
+
creatorEarnings: Array<{
|
|
429
|
+
amount: {
|
|
430
|
+
currencyAddress: string;
|
|
431
|
+
/**
|
|
432
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
433
|
+
*/
|
|
434
|
+
amountRaw: string;
|
|
435
|
+
/**
|
|
436
|
+
* The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
|
|
437
|
+
*/
|
|
438
|
+
amountDecimal: number;
|
|
223
439
|
};
|
|
440
|
+
/**
|
|
441
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
442
|
+
*/
|
|
224
443
|
amountUsd?: string;
|
|
225
444
|
}>;
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
445
|
+
/**
|
|
446
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
447
|
+
*/
|
|
448
|
+
marketCap: string;
|
|
449
|
+
/**
|
|
450
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
451
|
+
*/
|
|
452
|
+
marketCapDelta24h: string;
|
|
453
|
+
/**
|
|
454
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
455
|
+
*/
|
|
456
|
+
chainId: number;
|
|
457
|
+
creatorProfile?: {
|
|
458
|
+
/**
|
|
459
|
+
* The Globally Unique ID of this object
|
|
460
|
+
*/
|
|
461
|
+
id: string;
|
|
462
|
+
/**
|
|
463
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
464
|
+
*/
|
|
465
|
+
handle: string;
|
|
466
|
+
avatar?: {
|
|
467
|
+
previewImage: {
|
|
468
|
+
/**
|
|
469
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
470
|
+
*/
|
|
471
|
+
blurhash?: string;
|
|
472
|
+
/**
|
|
473
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
474
|
+
*/
|
|
475
|
+
medium: string;
|
|
476
|
+
/**
|
|
477
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
478
|
+
*/
|
|
479
|
+
small: string;
|
|
480
|
+
};
|
|
481
|
+
};
|
|
235
482
|
};
|
|
236
|
-
|
|
483
|
+
mediaContent?: {
|
|
484
|
+
/**
|
|
485
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
486
|
+
*/
|
|
237
487
|
mimeType?: string;
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
488
|
+
/**
|
|
489
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
490
|
+
*/
|
|
491
|
+
originalUri: string;
|
|
492
|
+
previewImage?: {
|
|
493
|
+
/**
|
|
494
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
495
|
+
*/
|
|
496
|
+
small: string;
|
|
497
|
+
/**
|
|
498
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
499
|
+
*/
|
|
500
|
+
medium: string;
|
|
501
|
+
/**
|
|
502
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
503
|
+
*/
|
|
504
|
+
blurhash?: string;
|
|
505
|
+
};
|
|
246
506
|
};
|
|
247
|
-
|
|
248
|
-
zoraComments?: {
|
|
507
|
+
transfers: {
|
|
249
508
|
/**
|
|
250
|
-
*
|
|
509
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
251
510
|
*/
|
|
252
|
-
|
|
511
|
+
count: number;
|
|
512
|
+
};
|
|
513
|
+
/**
|
|
514
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
515
|
+
*/
|
|
516
|
+
uniqueHolders: number;
|
|
517
|
+
zoraComments: {
|
|
518
|
+
pageInfo: {
|
|
253
519
|
/**
|
|
254
520
|
* When paginating forwards, the cursor to continue.
|
|
255
521
|
*/
|
|
@@ -257,25 +523,53 @@ export type GetCoinsResponses = {
|
|
|
257
523
|
/**
|
|
258
524
|
* When paginating forwards, are there more items?
|
|
259
525
|
*/
|
|
260
|
-
hasNextPage
|
|
526
|
+
hasNextPage: boolean;
|
|
261
527
|
};
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
528
|
+
/**
|
|
529
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
530
|
+
*/
|
|
531
|
+
count: number;
|
|
532
|
+
edges: Array<{
|
|
533
|
+
node: {
|
|
534
|
+
/**
|
|
535
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
536
|
+
*/
|
|
537
|
+
txHash: string;
|
|
538
|
+
/**
|
|
539
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
540
|
+
*/
|
|
541
|
+
comment: string;
|
|
542
|
+
userAddress: string;
|
|
543
|
+
/**
|
|
544
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
545
|
+
*/
|
|
546
|
+
timestamp: number;
|
|
547
|
+
userProfile?: {
|
|
548
|
+
/**
|
|
549
|
+
* The Globally Unique ID of this object
|
|
550
|
+
*/
|
|
551
|
+
id: string;
|
|
552
|
+
/**
|
|
553
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
554
|
+
*/
|
|
555
|
+
handle: string;
|
|
556
|
+
avatar?: {
|
|
557
|
+
previewImage: {
|
|
558
|
+
/**
|
|
559
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
560
|
+
*/
|
|
561
|
+
blurhash?: string;
|
|
562
|
+
/**
|
|
563
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
564
|
+
*/
|
|
565
|
+
small: string;
|
|
566
|
+
/**
|
|
567
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
568
|
+
*/
|
|
569
|
+
medium: string;
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
};
|
|
279
573
|
};
|
|
280
574
|
}>;
|
|
281
575
|
};
|
|
@@ -302,66 +596,155 @@ export type GetExploreData = {
|
|
|
302
596
|
url: "/explore";
|
|
303
597
|
};
|
|
304
598
|
|
|
599
|
+
export type GetExploreErrors = {
|
|
600
|
+
/**
|
|
601
|
+
* Bad request
|
|
602
|
+
*/
|
|
603
|
+
400: unknown;
|
|
604
|
+
/**
|
|
605
|
+
* Internal server error
|
|
606
|
+
*/
|
|
607
|
+
500: unknown;
|
|
608
|
+
};
|
|
609
|
+
|
|
305
610
|
export type GetExploreResponses = {
|
|
306
611
|
/**
|
|
307
|
-
*
|
|
612
|
+
* Successful operation
|
|
308
613
|
*/
|
|
309
614
|
200: {
|
|
310
|
-
exploreList
|
|
311
|
-
edges
|
|
312
|
-
node
|
|
615
|
+
exploreList: {
|
|
616
|
+
edges: Array<{
|
|
617
|
+
node: {
|
|
313
618
|
/**
|
|
314
619
|
* The Globally Unique ID of this object
|
|
315
620
|
*/
|
|
316
|
-
id
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
621
|
+
id: string;
|
|
622
|
+
/**
|
|
623
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
624
|
+
*/
|
|
625
|
+
name: string;
|
|
626
|
+
/**
|
|
627
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
628
|
+
*/
|
|
629
|
+
description: string;
|
|
630
|
+
address: string;
|
|
631
|
+
/**
|
|
632
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
633
|
+
*/
|
|
634
|
+
symbol: string;
|
|
635
|
+
/**
|
|
636
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
637
|
+
*/
|
|
638
|
+
totalSupply: string;
|
|
639
|
+
/**
|
|
640
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
641
|
+
*/
|
|
642
|
+
totalVolume: string;
|
|
643
|
+
/**
|
|
644
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
645
|
+
*/
|
|
646
|
+
volume24h: string;
|
|
647
|
+
/**
|
|
648
|
+
* Date with time (isoformat)
|
|
649
|
+
*/
|
|
324
650
|
createdAt?: string;
|
|
325
651
|
creatorAddress?: string;
|
|
326
|
-
creatorEarnings
|
|
327
|
-
amount
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
652
|
+
creatorEarnings: Array<{
|
|
653
|
+
amount: {
|
|
654
|
+
currencyAddress: string;
|
|
655
|
+
/**
|
|
656
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
657
|
+
*/
|
|
658
|
+
amountRaw: string;
|
|
659
|
+
/**
|
|
660
|
+
* The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
|
|
661
|
+
*/
|
|
662
|
+
amountDecimal: number;
|
|
333
663
|
};
|
|
664
|
+
/**
|
|
665
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
666
|
+
*/
|
|
334
667
|
amountUsd?: string;
|
|
335
668
|
}>;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
669
|
+
/**
|
|
670
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
671
|
+
*/
|
|
672
|
+
marketCap: string;
|
|
673
|
+
/**
|
|
674
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
675
|
+
*/
|
|
676
|
+
marketCapDelta24h: string;
|
|
677
|
+
/**
|
|
678
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
679
|
+
*/
|
|
680
|
+
chainId: number;
|
|
681
|
+
creatorProfile?: {
|
|
682
|
+
/**
|
|
683
|
+
* The Globally Unique ID of this object
|
|
684
|
+
*/
|
|
685
|
+
id: string;
|
|
686
|
+
/**
|
|
687
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
688
|
+
*/
|
|
689
|
+
handle: string;
|
|
690
|
+
avatar?: {
|
|
691
|
+
previewImage: {
|
|
692
|
+
/**
|
|
693
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
694
|
+
*/
|
|
695
|
+
blurhash?: string;
|
|
696
|
+
/**
|
|
697
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
698
|
+
*/
|
|
699
|
+
medium: string;
|
|
700
|
+
/**
|
|
701
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
702
|
+
*/
|
|
703
|
+
small: string;
|
|
704
|
+
};
|
|
705
|
+
};
|
|
345
706
|
};
|
|
346
|
-
|
|
707
|
+
mediaContent?: {
|
|
708
|
+
/**
|
|
709
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
710
|
+
*/
|
|
347
711
|
mimeType?: string;
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
712
|
+
/**
|
|
713
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
714
|
+
*/
|
|
715
|
+
originalUri: string;
|
|
716
|
+
previewImage?: {
|
|
717
|
+
/**
|
|
718
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
719
|
+
*/
|
|
720
|
+
small: string;
|
|
721
|
+
/**
|
|
722
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
723
|
+
*/
|
|
724
|
+
medium: string;
|
|
725
|
+
/**
|
|
726
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
727
|
+
*/
|
|
728
|
+
blurhash?: string;
|
|
729
|
+
};
|
|
353
730
|
};
|
|
354
|
-
transfers
|
|
355
|
-
|
|
731
|
+
transfers: {
|
|
732
|
+
/**
|
|
733
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
734
|
+
*/
|
|
735
|
+
count: number;
|
|
356
736
|
};
|
|
357
|
-
|
|
737
|
+
/**
|
|
738
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
739
|
+
*/
|
|
740
|
+
uniqueHolders: number;
|
|
358
741
|
};
|
|
359
|
-
|
|
742
|
+
/**
|
|
743
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
744
|
+
*/
|
|
745
|
+
cursor: string;
|
|
360
746
|
}>;
|
|
361
|
-
|
|
362
|
-
* Information to aid in pagination.
|
|
363
|
-
*/
|
|
364
|
-
pageInfo?: {
|
|
747
|
+
pageInfo: {
|
|
365
748
|
/**
|
|
366
749
|
* When paginating forwards, the cursor to continue.
|
|
367
750
|
*/
|
|
@@ -369,7 +752,7 @@ export type GetExploreResponses = {
|
|
|
369
752
|
/**
|
|
370
753
|
* When paginating forwards, are there more items?
|
|
371
754
|
*/
|
|
372
|
-
hasNextPage
|
|
755
|
+
hasNextPage: boolean;
|
|
373
756
|
};
|
|
374
757
|
};
|
|
375
758
|
};
|
|
@@ -386,36 +769,92 @@ export type GetProfileData = {
|
|
|
386
769
|
url: "/profile";
|
|
387
770
|
};
|
|
388
771
|
|
|
772
|
+
export type GetProfileErrors = {
|
|
773
|
+
/**
|
|
774
|
+
* Bad request
|
|
775
|
+
*/
|
|
776
|
+
400: unknown;
|
|
777
|
+
/**
|
|
778
|
+
* Internal server error
|
|
779
|
+
*/
|
|
780
|
+
500: unknown;
|
|
781
|
+
};
|
|
782
|
+
|
|
389
783
|
export type GetProfileResponses = {
|
|
390
784
|
/**
|
|
391
|
-
*
|
|
785
|
+
* Successful operation
|
|
392
786
|
*/
|
|
393
787
|
200: {
|
|
394
|
-
profile?:
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
788
|
+
profile?: {
|
|
789
|
+
/**
|
|
790
|
+
* The Globally Unique ID of this object
|
|
791
|
+
*/
|
|
792
|
+
id: string;
|
|
793
|
+
/**
|
|
794
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
795
|
+
*/
|
|
796
|
+
handle: string;
|
|
797
|
+
avatar?: {
|
|
798
|
+
/**
|
|
799
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
800
|
+
*/
|
|
801
|
+
small: string;
|
|
802
|
+
/**
|
|
803
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
804
|
+
*/
|
|
805
|
+
medium: string;
|
|
806
|
+
/**
|
|
807
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
808
|
+
*/
|
|
809
|
+
blurhash?: string;
|
|
810
|
+
};
|
|
811
|
+
/**
|
|
812
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
813
|
+
*/
|
|
814
|
+
username: string;
|
|
815
|
+
/**
|
|
816
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
817
|
+
*/
|
|
818
|
+
displayName?: string;
|
|
819
|
+
/**
|
|
820
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
821
|
+
*/
|
|
822
|
+
bio: string;
|
|
823
|
+
/**
|
|
824
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
825
|
+
*/
|
|
826
|
+
website?: string;
|
|
827
|
+
publicWallet: {
|
|
828
|
+
walletAddress: string;
|
|
829
|
+
};
|
|
830
|
+
socialAccounts: {
|
|
831
|
+
instagram?: {
|
|
832
|
+
/**
|
|
833
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
834
|
+
*/
|
|
835
|
+
displayName?: string;
|
|
417
836
|
};
|
|
418
|
-
|
|
837
|
+
tiktok?: {
|
|
838
|
+
/**
|
|
839
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
840
|
+
*/
|
|
841
|
+
displayName?: string;
|
|
842
|
+
};
|
|
843
|
+
twitter?: {
|
|
844
|
+
/**
|
|
845
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
846
|
+
*/
|
|
847
|
+
displayName?: string;
|
|
848
|
+
};
|
|
849
|
+
};
|
|
850
|
+
linkedWallets: {
|
|
851
|
+
edges: Array<{
|
|
852
|
+
node: {
|
|
853
|
+
walletType: "PRIVY" | "EXTERNAL" | "SMART_WALLET";
|
|
854
|
+
walletAddress: string;
|
|
855
|
+
};
|
|
856
|
+
}>;
|
|
857
|
+
};
|
|
419
858
|
};
|
|
420
859
|
};
|
|
421
860
|
};
|
|
@@ -434,126 +873,199 @@ export type GetProfileBalancesData = {
|
|
|
434
873
|
url: "/profileBalances";
|
|
435
874
|
};
|
|
436
875
|
|
|
876
|
+
export type GetProfileBalancesErrors = {
|
|
877
|
+
/**
|
|
878
|
+
* Bad request
|
|
879
|
+
*/
|
|
880
|
+
400: unknown;
|
|
881
|
+
/**
|
|
882
|
+
* Internal server error
|
|
883
|
+
*/
|
|
884
|
+
500: unknown;
|
|
885
|
+
};
|
|
886
|
+
|
|
437
887
|
export type GetProfileBalancesResponses = {
|
|
438
888
|
/**
|
|
439
|
-
*
|
|
889
|
+
* Successful operation
|
|
440
890
|
*/
|
|
441
891
|
200: {
|
|
442
|
-
profile?:
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
coinBalances?: {
|
|
454
|
-
count?: number;
|
|
455
|
-
edges?: Array<{
|
|
456
|
-
node?: {
|
|
457
|
-
balance?: string;
|
|
892
|
+
profile?: {
|
|
893
|
+
/**
|
|
894
|
+
* The Globally Unique ID of this object
|
|
895
|
+
*/
|
|
896
|
+
id: string;
|
|
897
|
+
/**
|
|
898
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
899
|
+
*/
|
|
900
|
+
handle: string;
|
|
901
|
+
avatar?: {
|
|
902
|
+
previewImage: {
|
|
458
903
|
/**
|
|
459
|
-
* The
|
|
904
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
905
|
+
*/
|
|
906
|
+
blurhash?: string;
|
|
907
|
+
/**
|
|
908
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
909
|
+
*/
|
|
910
|
+
medium: string;
|
|
911
|
+
/**
|
|
912
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
460
913
|
*/
|
|
461
|
-
|
|
462
|
-
|
|
914
|
+
small: string;
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
coinBalances: {
|
|
918
|
+
/**
|
|
919
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
920
|
+
*/
|
|
921
|
+
count: number;
|
|
922
|
+
edges: Array<{
|
|
923
|
+
node: {
|
|
924
|
+
/**
|
|
925
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
926
|
+
*/
|
|
927
|
+
balance: string;
|
|
463
928
|
/**
|
|
464
929
|
* The Globally Unique ID of this object
|
|
465
930
|
*/
|
|
466
|
-
id
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
931
|
+
id: string;
|
|
932
|
+
coin?: {
|
|
933
|
+
/**
|
|
934
|
+
* The Globally Unique ID of this object
|
|
935
|
+
*/
|
|
936
|
+
id: string;
|
|
937
|
+
/**
|
|
938
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
939
|
+
*/
|
|
940
|
+
name: string;
|
|
941
|
+
/**
|
|
942
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
943
|
+
*/
|
|
944
|
+
description: string;
|
|
945
|
+
address: string;
|
|
946
|
+
/**
|
|
947
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
948
|
+
*/
|
|
949
|
+
symbol: string;
|
|
950
|
+
/**
|
|
951
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
952
|
+
*/
|
|
953
|
+
totalSupply: string;
|
|
954
|
+
/**
|
|
955
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
956
|
+
*/
|
|
957
|
+
totalVolume: string;
|
|
958
|
+
/**
|
|
959
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
960
|
+
*/
|
|
961
|
+
volume24h: string;
|
|
962
|
+
/**
|
|
963
|
+
* Date with time (isoformat)
|
|
964
|
+
*/
|
|
965
|
+
createdAt?: string;
|
|
966
|
+
creatorAddress?: string;
|
|
967
|
+
creatorEarnings: Array<{
|
|
968
|
+
amount: {
|
|
969
|
+
currencyAddress: string;
|
|
970
|
+
/**
|
|
971
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
972
|
+
*/
|
|
973
|
+
amountRaw: string;
|
|
974
|
+
/**
|
|
975
|
+
* The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
|
|
976
|
+
*/
|
|
977
|
+
amountDecimal: number;
|
|
480
978
|
};
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
handle?: string;
|
|
491
|
-
avatar?: {
|
|
492
|
-
previewImage?: string;
|
|
493
|
-
blurhash?: string;
|
|
494
|
-
small?: string;
|
|
495
|
-
};
|
|
496
|
-
media?: {
|
|
497
|
-
mimeType?: string;
|
|
498
|
-
originalUri?: string;
|
|
499
|
-
format?: string;
|
|
500
|
-
previewImage?: string;
|
|
501
|
-
medium?: string;
|
|
502
|
-
blurhash?: string;
|
|
503
|
-
};
|
|
504
|
-
transfers?: {
|
|
505
|
-
count?: number;
|
|
506
|
-
};
|
|
507
|
-
uniqueHolders?: number;
|
|
508
|
-
zoraComments?: {
|
|
979
|
+
/**
|
|
980
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
981
|
+
*/
|
|
982
|
+
amountUsd?: string;
|
|
983
|
+
}>;
|
|
984
|
+
/**
|
|
985
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
986
|
+
*/
|
|
987
|
+
marketCap: string;
|
|
509
988
|
/**
|
|
510
|
-
*
|
|
989
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
511
990
|
*/
|
|
512
|
-
|
|
991
|
+
marketCapDelta24h: string;
|
|
992
|
+
/**
|
|
993
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
994
|
+
*/
|
|
995
|
+
chainId: number;
|
|
996
|
+
creatorProfile?: {
|
|
513
997
|
/**
|
|
514
|
-
*
|
|
998
|
+
* The Globally Unique ID of this object
|
|
515
999
|
*/
|
|
516
|
-
|
|
1000
|
+
id: string;
|
|
517
1001
|
/**
|
|
518
|
-
*
|
|
1002
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
519
1003
|
*/
|
|
520
|
-
|
|
1004
|
+
handle: string;
|
|
1005
|
+
avatar?: {
|
|
1006
|
+
previewImage: {
|
|
1007
|
+
/**
|
|
1008
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1009
|
+
*/
|
|
1010
|
+
blurhash?: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1013
|
+
*/
|
|
1014
|
+
medium: string;
|
|
1015
|
+
/**
|
|
1016
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1017
|
+
*/
|
|
1018
|
+
small: string;
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
521
1021
|
};
|
|
522
|
-
|
|
523
|
-
edges?: Array<{
|
|
524
|
-
node?: string;
|
|
525
|
-
txHash?: string;
|
|
526
|
-
comment?: string;
|
|
527
|
-
userAddress?: string;
|
|
528
|
-
timestamp?: number;
|
|
529
|
-
userProfile?: string;
|
|
1022
|
+
mediaContent?: {
|
|
530
1023
|
/**
|
|
531
|
-
* The
|
|
1024
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
532
1025
|
*/
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
1026
|
+
mimeType?: string;
|
|
1027
|
+
/**
|
|
1028
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1029
|
+
*/
|
|
1030
|
+
originalUri: string;
|
|
1031
|
+
previewImage?: {
|
|
1032
|
+
/**
|
|
1033
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1034
|
+
*/
|
|
1035
|
+
small: string;
|
|
1036
|
+
/**
|
|
1037
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1038
|
+
*/
|
|
1039
|
+
medium: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
|
|
1042
|
+
*/
|
|
537
1043
|
blurhash?: string;
|
|
538
|
-
small?: string;
|
|
539
1044
|
};
|
|
540
|
-
}
|
|
1045
|
+
};
|
|
1046
|
+
transfers: {
|
|
1047
|
+
/**
|
|
1048
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
1049
|
+
*/
|
|
1050
|
+
count: number;
|
|
1051
|
+
};
|
|
1052
|
+
/**
|
|
1053
|
+
* The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
|
|
1054
|
+
*/
|
|
1055
|
+
uniqueHolders: number;
|
|
541
1056
|
};
|
|
542
1057
|
};
|
|
1058
|
+
}>;
|
|
1059
|
+
pageInfo: {
|
|
1060
|
+
/**
|
|
1061
|
+
* When paginating forwards, are there more items?
|
|
1062
|
+
*/
|
|
1063
|
+
hasNextPage: boolean;
|
|
1064
|
+
/**
|
|
1065
|
+
* When paginating forwards, the cursor to continue.
|
|
1066
|
+
*/
|
|
1067
|
+
endCursor?: string;
|
|
543
1068
|
};
|
|
544
|
-
}>;
|
|
545
|
-
/**
|
|
546
|
-
* Information to aid in pagination.
|
|
547
|
-
*/
|
|
548
|
-
pageInfo?: {
|
|
549
|
-
/**
|
|
550
|
-
* When paginating forwards, are there more items?
|
|
551
|
-
*/
|
|
552
|
-
hasNextPage?: boolean;
|
|
553
|
-
/**
|
|
554
|
-
* When paginating forwards, the cursor to continue.
|
|
555
|
-
*/
|
|
556
|
-
endCursor?: string;
|
|
557
1069
|
};
|
|
558
1070
|
};
|
|
559
1071
|
};
|