@zoralabs/coins-sdk 0.4.7 → 0.4.9

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.
@@ -3514,6 +3514,581 @@ export type GetTraderLeaderboardResponses = {
3514
3514
  export type GetTraderLeaderboardResponse =
3515
3515
  GetTraderLeaderboardResponses[keyof GetTraderLeaderboardResponses];
3516
3516
 
3517
+ export type GetTrendCoinData = {
3518
+ body?: never;
3519
+ path?: never;
3520
+ query: {
3521
+ ticker: string;
3522
+ chainId?: number;
3523
+ };
3524
+ url: "/trendCoin";
3525
+ };
3526
+
3527
+ export type GetTrendCoinErrors = {
3528
+ /**
3529
+ * Bad request
3530
+ */
3531
+ 400: unknown;
3532
+ /**
3533
+ * Internal server error
3534
+ */
3535
+ 500: unknown;
3536
+ };
3537
+
3538
+ export type GetTrendCoinResponses = {
3539
+ /**
3540
+ * Successful operation
3541
+ */
3542
+ 200: {
3543
+ trendCoin?: {
3544
+ /**
3545
+ * The Globally Unique ID of this object
3546
+ */
3547
+ id: string;
3548
+ /**
3549
+ * The `Boolean` scalar type represents `true` or `false`.
3550
+ */
3551
+ platformBlocked: boolean;
3552
+ /**
3553
+ * 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.
3554
+ */
3555
+ name: string;
3556
+ /**
3557
+ * 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.
3558
+ */
3559
+ description: string;
3560
+ address: string;
3561
+ coinType: "CREATOR" | "CONTENT" | "TREND";
3562
+ /**
3563
+ * 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.
3564
+ */
3565
+ symbol: string;
3566
+ /**
3567
+ * 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.
3568
+ */
3569
+ totalSupply: string;
3570
+ /**
3571
+ * 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.
3572
+ */
3573
+ totalVolume: string;
3574
+ /**
3575
+ * 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.
3576
+ */
3577
+ volume24h: string;
3578
+ /**
3579
+ * Date with time (isoformat)
3580
+ */
3581
+ createdAt?: string;
3582
+ creatorAddress?: string;
3583
+ poolCurrencyToken?: {
3584
+ /**
3585
+ * 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.
3586
+ */
3587
+ address?: string;
3588
+ /**
3589
+ * 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.
3590
+ */
3591
+ name?: string;
3592
+ /**
3593
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3594
+ */
3595
+ decimals?: number;
3596
+ };
3597
+ tokenPrice?: {
3598
+ /**
3599
+ * Price of the pool in respect to USDC, not always available
3600
+ */
3601
+ priceInUsdc?: string;
3602
+ /**
3603
+ * Ethereum address of the currency
3604
+ */
3605
+ currencyAddress: string;
3606
+ /**
3607
+ * Price against the native token of the primary currency pool
3608
+ */
3609
+ priceInPoolToken: string;
3610
+ };
3611
+ /**
3612
+ * 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.
3613
+ */
3614
+ marketCap: string;
3615
+ /**
3616
+ * 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.
3617
+ */
3618
+ marketCapDelta24h: string;
3619
+ /**
3620
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3621
+ */
3622
+ chainId: number;
3623
+ /**
3624
+ * 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.
3625
+ */
3626
+ tokenUri?: string;
3627
+ platformReferrerAddress?: string;
3628
+ payoutRecipientAddress?: string;
3629
+ creatorProfile?: {
3630
+ /**
3631
+ * The Globally Unique ID of this object
3632
+ */
3633
+ id: string;
3634
+ /**
3635
+ * Manually set username, or truncated wallet address if the profile isn't a GraphQLAccountProfile. For full wallet address, use the profile_id field instead.
3636
+ */
3637
+ handle: string;
3638
+ /**
3639
+ * The `Boolean` scalar type represents `true` or `false`.
3640
+ */
3641
+ platformBlocked: boolean;
3642
+ avatar?: {
3643
+ previewImage: {
3644
+ /**
3645
+ * 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.
3646
+ */
3647
+ blurhash?: string;
3648
+ /**
3649
+ * 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.
3650
+ */
3651
+ medium: string;
3652
+ /**
3653
+ * 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.
3654
+ */
3655
+ small: string;
3656
+ };
3657
+ };
3658
+ socialAccounts: {
3659
+ instagram?: {
3660
+ /**
3661
+ * 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.
3662
+ */
3663
+ username?: string;
3664
+ /**
3665
+ * 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.
3666
+ */
3667
+ displayName?: string;
3668
+ /**
3669
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3670
+ */
3671
+ followerCount?: number;
3672
+ /**
3673
+ * 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.
3674
+ */
3675
+ id?: string;
3676
+ };
3677
+ tiktok?: {
3678
+ /**
3679
+ * 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.
3680
+ */
3681
+ username?: string;
3682
+ /**
3683
+ * 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.
3684
+ */
3685
+ displayName?: string;
3686
+ /**
3687
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3688
+ */
3689
+ followerCount?: number;
3690
+ /**
3691
+ * 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.
3692
+ */
3693
+ id?: string;
3694
+ };
3695
+ twitter?: {
3696
+ /**
3697
+ * 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.
3698
+ */
3699
+ username?: string;
3700
+ /**
3701
+ * 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.
3702
+ */
3703
+ displayName?: string;
3704
+ /**
3705
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3706
+ */
3707
+ followerCount?: number;
3708
+ /**
3709
+ * 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.
3710
+ */
3711
+ id?: string;
3712
+ };
3713
+ farcaster?: {
3714
+ /**
3715
+ * 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.
3716
+ */
3717
+ username?: string;
3718
+ /**
3719
+ * 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.
3720
+ */
3721
+ displayName?: string;
3722
+ /**
3723
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3724
+ */
3725
+ followerCount?: number;
3726
+ /**
3727
+ * 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.
3728
+ */
3729
+ id?: string;
3730
+ };
3731
+ };
3732
+ creatorCoin?: {
3733
+ address: string;
3734
+ };
3735
+ };
3736
+ mediaContent?: {
3737
+ /**
3738
+ * 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.
3739
+ */
3740
+ mimeType?: string;
3741
+ /**
3742
+ * 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.
3743
+ */
3744
+ originalUri: string;
3745
+ previewImage?: {
3746
+ /**
3747
+ * 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.
3748
+ */
3749
+ small: string;
3750
+ /**
3751
+ * 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.
3752
+ */
3753
+ medium: string;
3754
+ /**
3755
+ * 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.
3756
+ */
3757
+ blurhash?: string;
3758
+ };
3759
+ /**
3760
+ * 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.
3761
+ */
3762
+ videoPreviewUrl?: string;
3763
+ /**
3764
+ * 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.
3765
+ */
3766
+ videoHlsUrl?: string;
3767
+ };
3768
+ /**
3769
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3770
+ */
3771
+ uniqueHolders: number;
3772
+ uniswapV4PoolKey: {
3773
+ token0Address: string;
3774
+ token1Address: string;
3775
+ /**
3776
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3777
+ */
3778
+ fee: number;
3779
+ /**
3780
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3781
+ */
3782
+ tickSpacing: number;
3783
+ hookAddress: string;
3784
+ };
3785
+ uniswapV3PoolAddress: string;
3786
+ };
3787
+ };
3788
+ };
3789
+
3790
+ export type GetTrendCoinResponse =
3791
+ GetTrendCoinResponses[keyof GetTrendCoinResponses];
3792
+
3793
+ export type GetTrendsByNameData = {
3794
+ body?: never;
3795
+ path?: never;
3796
+ query: {
3797
+ name: string;
3798
+ first?: number;
3799
+ after?: string;
3800
+ };
3801
+ url: "/trendsByName";
3802
+ };
3803
+
3804
+ export type GetTrendsByNameErrors = {
3805
+ /**
3806
+ * Bad request
3807
+ */
3808
+ 400: unknown;
3809
+ /**
3810
+ * Internal server error
3811
+ */
3812
+ 500: unknown;
3813
+ };
3814
+
3815
+ export type GetTrendsByNameResponses = {
3816
+ /**
3817
+ * Successful operation
3818
+ */
3819
+ 200: {
3820
+ trendsByName: {
3821
+ pageInfo: {
3822
+ /**
3823
+ * When paginating backwards, the cursor to continue.
3824
+ */
3825
+ startCursor?: string;
3826
+ /**
3827
+ * When paginating forwards, the cursor to continue.
3828
+ */
3829
+ endCursor?: string;
3830
+ };
3831
+ /**
3832
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3833
+ */
3834
+ count: number;
3835
+ edges: Array<{
3836
+ node: {
3837
+ /**
3838
+ * The Globally Unique ID of this object
3839
+ */
3840
+ id: string;
3841
+ /**
3842
+ * The `Boolean` scalar type represents `true` or `false`.
3843
+ */
3844
+ platformBlocked: boolean;
3845
+ /**
3846
+ * 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.
3847
+ */
3848
+ name: string;
3849
+ /**
3850
+ * 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.
3851
+ */
3852
+ description: string;
3853
+ address: string;
3854
+ coinType: "CREATOR" | "CONTENT" | "TREND";
3855
+ /**
3856
+ * 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.
3857
+ */
3858
+ symbol: string;
3859
+ /**
3860
+ * 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.
3861
+ */
3862
+ totalSupply: string;
3863
+ /**
3864
+ * 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.
3865
+ */
3866
+ totalVolume: string;
3867
+ /**
3868
+ * 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.
3869
+ */
3870
+ volume24h: string;
3871
+ /**
3872
+ * Date with time (isoformat)
3873
+ */
3874
+ createdAt?: string;
3875
+ creatorAddress?: string;
3876
+ poolCurrencyToken?: {
3877
+ /**
3878
+ * 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.
3879
+ */
3880
+ address?: string;
3881
+ /**
3882
+ * 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.
3883
+ */
3884
+ name?: string;
3885
+ /**
3886
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3887
+ */
3888
+ decimals?: number;
3889
+ };
3890
+ tokenPrice?: {
3891
+ /**
3892
+ * Price of the pool in respect to USDC, not always available
3893
+ */
3894
+ priceInUsdc?: string;
3895
+ /**
3896
+ * Ethereum address of the currency
3897
+ */
3898
+ currencyAddress: string;
3899
+ /**
3900
+ * Price against the native token of the primary currency pool
3901
+ */
3902
+ priceInPoolToken: string;
3903
+ };
3904
+ /**
3905
+ * 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.
3906
+ */
3907
+ marketCap: string;
3908
+ /**
3909
+ * 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.
3910
+ */
3911
+ marketCapDelta24h: string;
3912
+ /**
3913
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3914
+ */
3915
+ chainId: number;
3916
+ /**
3917
+ * 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.
3918
+ */
3919
+ tokenUri?: string;
3920
+ platformReferrerAddress?: string;
3921
+ payoutRecipientAddress?: string;
3922
+ creatorProfile?: {
3923
+ /**
3924
+ * The Globally Unique ID of this object
3925
+ */
3926
+ id: string;
3927
+ /**
3928
+ * Manually set username, or truncated wallet address if the profile isn't a GraphQLAccountProfile. For full wallet address, use the profile_id field instead.
3929
+ */
3930
+ handle: string;
3931
+ /**
3932
+ * The `Boolean` scalar type represents `true` or `false`.
3933
+ */
3934
+ platformBlocked: boolean;
3935
+ avatar?: {
3936
+ previewImage: {
3937
+ /**
3938
+ * 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.
3939
+ */
3940
+ blurhash?: string;
3941
+ /**
3942
+ * 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.
3943
+ */
3944
+ medium: string;
3945
+ /**
3946
+ * 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.
3947
+ */
3948
+ small: string;
3949
+ };
3950
+ };
3951
+ socialAccounts: {
3952
+ instagram?: {
3953
+ /**
3954
+ * 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.
3955
+ */
3956
+ username?: string;
3957
+ /**
3958
+ * 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.
3959
+ */
3960
+ displayName?: string;
3961
+ /**
3962
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3963
+ */
3964
+ followerCount?: number;
3965
+ /**
3966
+ * 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.
3967
+ */
3968
+ id?: string;
3969
+ };
3970
+ tiktok?: {
3971
+ /**
3972
+ * 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.
3973
+ */
3974
+ username?: string;
3975
+ /**
3976
+ * 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.
3977
+ */
3978
+ displayName?: string;
3979
+ /**
3980
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3981
+ */
3982
+ followerCount?: number;
3983
+ /**
3984
+ * 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.
3985
+ */
3986
+ id?: string;
3987
+ };
3988
+ twitter?: {
3989
+ /**
3990
+ * 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.
3991
+ */
3992
+ username?: string;
3993
+ /**
3994
+ * 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.
3995
+ */
3996
+ displayName?: string;
3997
+ /**
3998
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
3999
+ */
4000
+ followerCount?: number;
4001
+ /**
4002
+ * 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.
4003
+ */
4004
+ id?: string;
4005
+ };
4006
+ farcaster?: {
4007
+ /**
4008
+ * 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.
4009
+ */
4010
+ username?: string;
4011
+ /**
4012
+ * 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.
4013
+ */
4014
+ displayName?: string;
4015
+ /**
4016
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
4017
+ */
4018
+ followerCount?: number;
4019
+ /**
4020
+ * 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.
4021
+ */
4022
+ id?: string;
4023
+ };
4024
+ };
4025
+ creatorCoin?: {
4026
+ address: string;
4027
+ };
4028
+ };
4029
+ mediaContent?: {
4030
+ /**
4031
+ * 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.
4032
+ */
4033
+ mimeType?: string;
4034
+ /**
4035
+ * 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.
4036
+ */
4037
+ originalUri: string;
4038
+ previewImage?: {
4039
+ /**
4040
+ * 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.
4041
+ */
4042
+ small: string;
4043
+ /**
4044
+ * 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.
4045
+ */
4046
+ medium: string;
4047
+ /**
4048
+ * 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.
4049
+ */
4050
+ blurhash?: string;
4051
+ };
4052
+ /**
4053
+ * 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.
4054
+ */
4055
+ videoPreviewUrl?: string;
4056
+ /**
4057
+ * 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.
4058
+ */
4059
+ videoHlsUrl?: string;
4060
+ };
4061
+ /**
4062
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
4063
+ */
4064
+ uniqueHolders: number;
4065
+ uniswapV4PoolKey: {
4066
+ token0Address: string;
4067
+ token1Address: string;
4068
+ /**
4069
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
4070
+ */
4071
+ fee: number;
4072
+ /**
4073
+ * The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
4074
+ */
4075
+ tickSpacing: number;
4076
+ hookAddress: string;
4077
+ };
4078
+ uniswapV3PoolAddress: string;
4079
+ };
4080
+ /**
4081
+ * 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.
4082
+ */
4083
+ cursor: string;
4084
+ }>;
4085
+ };
4086
+ };
4087
+ };
4088
+
4089
+ export type GetTrendsByNameResponse =
4090
+ GetTrendsByNameResponses[keyof GetTrendsByNameResponses];
4091
+
3517
4092
  export type PostQuoteData = {
3518
4093
  body?: {
3519
4094
  referrer?: string;
package/src/index.ts CHANGED
@@ -35,6 +35,9 @@ export type * from "./api/explore";
35
35
  // API Key Setter
36
36
  export { setApiKey } from "./api/api-key";
37
37
 
38
+ // Raw API helpers
39
+ export { apiGet, apiPost } from "./api/api-raw";
40
+
38
41
  // Metadata Validation Utils
39
42
  export * from "./metadata";
40
43