@chainstream-io/sdk 0.2.8 → 0.2.10
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/dist/{chainstream-KjjsTvPO.d.cts → chainstream-DLKhKJTp.d.cts} +273 -254
- package/dist/{chainstream-KjjsTvPO.d.ts → chainstream-DLKhKJTp.d.ts} +273 -254
- package/dist/chainstream.cjs +45 -68
- package/dist/chainstream.cjs.map +1 -1
- package/dist/chainstream.d.cts +1 -1
- package/dist/chainstream.d.ts +1 -1
- package/dist/chainstream.mjs +45 -68
- package/dist/chainstream.mjs.map +1 -1
- package/dist/index.cjs +45 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +45 -68
- package/dist/index.mjs.map +1 -1
- package/dist/stream/index.cjs +45 -68
- package/dist/stream/index.cjs.map +1 -1
- package/dist/stream/index.d.cts +1 -1
- package/dist/stream/index.d.ts +1 -1
- package/dist/stream/index.mjs +45 -68
- package/dist/stream/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -717,261 +717,145 @@ interface TokenSocialMediasDTO {
|
|
|
717
717
|
/** DTO.TOKEN.SOCIAL_MEDIAS.BITBUCKET */
|
|
718
718
|
bitbucket?: string;
|
|
719
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* DTO.TOKEN.TRADE_STAT.PERIOD.VOLUME_CHANGE_RATIO
|
|
722
|
+
*/
|
|
723
|
+
type TokenTradeStatPeriodVolumeChangeRatio = {
|
|
724
|
+
[key: string]: unknown;
|
|
725
|
+
};
|
|
726
|
+
/**
|
|
727
|
+
* DTO.TOKEN.TRADE_STAT.PERIOD.LIQUIDITY_CHANGE_RATIO
|
|
728
|
+
*/
|
|
729
|
+
type TokenTradeStatPeriodLiquidityChangeRatio = {
|
|
730
|
+
[key: string]: unknown;
|
|
731
|
+
};
|
|
732
|
+
/**
|
|
733
|
+
* DTO.TOKEN.TRADE_STAT.PERIOD.BUY_SELL_RATIO
|
|
734
|
+
*/
|
|
735
|
+
type TokenTradeStatPeriodBuySellRatio = {
|
|
736
|
+
[key: string]: unknown;
|
|
737
|
+
};
|
|
738
|
+
interface TokenTradeStatPeriod {
|
|
739
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUYS */
|
|
740
|
+
buys: string;
|
|
741
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.SELLS */
|
|
742
|
+
sells: string;
|
|
743
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.TRADES */
|
|
744
|
+
trades: string;
|
|
745
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUYERS */
|
|
746
|
+
buyers: string;
|
|
747
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.SELLERS */
|
|
748
|
+
sellers: string;
|
|
749
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.TRADERS */
|
|
750
|
+
traders: string;
|
|
751
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUY_VOLUME */
|
|
752
|
+
buyVolume: string;
|
|
753
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUY_VOLUME_IN_USD */
|
|
754
|
+
buyVolumeInUsd: string;
|
|
755
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUY_VOLUME_IN_NATIVE */
|
|
756
|
+
buyVolumeInNative: string;
|
|
757
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.SELL_VOLUME */
|
|
758
|
+
sellVolume: string;
|
|
759
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.SELL_VOLUME_IN_USD */
|
|
760
|
+
sellVolumeInUsd: string;
|
|
761
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.SELL_VOLUME_IN_NATIVE */
|
|
762
|
+
sellVolumeInNative: string;
|
|
763
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.TOTAL_VOLUME_IN_USD */
|
|
764
|
+
totalVolumeInUsd: string;
|
|
765
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.TOTAL_VOLUME_IN_NATIVE */
|
|
766
|
+
totalVolumeInNative: string;
|
|
767
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.OPEN_IN_USD */
|
|
768
|
+
openInUsd: string;
|
|
769
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.CLOSE_IN_USD */
|
|
770
|
+
closeInUsd: string;
|
|
771
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.HIGH_IN_USD */
|
|
772
|
+
highInUsd: string;
|
|
773
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.LOW_IN_USD */
|
|
774
|
+
lowInUsd: string;
|
|
775
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.OPEN_IN_NATIVE */
|
|
776
|
+
openInNative: string;
|
|
777
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.CLOSE_IN_NATIVE */
|
|
778
|
+
closeInNative: string;
|
|
779
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.HIGH_IN_NATIVE */
|
|
780
|
+
highInNative: string;
|
|
781
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.LOW_IN_NATIVE */
|
|
782
|
+
lowInNative: string;
|
|
783
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.AVERAGE_PRICE_IN_USD */
|
|
784
|
+
averagePriceInUsd: string;
|
|
785
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.AVERAGE_PRICE_IN_NATIVE */
|
|
786
|
+
averagePriceInNative: string;
|
|
787
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PRICE_CHANGE_RATIO_IN_USD */
|
|
788
|
+
priceChangeRatioInUsd: string;
|
|
789
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_BUYS */
|
|
790
|
+
prevBuys: string;
|
|
791
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_SELLS */
|
|
792
|
+
prevSells: string;
|
|
793
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_TRADES */
|
|
794
|
+
prevTrades: string;
|
|
795
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_BUYERS */
|
|
796
|
+
prevBuyers: string;
|
|
797
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_SELLERS */
|
|
798
|
+
prevSellers: string;
|
|
799
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_BUY_VOLUME */
|
|
800
|
+
prevBuyVolume: string;
|
|
801
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_SELL_VOLUME */
|
|
802
|
+
prevSellVolume: string;
|
|
803
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_BUY_VOLUME_IN_USD */
|
|
804
|
+
prevBuyVolumeInUsd: string;
|
|
805
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_SELL_VOLUME_IN_USD */
|
|
806
|
+
prevSellVolumeInUsd: string;
|
|
807
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_BUY_VOLUME_IN_NATIVE */
|
|
808
|
+
prevBuyVolumeInNative: string;
|
|
809
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_SELL_VOLUME_IN_NATIVE */
|
|
810
|
+
prevSellVolumeInNative: string;
|
|
811
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_OPEN_IN_USD */
|
|
812
|
+
prevOpenInUsd: string;
|
|
813
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_CLOSE_IN_USD */
|
|
814
|
+
prevCloseInUsd: string;
|
|
815
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_HIGH_IN_USD */
|
|
816
|
+
prevHighInUsd: string;
|
|
817
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_LOW_IN_USD */
|
|
818
|
+
prevLowInUsd: string;
|
|
819
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_OPEN_IN_NATIVE */
|
|
820
|
+
prevOpenInNative: string;
|
|
821
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_CLOSE_IN_NATIVE */
|
|
822
|
+
prevCloseInNative: string;
|
|
823
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_HIGH_IN_NATIVE */
|
|
824
|
+
prevHighInNative: string;
|
|
825
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_LOW_IN_NATIVE */
|
|
826
|
+
prevLowInNative: string;
|
|
827
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.DAPP_PROGRAM_COUNT */
|
|
828
|
+
dappProgramCount: string;
|
|
829
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_DAPP_PROGRAM_COUNT */
|
|
830
|
+
prevDappProgramCount: string;
|
|
831
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.POOL_COUNT */
|
|
832
|
+
poolCount: string;
|
|
833
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_POOL_COUNT */
|
|
834
|
+
prevPoolCount: string;
|
|
835
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.CURRENT_LIQUIDITY_IN_USD */
|
|
836
|
+
currentLiquidityInUsd: string;
|
|
837
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.PREV_LIQUIDITY_IN_USD */
|
|
838
|
+
prevLiquidityInUsd: string;
|
|
839
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.VOLUME_CHANGE_RATIO */
|
|
840
|
+
volumeChangeRatio?: TokenTradeStatPeriodVolumeChangeRatio;
|
|
841
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.LIQUIDITY_CHANGE_RATIO */
|
|
842
|
+
liquidityChangeRatio?: TokenTradeStatPeriodLiquidityChangeRatio;
|
|
843
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.BUY_SELL_RATIO */
|
|
844
|
+
buySellRatio?: TokenTradeStatPeriodBuySellRatio;
|
|
845
|
+
/** DTO.TOKEN.TRADE_STAT.PERIOD.UPDATED_AT */
|
|
846
|
+
updatedAt?: string;
|
|
847
|
+
}
|
|
848
|
+
/**
|
|
849
|
+
* DTO.TOKEN.TRADE_STAT.PERIODS
|
|
850
|
+
*/
|
|
851
|
+
type TokenStatPeriods = {
|
|
852
|
+
[key: string]: TokenTradeStatPeriod;
|
|
853
|
+
};
|
|
720
854
|
interface TokenStat {
|
|
721
855
|
/** DTO.TOKEN.STAT.ADDRESS */
|
|
722
856
|
address: string;
|
|
723
|
-
/** DTO.TOKEN.
|
|
724
|
-
|
|
725
|
-
/** DTO.TOKEN.STAT.BUYS_1M */
|
|
726
|
-
buys1m: string;
|
|
727
|
-
/** DTO.TOKEN.STAT.SELLS_1M */
|
|
728
|
-
sells1m: string;
|
|
729
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_1M */
|
|
730
|
-
buyVolumes1m: string;
|
|
731
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_1M */
|
|
732
|
-
sellsVolumes1m: string;
|
|
733
|
-
/** DTO.TOKEN.STAT.VOLUMES_1M */
|
|
734
|
-
volumes1m: string;
|
|
735
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_1M */
|
|
736
|
-
buyVolumesInUsd1m: string;
|
|
737
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_1M */
|
|
738
|
-
sellVolumesInUsd1m: string;
|
|
739
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_1M */
|
|
740
|
-
volumesInUsd1m: string;
|
|
741
|
-
/** DTO.TOKEN.STAT.BUYERS_1M */
|
|
742
|
-
buyers1m?: string;
|
|
743
|
-
/** DTO.TOKEN.STAT.SELLERS_1M */
|
|
744
|
-
sellers1m?: string;
|
|
745
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_1M */
|
|
746
|
-
openPriceInUsd1m: string;
|
|
747
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_1M */
|
|
748
|
-
closePriceInUsd1m: string;
|
|
749
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_1M */
|
|
750
|
-
priceChangeRatioInUsd1m: string;
|
|
751
|
-
/** DTO.TOKEN.STAT.TRADES_1M */
|
|
752
|
-
trades1m: string;
|
|
753
|
-
/** DTO.TOKEN.STAT.TRADERS_1M */
|
|
754
|
-
traders1m?: string;
|
|
755
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_1M */
|
|
756
|
-
highInUsd1m?: string;
|
|
757
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_1M */
|
|
758
|
-
lowInUsd1m?: string;
|
|
759
|
-
/** DTO.TOKEN.STAT.PRICE_5M */
|
|
760
|
-
price5m: string;
|
|
761
|
-
/** DTO.TOKEN.STAT.BUYS_5M */
|
|
762
|
-
buys5m: string;
|
|
763
|
-
/** DTO.TOKEN.STAT.SELLS_5M */
|
|
764
|
-
sells5m: string;
|
|
765
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_5M */
|
|
766
|
-
buyVolumes5m: string;
|
|
767
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_5M */
|
|
768
|
-
sellsVolumes5m: string;
|
|
769
|
-
/** DTO.TOKEN.STAT.VOLUMES_5M */
|
|
770
|
-
volumes5m: string;
|
|
771
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_5M */
|
|
772
|
-
buyVolumesInUsd5m: string;
|
|
773
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_5M */
|
|
774
|
-
sellVolumesInUsd5m: string;
|
|
775
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_5M */
|
|
776
|
-
volumesInUsd5m: string;
|
|
777
|
-
/** DTO.TOKEN.STAT.BUYERS_5M */
|
|
778
|
-
buyers5m?: string;
|
|
779
|
-
/** DTO.TOKEN.STAT.SELLERS_5M */
|
|
780
|
-
sellers5m?: string;
|
|
781
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_5M */
|
|
782
|
-
openPriceInUsd5m: string;
|
|
783
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_5M */
|
|
784
|
-
closePriceInUsd5m: string;
|
|
785
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_5M */
|
|
786
|
-
priceChangeRatioInUsd5m: string;
|
|
787
|
-
/** DTO.TOKEN.STAT.TRADES_5M */
|
|
788
|
-
trades5m: string;
|
|
789
|
-
/** DTO.TOKEN.STAT.TRADERS_5M */
|
|
790
|
-
traders5m?: string;
|
|
791
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_5M */
|
|
792
|
-
highInUsd5m?: string;
|
|
793
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_5M */
|
|
794
|
-
lowInUsd5m?: string;
|
|
795
|
-
/** DTO.TOKEN.STAT.PRICE_15M */
|
|
796
|
-
price15m?: string;
|
|
797
|
-
/** DTO.TOKEN.STAT.BUYS_15M */
|
|
798
|
-
buys15m?: string;
|
|
799
|
-
/** DTO.TOKEN.STAT.SELLS_15M */
|
|
800
|
-
sells15m?: string;
|
|
801
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_15M */
|
|
802
|
-
buyVolumes15m?: string;
|
|
803
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_15M */
|
|
804
|
-
sellsVolumes15m?: string;
|
|
805
|
-
/** DTO.TOKEN.STAT.VOLUMES_15M */
|
|
806
|
-
volumes15m?: string;
|
|
807
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_15M */
|
|
808
|
-
buyVolumesInUsd15m?: string;
|
|
809
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_15M */
|
|
810
|
-
sellVolumesInUsd15m?: string;
|
|
811
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_15M */
|
|
812
|
-
volumesInUsd15m?: string;
|
|
813
|
-
/** DTO.TOKEN.STAT.BUYERS_15M */
|
|
814
|
-
buyers15m?: string;
|
|
815
|
-
/** DTO.TOKEN.STAT.SELLERS_15M */
|
|
816
|
-
sellers15m?: string;
|
|
817
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_15M */
|
|
818
|
-
openPriceInUsd15m?: string;
|
|
819
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_15M */
|
|
820
|
-
closePriceInUsd15m?: string;
|
|
821
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_15M */
|
|
822
|
-
priceChangeRatioInUsd15m?: string;
|
|
823
|
-
/** DTO.TOKEN.STAT.TRADES_15M */
|
|
824
|
-
trades15m?: string;
|
|
825
|
-
/** DTO.TOKEN.STAT.TRADERS_15M */
|
|
826
|
-
traders15m?: string;
|
|
827
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_15M */
|
|
828
|
-
highInUsd15m?: string;
|
|
829
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_15M */
|
|
830
|
-
lowInUsd15m?: string;
|
|
831
|
-
/** DTO.TOKEN.STAT.PRICE_30M */
|
|
832
|
-
price30m: string;
|
|
833
|
-
/** DTO.TOKEN.STAT.BUYS_30M */
|
|
834
|
-
buys30m: string;
|
|
835
|
-
/** DTO.TOKEN.STAT.SELLS_30M */
|
|
836
|
-
sells30m: string;
|
|
837
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_30M */
|
|
838
|
-
buyVolumes30m: string;
|
|
839
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_30M */
|
|
840
|
-
sellsVolumes30m: string;
|
|
841
|
-
/** DTO.TOKEN.STAT.VOLUMES_30M */
|
|
842
|
-
volumes30m: string;
|
|
843
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_30M */
|
|
844
|
-
buyVolumesInUsd30m: string;
|
|
845
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_30M */
|
|
846
|
-
sellVolumesInUsd30m: string;
|
|
847
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_30M */
|
|
848
|
-
volumesInUsd30m: string;
|
|
849
|
-
/** DTO.TOKEN.STAT.BUYERS_30M */
|
|
850
|
-
buyers30m?: string;
|
|
851
|
-
/** DTO.TOKEN.STAT.SELLERS_30M */
|
|
852
|
-
sellers30m?: string;
|
|
853
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_30M */
|
|
854
|
-
openPriceInUsd30m: string;
|
|
855
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_30M */
|
|
856
|
-
closePriceInUsd30m: string;
|
|
857
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_30M */
|
|
858
|
-
priceChangeRatioInUsd30m: string;
|
|
859
|
-
/** DTO.TOKEN.STAT.TRADES_30M */
|
|
860
|
-
trades30m: string;
|
|
861
|
-
/** DTO.TOKEN.STAT.TRADERS_30M */
|
|
862
|
-
traders30m?: string;
|
|
863
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_30M */
|
|
864
|
-
highInUsd30m?: string;
|
|
865
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_30M */
|
|
866
|
-
lowInUsd30m?: string;
|
|
867
|
-
/** DTO.TOKEN.STAT.PRICE_1H */
|
|
868
|
-
price1h: string;
|
|
869
|
-
/** DTO.TOKEN.STAT.BUYS_1H */
|
|
870
|
-
buys1h: string;
|
|
871
|
-
/** DTO.TOKEN.STAT.SELLS_1H */
|
|
872
|
-
sells1h: string;
|
|
873
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_1H */
|
|
874
|
-
buyVolumes1h: string;
|
|
875
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_1H */
|
|
876
|
-
sellsVolumes1h: string;
|
|
877
|
-
/** DTO.TOKEN.STAT.VOLUMES_1H */
|
|
878
|
-
volumes1h: string;
|
|
879
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_1H */
|
|
880
|
-
buyVolumesInUsd1h: string;
|
|
881
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_1H */
|
|
882
|
-
sellVolumesInUsd1h: string;
|
|
883
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_1H */
|
|
884
|
-
volumesInUsd1h: string;
|
|
885
|
-
/** DTO.TOKEN.STAT.BUYERS_1H */
|
|
886
|
-
buyers1h?: string;
|
|
887
|
-
/** DTO.TOKEN.STAT.SELLERS_1H */
|
|
888
|
-
sellers1h?: string;
|
|
889
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_1H */
|
|
890
|
-
openPriceInUsd1h: string;
|
|
891
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_1H */
|
|
892
|
-
closePriceInUsd1h: string;
|
|
893
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_1H */
|
|
894
|
-
priceChangeRatioInUsd1h: string;
|
|
895
|
-
/** DTO.TOKEN.STAT.TRADES_1H */
|
|
896
|
-
trades1h: string;
|
|
897
|
-
/** DTO.TOKEN.STAT.TRADERS_1H */
|
|
898
|
-
traders1h?: string;
|
|
899
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_1H */
|
|
900
|
-
highInUsd1h?: string;
|
|
901
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_1H */
|
|
902
|
-
lowInUsd1h?: string;
|
|
903
|
-
/** DTO.TOKEN.STAT.PRICE_4H */
|
|
904
|
-
price4h: string;
|
|
905
|
-
/** DTO.TOKEN.STAT.BUYS_4H */
|
|
906
|
-
buys4h: string;
|
|
907
|
-
/** DTO.TOKEN.STAT.SELLS_4H */
|
|
908
|
-
sells4h: string;
|
|
909
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_4H */
|
|
910
|
-
buyVolumes4h: string;
|
|
911
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_4H */
|
|
912
|
-
sellsVolumes4h: string;
|
|
913
|
-
/** DTO.TOKEN.STAT.VOLUMES_4H */
|
|
914
|
-
volumes4h: string;
|
|
915
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_4H */
|
|
916
|
-
buyVolumesInUsd4h: string;
|
|
917
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_4H */
|
|
918
|
-
sellVolumesInUsd4h: string;
|
|
919
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_4H */
|
|
920
|
-
volumesInUsd4h: string;
|
|
921
|
-
/** DTO.TOKEN.STAT.BUYERS_4H */
|
|
922
|
-
buyers4h?: string;
|
|
923
|
-
/** DTO.TOKEN.STAT.SELLERS_4H */
|
|
924
|
-
sellers4h?: string;
|
|
925
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_4H */
|
|
926
|
-
openPriceInUsd4h: string;
|
|
927
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_4H */
|
|
928
|
-
closePriceInUsd4h: string;
|
|
929
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_4H */
|
|
930
|
-
priceChangeRatioInUsd4h: string;
|
|
931
|
-
/** DTO.TOKEN.STAT.TRADES_4H */
|
|
932
|
-
trades4h: string;
|
|
933
|
-
/** DTO.TOKEN.STAT.TRADERS_4H */
|
|
934
|
-
traders4h?: string;
|
|
935
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_4H */
|
|
936
|
-
highInUsd4h?: string;
|
|
937
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_4H */
|
|
938
|
-
lowInUsd4h?: string;
|
|
939
|
-
/** DTO.TOKEN.STAT.PRICE_24H */
|
|
940
|
-
price24h: string;
|
|
941
|
-
/** DTO.TOKEN.STAT.BUYS_24H */
|
|
942
|
-
buys24h: string;
|
|
943
|
-
/** DTO.TOKEN.STAT.SELLS_24H */
|
|
944
|
-
sells24h: string;
|
|
945
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_24H */
|
|
946
|
-
buyVolumes24h: string;
|
|
947
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_24H */
|
|
948
|
-
sellsVolumes24h: string;
|
|
949
|
-
/** DTO.TOKEN.STAT.VOLUMES_24H */
|
|
950
|
-
volumes24h: string;
|
|
951
|
-
/** DTO.TOKEN.STAT.BUY_VOLUMES_IN_USD_24H */
|
|
952
|
-
buyVolumesInUsd24h: string;
|
|
953
|
-
/** DTO.TOKEN.STAT.SELL_VOLUMES_IN_USD_24H */
|
|
954
|
-
sellVolumesInUsd24h: string;
|
|
955
|
-
/** DTO.TOKEN.STAT.VOLUMES_IN_USD_24H */
|
|
956
|
-
volumesInUsd24h: string;
|
|
957
|
-
/** DTO.TOKEN.STAT.BUYERS_24H */
|
|
958
|
-
buyers24h?: string;
|
|
959
|
-
/** DTO.TOKEN.STAT.SELLERS_24H */
|
|
960
|
-
sellers24h?: string;
|
|
961
|
-
/** DTO.TOKEN.STAT.OPEN_PRICE_IN_USD_24H */
|
|
962
|
-
openPriceInUsd24h: string;
|
|
963
|
-
/** DTO.TOKEN.STAT.CLOSE_PRICE_IN_USD_24H */
|
|
964
|
-
closePriceInUsd24h: string;
|
|
965
|
-
/** DTO.TOKEN.STAT.PRICE_CHANGE_RATIO_IN_USD_24H */
|
|
966
|
-
priceChangeRatioInUsd24h: string;
|
|
967
|
-
/** DTO.TOKEN.STAT.TRADES_24H */
|
|
968
|
-
trades24h: string;
|
|
969
|
-
/** DTO.TOKEN.STAT.TRADERS_24H */
|
|
970
|
-
traders24h?: string;
|
|
971
|
-
/** DTO.TOKEN.STAT.HIGH_IN_USD_24H */
|
|
972
|
-
highInUsd24h?: string;
|
|
973
|
-
/** DTO.TOKEN.STAT.LOW_IN_USD_24H */
|
|
974
|
-
lowInUsd24h?: string;
|
|
857
|
+
/** DTO.TOKEN.TRADE_STAT.PERIODS */
|
|
858
|
+
periods: TokenStatPeriods;
|
|
975
859
|
}
|
|
976
860
|
interface DexPoolTokenLiquidity {
|
|
977
861
|
/** DTO.DEXPOOL.TOKEN_ADDRESS */
|
|
@@ -5882,9 +5766,17 @@ interface WsTokenActivity {
|
|
|
5882
5766
|
txHash: string;
|
|
5883
5767
|
timestamp: number;
|
|
5884
5768
|
}
|
|
5769
|
+
/**
|
|
5770
|
+
* Token trade statistics for multiple time windows.
|
|
5771
|
+
* Time windows: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 24h, 1W, 1M
|
|
5772
|
+
*/
|
|
5885
5773
|
interface WsTokenStat {
|
|
5774
|
+
/** Token address */
|
|
5886
5775
|
address: string;
|
|
5776
|
+
/** Timestamp in milliseconds (UTC time when pipeline processed) */
|
|
5887
5777
|
timestamp: number;
|
|
5778
|
+
/** Current token price in USD (first positive closeInUsd across windows, or from cache) */
|
|
5779
|
+
price?: string;
|
|
5888
5780
|
buys1m?: number;
|
|
5889
5781
|
sells1m?: number;
|
|
5890
5782
|
buyers1m?: number;
|
|
@@ -5894,6 +5786,12 @@ interface WsTokenStat {
|
|
|
5894
5786
|
price1m?: string;
|
|
5895
5787
|
openInUsd1m?: string;
|
|
5896
5788
|
closeInUsd1m?: string;
|
|
5789
|
+
volumeChangeRatio1m?: string;
|
|
5790
|
+
trades1m?: number;
|
|
5791
|
+
dappProgramCount1m?: number;
|
|
5792
|
+
poolCount1m?: number;
|
|
5793
|
+
liquidityInUsd1m?: string;
|
|
5794
|
+
liquidityChangeRatio1m?: string;
|
|
5897
5795
|
buys5m?: number;
|
|
5898
5796
|
sells5m?: number;
|
|
5899
5797
|
buyers5m?: number;
|
|
@@ -5903,6 +5801,12 @@ interface WsTokenStat {
|
|
|
5903
5801
|
price5m?: string;
|
|
5904
5802
|
openInUsd5m?: string;
|
|
5905
5803
|
closeInUsd5m?: string;
|
|
5804
|
+
volumeChangeRatio5m?: string;
|
|
5805
|
+
trades5m?: number;
|
|
5806
|
+
dappProgramCount5m?: number;
|
|
5807
|
+
poolCount5m?: number;
|
|
5808
|
+
liquidityInUsd5m?: string;
|
|
5809
|
+
liquidityChangeRatio5m?: string;
|
|
5906
5810
|
buys15m?: number;
|
|
5907
5811
|
sells15m?: number;
|
|
5908
5812
|
buyers15m?: number;
|
|
@@ -5912,6 +5816,12 @@ interface WsTokenStat {
|
|
|
5912
5816
|
price15m?: string;
|
|
5913
5817
|
openInUsd15m?: string;
|
|
5914
5818
|
closeInUsd15m?: string;
|
|
5819
|
+
volumeChangeRatio15m?: string;
|
|
5820
|
+
trades15m?: number;
|
|
5821
|
+
dappProgramCount15m?: number;
|
|
5822
|
+
poolCount15m?: number;
|
|
5823
|
+
liquidityInUsd15m?: string;
|
|
5824
|
+
liquidityChangeRatio15m?: string;
|
|
5915
5825
|
buys30m?: number;
|
|
5916
5826
|
sells30m?: number;
|
|
5917
5827
|
buyers30m?: number;
|
|
@@ -5921,6 +5831,12 @@ interface WsTokenStat {
|
|
|
5921
5831
|
price30m?: string;
|
|
5922
5832
|
openInUsd30m?: string;
|
|
5923
5833
|
closeInUsd30m?: string;
|
|
5834
|
+
volumeChangeRatio30m?: string;
|
|
5835
|
+
trades30m?: number;
|
|
5836
|
+
dappProgramCount30m?: number;
|
|
5837
|
+
poolCount30m?: number;
|
|
5838
|
+
liquidityInUsd30m?: string;
|
|
5839
|
+
liquidityChangeRatio30m?: string;
|
|
5924
5840
|
buys1h?: number;
|
|
5925
5841
|
sells1h?: number;
|
|
5926
5842
|
buyers1h?: number;
|
|
@@ -5930,6 +5846,27 @@ interface WsTokenStat {
|
|
|
5930
5846
|
price1h?: string;
|
|
5931
5847
|
openInUsd1h?: string;
|
|
5932
5848
|
closeInUsd1h?: string;
|
|
5849
|
+
volumeChangeRatio1h?: string;
|
|
5850
|
+
trades1h?: number;
|
|
5851
|
+
dappProgramCount1h?: number;
|
|
5852
|
+
poolCount1h?: number;
|
|
5853
|
+
liquidityInUsd1h?: string;
|
|
5854
|
+
liquidityChangeRatio1h?: string;
|
|
5855
|
+
buys2h?: number;
|
|
5856
|
+
sells2h?: number;
|
|
5857
|
+
buyers2h?: number;
|
|
5858
|
+
sellers2h?: number;
|
|
5859
|
+
buyVolumeInUsd2h?: string;
|
|
5860
|
+
sellVolumeInUsd2h?: string;
|
|
5861
|
+
price2h?: string;
|
|
5862
|
+
openInUsd2h?: string;
|
|
5863
|
+
closeInUsd2h?: string;
|
|
5864
|
+
volumeChangeRatio2h?: string;
|
|
5865
|
+
trades2h?: number;
|
|
5866
|
+
dappProgramCount2h?: number;
|
|
5867
|
+
poolCount2h?: number;
|
|
5868
|
+
liquidityInUsd2h?: string;
|
|
5869
|
+
liquidityChangeRatio2h?: string;
|
|
5933
5870
|
buys4h?: number;
|
|
5934
5871
|
sells4h?: number;
|
|
5935
5872
|
buyers4h?: number;
|
|
@@ -5939,6 +5876,42 @@ interface WsTokenStat {
|
|
|
5939
5876
|
price4h?: string;
|
|
5940
5877
|
openInUsd4h?: string;
|
|
5941
5878
|
closeInUsd4h?: string;
|
|
5879
|
+
volumeChangeRatio4h?: string;
|
|
5880
|
+
trades4h?: number;
|
|
5881
|
+
dappProgramCount4h?: number;
|
|
5882
|
+
poolCount4h?: number;
|
|
5883
|
+
liquidityInUsd4h?: string;
|
|
5884
|
+
liquidityChangeRatio4h?: string;
|
|
5885
|
+
buys6h?: number;
|
|
5886
|
+
sells6h?: number;
|
|
5887
|
+
buyers6h?: number;
|
|
5888
|
+
sellers6h?: number;
|
|
5889
|
+
buyVolumeInUsd6h?: string;
|
|
5890
|
+
sellVolumeInUsd6h?: string;
|
|
5891
|
+
price6h?: string;
|
|
5892
|
+
openInUsd6h?: string;
|
|
5893
|
+
closeInUsd6h?: string;
|
|
5894
|
+
volumeChangeRatio6h?: string;
|
|
5895
|
+
trades6h?: number;
|
|
5896
|
+
dappProgramCount6h?: number;
|
|
5897
|
+
poolCount6h?: number;
|
|
5898
|
+
liquidityInUsd6h?: string;
|
|
5899
|
+
liquidityChangeRatio6h?: string;
|
|
5900
|
+
buys8h?: number;
|
|
5901
|
+
sells8h?: number;
|
|
5902
|
+
buyers8h?: number;
|
|
5903
|
+
sellers8h?: number;
|
|
5904
|
+
buyVolumeInUsd8h?: string;
|
|
5905
|
+
sellVolumeInUsd8h?: string;
|
|
5906
|
+
price8h?: string;
|
|
5907
|
+
openInUsd8h?: string;
|
|
5908
|
+
closeInUsd8h?: string;
|
|
5909
|
+
volumeChangeRatio8h?: string;
|
|
5910
|
+
trades8h?: number;
|
|
5911
|
+
dappProgramCount8h?: number;
|
|
5912
|
+
poolCount8h?: number;
|
|
5913
|
+
liquidityInUsd8h?: string;
|
|
5914
|
+
liquidityChangeRatio8h?: string;
|
|
5942
5915
|
buys24h?: number;
|
|
5943
5916
|
sells24h?: number;
|
|
5944
5917
|
buyers24h?: number;
|
|
@@ -5948,7 +5921,42 @@ interface WsTokenStat {
|
|
|
5948
5921
|
price24h?: string;
|
|
5949
5922
|
openInUsd24h?: string;
|
|
5950
5923
|
closeInUsd24h?: string;
|
|
5951
|
-
|
|
5924
|
+
volumeChangeRatio24h?: string;
|
|
5925
|
+
trades24h?: number;
|
|
5926
|
+
dappProgramCount24h?: number;
|
|
5927
|
+
poolCount24h?: number;
|
|
5928
|
+
liquidityInUsd24h?: string;
|
|
5929
|
+
liquidityChangeRatio24h?: string;
|
|
5930
|
+
buys1W?: number;
|
|
5931
|
+
sells1W?: number;
|
|
5932
|
+
buyers1W?: number;
|
|
5933
|
+
sellers1W?: number;
|
|
5934
|
+
buyVolumeInUsd1W?: string;
|
|
5935
|
+
sellVolumeInUsd1W?: string;
|
|
5936
|
+
price1W?: string;
|
|
5937
|
+
openInUsd1W?: string;
|
|
5938
|
+
closeInUsd1W?: string;
|
|
5939
|
+
volumeChangeRatio1W?: string;
|
|
5940
|
+
trades1W?: number;
|
|
5941
|
+
dappProgramCount1W?: number;
|
|
5942
|
+
poolCount1W?: number;
|
|
5943
|
+
liquidityInUsd1W?: string;
|
|
5944
|
+
liquidityChangeRatio1W?: string;
|
|
5945
|
+
buys1M?: number;
|
|
5946
|
+
sells1M?: number;
|
|
5947
|
+
buyers1M?: number;
|
|
5948
|
+
sellers1M?: number;
|
|
5949
|
+
buyVolumeInUsd1M?: string;
|
|
5950
|
+
sellVolumeInUsd1M?: string;
|
|
5951
|
+
price1M?: string;
|
|
5952
|
+
openInUsd1M?: string;
|
|
5953
|
+
closeInUsd1M?: string;
|
|
5954
|
+
volumeChangeRatio1M?: string;
|
|
5955
|
+
trades1M?: number;
|
|
5956
|
+
dappProgramCount1M?: number;
|
|
5957
|
+
poolCount1M?: number;
|
|
5958
|
+
liquidityInUsd1M?: string;
|
|
5959
|
+
liquidityChangeRatio1M?: string;
|
|
5952
5960
|
}
|
|
5953
5961
|
interface WsTokenHolder {
|
|
5954
5962
|
tokenAddress: string;
|
|
@@ -6302,6 +6310,17 @@ declare class StreamApi {
|
|
|
6302
6310
|
filter?: string;
|
|
6303
6311
|
priceType?: WsPriceType;
|
|
6304
6312
|
}): Unsubscribable;
|
|
6313
|
+
/**
|
|
6314
|
+
* Parse token stat data for a specific time window
|
|
6315
|
+
* @param data - Raw WebSocket data
|
|
6316
|
+
* @param suffix - Time window suffix (e.g., "1m", "5m", "1h", "1W", "1M")
|
|
6317
|
+
*/
|
|
6318
|
+
private parseTokenStatWindow;
|
|
6319
|
+
/**
|
|
6320
|
+
* Subscribe to token trade statistics
|
|
6321
|
+
* Channel: dex-token-stats:{chain}_{tokenAddress}
|
|
6322
|
+
* Time windows: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 24h, 1W, 1M
|
|
6323
|
+
*/
|
|
6305
6324
|
subscribeTokenStats({ chain, tokenAddress, callback, filter, }: {
|
|
6306
6325
|
chain: string;
|
|
6307
6326
|
tokenAddress: string;
|
|
@@ -6476,4 +6495,4 @@ interface PostOptions {
|
|
|
6476
6495
|
idempotencyKey?: string;
|
|
6477
6496
|
}
|
|
6478
6497
|
|
|
6479
|
-
export { SwapRouteInputDex as $, get as A, streaming as B, ChainStreamClient as C, type StreamingResult as D, type JobDTO as E, type JobStreamingDTOData as F, type GetResult as G, type JobStreamingDTO as H, type BlockchainDTO as I, type JobDTOResult as J, ChainSymbol as K, type BlockchainLatestBlockDTO as L, SendTxInputSubmitType as M, type SendTxInputOptions as N, type SendTxInput as O, type SendTxResponse as P, type GasPriceResponse as Q, type EstimateGasLimitInput as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, type EstimateGasLimitResponse as V, WsTokenActivityType as W, SwapInputDex as X, SwapInputSwapMode as Y, type SwapInput as Z, type SwapReply as _, WsChannelType as a, type TokenTraderOnchainCreatedAt as a$, SwapRouteInputSwapMode as a0, type SwapRouteInput as a1, type SwapRouteResponseRouteInfo as a2, type SwapRouteResponse as a3, type DexQuoteResponse as a4, CreateTokenInputDex as a5, type CreateTokenInputExtra as a6, type CreateTokenInput as a7, type CreateTokenReply as a8, type DexDTO as a9, type DexPoolTokenLiquidity as aA, DexPoolDTOType as aB, DexPoolDTOVersion as aC, DexPoolDTOLiquidityModel as aD, type DexPoolDTO as aE, type TokenMarketData as aF, type TokenExtension as aG, type Token as aH, type TokenPageCountsByProtocols as aI, type TokenPage as aJ, FilterConditionField as aK, type FilterCondition as aL, type TokenMetadata as aM, type DexPoolPage as aN, type TokenHolder as aO, type TokenHolderPage as aP, Resolution as aQ, PriceType as aR, type Candle as aS, type TokenPriceDTO as aT, type TokenPricePage as aU, TokenCreationDTOType as aV, type TokenCreationDTO as aW, type TokenCreationPage as aX, type TokenListPage as aY, type DevTokenDTO as aZ, TokenTraderTag as a_, type DexPage as aa, LinkLabel as ab, type Link as ac, MoonshotCreateTokenInputDex as ad, MoonshotCreateTokenInputMigrationDex as ae, type MoonshotCreateTokenInput as af, type MoonshotCreateTokenReplyExtra as ag, type MoonshotCreateTokenReply as ah, type MoonshotSubmitCreateTokenInputExtra as ai, type MoonshotSubmitCreateTokenInput as aj, PumpCreateTokenInputDex as ak, PumpCreateTokenInputMigrationDex as al, type PumpCreateTokenInput as am, type PumpCreateTokenReplyExtra as an, type PumpCreateTokenReply as ao, type TradeDetailDTO as ap, type TradePage as aq, type TopTradersDTO as ar, type TopTradersPage as as, TraderPnlResolution as at, type TraderGainersLosersItemDTO as au, type TraderGainersLosersPage as av, type TokenCreatorsDTO as aw, type TokenExtraDTO as ax, type TokenSocialMediasDTO as ay, type TokenStat as az, WsMetricType as b, type WithdrawalAddressIdentificationsResponseDTO as b$, type TokenTrader as b0, type TokenLiquiditySnapshotDTO as b1, type TokenLiquiditySnapshotPage as b2, TokenTransferItemDTOFlow as b3, type TokenTransferItemDTO as b4, type TokenTransferPage as b5, type TokenTransferTotalDTO as b6, type DexPoolTokenSnapshotDTO as b7, type DexPoolSnapshotDTO as b8, type DexPoolSnapshotPage as b9, CreateRedPacketInputChain as bA, type CreateRedPacketInput as bB, type CreateRedPacketReply as bC, ClaimRedPacketInputChain as bD, type ClaimRedPacketInput as bE, type RedPacketReply as bF, Chain as bG, type RedPacketDTO as bH, type RedPacketClaimDTO as bI, type RedPacketClaimsPage as bJ, type RedPacketsPage as bK, type RedPacketSendTxInput as bL, type RedPacketSendTxResponse as bM, KYTRegisterTransferRequestNetwork as bN, KYTRegisterTransferRequestDirection as bO, type KYTRegisterTransferRequest as bP, type TransferBaseResponseDTO as bQ, type DirectExposureDetail as bR, type TransferDirectExposureResponseDTO as bS, type AlertDetail as bT, type TransferAlertsResponseDTO as bU, type NetworkIdentificationOrg as bV, type TransferNetworkIdentificationsResponseDTO as bW, KYTRegisterWithdrawalRequestNetwork as bX, type KYTRegisterWithdrawalRequest as bY, type WithdrawalBaseResponseDTO as bZ, type ChainalysisAddressIdentification as b_, type WalletNetWorthSummaryDTOWallets as ba, type WalletNetWorthSummaryDTO as bb, type PnlDetailSummaryDTO as bc, type PnlDetailItemDTO as bd, type PnlDetailsPage as be, type WalletFirstTxDTOWallets as bf, type WalletFirstTxDTO as bg, type CalculatePnlInput as bh, type BooleanResultDTO as bi, type WalletNetWorthItemDTO as bj, type WalletNetWorthPage as bk, type TokensBalancePage as bl, type WalletNetWorthHistoryItemDTO as bm, type WalletNetWorthChartDTO as bn, type WalletNetWorthDetailsPage as bo, PnlResolution as bp, WalletPnlSummaryDTOResolution as bq, type WalletPnlSummaryDTO as br, TransactionHistoryItemDTOStatus as bs, TransactionHistoryItemDTOMainAction as bt, type TransactionHistoryItemDTO as bu, type TransactionHistoryPage as bv, BalanceTokenType as bw, BalanceChangeType as bx, type BalanceUpdateDTO as by, type BalanceUpdatePage as bz, type WsTokenActivity as c, GetPricesDirection as c$, type OnChainActivity as c0, type AlteryaIdentification as c1, type WithdrawalFraudAssessmentResponseDTO as c2, type RegisterAddressRequest as c3, type RegisterAddressResponseDTO as c4, type AddressExposure as c5, type AddressRiskResponseDTO as c6, EndpointResponseChannelsItem as c7, type EndpointResponseMetadata as c8, type EndpointResponse as c9, type GetTraderGainersLosersParams as cA, GetTraderGainersLosersDirection as cB, GetTraderGainersLosersSortType as cC, type SearchParams as cD, SearchDirection as cE, SearchSort as cF, SearchSortBy as cG, type GetTokensParams as cH, GetTokensSortBy as cI, GetTokensSortDirection as cJ, type GetMetadataMultiParams as cK, type GetMetadataMulti200 as cL, type GetPoolsParams as cM, GetPoolsDirection as cN, GetPoolsSortBy as cO, GetPoolsSortDirection as cP, type GetStatsMultiParams as cQ, type GetStatsMulti200 as cR, type GetHoldersParams as cS, GetHoldersDirection as cT, type GetHoldersMultiParams as cU, type GetCandlesParams as cV, type GetPoolCandlesParams as cW, type GetPairCandlesParams as cX, type GetMarketDataMultiParams as cY, type GetMarketDataMulti200 as cZ, type GetPricesParams as c_, type EndpointListResponse as ca, type EndpointSecretResponse as cb, type EndpointOperationResponse as cc, CreateEndpointInputChannelsItem as cd, type CreateEndpointInputMetadata as ce, type CreateEndpointInput as cf, UpdateEndpointInputChannelsItem as cg, type UpdateEndpointInputMetadata as ch, type UpdateEndpointInput as ci, TradeType as cj, type TradeEvent as ck, type QuoteParams as cl, QuoteDex as cm, type ListDexParams as cn, type MoonshotSubmitCreateToken200 as co, type GetTradesParams as cp, GetTradesDirection as cq, GetTradesType as cr, type GetActivitiesParams as cs, GetActivitiesDirection as ct, GetActivitiesType as cu, type GetTopTradersParams as cv, GetTopTradersDirection as cw, GetTopTradersTimeFrame as cx, GetTopTradersSortType as cy, GetTopTradersSortBy as cz, type WsTokenStat as d, type GetClaimsByAddressParams as d$, type GetPriceByTimeParams as d0, type GetMintAndBurnParams as d1, GetMintAndBurnDirection as d2, GetMintAndBurnType as d3, type ListTokenParams as d4, ListTokenDirection as d5, ListTokenSort as d6, ListTokenSortBy as d7, type GetSecurity200 as d8, type GetTokenLiquiditySnapshotsParams as d9, GetMigratedTokensSortDirection as dA, GetMigratedTokensTag as dB, type GetNetWorthSummaryParams as dC, type GetPnlByWalletParams as dD, GetPnlByWalletDirection as dE, type GetWalletFirstTxParams as dF, type GetNetWorthParams as dG, GetNetWorthDirection as dH, type GetTokensBalanceParams as dI, GetTokensBalanceDirection as dJ, type GetNetWorthChartParams as dK, type GetNetWorthDetailsParams as dL, GetNetWorthDetailsDirection as dM, type GetPnlParams as dN, type GetPnlDetailsParams as dO, GetPnlDetailsDirection as dP, type GetPnlByTokenParams as dQ, GetPnlByTokenDirection as dR, type GetWalletTransfersParams as dS, GetWalletTransfersDirection as dT, type GetWalletTransferTotalParams as dU, GetWalletTransferTotalDirection as dV, type GetBalanceUpdatesParams as dW, GetBalanceUpdatesDirection as dX, type GetClaimsParams as dY, type GetRedpacketsParams as dZ, GetRedpacketsChain as d_, GetTokenLiquiditySnapshotsDirection as da, type GetTokenTransfersParams as db, GetTokenTransfersDirection as dc, type GetTokenTransferTotalParams as dd, GetTokenTransferTotalDirection as de, type GetDexpoolSnapshotsParams as df, GetDexpoolSnapshotsDirection as dg, type GetHotTokensParams as dh, GetHotTokensSortBy as di, GetHotTokensSortDirection as dj, GetHotTokensTag as dk, type GetNewTokensParams as dl, GetNewTokensSortBy as dm, GetNewTokensSortDirection as dn, GetNewTokensTag as dp, type GetStocksTokensParams as dq, GetStocksTokensSortBy as dr, GetStocksTokensSortDirection as ds, GetStocksTokensTag as dt, type GetFinalStretchTokensParams as du, GetFinalStretchTokensSortBy as dv, GetFinalStretchTokensSortDirection as dw, GetFinalStretchTokensTag as dx, type GetMigratedTokensParams as dy, GetMigratedTokensSortBy as dz, type WsTokenHolder as e, getTokenLiquiditySnapshots as e$, type GetRedpacketsByAddressParams as e0, type ListEndpointsParams as e1, ListEndpointsOrder as e2, presign as e3, type PresignResult as e4, getSupportedBlockchains as e5, getLatestBlock as e6, type GetSupportedBlockchainsResult as e7, type GetLatestBlockResult as e8, send as e9, type GetActivitiesResult as eA, type GetTopTradersResult as eB, type GetTraderGainersLosersResult as eC, search as eD, getTokens as eE, getToken as eF, getMetadata as eG, getMetadataMulti as eH, getPools as eI, getStats as eJ, getStatsMulti as eK, getHolders as eL, getHoldersMulti as eM, getCandles as eN, getPoolCandles as eO, getPairCandles as eP, getTopHolders as eQ, getMarketData as eR, getMarketDataMulti as eS, getPrices as eT, getPriceByTime as eU, getCreation as eV, getMintAndBurn as eW, listToken as eX, getSecurity as eY, getDevTokens as eZ, getTokenTraders as e_, getGasPrice as ea, getGasLimit as eb, type SendResult as ec, type GetGasPriceResult as ed, type GetGasLimitResult as ee, swap as ef, route as eg, quote as eh, createToken as ei, listDex as ej, type SwapResult as ek, type RouteResult as el, type QuoteResult as em, type CreateTokenResult as en, type ListDexResult as eo, moonshotCreateToken as ep, moonshotSubmitCreateToken as eq, type MoonshotCreateTokenResult as er, type MoonshotSubmitCreateTokenResult as es, pumpfunCreateToken as et, type PumpfunCreateTokenResult as eu, getTrades as ev, getActivities as ew, getTopTraders as ex, getTraderGainersLosers as ey, type GetTradesResult as ez, type WsWalletBalance as f, type GetNetWorthChartResult as f$, getTokenTransfers as f0, getTokenTransferTotal as f1, type SearchResult as f2, type GetTokensResult as f3, type GetTokenResult as f4, type GetMetadataResult as f5, type GetMetadataMultiResult as f6, type GetPoolsResult as f7, type GetStatsResult as f8, type GetStatsMultiResult as f9, getFinalStretchTokens as fA, getMigratedTokens as fB, type GetHotTokensResult as fC, type GetNewTokensResult as fD, type GetStocksTokensResult as fE, type GetFinalStretchTokensResult as fF, type GetMigratedTokensResult as fG, getNetWorthSummary as fH, getPnlByWallet as fI, getWalletFirstTx as fJ, calculatePnl as fK, getNetWorth as fL, getTokensBalance as fM, getNetWorthChart as fN, getNetWorthDetails as fO, getPnl as fP, getPnlDetails as fQ, getPnlByToken as fR, getWalletTransfers as fS, getWalletTransferTotal as fT, getBalanceUpdates as fU, type GetNetWorthSummaryResult as fV, type GetPnlByWalletResult as fW, type GetWalletFirstTxResult as fX, type CalculatePnlResult as fY, type GetNetWorthResult as fZ, type GetTokensBalanceResult as f_, type GetHoldersResult as fa, type GetHoldersMultiResult as fb, type GetCandlesResult as fc, type GetPoolCandlesResult as fd, type GetPairCandlesResult as fe, type GetTopHoldersResult as ff, type GetMarketDataResult as fg, type GetMarketDataMultiResult as fh, type GetPricesResult as fi, type GetPriceByTimeResult as fj, type GetCreationResult as fk, type GetMintAndBurnResult as fl, type ListTokenResult as fm, type GetSecurityResult as fn, type GetDevTokensResult as fo, type GetTokenTradersResult as fp, type GetTokenLiquiditySnapshotsResult as fq, type GetTokenTransfersResult as fr, type GetTokenTransferTotalResult as fs, getDexpool as ft, getDexpoolSnapshots as fu, type GetDexpoolResult as fv, type GetDexpoolSnapshotsResult as fw, getHotTokens as fx, getNewTokens as fy, getStocksTokens as fz, type WsWalletPnl as g, type GetEndpointResult as g$, type GetNetWorthDetailsResult as g0, type GetPnlResult as g1, type GetPnlDetailsResult as g2, type GetPnlByTokenResult as g3, type GetWalletTransfersResult as g4, type GetWalletTransferTotalResult as g5, type GetBalanceUpdatesResult as g6, createRedpacket as g7, claimRedpacket as g8, getRedpacket as g9, getWithdrawalFraudAssessment as gA, registerAddress as gB, getAddressRisk as gC, type RegisterTransferResult as gD, type GetTransferSummaryResult as gE, type GetTransferDirectExposureResult as gF, type GetTransferAlertsResult as gG, type GetTransferNetworkIdentificationsResult as gH, type RegisterWithdrawalResult as gI, type GetWithdrawalSummaryResult as gJ, type GetWithdrawalDirectExposureResult as gK, type GetWithdrawalAlertsResult as gL, type GetWithdrawalAddressIdentificationsResult as gM, type GetWithdrawalNetworkIdentificationsResult as gN, type GetWithdrawalFraudAssessmentResult as gO, type RegisterAddressResult as gP, type GetAddressRiskResult as gQ, listEndpoints as gR, createEndpoint as gS, updateEndpoint as gT, getEndpoint as gU, deleteEndpoint as gV, getEndpointSecret as gW, rotateEndpointSecret as gX, type ListEndpointsResult as gY, type CreateEndpointResult as gZ, type UpdateEndpointResult as g_, getClaims as ga, getRedpackets as gb, getClaimsByAddress as gc, getRedpacketsByAddress as gd, redpacketSend as ge, type CreateRedpacketResult as gf, type ClaimRedpacketResult as gg, type GetRedpacketResult as gh, type GetClaimsResult as gi, type GetRedpacketsResult as gj, type GetClaimsByAddressResult as gk, type GetRedpacketsByAddressResult as gl, type RedpacketSendResult as gm, watchlistAdd as gn, type WatchlistAddResult as go, registerTransfer as gp, getTransferSummary as gq, getTransferDirectExposure as gr, getTransferAlerts as gs, getTransferNetworkIdentifications as gt, registerWithdrawal as gu, getWithdrawalSummary as gv, getWithdrawalDirectExposure as gw, getWithdrawalAlerts as gx, getWithdrawalAddressIdentifications as gy, getWithdrawalNetworkIdentifications as gz, type WsNewToken as h, type DeleteEndpointResult as h0, type GetEndpointSecretResult as h1, type RotateEndpointSecretResult as h2, type PostOptions as h3, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsCandle as r, type WsPriceType as s, type WsTradeActivity as t, type WsWalletTokenPnl as u, WsRankingType as v, WsDex as w, type WsRankingTokenList as x, type ChainStreamClientOptions as y, type ChainStreamRequestContext as z };
|
|
6498
|
+
export { SwapRouteInputDex as $, get as A, streaming as B, ChainStreamClient as C, type StreamingResult as D, type JobDTO as E, type JobStreamingDTOData as F, type GetResult as G, type JobStreamingDTO as H, type BlockchainDTO as I, type JobDTOResult as J, ChainSymbol as K, type BlockchainLatestBlockDTO as L, SendTxInputSubmitType as M, type SendTxInputOptions as N, type SendTxInput as O, type SendTxResponse as P, type GasPriceResponse as Q, type EstimateGasLimitInput as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, type EstimateGasLimitResponse as V, WsTokenActivityType as W, SwapInputDex as X, SwapInputSwapMode as Y, type SwapInput as Z, type SwapReply as _, WsChannelType as a, type TokenCreationDTO as a$, SwapRouteInputSwapMode as a0, type SwapRouteInput as a1, type SwapRouteResponseRouteInfo as a2, type SwapRouteResponse as a3, type DexQuoteResponse as a4, CreateTokenInputDex as a5, type CreateTokenInputExtra as a6, type CreateTokenInput as a7, type CreateTokenReply as a8, type DexDTO as a9, type TokenTradeStatPeriodLiquidityChangeRatio as aA, type TokenTradeStatPeriodBuySellRatio as aB, type TokenTradeStatPeriod as aC, type TokenStatPeriods as aD, type TokenStat as aE, type DexPoolTokenLiquidity as aF, DexPoolDTOType as aG, DexPoolDTOVersion as aH, DexPoolDTOLiquidityModel as aI, type DexPoolDTO as aJ, type TokenMarketData as aK, type TokenExtension as aL, type Token as aM, type TokenPageCountsByProtocols as aN, type TokenPage as aO, FilterConditionField as aP, type FilterCondition as aQ, type TokenMetadata as aR, type DexPoolPage as aS, type TokenHolder as aT, type TokenHolderPage as aU, Resolution as aV, PriceType as aW, type Candle as aX, type TokenPriceDTO as aY, type TokenPricePage as aZ, TokenCreationDTOType as a_, type DexPage as aa, LinkLabel as ab, type Link as ac, MoonshotCreateTokenInputDex as ad, MoonshotCreateTokenInputMigrationDex as ae, type MoonshotCreateTokenInput as af, type MoonshotCreateTokenReplyExtra as ag, type MoonshotCreateTokenReply as ah, type MoonshotSubmitCreateTokenInputExtra as ai, type MoonshotSubmitCreateTokenInput as aj, PumpCreateTokenInputDex as ak, PumpCreateTokenInputMigrationDex as al, type PumpCreateTokenInput as am, type PumpCreateTokenReplyExtra as an, type PumpCreateTokenReply as ao, type TradeDetailDTO as ap, type TradePage as aq, type TopTradersDTO as ar, type TopTradersPage as as, TraderPnlResolution as at, type TraderGainersLosersItemDTO as au, type TraderGainersLosersPage as av, type TokenCreatorsDTO as aw, type TokenExtraDTO as ax, type TokenSocialMediasDTO as ay, type TokenTradeStatPeriodVolumeChangeRatio as az, WsMetricType as b, type TransferNetworkIdentificationsResponseDTO as b$, type TokenCreationPage as b0, type TokenListPage as b1, type DevTokenDTO as b2, TokenTraderTag as b3, type TokenTraderOnchainCreatedAt as b4, type TokenTrader as b5, type TokenLiquiditySnapshotDTO as b6, type TokenLiquiditySnapshotPage as b7, TokenTransferItemDTOFlow as b8, type TokenTransferItemDTO as b9, type TransactionHistoryPage as bA, BalanceTokenType as bB, BalanceChangeType as bC, type BalanceUpdateDTO as bD, type BalanceUpdatePage as bE, CreateRedPacketInputChain as bF, type CreateRedPacketInput as bG, type CreateRedPacketReply as bH, ClaimRedPacketInputChain as bI, type ClaimRedPacketInput as bJ, type RedPacketReply as bK, Chain as bL, type RedPacketDTO as bM, type RedPacketClaimDTO as bN, type RedPacketClaimsPage as bO, type RedPacketsPage as bP, type RedPacketSendTxInput as bQ, type RedPacketSendTxResponse as bR, KYTRegisterTransferRequestNetwork as bS, KYTRegisterTransferRequestDirection as bT, type KYTRegisterTransferRequest as bU, type TransferBaseResponseDTO as bV, type DirectExposureDetail as bW, type TransferDirectExposureResponseDTO as bX, type AlertDetail as bY, type TransferAlertsResponseDTO as bZ, type NetworkIdentificationOrg as b_, type TokenTransferPage as ba, type TokenTransferTotalDTO as bb, type DexPoolTokenSnapshotDTO as bc, type DexPoolSnapshotDTO as bd, type DexPoolSnapshotPage as be, type WalletNetWorthSummaryDTOWallets as bf, type WalletNetWorthSummaryDTO as bg, type PnlDetailSummaryDTO as bh, type PnlDetailItemDTO as bi, type PnlDetailsPage as bj, type WalletFirstTxDTOWallets as bk, type WalletFirstTxDTO as bl, type CalculatePnlInput as bm, type BooleanResultDTO as bn, type WalletNetWorthItemDTO as bo, type WalletNetWorthPage as bp, type TokensBalancePage as bq, type WalletNetWorthHistoryItemDTO as br, type WalletNetWorthChartDTO as bs, type WalletNetWorthDetailsPage as bt, PnlResolution as bu, WalletPnlSummaryDTOResolution as bv, type WalletPnlSummaryDTO as bw, TransactionHistoryItemDTOStatus as bx, TransactionHistoryItemDTOMainAction as by, type TransactionHistoryItemDTO as bz, type WsTokenActivity as c, type GetPoolCandlesParams as c$, KYTRegisterWithdrawalRequestNetwork as c0, type KYTRegisterWithdrawalRequest as c1, type WithdrawalBaseResponseDTO as c2, type ChainalysisAddressIdentification as c3, type WithdrawalAddressIdentificationsResponseDTO as c4, type OnChainActivity as c5, type AlteryaIdentification as c6, type WithdrawalFraudAssessmentResponseDTO as c7, type RegisterAddressRequest as c8, type RegisterAddressResponseDTO as c9, type GetTopTradersParams as cA, GetTopTradersDirection as cB, GetTopTradersTimeFrame as cC, GetTopTradersSortType as cD, GetTopTradersSortBy as cE, type GetTraderGainersLosersParams as cF, GetTraderGainersLosersDirection as cG, GetTraderGainersLosersSortType as cH, type SearchParams as cI, SearchDirection as cJ, SearchSort as cK, SearchSortBy as cL, type GetTokensParams as cM, GetTokensSortBy as cN, GetTokensSortDirection as cO, type GetMetadataMultiParams as cP, type GetMetadataMulti200 as cQ, type GetPoolsParams as cR, GetPoolsDirection as cS, GetPoolsSortBy as cT, GetPoolsSortDirection as cU, type GetStatsMultiParams as cV, type GetStatsMulti200 as cW, type GetHoldersParams as cX, GetHoldersDirection as cY, type GetHoldersMultiParams as cZ, type GetCandlesParams as c_, type AddressExposure as ca, type AddressRiskResponseDTO as cb, EndpointResponseChannelsItem as cc, type EndpointResponseMetadata as cd, type EndpointResponse as ce, type EndpointListResponse as cf, type EndpointSecretResponse as cg, type EndpointOperationResponse as ch, CreateEndpointInputChannelsItem as ci, type CreateEndpointInputMetadata as cj, type CreateEndpointInput as ck, UpdateEndpointInputChannelsItem as cl, type UpdateEndpointInputMetadata as cm, type UpdateEndpointInput as cn, TradeType as co, type TradeEvent as cp, type QuoteParams as cq, QuoteDex as cr, type ListDexParams as cs, type MoonshotSubmitCreateToken200 as ct, type GetTradesParams as cu, GetTradesDirection as cv, GetTradesType as cw, type GetActivitiesParams as cx, GetActivitiesDirection as cy, GetActivitiesType as cz, type WsTokenStat as d, type GetBalanceUpdatesParams as d$, type GetPairCandlesParams as d0, type GetMarketDataMultiParams as d1, type GetMarketDataMulti200 as d2, type GetPricesParams as d3, GetPricesDirection as d4, type GetPriceByTimeParams as d5, type GetMintAndBurnParams as d6, GetMintAndBurnDirection as d7, GetMintAndBurnType as d8, type ListTokenParams as d9, GetFinalStretchTokensSortBy as dA, GetFinalStretchTokensSortDirection as dB, GetFinalStretchTokensTag as dC, type GetMigratedTokensParams as dD, GetMigratedTokensSortBy as dE, GetMigratedTokensSortDirection as dF, GetMigratedTokensTag as dG, type GetNetWorthSummaryParams as dH, type GetPnlByWalletParams as dI, GetPnlByWalletDirection as dJ, type GetWalletFirstTxParams as dK, type GetNetWorthParams as dL, GetNetWorthDirection as dM, type GetTokensBalanceParams as dN, GetTokensBalanceDirection as dO, type GetNetWorthChartParams as dP, type GetNetWorthDetailsParams as dQ, GetNetWorthDetailsDirection as dR, type GetPnlParams as dS, type GetPnlDetailsParams as dT, GetPnlDetailsDirection as dU, type GetPnlByTokenParams as dV, GetPnlByTokenDirection as dW, type GetWalletTransfersParams as dX, GetWalletTransfersDirection as dY, type GetWalletTransferTotalParams as dZ, GetWalletTransferTotalDirection as d_, ListTokenDirection as da, ListTokenSort as db, ListTokenSortBy as dc, type GetSecurity200 as dd, type GetTokenLiquiditySnapshotsParams as de, GetTokenLiquiditySnapshotsDirection as df, type GetTokenTransfersParams as dg, GetTokenTransfersDirection as dh, type GetTokenTransferTotalParams as di, GetTokenTransferTotalDirection as dj, type GetDexpoolSnapshotsParams as dk, GetDexpoolSnapshotsDirection as dl, type GetHotTokensParams as dm, GetHotTokensSortBy as dn, GetHotTokensSortDirection as dp, GetHotTokensTag as dq, type GetNewTokensParams as dr, GetNewTokensSortBy as ds, GetNewTokensSortDirection as dt, GetNewTokensTag as du, type GetStocksTokensParams as dv, GetStocksTokensSortBy as dw, GetStocksTokensSortDirection as dx, GetStocksTokensTag as dy, type GetFinalStretchTokensParams as dz, type WsTokenHolder as e, getMintAndBurn as e$, GetBalanceUpdatesDirection as e0, type GetClaimsParams as e1, type GetRedpacketsParams as e2, GetRedpacketsChain as e3, type GetClaimsByAddressParams as e4, type GetRedpacketsByAddressParams as e5, type ListEndpointsParams as e6, ListEndpointsOrder as e7, presign as e8, type PresignResult as e9, getTrades as eA, getActivities as eB, getTopTraders as eC, getTraderGainersLosers as eD, type GetTradesResult as eE, type GetActivitiesResult as eF, type GetTopTradersResult as eG, type GetTraderGainersLosersResult as eH, search as eI, getTokens as eJ, getToken as eK, getMetadata as eL, getMetadataMulti as eM, getPools as eN, getStats as eO, getStatsMulti as eP, getHolders as eQ, getHoldersMulti as eR, getCandles as eS, getPoolCandles as eT, getPairCandles as eU, getTopHolders as eV, getMarketData as eW, getMarketDataMulti as eX, getPrices as eY, getPriceByTime as eZ, getCreation as e_, getSupportedBlockchains as ea, getLatestBlock as eb, type GetSupportedBlockchainsResult as ec, type GetLatestBlockResult as ed, send as ee, getGasPrice as ef, getGasLimit as eg, type SendResult as eh, type GetGasPriceResult as ei, type GetGasLimitResult as ej, swap as ek, route as el, quote as em, createToken as en, listDex as eo, type SwapResult as ep, type RouteResult as eq, type QuoteResult as er, type CreateTokenResult as es, type ListDexResult as et, moonshotCreateToken as eu, moonshotSubmitCreateToken as ev, type MoonshotCreateTokenResult as ew, type MoonshotSubmitCreateTokenResult as ex, pumpfunCreateToken as ey, type PumpfunCreateTokenResult as ez, type WsWalletBalance as f, type GetPnlByWalletResult as f$, listToken as f0, getSecurity as f1, getDevTokens as f2, getTokenTraders as f3, getTokenLiquiditySnapshots as f4, getTokenTransfers as f5, getTokenTransferTotal as f6, type SearchResult as f7, type GetTokensResult as f8, type GetTokenResult as f9, type GetDexpoolResult as fA, type GetDexpoolSnapshotsResult as fB, getHotTokens as fC, getNewTokens as fD, getStocksTokens as fE, getFinalStretchTokens as fF, getMigratedTokens as fG, type GetHotTokensResult as fH, type GetNewTokensResult as fI, type GetStocksTokensResult as fJ, type GetFinalStretchTokensResult as fK, type GetMigratedTokensResult as fL, getNetWorthSummary as fM, getPnlByWallet as fN, getWalletFirstTx as fO, calculatePnl as fP, getNetWorth as fQ, getTokensBalance as fR, getNetWorthChart as fS, getNetWorthDetails as fT, getPnl as fU, getPnlDetails as fV, getPnlByToken as fW, getWalletTransfers as fX, getWalletTransferTotal as fY, getBalanceUpdates as fZ, type GetNetWorthSummaryResult as f_, type GetMetadataResult as fa, type GetMetadataMultiResult as fb, type GetPoolsResult as fc, type GetStatsResult as fd, type GetStatsMultiResult as fe, type GetHoldersResult as ff, type GetHoldersMultiResult as fg, type GetCandlesResult as fh, type GetPoolCandlesResult as fi, type GetPairCandlesResult as fj, type GetTopHoldersResult as fk, type GetMarketDataResult as fl, type GetMarketDataMultiResult as fm, type GetPricesResult as fn, type GetPriceByTimeResult as fo, type GetCreationResult as fp, type GetMintAndBurnResult as fq, type ListTokenResult as fr, type GetSecurityResult as fs, type GetDevTokensResult as ft, type GetTokenTradersResult as fu, type GetTokenLiquiditySnapshotsResult as fv, type GetTokenTransfersResult as fw, type GetTokenTransferTotalResult as fx, getDexpool as fy, getDexpoolSnapshots as fz, type WsWalletPnl as g, getEndpointSecret as g$, type GetWalletFirstTxResult as g0, type CalculatePnlResult as g1, type GetNetWorthResult as g2, type GetTokensBalanceResult as g3, type GetNetWorthChartResult as g4, type GetNetWorthDetailsResult as g5, type GetPnlResult as g6, type GetPnlDetailsResult as g7, type GetPnlByTokenResult as g8, type GetWalletTransfersResult as g9, getWithdrawalSummary as gA, getWithdrawalDirectExposure as gB, getWithdrawalAlerts as gC, getWithdrawalAddressIdentifications as gD, getWithdrawalNetworkIdentifications as gE, getWithdrawalFraudAssessment as gF, registerAddress as gG, getAddressRisk as gH, type RegisterTransferResult as gI, type GetTransferSummaryResult as gJ, type GetTransferDirectExposureResult as gK, type GetTransferAlertsResult as gL, type GetTransferNetworkIdentificationsResult as gM, type RegisterWithdrawalResult as gN, type GetWithdrawalSummaryResult as gO, type GetWithdrawalDirectExposureResult as gP, type GetWithdrawalAlertsResult as gQ, type GetWithdrawalAddressIdentificationsResult as gR, type GetWithdrawalNetworkIdentificationsResult as gS, type GetWithdrawalFraudAssessmentResult as gT, type RegisterAddressResult as gU, type GetAddressRiskResult as gV, listEndpoints as gW, createEndpoint as gX, updateEndpoint as gY, getEndpoint as gZ, deleteEndpoint as g_, type GetWalletTransferTotalResult as ga, type GetBalanceUpdatesResult as gb, createRedpacket as gc, claimRedpacket as gd, getRedpacket as ge, getClaims as gf, getRedpackets as gg, getClaimsByAddress as gh, getRedpacketsByAddress as gi, redpacketSend as gj, type CreateRedpacketResult as gk, type ClaimRedpacketResult as gl, type GetRedpacketResult as gm, type GetClaimsResult as gn, type GetRedpacketsResult as go, type GetClaimsByAddressResult as gp, type GetRedpacketsByAddressResult as gq, type RedpacketSendResult as gr, watchlistAdd as gs, type WatchlistAddResult as gt, registerTransfer as gu, getTransferSummary as gv, getTransferDirectExposure as gw, getTransferAlerts as gx, getTransferNetworkIdentifications as gy, registerWithdrawal as gz, type WsNewToken as h, rotateEndpointSecret as h0, type ListEndpointsResult as h1, type CreateEndpointResult as h2, type UpdateEndpointResult as h3, type GetEndpointResult as h4, type DeleteEndpointResult as h5, type GetEndpointSecretResult as h6, type RotateEndpointSecretResult as h7, type PostOptions as h8, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsCandle as r, type WsPriceType as s, type WsTradeActivity as t, type WsWalletTokenPnl as u, WsRankingType as v, WsDex as w, type WsRankingTokenList as x, type ChainStreamClientOptions as y, type ChainStreamRequestContext as z };
|