@zoralabs/coins-sdk 0.3.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +21 -0
- package/dist/actions/createCoin.d.ts +5 -1
- package/dist/actions/createCoin.d.ts.map +1 -1
- package/dist/api/explore.d.ts +5 -0
- package/dist/api/explore.d.ts.map +1 -1
- package/dist/api/index.d.ts +0 -2
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/queries.d.ts +21 -1
- package/dist/api/queries.d.ts.map +1 -1
- package/dist/client/sdk.gen.d.ts +230 -7
- package/dist/client/sdk.gen.d.ts.map +1 -1
- package/dist/client/types.gen.d.ts +772 -67
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/index.cjs +136 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +120 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/actions/createCoin.ts +17 -8
- package/src/api/explore.ts +29 -0
- package/src/api/index.ts +0 -4
- package/src/api/queries.ts +90 -0
- package/src/client/sdk.gen.ts +140 -20
- package/src/client/types.gen.ts +806 -74
- package/dist/api/pool-config.d.ts +0 -5
- package/dist/api/pool-config.d.ts.map +0 -1
- package/src/api/pool-config.ts +0 -17
package/dist/client/sdk.gen.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Options as ClientOptions, TDataShape, Client } from "@hey-api/client-fetch";
|
|
2
|
-
import type { GetApiKeyData, GetCoinData, GetCoinCommentsData, GetCoinHoldersData, GetCoinSwapsData, GetCoinsData, SetCreateUploadJwtData, GetExploreData, GetProfileData, GetProfileBalancesData, GetProfileCoinsData,
|
|
2
|
+
import type { GetApiKeyData, GetCoinData, GetCoinCommentsData, GetCoinHoldersData, GetCoinSwapsData, GetCoinsData, GetContentCoinPoolConfigData, SetCreateUploadJwtData, GetCreatorCoinPoolConfigData, GetExploreData, GetFeaturedCreatorsData, GetProfileData, GetProfileBalancesData, GetProfileCoinsData, GetProfileSocialData, GetTokenInfoData, GetTraderLeaderboardData, PostQuoteData, PostCreateContentData } from "./types.gen";
|
|
3
3
|
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = ClientOptions<TData, ThrowOnError> & {
|
|
4
4
|
/**
|
|
5
5
|
* You can provide a client instance returned by `createClient()` instead of
|
|
@@ -28,6 +28,7 @@ export declare const getApiKey: <ThrowOnError extends boolean = false>(options:
|
|
|
28
28
|
export declare const getCoin: <ThrowOnError extends boolean = false>(options: Options<GetCoinData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
29
29
|
zora20Token?: {
|
|
30
30
|
id: string;
|
|
31
|
+
platformBlocked: boolean;
|
|
31
32
|
name: string;
|
|
32
33
|
description: string;
|
|
33
34
|
address: string;
|
|
@@ -56,6 +57,7 @@ export declare const getCoin: <ThrowOnError extends boolean = false>(options: Op
|
|
|
56
57
|
creatorProfile?: {
|
|
57
58
|
id: string;
|
|
58
59
|
handle: string;
|
|
60
|
+
platformBlocked: boolean;
|
|
59
61
|
avatar?: {
|
|
60
62
|
previewImage: {
|
|
61
63
|
blurhash?: string;
|
|
@@ -67,21 +69,25 @@ export declare const getCoin: <ThrowOnError extends boolean = false>(options: Op
|
|
|
67
69
|
instagram?: {
|
|
68
70
|
username?: string;
|
|
69
71
|
displayName?: string;
|
|
72
|
+
followerCount?: number;
|
|
70
73
|
id?: string;
|
|
71
74
|
};
|
|
72
75
|
tiktok?: {
|
|
73
76
|
username?: string;
|
|
74
77
|
displayName?: string;
|
|
78
|
+
followerCount?: number;
|
|
75
79
|
id?: string;
|
|
76
80
|
};
|
|
77
81
|
twitter?: {
|
|
78
82
|
username?: string;
|
|
79
83
|
displayName?: string;
|
|
84
|
+
followerCount?: number;
|
|
80
85
|
id?: string;
|
|
81
86
|
};
|
|
82
87
|
farcaster?: {
|
|
83
88
|
username?: string;
|
|
84
89
|
displayName?: string;
|
|
90
|
+
followerCount?: number;
|
|
85
91
|
id?: string;
|
|
86
92
|
};
|
|
87
93
|
};
|
|
@@ -97,6 +103,8 @@ export declare const getCoin: <ThrowOnError extends boolean = false>(options: Op
|
|
|
97
103
|
medium: string;
|
|
98
104
|
blurhash?: string;
|
|
99
105
|
};
|
|
106
|
+
videoPreviewUrl?: string;
|
|
107
|
+
videoHlsUrl?: string;
|
|
100
108
|
};
|
|
101
109
|
uniqueHolders: number;
|
|
102
110
|
uniswapV4PoolKey: {
|
|
@@ -222,6 +230,7 @@ export declare const getCoinHolders: <ThrowOnError extends boolean = false>(opti
|
|
|
222
230
|
ownerProfile: {
|
|
223
231
|
id: string;
|
|
224
232
|
handle: string;
|
|
233
|
+
platformBlocked: boolean;
|
|
225
234
|
avatar?: {
|
|
226
235
|
previewImage: {
|
|
227
236
|
blurhash?: string;
|
|
@@ -261,6 +270,7 @@ export declare const getCoinSwaps: <ThrowOnError extends boolean = false>(option
|
|
|
261
270
|
senderProfile?: {
|
|
262
271
|
id: string;
|
|
263
272
|
handle: string;
|
|
273
|
+
platformBlocked: boolean;
|
|
264
274
|
avatar?: {
|
|
265
275
|
previewImage: {
|
|
266
276
|
blurhash?: string;
|
|
@@ -285,6 +295,7 @@ export declare const getCoinSwaps: <ThrowOnError extends boolean = false>(option
|
|
|
285
295
|
export declare const getCoins: <ThrowOnError extends boolean = false>(options: Options<GetCoinsData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
286
296
|
zora20Tokens: Array<{
|
|
287
297
|
id: string;
|
|
298
|
+
platformBlocked: boolean;
|
|
288
299
|
name: string;
|
|
289
300
|
description: string;
|
|
290
301
|
address: string;
|
|
@@ -313,6 +324,7 @@ export declare const getCoins: <ThrowOnError extends boolean = false>(options: O
|
|
|
313
324
|
creatorProfile?: {
|
|
314
325
|
id: string;
|
|
315
326
|
handle: string;
|
|
327
|
+
platformBlocked: boolean;
|
|
316
328
|
avatar?: {
|
|
317
329
|
previewImage: {
|
|
318
330
|
blurhash?: string;
|
|
@@ -324,21 +336,25 @@ export declare const getCoins: <ThrowOnError extends boolean = false>(options: O
|
|
|
324
336
|
instagram?: {
|
|
325
337
|
username?: string;
|
|
326
338
|
displayName?: string;
|
|
339
|
+
followerCount?: number;
|
|
327
340
|
id?: string;
|
|
328
341
|
};
|
|
329
342
|
tiktok?: {
|
|
330
343
|
username?: string;
|
|
331
344
|
displayName?: string;
|
|
345
|
+
followerCount?: number;
|
|
332
346
|
id?: string;
|
|
333
347
|
};
|
|
334
348
|
twitter?: {
|
|
335
349
|
username?: string;
|
|
336
350
|
displayName?: string;
|
|
351
|
+
followerCount?: number;
|
|
337
352
|
id?: string;
|
|
338
353
|
};
|
|
339
354
|
farcaster?: {
|
|
340
355
|
username?: string;
|
|
341
356
|
displayName?: string;
|
|
357
|
+
followerCount?: number;
|
|
342
358
|
id?: string;
|
|
343
359
|
};
|
|
344
360
|
};
|
|
@@ -354,6 +370,8 @@ export declare const getCoins: <ThrowOnError extends boolean = false>(options: O
|
|
|
354
370
|
medium: string;
|
|
355
371
|
blurhash?: string;
|
|
356
372
|
};
|
|
373
|
+
videoPreviewUrl?: string;
|
|
374
|
+
videoHlsUrl?: string;
|
|
357
375
|
};
|
|
358
376
|
uniqueHolders: number;
|
|
359
377
|
uniswapV4PoolKey: {
|
|
@@ -402,12 +420,38 @@ export declare const getCoins: <ThrowOnError extends boolean = false>(options: O
|
|
|
402
420
|
}>;
|
|
403
421
|
}>;
|
|
404
422
|
}, unknown, ThrowOnError>;
|
|
423
|
+
/**
|
|
424
|
+
* zoraSDK_contentCoinPoolConfig query
|
|
425
|
+
*/
|
|
426
|
+
export declare const getContentCoinPoolConfig: <ThrowOnError extends boolean = false>(options: Options<GetContentCoinPoolConfigData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
427
|
+
contentCoinPoolConfig: {
|
|
428
|
+
encodedConfig: string;
|
|
429
|
+
currency: string;
|
|
430
|
+
lowerTicks: Array<number>;
|
|
431
|
+
upperTicks: Array<number>;
|
|
432
|
+
numDiscoveryPositions: Array<number>;
|
|
433
|
+
maxDiscoverySupplyShares: Array<string>;
|
|
434
|
+
};
|
|
435
|
+
}, unknown, ThrowOnError>;
|
|
405
436
|
/**
|
|
406
437
|
* zoraSDK_createUploadJWT mutation
|
|
407
438
|
*/
|
|
408
439
|
export declare const setCreateUploadJwt: <ThrowOnError extends boolean = false>(options?: Options<SetCreateUploadJwtData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
409
440
|
createUploadJwtFromApiKey: string;
|
|
410
441
|
}, unknown, ThrowOnError>;
|
|
442
|
+
/**
|
|
443
|
+
* zoraSDK_creatorCoinPoolConfig query
|
|
444
|
+
*/
|
|
445
|
+
export declare const getCreatorCoinPoolConfig: <ThrowOnError extends boolean = false>(options?: Options<GetCreatorCoinPoolConfigData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
446
|
+
creatorCoinPoolConfig: {
|
|
447
|
+
encodedConfig: string;
|
|
448
|
+
currency: string;
|
|
449
|
+
lowerTicks: Array<number>;
|
|
450
|
+
upperTicks: Array<number>;
|
|
451
|
+
numDiscoveryPositions: Array<number>;
|
|
452
|
+
maxDiscoverySupplyShares: Array<string>;
|
|
453
|
+
};
|
|
454
|
+
}, unknown, ThrowOnError>;
|
|
411
455
|
/**
|
|
412
456
|
* zoraSDK_explore query
|
|
413
457
|
*/
|
|
@@ -416,6 +460,7 @@ export declare const getExplore: <ThrowOnError extends boolean = false>(options:
|
|
|
416
460
|
edges: Array<{
|
|
417
461
|
node: {
|
|
418
462
|
id: string;
|
|
463
|
+
platformBlocked: boolean;
|
|
419
464
|
name: string;
|
|
420
465
|
description: string;
|
|
421
466
|
address: string;
|
|
@@ -444,6 +489,7 @@ export declare const getExplore: <ThrowOnError extends boolean = false>(options:
|
|
|
444
489
|
creatorProfile?: {
|
|
445
490
|
id: string;
|
|
446
491
|
handle: string;
|
|
492
|
+
platformBlocked: boolean;
|
|
447
493
|
avatar?: {
|
|
448
494
|
previewImage: {
|
|
449
495
|
blurhash?: string;
|
|
@@ -455,21 +501,25 @@ export declare const getExplore: <ThrowOnError extends boolean = false>(options:
|
|
|
455
501
|
instagram?: {
|
|
456
502
|
username?: string;
|
|
457
503
|
displayName?: string;
|
|
504
|
+
followerCount?: number;
|
|
458
505
|
id?: string;
|
|
459
506
|
};
|
|
460
507
|
tiktok?: {
|
|
461
508
|
username?: string;
|
|
462
509
|
displayName?: string;
|
|
510
|
+
followerCount?: number;
|
|
463
511
|
id?: string;
|
|
464
512
|
};
|
|
465
513
|
twitter?: {
|
|
466
514
|
username?: string;
|
|
467
515
|
displayName?: string;
|
|
516
|
+
followerCount?: number;
|
|
468
517
|
id?: string;
|
|
469
518
|
};
|
|
470
519
|
farcaster?: {
|
|
471
520
|
username?: string;
|
|
472
521
|
displayName?: string;
|
|
522
|
+
followerCount?: number;
|
|
473
523
|
id?: string;
|
|
474
524
|
};
|
|
475
525
|
};
|
|
@@ -485,6 +535,8 @@ export declare const getExplore: <ThrowOnError extends boolean = false>(options:
|
|
|
485
535
|
medium: string;
|
|
486
536
|
blurhash?: string;
|
|
487
537
|
};
|
|
538
|
+
videoPreviewUrl?: string;
|
|
539
|
+
videoHlsUrl?: string;
|
|
488
540
|
};
|
|
489
541
|
uniqueHolders: number;
|
|
490
542
|
uniswapV4PoolKey: {
|
|
@@ -504,6 +556,24 @@ export declare const getExplore: <ThrowOnError extends boolean = false>(options:
|
|
|
504
556
|
};
|
|
505
557
|
};
|
|
506
558
|
}, unknown, ThrowOnError>;
|
|
559
|
+
/**
|
|
560
|
+
* zoraSDK_featuredCreators query
|
|
561
|
+
*/
|
|
562
|
+
export declare const getFeaturedCreators: <ThrowOnError extends boolean = false>(options?: Options<GetFeaturedCreatorsData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
563
|
+
traderLeaderboardFeaturedCreators: {
|
|
564
|
+
count: number;
|
|
565
|
+
pageInfo: {
|
|
566
|
+
hasNextPage: boolean;
|
|
567
|
+
endCursor?: string;
|
|
568
|
+
};
|
|
569
|
+
edges: Array<{
|
|
570
|
+
node: {
|
|
571
|
+
id: string;
|
|
572
|
+
handle: string;
|
|
573
|
+
};
|
|
574
|
+
}>;
|
|
575
|
+
};
|
|
576
|
+
}, unknown, ThrowOnError>;
|
|
507
577
|
/**
|
|
508
578
|
* zoraSDK_profile query
|
|
509
579
|
*/
|
|
@@ -511,37 +581,44 @@ export declare const getProfile: <ThrowOnError extends boolean = false>(options:
|
|
|
511
581
|
profile?: {
|
|
512
582
|
id: string;
|
|
513
583
|
handle: string;
|
|
584
|
+
platformBlocked: boolean;
|
|
514
585
|
avatar?: {
|
|
515
586
|
small: string;
|
|
516
587
|
medium: string;
|
|
517
588
|
blurhash?: string;
|
|
518
589
|
};
|
|
519
590
|
username: string;
|
|
591
|
+
createdAt: string;
|
|
520
592
|
displayName?: string;
|
|
521
593
|
bio: string;
|
|
522
594
|
website?: string;
|
|
523
595
|
publicWallet: {
|
|
524
596
|
walletAddress: string;
|
|
597
|
+
walletType: "PRIVY" | "EXTERNAL" | "SMART_WALLET";
|
|
525
598
|
};
|
|
526
599
|
socialAccounts: {
|
|
527
600
|
instagram?: {
|
|
528
601
|
username?: string;
|
|
529
602
|
displayName?: string;
|
|
603
|
+
followerCount?: number;
|
|
530
604
|
id?: string;
|
|
531
605
|
};
|
|
532
606
|
tiktok?: {
|
|
533
607
|
username?: string;
|
|
534
608
|
displayName?: string;
|
|
609
|
+
followerCount?: number;
|
|
535
610
|
id?: string;
|
|
536
611
|
};
|
|
537
612
|
twitter?: {
|
|
538
613
|
username?: string;
|
|
539
614
|
displayName?: string;
|
|
615
|
+
followerCount?: number;
|
|
540
616
|
id?: string;
|
|
541
617
|
};
|
|
542
618
|
farcaster?: {
|
|
543
619
|
username?: string;
|
|
544
620
|
displayName?: string;
|
|
621
|
+
followerCount?: number;
|
|
545
622
|
id?: string;
|
|
546
623
|
};
|
|
547
624
|
};
|
|
@@ -567,6 +644,7 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
567
644
|
profile?: {
|
|
568
645
|
id: string;
|
|
569
646
|
handle: string;
|
|
647
|
+
platformBlocked: boolean;
|
|
570
648
|
avatar?: {
|
|
571
649
|
previewImage: {
|
|
572
650
|
blurhash?: string;
|
|
@@ -578,21 +656,25 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
578
656
|
instagram?: {
|
|
579
657
|
username?: string;
|
|
580
658
|
displayName?: string;
|
|
659
|
+
followerCount?: number;
|
|
581
660
|
id?: string;
|
|
582
661
|
};
|
|
583
662
|
tiktok?: {
|
|
584
663
|
username?: string;
|
|
585
664
|
displayName?: string;
|
|
665
|
+
followerCount?: number;
|
|
586
666
|
id?: string;
|
|
587
667
|
};
|
|
588
668
|
twitter?: {
|
|
589
669
|
username?: string;
|
|
590
670
|
displayName?: string;
|
|
671
|
+
followerCount?: number;
|
|
591
672
|
id?: string;
|
|
592
673
|
};
|
|
593
674
|
farcaster?: {
|
|
594
675
|
username?: string;
|
|
595
676
|
displayName?: string;
|
|
677
|
+
followerCount?: number;
|
|
596
678
|
id?: string;
|
|
597
679
|
};
|
|
598
680
|
};
|
|
@@ -607,6 +689,7 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
607
689
|
id: string;
|
|
608
690
|
coin?: {
|
|
609
691
|
id: string;
|
|
692
|
+
platformBlocked: boolean;
|
|
610
693
|
name: string;
|
|
611
694
|
description: string;
|
|
612
695
|
address: string;
|
|
@@ -635,6 +718,7 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
635
718
|
creatorProfile?: {
|
|
636
719
|
id: string;
|
|
637
720
|
handle: string;
|
|
721
|
+
platformBlocked: boolean;
|
|
638
722
|
avatar?: {
|
|
639
723
|
previewImage: {
|
|
640
724
|
blurhash?: string;
|
|
@@ -646,21 +730,25 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
646
730
|
instagram?: {
|
|
647
731
|
username?: string;
|
|
648
732
|
displayName?: string;
|
|
733
|
+
followerCount?: number;
|
|
649
734
|
id?: string;
|
|
650
735
|
};
|
|
651
736
|
tiktok?: {
|
|
652
737
|
username?: string;
|
|
653
738
|
displayName?: string;
|
|
739
|
+
followerCount?: number;
|
|
654
740
|
id?: string;
|
|
655
741
|
};
|
|
656
742
|
twitter?: {
|
|
657
743
|
username?: string;
|
|
658
744
|
displayName?: string;
|
|
745
|
+
followerCount?: number;
|
|
659
746
|
id?: string;
|
|
660
747
|
};
|
|
661
748
|
farcaster?: {
|
|
662
749
|
username?: string;
|
|
663
750
|
displayName?: string;
|
|
751
|
+
followerCount?: number;
|
|
664
752
|
id?: string;
|
|
665
753
|
};
|
|
666
754
|
};
|
|
@@ -676,6 +764,8 @@ export declare const getProfileBalances: <ThrowOnError extends boolean = false>(
|
|
|
676
764
|
medium: string;
|
|
677
765
|
blurhash?: string;
|
|
678
766
|
};
|
|
767
|
+
videoPreviewUrl?: string;
|
|
768
|
+
videoHlsUrl?: string;
|
|
679
769
|
};
|
|
680
770
|
uniqueHolders: number;
|
|
681
771
|
uniswapV4PoolKey: {
|
|
@@ -703,6 +793,7 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
703
793
|
profile?: {
|
|
704
794
|
id: string;
|
|
705
795
|
handle: string;
|
|
796
|
+
platformBlocked: boolean;
|
|
706
797
|
avatar?: {
|
|
707
798
|
previewImage: {
|
|
708
799
|
blurhash?: string;
|
|
@@ -714,21 +805,25 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
714
805
|
instagram?: {
|
|
715
806
|
username?: string;
|
|
716
807
|
displayName?: string;
|
|
808
|
+
followerCount?: number;
|
|
717
809
|
id?: string;
|
|
718
810
|
};
|
|
719
811
|
tiktok?: {
|
|
720
812
|
username?: string;
|
|
721
813
|
displayName?: string;
|
|
814
|
+
followerCount?: number;
|
|
722
815
|
id?: string;
|
|
723
816
|
};
|
|
724
817
|
twitter?: {
|
|
725
818
|
username?: string;
|
|
726
819
|
displayName?: string;
|
|
820
|
+
followerCount?: number;
|
|
727
821
|
id?: string;
|
|
728
822
|
};
|
|
729
823
|
farcaster?: {
|
|
730
824
|
username?: string;
|
|
731
825
|
displayName?: string;
|
|
826
|
+
followerCount?: number;
|
|
732
827
|
id?: string;
|
|
733
828
|
};
|
|
734
829
|
};
|
|
@@ -740,6 +835,7 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
740
835
|
edges: Array<{
|
|
741
836
|
node: {
|
|
742
837
|
id: string;
|
|
838
|
+
platformBlocked: boolean;
|
|
743
839
|
name: string;
|
|
744
840
|
description: string;
|
|
745
841
|
address: string;
|
|
@@ -768,6 +864,7 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
768
864
|
creatorProfile?: {
|
|
769
865
|
id: string;
|
|
770
866
|
handle: string;
|
|
867
|
+
platformBlocked: boolean;
|
|
771
868
|
avatar?: {
|
|
772
869
|
previewImage: {
|
|
773
870
|
blurhash?: string;
|
|
@@ -779,21 +876,25 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
779
876
|
instagram?: {
|
|
780
877
|
username?: string;
|
|
781
878
|
displayName?: string;
|
|
879
|
+
followerCount?: number;
|
|
782
880
|
id?: string;
|
|
783
881
|
};
|
|
784
882
|
tiktok?: {
|
|
785
883
|
username?: string;
|
|
786
884
|
displayName?: string;
|
|
885
|
+
followerCount?: number;
|
|
787
886
|
id?: string;
|
|
788
887
|
};
|
|
789
888
|
twitter?: {
|
|
790
889
|
username?: string;
|
|
791
890
|
displayName?: string;
|
|
891
|
+
followerCount?: number;
|
|
792
892
|
id?: string;
|
|
793
893
|
};
|
|
794
894
|
farcaster?: {
|
|
795
895
|
username?: string;
|
|
796
896
|
displayName?: string;
|
|
897
|
+
followerCount?: number;
|
|
797
898
|
id?: string;
|
|
798
899
|
};
|
|
799
900
|
};
|
|
@@ -809,6 +910,8 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
809
910
|
medium: string;
|
|
810
911
|
blurhash?: string;
|
|
811
912
|
};
|
|
913
|
+
videoPreviewUrl?: string;
|
|
914
|
+
videoHlsUrl?: string;
|
|
812
915
|
};
|
|
813
916
|
uniqueHolders: number;
|
|
814
917
|
uniswapV4PoolKey: {
|
|
@@ -856,6 +959,129 @@ export declare const getProfileCoins: <ThrowOnError extends boolean = false>(opt
|
|
|
856
959
|
};
|
|
857
960
|
};
|
|
858
961
|
}, unknown, ThrowOnError>;
|
|
962
|
+
/**
|
|
963
|
+
* zoraSDK_profileSocial query
|
|
964
|
+
*/
|
|
965
|
+
export declare const getProfileSocial: <ThrowOnError extends boolean = false>(options: Options<GetProfileSocialData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
966
|
+
profile?: {
|
|
967
|
+
username: string;
|
|
968
|
+
createdAt: string;
|
|
969
|
+
displayName?: string;
|
|
970
|
+
bio: string;
|
|
971
|
+
website?: string;
|
|
972
|
+
publicWallet: {
|
|
973
|
+
walletAddress: string;
|
|
974
|
+
walletType: "PRIVY" | "EXTERNAL" | "SMART_WALLET";
|
|
975
|
+
};
|
|
976
|
+
socialAccounts: {
|
|
977
|
+
instagram?: {
|
|
978
|
+
username?: string;
|
|
979
|
+
displayName?: string;
|
|
980
|
+
followerCount?: number;
|
|
981
|
+
id?: string;
|
|
982
|
+
};
|
|
983
|
+
tiktok?: {
|
|
984
|
+
username?: string;
|
|
985
|
+
displayName?: string;
|
|
986
|
+
followerCount?: number;
|
|
987
|
+
id?: string;
|
|
988
|
+
};
|
|
989
|
+
twitter?: {
|
|
990
|
+
username?: string;
|
|
991
|
+
displayName?: string;
|
|
992
|
+
followerCount?: number;
|
|
993
|
+
id?: string;
|
|
994
|
+
};
|
|
995
|
+
farcaster?: {
|
|
996
|
+
username?: string;
|
|
997
|
+
displayName?: string;
|
|
998
|
+
followerCount?: number;
|
|
999
|
+
id?: string;
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
linkedWallets: {
|
|
1003
|
+
edges: Array<{
|
|
1004
|
+
node: {
|
|
1005
|
+
walletType: "PRIVY" | "EXTERNAL" | "SMART_WALLET";
|
|
1006
|
+
walletAddress: string;
|
|
1007
|
+
};
|
|
1008
|
+
}>;
|
|
1009
|
+
};
|
|
1010
|
+
creatorCoin?: {
|
|
1011
|
+
address: string;
|
|
1012
|
+
marketCap: string;
|
|
1013
|
+
marketCapDelta24h: string;
|
|
1014
|
+
};
|
|
1015
|
+
handle: string;
|
|
1016
|
+
platformBlocked: boolean;
|
|
1017
|
+
avatar?: {
|
|
1018
|
+
small: string;
|
|
1019
|
+
medium: string;
|
|
1020
|
+
blurhash?: string;
|
|
1021
|
+
};
|
|
1022
|
+
usernameChangesCount: number;
|
|
1023
|
+
externalWallet?: {
|
|
1024
|
+
ensName?: string;
|
|
1025
|
+
walletAddress: string;
|
|
1026
|
+
};
|
|
1027
|
+
followers: {
|
|
1028
|
+
count: number;
|
|
1029
|
+
};
|
|
1030
|
+
following: {
|
|
1031
|
+
count: number;
|
|
1032
|
+
};
|
|
1033
|
+
socialAccountLinkedEvents: {
|
|
1034
|
+
edges: Array<{
|
|
1035
|
+
node: {
|
|
1036
|
+
id: string;
|
|
1037
|
+
platform: "TWITTER" | "TIKTOK" | "FARCASTER" | "INSTAGRAM";
|
|
1038
|
+
socialAccountUsername: string;
|
|
1039
|
+
occurredAt: string;
|
|
1040
|
+
eventType: "LINK" | "UNLINK";
|
|
1041
|
+
};
|
|
1042
|
+
}>;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
}, unknown, ThrowOnError>;
|
|
1046
|
+
/**
|
|
1047
|
+
* zoraSDK_tokenInfo query
|
|
1048
|
+
*/
|
|
1049
|
+
export declare const getTokenInfo: <ThrowOnError extends boolean = false>(options: Options<GetTokenInfoData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
1050
|
+
erc20Token?: {
|
|
1051
|
+
currency?: {
|
|
1052
|
+
priceUsd?: string;
|
|
1053
|
+
decimals?: number;
|
|
1054
|
+
name?: string;
|
|
1055
|
+
symbol?: string;
|
|
1056
|
+
icon?: string;
|
|
1057
|
+
};
|
|
1058
|
+
};
|
|
1059
|
+
}, unknown, ThrowOnError>;
|
|
1060
|
+
/**
|
|
1061
|
+
* zoraSDK_traderLeaderboard query
|
|
1062
|
+
*/
|
|
1063
|
+
export declare const getTraderLeaderboard: <ThrowOnError extends boolean = false>(options?: Options<GetTraderLeaderboardData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
1064
|
+
exploreTraderLeaderboard: {
|
|
1065
|
+
count: number;
|
|
1066
|
+
edges: Array<{
|
|
1067
|
+
node: {
|
|
1068
|
+
entityName: string;
|
|
1069
|
+
score: number;
|
|
1070
|
+
weekVolumeUsd: number;
|
|
1071
|
+
weekTradesCount: number;
|
|
1072
|
+
weekGrossVolumeZora: number;
|
|
1073
|
+
traderProfile?: {
|
|
1074
|
+
handle: string;
|
|
1075
|
+
id: string;
|
|
1076
|
+
};
|
|
1077
|
+
};
|
|
1078
|
+
}>;
|
|
1079
|
+
pageInfo: {
|
|
1080
|
+
hasNextPage: boolean;
|
|
1081
|
+
endCursor?: string;
|
|
1082
|
+
};
|
|
1083
|
+
};
|
|
1084
|
+
}, unknown, ThrowOnError>;
|
|
859
1085
|
export declare const postQuote: <ThrowOnError extends boolean = false>(options?: Options<PostQuoteData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
860
1086
|
success: boolean;
|
|
861
1087
|
call: {
|
|
@@ -892,17 +1118,14 @@ export declare const postQuote: <ThrowOnError extends boolean = false>(options?:
|
|
|
892
1118
|
}, {
|
|
893
1119
|
error?: string;
|
|
894
1120
|
}, ThrowOnError>;
|
|
895
|
-
export declare const getCreateContentPoolConfig: <ThrowOnError extends boolean = false>(options?: Options<GetCreateContentPoolConfigData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
896
|
-
poolConfig: string;
|
|
897
|
-
}, {
|
|
898
|
-
error: string;
|
|
899
|
-
}, ThrowOnError>;
|
|
900
1121
|
export declare const postCreateContent: <ThrowOnError extends boolean = false>(options?: Options<PostCreateContentData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<{
|
|
901
|
-
calls
|
|
1122
|
+
calls: Array<{
|
|
902
1123
|
to: string;
|
|
903
1124
|
data: string;
|
|
904
1125
|
value: string;
|
|
905
1126
|
}>;
|
|
1127
|
+
predictedCoinAddress: string;
|
|
1128
|
+
backingCurrency?: string;
|
|
906
1129
|
}, {
|
|
907
1130
|
error: string;
|
|
908
1131
|
}, ThrowOnError>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../../src/client/sdk.gen.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,OAAO,IAAI,aAAa,EACxB,UAAU,EACV,MAAM,EACP,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EACV,aAAa,EAEb,WAAW,EAEX,mBAAmB,EAEnB,kBAAkB,EAElB,gBAAgB,EAEhB,YAAY,EAEZ,sBAAsB,EAEtB,cAAc,EAEd,cAAc,EAEd,sBAAsB,EAEtB,mBAAmB,EAEnB,aAAa,EAGb,
|
|
1
|
+
{"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../../src/client/sdk.gen.ts"],"names":[],"mappings":"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"}
|