@mobula_labs/types 0.1.1 → 0.1.2

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.
Files changed (59) hide show
  1. package/dist/cjs/index.cjs +3689 -3391
  2. package/dist/cjs/index.cjs.map +27 -20
  3. package/dist/esm/index.js +3689 -3391
  4. package/dist/esm/index.js.map +27 -20
  5. package/dist/index.d.ts +7 -0
  6. package/dist/misc/ApiKeysQueries.d.ts +4 -0
  7. package/dist/utils/schemas/BaseMessage.d.ts +6 -6
  8. package/dist/utils/schemas/CurrencySchema.d.ts +21 -0
  9. package/dist/utils/schemas/EnrichedHoldersData.d.ts +3 -3
  10. package/dist/utils/schemas/EnrichedMarketData.d.ts +453 -1567
  11. package/dist/utils/schemas/LLMSecuritySchemas.d.ts +260 -0
  12. package/dist/utils/schemas/MarketDetailsOutput.d.ts +22 -31
  13. package/dist/utils/schemas/SecuritySchemas.d.ts +3 -11
  14. package/dist/utils/schemas/TokenDetailsOutput.d.ts +9 -15
  15. package/dist/utils/schemas/WalletDeployerSchema.d.ts +30 -36
  16. package/dist/v1/all/BlockchainSchema.d.ts +6 -6
  17. package/dist/v1/market/MarketBlockchainPairsSchema.d.ts +10 -10
  18. package/dist/v1/market/MarketHistoryPairSchema.d.ts +8 -8
  19. package/dist/v1/market/MarketMultiDataSchema.d.ts +4 -4
  20. package/dist/v1/market/MarketMultiPricesSchema.d.ts +4 -4
  21. package/dist/v1/market/MarketPairSchema.d.ts +76 -106
  22. package/dist/v1/market/MarketPairsSchema.d.ts +12 -25
  23. package/dist/v1/market/MarketTradesPairSchema.d.ts +22 -2
  24. package/dist/v1/metadata/MetadataTrendingsSchema.d.ts +2 -2
  25. package/dist/v1/pulse/PulseSchema.d.ts +138 -294
  26. package/dist/v1/search/SearchSchema.d.ts +20 -24
  27. package/dist/v1/wallet/DeployerSchema.d.ts +17 -19
  28. package/dist/v1/wallet/WalletPortfolioSchema.d.ts +8 -24
  29. package/dist/v1/wallet/WalletTradesSchema.d.ts +13 -15
  30. package/dist/v1/wallet/WalletTransactionSchema.d.ts +8 -8
  31. package/dist/v2/asset/AssetDetailsSchema.d.ts +46 -60
  32. package/dist/v2/explorer/BlockQuerySchema.d.ts +23 -0
  33. package/dist/v2/market/MarketDetailsSchema.d.ts +61 -62
  34. package/dist/v2/perp/PerpBlocksSchema.d.ts +183 -0
  35. package/dist/v2/perp/PerpModels.d.ts +10 -10
  36. package/dist/v2/swap/SwapQuotingBatchOutput.d.ts +18 -18
  37. package/dist/v2/swap/SwapQuotingBatchSchema.d.ts +158 -0
  38. package/dist/v2/swap/SwapQuotingInstructionsOutput.d.ts +2044 -0
  39. package/dist/v2/swap/SwapQuotingOutput.d.ts +18 -18
  40. package/dist/v2/swap/SwapQuotingSchema.d.ts +90 -0
  41. package/dist/v2/token/TokenDetailsSchema.d.ts +33 -30
  42. package/dist/v2/token/TokenKlineBsPointSchema.d.ts +2 -6
  43. package/dist/v2/token/TokenMarketsSchema.d.ts +44 -62
  44. package/dist/v2/token/TokenPositionsSchema.d.ts +3 -0
  45. package/dist/v2/token/TokenSecurityOutput.d.ts +122 -0
  46. package/dist/v2/token/TokenSecurityQuery.d.ts +3 -0
  47. package/dist/v2/token/TokenTradesSchema.d.ts +242 -154
  48. package/dist/v2/wallet/WalletActivityV2Schema.d.ts +11 -15
  49. package/dist/v2/wallet/WalletDefiPositionsSchema.d.ts +12 -0
  50. package/dist/v2/wallet/WalletDeployerSchema.d.ts +17 -19
  51. package/dist/v2/wallet/WalletPerpsPositionsSchema.d.ts +6 -6
  52. package/dist/v2/wallet/WalletPositionsSchema.d.ts +3795 -38
  53. package/dist/v2/wallet/WalletTokenBalancesSchema.d.ts +6 -22
  54. package/dist/wss/BalancePayloadSchema.d.ts +6 -6
  55. package/dist/wss/FastTradePayloadSchema.d.ts +5 -0
  56. package/dist/wss/OhlcvPayloadSchema.d.ts +2 -2
  57. package/dist/wss/PairsPayloadSchema.d.ts +2 -2
  58. package/dist/wss/PositionPayloadSchema.d.ts +2 -2
  59. package/package.json +3 -3
@@ -42,12 +42,12 @@ export declare const SearchParamsSchema: z.ZodObject<{
42
42
  bondedOnly?: boolean | undefined;
43
43
  }>>;
44
44
  mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["trendings", "og"]>>>;
45
- sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["volume_24h", "market_cap", "created_at", "volume_1h", "fees_paid_5min", "fees_paid_1h", "fees_paid_24h", "volume_5min", "holders_count", "organic_volume_1h", "total_fees_paid_usd", "search_score"]>>>;
45
+ sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["volume_24h", "market_cap", "created_at", "volume_1h", "fees_paid_5min", "fees_paid_1h", "fees_paid_24h", "volume_5min", "holders_count", "organic_volume_1h", "total_fees_paid_usd", "search_score", "trending_score_24h"]>>>;
46
46
  excludeBonded: z.ZodOptional<z.ZodBoolean>;
47
47
  limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
48
48
  }, "strip", z.ZodTypeAny, {
49
49
  limit: number;
50
- sortBy: "volume_5min" | "volume_1h" | "volume_24h" | "fees_paid_5min" | "fees_paid_1h" | "fees_paid_24h" | "market_cap" | "created_at" | "holders_count" | "organic_volume_1h" | "total_fees_paid_usd" | "search_score";
50
+ sortBy: "volume_5min" | "volume_1h" | "volume_24h" | "fees_paid_5min" | "fees_paid_1h" | "fees_paid_24h" | "market_cap" | "created_at" | "holders_count" | "organic_volume_1h" | "total_fees_paid_usd" | "search_score" | "trending_score_24h";
51
51
  filters: {
52
52
  blockchains: string[];
53
53
  excludeBonded: boolean;
@@ -65,7 +65,7 @@ export declare const SearchParamsSchema: z.ZodObject<{
65
65
  input: string;
66
66
  type?: "tokens" | "assets" | "pairs" | undefined;
67
67
  limit?: number | undefined;
68
- sortBy?: "volume_5min" | "volume_1h" | "volume_24h" | "fees_paid_5min" | "fees_paid_1h" | "fees_paid_24h" | "market_cap" | "created_at" | "holders_count" | "organic_volume_1h" | "total_fees_paid_usd" | "search_score" | undefined;
68
+ sortBy?: "volume_5min" | "volume_1h" | "volume_24h" | "fees_paid_5min" | "fees_paid_1h" | "fees_paid_24h" | "market_cap" | "created_at" | "holders_count" | "organic_volume_1h" | "total_fees_paid_usd" | "search_score" | "trending_score_24h" | undefined;
69
69
  filters?: string | undefined;
70
70
  excludeBonded?: boolean | undefined;
71
71
  mode?: "trendings" | "og" | undefined;
@@ -836,7 +836,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
836
836
  twitter?: string | null | undefined;
837
837
  website?: string | null | undefined;
838
838
  }>, z.ZodObject<{
839
- token0: z.ZodObject<z.objectUtil.extendShape<{
839
+ token0: z.ZodObject<{
840
840
  address: z.ZodString;
841
841
  chainId: z.ZodString;
842
842
  symbol: z.ZodNullable<z.ZodString>;
@@ -884,7 +884,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
884
884
  atl: z.ZodOptional<z.ZodNumber>;
885
885
  athDate: z.ZodOptional<z.ZodDate>;
886
886
  atlDate: z.ZodOptional<z.ZodDate>;
887
- }, {
887
+ } & {
888
888
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
889
889
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
890
890
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -906,7 +906,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
906
906
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
907
907
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
908
908
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
909
- }>, "strip", z.ZodTypeAny, {
909
+ }, "strip", z.ZodTypeAny, {
910
910
  symbol: string | null;
911
911
  bonded_at: Date | null;
912
912
  name: string | null;
@@ -1033,7 +1033,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
1033
1033
  ath?: number | undefined;
1034
1034
  atl?: number | undefined;
1035
1035
  }>;
1036
- token1: z.ZodObject<z.objectUtil.extendShape<{
1036
+ token1: z.ZodObject<{
1037
1037
  address: z.ZodString;
1038
1038
  chainId: z.ZodString;
1039
1039
  symbol: z.ZodNullable<z.ZodString>;
@@ -1081,7 +1081,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
1081
1081
  atl: z.ZodOptional<z.ZodNumber>;
1082
1082
  athDate: z.ZodOptional<z.ZodDate>;
1083
1083
  atlDate: z.ZodOptional<z.ZodDate>;
1084
- }, {
1084
+ } & {
1085
1085
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1086
1086
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1087
1087
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -1103,7 +1103,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
1103
1103
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1104
1104
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1105
1105
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1106
- }>, "strip", z.ZodTypeAny, {
1106
+ }, "strip", z.ZodTypeAny, {
1107
1107
  symbol: string | null;
1108
1108
  bonded_at: Date | null;
1109
1109
  name: string | null;
@@ -2191,7 +2191,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
2191
2191
  }>;
2192
2192
  export type SearchResponse = z.infer<typeof SearchResponseSchema>;
2193
2193
  export declare const SearchFastResponseSchema: z.ZodObject<{
2194
- data: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
2194
+ data: z.ZodArray<z.ZodObject<{
2195
2195
  address: z.ZodString;
2196
2196
  chainId: z.ZodString;
2197
2197
  symbol: z.ZodNullable<z.ZodString>;
@@ -2209,6 +2209,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2209
2209
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
2210
2210
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2211
2211
  logo: z.ZodNullable<z.ZodString>;
2212
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2212
2213
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
2213
2214
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2214
2215
  exchange: z.ZodOptional<z.ZodObject<{
@@ -2403,7 +2404,6 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2403
2404
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
2404
2405
  createdAt: z.ZodNullable<z.ZodDate>;
2405
2406
  latestTradeDate: z.ZodNullable<z.ZodDate>;
2406
- holdersCount: z.ZodDefault<z.ZodNumber>;
2407
2407
  description: z.ZodNullable<z.ZodString>;
2408
2408
  socials: z.ZodObject<{
2409
2409
  twitter: z.ZodNullable<z.ZodString>;
@@ -2424,17 +2424,9 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2424
2424
  others: Record<string, unknown> | null;
2425
2425
  uri?: string | undefined;
2426
2426
  }>;
2427
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
2428
- buyTax: z.ZodOptional<z.ZodString>;
2429
- sellTax: z.ZodOptional<z.ZodString>;
2430
- transferPausable: z.ZodOptional<z.ZodBoolean>;
2431
- top10Holders: z.ZodOptional<z.ZodString>;
2432
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
2427
+ security: z.ZodNullable<z.ZodObject<{
2433
2428
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
2434
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
2435
- lowLiquidity: z.ZodOptional<z.ZodString>;
2436
- burnRate: z.ZodOptional<z.ZodString>;
2437
- }, {
2429
+ } & {
2438
2430
  buyTax: z.ZodOptional<z.ZodString>;
2439
2431
  sellTax: z.ZodOptional<z.ZodString>;
2440
2432
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -2451,7 +2443,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2451
2443
  isMintable: z.ZodOptional<z.ZodBoolean>;
2452
2444
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
2453
2445
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
2454
- }>, "strip", z.ZodTypeAny, {
2446
+ }, "strip", z.ZodTypeAny, {
2455
2447
  buyTax?: string | undefined;
2456
2448
  sellTax?: string | undefined;
2457
2449
  transferPausable?: boolean | undefined;
@@ -2523,7 +2515,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2523
2515
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
2524
2516
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
2525
2517
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
2526
- }, {
2518
+ } & {
2527
2519
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2528
2520
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2529
2521
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2545,7 +2537,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2545
2537
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2546
2538
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2547
2539
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2548
- }>, "strip", z.ZodTypeAny, {
2540
+ }, "strip", z.ZodTypeAny, {
2549
2541
  symbol: string | null;
2550
2542
  description: string | null;
2551
2543
  name: string | null;
@@ -2828,6 +2820,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
2828
2820
  athDate?: Date | undefined;
2829
2821
  atlDate?: Date | undefined;
2830
2822
  tokenType?: "2020" | "2022" | null | undefined;
2823
+ originLogoUrl?: string | null | undefined;
2831
2824
  }, {
2832
2825
  symbol: string | null;
2833
2826
  description: string | null;
@@ -3022,6 +3015,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
3022
3015
  dexscreenerHeader?: string | null | undefined;
3023
3016
  dexscreenerAdPaid?: boolean | null | undefined;
3024
3017
  deployerMigrationsCount?: number | undefined;
3018
+ originLogoUrl?: string | null | undefined;
3025
3019
  rank?: number | null | undefined;
3026
3020
  cexs?: string[] | undefined;
3027
3021
  organicTrades1min?: number | undefined;
@@ -3396,6 +3390,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
3396
3390
  athDate?: Date | undefined;
3397
3391
  atlDate?: Date | undefined;
3398
3392
  tokenType?: "2020" | "2022" | null | undefined;
3393
+ originLogoUrl?: string | null | undefined;
3399
3394
  }[];
3400
3395
  }, {
3401
3396
  data: {
@@ -3592,6 +3587,7 @@ export declare const SearchFastResponseSchema: z.ZodObject<{
3592
3587
  dexscreenerHeader?: string | null | undefined;
3593
3588
  dexscreenerAdPaid?: boolean | null | undefined;
3594
3589
  deployerMigrationsCount?: number | undefined;
3590
+ originLogoUrl?: string | null | undefined;
3595
3591
  rank?: number | null | undefined;
3596
3592
  cexs?: string[] | undefined;
3597
3593
  organicTrades1min?: number | undefined;
@@ -18,7 +18,7 @@ export declare const WalletV1DeployerParamsSchema: z.ZodObject<{
18
18
  export type WalletV1DeployerParams = z.input<typeof WalletV1DeployerParamsSchema>;
19
19
  export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
20
20
  data: z.ZodArray<z.ZodObject<{
21
- token: z.ZodObject<z.objectUtil.extendShape<{
21
+ token: z.ZodObject<{
22
22
  address: z.ZodString;
23
23
  chainId: z.ZodString;
24
24
  symbol: z.ZodNullable<z.ZodString>;
@@ -36,6 +36,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
36
36
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
37
37
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
38
38
  logo: z.ZodNullable<z.ZodString>;
39
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39
40
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
40
41
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
41
42
  exchange: z.ZodOptional<z.ZodObject<{
@@ -230,7 +231,6 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
230
231
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
231
232
  createdAt: z.ZodNullable<z.ZodDate>;
232
233
  latestTradeDate: z.ZodNullable<z.ZodDate>;
233
- holdersCount: z.ZodDefault<z.ZodNumber>;
234
234
  description: z.ZodNullable<z.ZodString>;
235
235
  socials: z.ZodObject<{
236
236
  twitter: z.ZodNullable<z.ZodString>;
@@ -251,17 +251,9 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
251
251
  others: Record<string, unknown> | null;
252
252
  uri?: string | undefined;
253
253
  }>;
254
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
255
- buyTax: z.ZodOptional<z.ZodString>;
256
- sellTax: z.ZodOptional<z.ZodString>;
257
- transferPausable: z.ZodOptional<z.ZodBoolean>;
258
- top10Holders: z.ZodOptional<z.ZodString>;
259
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
254
+ security: z.ZodNullable<z.ZodObject<{
260
255
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
261
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
262
- lowLiquidity: z.ZodOptional<z.ZodString>;
263
- burnRate: z.ZodOptional<z.ZodString>;
264
- }, {
256
+ } & {
265
257
  buyTax: z.ZodOptional<z.ZodString>;
266
258
  sellTax: z.ZodOptional<z.ZodString>;
267
259
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -278,7 +270,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
278
270
  isMintable: z.ZodOptional<z.ZodBoolean>;
279
271
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
280
272
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
281
- }>, "strip", z.ZodTypeAny, {
273
+ }, "strip", z.ZodTypeAny, {
282
274
  buyTax?: string | undefined;
283
275
  sellTax?: string | undefined;
284
276
  transferPausable?: boolean | undefined;
@@ -350,7 +342,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
350
342
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
351
343
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
352
344
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
353
- }, {
345
+ } & {
354
346
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
355
347
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
356
348
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -372,7 +364,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
372
364
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
373
365
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
374
366
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
375
- }>, "strip", z.ZodTypeAny, {
367
+ }, "strip", z.ZodTypeAny, {
376
368
  symbol: string | null;
377
369
  description: string | null;
378
370
  name: string | null;
@@ -655,6 +647,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
655
647
  athDate?: Date | undefined;
656
648
  atlDate?: Date | undefined;
657
649
  tokenType?: "2020" | "2022" | null | undefined;
650
+ originLogoUrl?: string | null | undefined;
658
651
  }, {
659
652
  symbol: string | null;
660
653
  description: string | null;
@@ -849,6 +842,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
849
842
  dexscreenerHeader?: string | null | undefined;
850
843
  dexscreenerAdPaid?: boolean | null | undefined;
851
844
  deployerMigrationsCount?: number | undefined;
845
+ originLogoUrl?: string | null | undefined;
852
846
  rank?: number | null | undefined;
853
847
  cexs?: string[] | undefined;
854
848
  organicTrades1min?: number | undefined;
@@ -959,6 +953,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
959
953
  balance: number;
960
954
  realizedPnlUSD: number;
961
955
  unrealizedPnlUSD: number;
956
+ amountUSD: number;
962
957
  token: {
963
958
  symbol: string | null;
964
959
  description: string | null;
@@ -1242,8 +1237,8 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1242
1237
  athDate?: Date | undefined;
1243
1238
  atlDate?: Date | undefined;
1244
1239
  tokenType?: "2020" | "2022" | null | undefined;
1240
+ originLogoUrl?: string | null | undefined;
1245
1241
  };
1246
- amountUSD: number;
1247
1242
  rawBalance: string;
1248
1243
  buys: number;
1249
1244
  sells: number;
@@ -1260,6 +1255,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1260
1255
  balance: number;
1261
1256
  realizedPnlUSD: number;
1262
1257
  unrealizedPnlUSD: number;
1258
+ amountUSD: number;
1263
1259
  token: {
1264
1260
  symbol: string | null;
1265
1261
  description: string | null;
@@ -1454,6 +1450,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1454
1450
  dexscreenerHeader?: string | null | undefined;
1455
1451
  dexscreenerAdPaid?: boolean | null | undefined;
1456
1452
  deployerMigrationsCount?: number | undefined;
1453
+ originLogoUrl?: string | null | undefined;
1457
1454
  rank?: number | null | undefined;
1458
1455
  cexs?: string[] | undefined;
1459
1456
  organicTrades1min?: number | undefined;
@@ -1544,7 +1541,6 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1544
1541
  trendingScore12h?: number | undefined;
1545
1542
  trendingScore24h?: number | undefined;
1546
1543
  };
1547
- amountUSD: number;
1548
1544
  rawBalance: string;
1549
1545
  buys: number;
1550
1546
  sells: number;
@@ -1579,6 +1575,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1579
1575
  balance: number;
1580
1576
  realizedPnlUSD: number;
1581
1577
  unrealizedPnlUSD: number;
1578
+ amountUSD: number;
1582
1579
  token: {
1583
1580
  symbol: string | null;
1584
1581
  description: string | null;
@@ -1862,8 +1859,8 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1862
1859
  athDate?: Date | undefined;
1863
1860
  atlDate?: Date | undefined;
1864
1861
  tokenType?: "2020" | "2022" | null | undefined;
1862
+ originLogoUrl?: string | null | undefined;
1865
1863
  };
1866
- amountUSD: number;
1867
1864
  rawBalance: string;
1868
1865
  buys: number;
1869
1866
  sells: number;
@@ -1888,6 +1885,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
1888
1885
  balance: number;
1889
1886
  realizedPnlUSD: number;
1890
1887
  unrealizedPnlUSD: number;
1888
+ amountUSD: number;
1891
1889
  token: {
1892
1890
  symbol: string | null;
1893
1891
  description: string | null;
@@ -2082,6 +2080,7 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
2082
2080
  dexscreenerHeader?: string | null | undefined;
2083
2081
  dexscreenerAdPaid?: boolean | null | undefined;
2084
2082
  deployerMigrationsCount?: number | undefined;
2083
+ originLogoUrl?: string | null | undefined;
2085
2084
  rank?: number | null | undefined;
2086
2085
  cexs?: string[] | undefined;
2087
2086
  organicTrades1min?: number | undefined;
@@ -2172,7 +2171,6 @@ export declare const WalletV1DeployerResponseSchema: z.ZodObject<{
2172
2171
  trendingScore12h?: number | undefined;
2173
2172
  trendingScore24h?: number | undefined;
2174
2173
  };
2175
- amountUSD: number;
2176
2174
  rawBalance: string;
2177
2175
  buys: number;
2178
2176
  sells: number;
@@ -92,17 +92,9 @@ export declare const PortfolioResponseSchema: z.ZodObject<{
92
92
  chainId: z.ZodString;
93
93
  decimals: z.ZodNumber;
94
94
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022", "erc20", "trc10", "trc20"]>>>;
95
- security: z.ZodOptional<z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
96
- buyTax: z.ZodOptional<z.ZodString>;
97
- sellTax: z.ZodOptional<z.ZodString>;
98
- transferPausable: z.ZodOptional<z.ZodBoolean>;
99
- top10Holders: z.ZodOptional<z.ZodString>;
100
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
95
+ security: z.ZodOptional<z.ZodNullable<z.ZodObject<{
101
96
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
102
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
103
- lowLiquidity: z.ZodOptional<z.ZodString>;
104
- burnRate: z.ZodOptional<z.ZodString>;
105
- }, {
97
+ } & {
106
98
  buyTax: z.ZodOptional<z.ZodString>;
107
99
  sellTax: z.ZodOptional<z.ZodString>;
108
100
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -119,9 +111,9 @@ export declare const PortfolioResponseSchema: z.ZodObject<{
119
111
  isMintable: z.ZodOptional<z.ZodBoolean>;
120
112
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
121
113
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
122
- }>, {
114
+ } & {
123
115
  frozen: z.ZodOptional<z.ZodBoolean>;
124
- }>, "strip", z.ZodTypeAny, {
116
+ }, "strip", z.ZodTypeAny, {
125
117
  buyTax?: string | undefined;
126
118
  sellTax?: string | undefined;
127
119
  transferPausable?: boolean | undefined;
@@ -1020,17 +1012,9 @@ export declare const MultiPortfolioResponseSchema: z.ZodObject<{
1020
1012
  chainId: z.ZodString;
1021
1013
  decimals: z.ZodNumber;
1022
1014
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022", "erc20", "trc10", "trc20"]>>>;
1023
- security: z.ZodOptional<z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1024
- buyTax: z.ZodOptional<z.ZodString>;
1025
- sellTax: z.ZodOptional<z.ZodString>;
1026
- transferPausable: z.ZodOptional<z.ZodBoolean>;
1027
- top10Holders: z.ZodOptional<z.ZodString>;
1028
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
1015
+ security: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1029
1016
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
1030
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
1031
- lowLiquidity: z.ZodOptional<z.ZodString>;
1032
- burnRate: z.ZodOptional<z.ZodString>;
1033
- }, {
1017
+ } & {
1034
1018
  buyTax: z.ZodOptional<z.ZodString>;
1035
1019
  sellTax: z.ZodOptional<z.ZodString>;
1036
1020
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -1047,9 +1031,9 @@ export declare const MultiPortfolioResponseSchema: z.ZodObject<{
1047
1031
  isMintable: z.ZodOptional<z.ZodBoolean>;
1048
1032
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
1049
1033
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
1050
- }>, {
1034
+ } & {
1051
1035
  frozen: z.ZodOptional<z.ZodBoolean>;
1052
- }>, "strip", z.ZodTypeAny, {
1036
+ }, "strip", z.ZodTypeAny, {
1053
1037
  buyTax?: string | undefined;
1054
1038
  sellTax?: string | undefined;
1055
1039
  transferPausable?: boolean | undefined;
@@ -58,7 +58,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
58
58
  amount_base: z.ZodNumber;
59
59
  amount_quote_raw: z.ZodString;
60
60
  amount_base_raw: z.ZodString;
61
- base_token: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
61
+ base_token: z.ZodNullable<z.ZodOptional<z.ZodObject<{
62
62
  address: z.ZodString;
63
63
  chainId: z.ZodString;
64
64
  symbol: z.ZodNullable<z.ZodString>;
@@ -76,6 +76,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
76
76
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
77
77
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
78
78
  logo: z.ZodNullable<z.ZodString>;
79
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79
80
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
80
81
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
81
82
  exchange: z.ZodOptional<z.ZodObject<{
@@ -270,7 +271,6 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
270
271
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
271
272
  createdAt: z.ZodNullable<z.ZodDate>;
272
273
  latestTradeDate: z.ZodNullable<z.ZodDate>;
273
- holdersCount: z.ZodDefault<z.ZodNumber>;
274
274
  description: z.ZodNullable<z.ZodString>;
275
275
  socials: z.ZodObject<{
276
276
  twitter: z.ZodNullable<z.ZodString>;
@@ -291,17 +291,9 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
291
291
  others: Record<string, unknown> | null;
292
292
  uri?: string | undefined;
293
293
  }>;
294
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
295
- buyTax: z.ZodOptional<z.ZodString>;
296
- sellTax: z.ZodOptional<z.ZodString>;
297
- transferPausable: z.ZodOptional<z.ZodBoolean>;
298
- top10Holders: z.ZodOptional<z.ZodString>;
299
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
294
+ security: z.ZodNullable<z.ZodObject<{
300
295
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
301
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
302
- lowLiquidity: z.ZodOptional<z.ZodString>;
303
- burnRate: z.ZodOptional<z.ZodString>;
304
- }, {
296
+ } & {
305
297
  buyTax: z.ZodOptional<z.ZodString>;
306
298
  sellTax: z.ZodOptional<z.ZodString>;
307
299
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -318,7 +310,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
318
310
  isMintable: z.ZodOptional<z.ZodBoolean>;
319
311
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
320
312
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
321
- }>, "strip", z.ZodTypeAny, {
313
+ }, "strip", z.ZodTypeAny, {
322
314
  buyTax?: string | undefined;
323
315
  sellTax?: string | undefined;
324
316
  transferPausable?: boolean | undefined;
@@ -390,7 +382,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
390
382
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
391
383
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
392
384
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
393
- }, {
385
+ } & {
394
386
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
395
387
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
396
388
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -412,7 +404,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
412
404
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
413
405
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
414
406
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
415
- }>, "strip", z.ZodTypeAny, {
407
+ }, "strip", z.ZodTypeAny, {
416
408
  symbol: string | null;
417
409
  description: string | null;
418
410
  name: string | null;
@@ -695,6 +687,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
695
687
  athDate?: Date | undefined;
696
688
  atlDate?: Date | undefined;
697
689
  tokenType?: "2020" | "2022" | null | undefined;
690
+ originLogoUrl?: string | null | undefined;
698
691
  }, {
699
692
  symbol: string | null;
700
693
  description: string | null;
@@ -889,6 +882,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
889
882
  dexscreenerHeader?: string | null | undefined;
890
883
  dexscreenerAdPaid?: boolean | null | undefined;
891
884
  deployerMigrationsCount?: number | undefined;
885
+ originLogoUrl?: string | null | undefined;
892
886
  rank?: number | null | undefined;
893
887
  cexs?: string[] | undefined;
894
888
  organicTrades1min?: number | undefined;
@@ -1292,6 +1286,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
1292
1286
  athDate?: Date | undefined;
1293
1287
  atlDate?: Date | undefined;
1294
1288
  tokenType?: "2020" | "2022" | null | undefined;
1289
+ originLogoUrl?: string | null | undefined;
1295
1290
  } | null | undefined;
1296
1291
  }, {
1297
1292
  date: Date;
@@ -1516,6 +1511,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
1516
1511
  dexscreenerHeader?: string | null | undefined;
1517
1512
  dexscreenerAdPaid?: boolean | null | undefined;
1518
1513
  deployerMigrationsCount?: number | undefined;
1514
+ originLogoUrl?: string | null | undefined;
1519
1515
  rank?: number | null | undefined;
1520
1516
  cexs?: string[] | undefined;
1521
1517
  organicTrades1min?: number | undefined;
@@ -1920,6 +1916,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
1920
1916
  athDate?: Date | undefined;
1921
1917
  atlDate?: Date | undefined;
1922
1918
  tokenType?: "2020" | "2022" | null | undefined;
1919
+ originLogoUrl?: string | null | undefined;
1923
1920
  } | null | undefined;
1924
1921
  }[];
1925
1922
  }, {
@@ -2146,6 +2143,7 @@ export declare const WalletTradesResponseSchema: z.ZodObject<{
2146
2143
  dexscreenerHeader?: string | null | undefined;
2147
2144
  dexscreenerAdPaid?: boolean | null | undefined;
2148
2145
  deployerMigrationsCount?: number | undefined;
2146
+ originLogoUrl?: string | null | undefined;
2149
2147
  rank?: number | null | undefined;
2150
2148
  cexs?: string[] | undefined;
2151
2149
  organicTrades1min?: number | undefined;
@@ -743,11 +743,11 @@ export declare const WalletRawTransactionsResponseSchema: z.ZodObject<{
743
743
  }, "strip", z.ZodTypeAny, {
744
744
  status: boolean;
745
745
  name: string;
746
- token: string;
747
746
  amount: string;
748
747
  from: string;
749
748
  to: string;
750
749
  hash: string;
750
+ token: string;
751
751
  chain_id: string;
752
752
  timestamp: string;
753
753
  native_amount: string;
@@ -762,11 +762,11 @@ export declare const WalletRawTransactionsResponseSchema: z.ZodObject<{
762
762
  symbol?: string | undefined;
763
763
  name?: string | undefined;
764
764
  logo?: string | undefined;
765
- token?: string | undefined;
766
765
  amount?: string | undefined;
767
766
  from?: string | undefined;
768
767
  to?: string | undefined;
769
768
  hash?: string | undefined;
769
+ token?: string | undefined;
770
770
  timestamp?: string | undefined;
771
771
  block_number?: number | undefined;
772
772
  method?: string | undefined;
@@ -836,11 +836,11 @@ export declare const WalletRawTransactionsResponseSchema: z.ZodObject<{
836
836
  unified: {
837
837
  status: boolean;
838
838
  name: string;
839
- token: string;
840
839
  amount: string;
841
840
  from: string;
842
841
  to: string;
843
842
  hash: string;
843
+ token: string;
844
844
  chain_id: string;
845
845
  timestamp: string;
846
846
  native_amount: string;
@@ -899,11 +899,11 @@ export declare const WalletRawTransactionsResponseSchema: z.ZodObject<{
899
899
  symbol?: string | undefined;
900
900
  name?: string | undefined;
901
901
  logo?: string | undefined;
902
- token?: string | undefined;
903
902
  amount?: string | undefined;
904
903
  from?: string | undefined;
905
904
  to?: string | undefined;
906
905
  hash?: string | undefined;
906
+ token?: string | undefined;
907
907
  timestamp?: string | undefined;
908
908
  block_number?: number | undefined;
909
909
  method?: string | undefined;
@@ -970,10 +970,10 @@ export declare const WalletNFTTransactionsResponseSchema: z.ZodObject<{
970
970
  status: z.ZodBoolean;
971
971
  }, "strip", z.ZodTypeAny, {
972
972
  status: boolean;
973
- token: string;
974
973
  from: string;
975
974
  to: string;
976
975
  hash: string;
976
+ token: string;
977
977
  chain_id: string;
978
978
  timestamp: string;
979
979
  block_number: number | null;
@@ -984,10 +984,10 @@ export declare const WalletNFTTransactionsResponseSchema: z.ZodObject<{
984
984
  method?: string | undefined;
985
985
  }, {
986
986
  status: boolean;
987
- token: string;
988
987
  from: string;
989
988
  to: string;
990
989
  hash: string;
990
+ token: string;
991
991
  chain_id: string;
992
992
  timestamp: Date;
993
993
  block_number: number | null;
@@ -1038,10 +1038,10 @@ export declare const WalletNFTTransactionsResponseSchema: z.ZodObject<{
1038
1038
  }[];
1039
1039
  unified: {
1040
1040
  status: boolean;
1041
- token: string;
1042
1041
  from: string;
1043
1042
  to: string;
1044
1043
  hash: string;
1044
+ token: string;
1045
1045
  chain_id: string;
1046
1046
  timestamp: string;
1047
1047
  block_number: number | null;
@@ -1075,10 +1075,10 @@ export declare const WalletNFTTransactionsResponseSchema: z.ZodObject<{
1075
1075
  }[];
1076
1076
  unified: {
1077
1077
  status: boolean;
1078
- token: string;
1079
1078
  from: string;
1080
1079
  to: string;
1081
1080
  hash: string;
1081
+ token: string;
1082
1082
  chain_id: string;
1083
1083
  timestamp: Date;
1084
1084
  block_number: number | null;