@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.
@@ -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
- * response
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?: string;
23
- name?: string;
24
- description?: string;
25
- address?: string;
26
- symbol?: string;
27
- totalSupply?: string;
28
- totalVolume?: string;
29
- volume24h?: string;
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?: Array<{
33
- amount?: {
34
- currency?: {
35
- address?: string;
36
- };
37
- amountRaw?: string;
38
- amountDecimal?: number;
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
- marketCap?: string;
43
- marketCapDelta24h?: string;
44
- chainId?: number;
45
- creatorProfile?: string;
46
- handle?: string;
47
- avatar?: {
48
- previewImage?: string;
49
- blurhash?: string;
50
- small?: string;
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
- media?: {
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
- originalUri?: string;
55
- format?: string;
56
- previewImage?: string;
57
- medium?: string;
58
- blurhash?: string;
59
- };
60
- transfers?: {
61
- count?: number;
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
- uniqueHolders?: number;
64
- zoraComments?: {
143
+ transfers: {
65
144
  /**
66
- * Information to aid in pagination.
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
- pageInfo?: {
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?: boolean;
162
+ hasNextPage: boolean;
77
163
  };
78
- count?: number;
79
- edges?: Array<{
80
- node?: string;
81
- txHash?: string;
82
- comment?: string;
83
- userAddress?: string;
84
- timestamp?: number;
85
- userProfile?: string;
86
- /**
87
- * The Globally Unique ID of this object
88
- */
89
- id?: string;
90
- handle?: string;
91
- avatar?: {
92
- previewImage?: string;
93
- blurhash?: string;
94
- small?: string;
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
- * response
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?: boolean;
256
+ hasNextPage: boolean;
135
257
  };
136
- count?: number;
137
- edges?: Array<{
138
- node?: string;
139
- txHash?: string;
140
- comment?: string;
141
- userAddress?: string;
142
- timestamp?: number;
143
- userProfile?: string;
144
- /**
145
- * The Globally Unique ID of this object
146
- */
147
- id?: string;
148
- handle?: string;
149
- avatar?: {
150
- previewImage?: string;
151
- blurhash?: string;
152
- small?: string;
153
- };
154
- replies?: {
155
- count?: number;
156
- edges?: Array<{
157
- node?: {
158
- txHash?: string;
159
- comment?: string;
160
- userAddress?: string;
161
- timestamp?: number;
162
- userProfile?: string;
163
- /**
164
- * The Globally Unique ID of this object
165
- */
166
- id?: string;
167
- handle?: string;
168
- avatar?: {
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
- small?: string;
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
- chainId?: number;
191
- collectionAddress?: string;
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
- * response
390
+ * Successful operation
200
391
  */
201
392
  200: {
202
- zora20Tokens?: Array<{
393
+ zora20Tokens: Array<{
203
394
  /**
204
395
  * The Globally Unique ID of this object
205
396
  */
206
- id?: string;
207
- name?: string;
208
- description?: string;
209
- address?: string;
210
- symbol?: string;
211
- totalSupply?: string;
212
- totalVolume?: string;
213
- volume24h?: string;
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?: Array<{
217
- amount?: {
218
- currency?: {
219
- address?: string;
220
- };
221
- amountRaw?: string;
222
- amountDecimal?: number;
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
- marketCap?: string;
227
- marketCapDelta24h?: string;
228
- chainId?: number;
229
- creatorProfile?: string;
230
- handle?: string;
231
- avatar?: {
232
- previewImage?: string;
233
- blurhash?: string;
234
- small?: string;
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
- media?: {
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
- originalUri?: string;
239
- format?: string;
240
- previewImage?: string;
241
- medium?: string;
242
- blurhash?: string;
243
- };
244
- transfers?: {
245
- count?: number;
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
- uniqueHolders?: number;
248
- zoraComments?: {
507
+ transfers: {
249
508
  /**
250
- * Information to aid in pagination.
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
- pageInfo?: {
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?: boolean;
526
+ hasNextPage: boolean;
261
527
  };
262
- count?: number;
263
- edges?: Array<{
264
- node?: string;
265
- txHash?: string;
266
- comment?: string;
267
- userAddress?: string;
268
- timestamp?: number;
269
- userProfile?: string;
270
- /**
271
- * The Globally Unique ID of this object
272
- */
273
- id?: string;
274
- handle?: string;
275
- avatar?: {
276
- previewImage?: string;
277
- blurhash?: string;
278
- small?: string;
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
- * response
612
+ * Successful operation
308
613
  */
309
614
  200: {
310
- exploreList?: {
311
- edges?: Array<{
312
- node?: {
615
+ exploreList: {
616
+ edges: Array<{
617
+ node: {
313
618
  /**
314
619
  * The Globally Unique ID of this object
315
620
  */
316
- id?: string;
317
- name?: string;
318
- description?: string;
319
- address?: string;
320
- symbol?: string;
321
- totalSupply?: string;
322
- totalVolume?: string;
323
- volume24h?: string;
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?: Array<{
327
- amount?: {
328
- currency?: {
329
- address?: string;
330
- };
331
- amountRaw?: string;
332
- amountDecimal?: number;
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
- marketCap?: string;
337
- marketCapDelta24h?: string;
338
- chainId?: number;
339
- creatorProfile?: string;
340
- handle?: string;
341
- avatar?: {
342
- previewImage?: string;
343
- blurhash?: string;
344
- small?: string;
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
- media?: {
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
- originalUri?: string;
349
- format?: string;
350
- previewImage?: string;
351
- medium?: string;
352
- blurhash?: string;
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
- count?: number;
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
- uniqueHolders?: number;
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
- cursor?: string;
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?: boolean;
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
- * response
785
+ * Successful operation
392
786
  */
393
787
  200: {
394
- profile?: string;
395
- /**
396
- * The Globally Unique ID of this object
397
- */
398
- id?: string;
399
- handle?: string;
400
- avatar?: {
401
- small?: string;
402
- medium?: string;
403
- blurhash?: string;
404
- };
405
- username?: string;
406
- displayName?: string;
407
- bio?: string;
408
- website?: string;
409
- publicWallet?: {
410
- walletAddress?: string;
411
- };
412
- linkedWallets?: {
413
- edges?: Array<{
414
- node?: {
415
- walletType?: "PRIVY" | "EXTERNAL" | "SMART_WALLET";
416
- walletAddress?: string;
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
- * response
889
+ * Successful operation
440
890
  */
441
891
  200: {
442
- profile?: string;
443
- /**
444
- * The Globally Unique ID of this object
445
- */
446
- id?: string;
447
- handle?: string;
448
- avatar?: {
449
- previewImage?: string;
450
- blurhash?: string;
451
- small?: string;
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 Globally Unique ID of this object
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
- id?: string;
462
- coin?: {
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?: string;
467
- name?: string;
468
- description?: string;
469
- address?: string;
470
- symbol?: string;
471
- totalSupply?: string;
472
- totalVolume?: string;
473
- volume24h?: string;
474
- createdAt?: string;
475
- creatorAddress?: string;
476
- creatorEarnings?: Array<{
477
- amount?: {
478
- currency?: {
479
- address?: string;
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
- amountRaw?: string;
482
- amountDecimal?: number;
483
- };
484
- amountUsd?: string;
485
- }>;
486
- marketCap?: string;
487
- marketCapDelta24h?: string;
488
- chainId?: number;
489
- creatorProfile?: string;
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
- * Information to aid in pagination.
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
- pageInfo?: {
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
- * When paginating forwards, the cursor to continue.
998
+ * The Globally Unique ID of this object
515
999
  */
516
- endCursor?: string;
1000
+ id: string;
517
1001
  /**
518
- * When paginating forwards, are there more items?
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
- hasNextPage?: boolean;
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
- count?: number;
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 Globally Unique ID of this object
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
- id?: string;
534
- handle?: string;
535
- avatar?: {
536
- previewImage?: string;
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
  };