@mobula_labs/types 0.1.0 → 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 (60) hide show
  1. package/README.md +14 -14
  2. package/dist/cjs/index.cjs +3689 -3391
  3. package/dist/cjs/index.cjs.map +27 -20
  4. package/dist/esm/index.js +3689 -3391
  5. package/dist/esm/index.js.map +27 -20
  6. package/dist/index.d.ts +7 -0
  7. package/dist/misc/ApiKeysQueries.d.ts +4 -0
  8. package/dist/utils/schemas/BaseMessage.d.ts +6 -6
  9. package/dist/utils/schemas/CurrencySchema.d.ts +21 -0
  10. package/dist/utils/schemas/EnrichedHoldersData.d.ts +3 -3
  11. package/dist/utils/schemas/EnrichedMarketData.d.ts +453 -1567
  12. package/dist/utils/schemas/LLMSecuritySchemas.d.ts +260 -0
  13. package/dist/utils/schemas/MarketDetailsOutput.d.ts +22 -31
  14. package/dist/utils/schemas/SecuritySchemas.d.ts +3 -11
  15. package/dist/utils/schemas/TokenDetailsOutput.d.ts +9 -15
  16. package/dist/utils/schemas/WalletDeployerSchema.d.ts +30 -36
  17. package/dist/v1/all/BlockchainSchema.d.ts +6 -6
  18. package/dist/v1/market/MarketBlockchainPairsSchema.d.ts +10 -10
  19. package/dist/v1/market/MarketHistoryPairSchema.d.ts +8 -8
  20. package/dist/v1/market/MarketMultiDataSchema.d.ts +4 -4
  21. package/dist/v1/market/MarketMultiPricesSchema.d.ts +4 -4
  22. package/dist/v1/market/MarketPairSchema.d.ts +76 -106
  23. package/dist/v1/market/MarketPairsSchema.d.ts +12 -25
  24. package/dist/v1/market/MarketTradesPairSchema.d.ts +22 -2
  25. package/dist/v1/metadata/MetadataTrendingsSchema.d.ts +2 -2
  26. package/dist/v1/pulse/PulseSchema.d.ts +138 -294
  27. package/dist/v1/search/SearchSchema.d.ts +20 -24
  28. package/dist/v1/wallet/DeployerSchema.d.ts +17 -19
  29. package/dist/v1/wallet/WalletPortfolioSchema.d.ts +8 -24
  30. package/dist/v1/wallet/WalletTradesSchema.d.ts +13 -15
  31. package/dist/v1/wallet/WalletTransactionSchema.d.ts +8 -8
  32. package/dist/v2/asset/AssetDetailsSchema.d.ts +46 -60
  33. package/dist/v2/explorer/BlockQuerySchema.d.ts +23 -0
  34. package/dist/v2/market/MarketDetailsSchema.d.ts +61 -62
  35. package/dist/v2/perp/PerpBlocksSchema.d.ts +183 -0
  36. package/dist/v2/perp/PerpModels.d.ts +10 -10
  37. package/dist/v2/swap/SwapQuotingBatchOutput.d.ts +18 -18
  38. package/dist/v2/swap/SwapQuotingBatchSchema.d.ts +158 -0
  39. package/dist/v2/swap/SwapQuotingInstructionsOutput.d.ts +2044 -0
  40. package/dist/v2/swap/SwapQuotingOutput.d.ts +18 -18
  41. package/dist/v2/swap/SwapQuotingSchema.d.ts +90 -0
  42. package/dist/v2/token/TokenDetailsSchema.d.ts +33 -30
  43. package/dist/v2/token/TokenKlineBsPointSchema.d.ts +2 -6
  44. package/dist/v2/token/TokenMarketsSchema.d.ts +44 -62
  45. package/dist/v2/token/TokenPositionsSchema.d.ts +3 -0
  46. package/dist/v2/token/TokenSecurityOutput.d.ts +122 -0
  47. package/dist/v2/token/TokenSecurityQuery.d.ts +3 -0
  48. package/dist/v2/token/TokenTradesSchema.d.ts +242 -154
  49. package/dist/v2/wallet/WalletActivityV2Schema.d.ts +11 -15
  50. package/dist/v2/wallet/WalletDefiPositionsSchema.d.ts +12 -0
  51. package/dist/v2/wallet/WalletDeployerSchema.d.ts +17 -19
  52. package/dist/v2/wallet/WalletPerpsPositionsSchema.d.ts +6 -6
  53. package/dist/v2/wallet/WalletPositionsSchema.d.ts +3795 -38
  54. package/dist/v2/wallet/WalletTokenBalancesSchema.d.ts +6 -22
  55. package/dist/wss/BalancePayloadSchema.d.ts +6 -6
  56. package/dist/wss/FastTradePayloadSchema.d.ts +5 -0
  57. package/dist/wss/OhlcvPayloadSchema.d.ts +2 -2
  58. package/dist/wss/PairsPayloadSchema.d.ts +2 -2
  59. package/dist/wss/PositionPayloadSchema.d.ts +2 -2
  60. package/package.json +4 -4
@@ -9,8 +9,8 @@ export declare const TokenTradesParamsSchema: z.ZodObject<{
9
9
  mode: z.ZodDefault<z.ZodEnum<["pair", "asset"]>>;
10
10
  label: z.ZodOptional<z.ZodNativeEnum<typeof Tags>>;
11
11
  swapTypes: z.ZodEffects<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, string[], string | string[]>>, string[] | undefined, string | string[] | undefined>;
12
- swapSenderAddresses: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, string[], string | string[]>>;
13
- transactionSenderAddresses: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, string[], string | string[]>>;
12
+ swapSenderAddresses: z.ZodEffects<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, string[], string | string[]>>, string[] | undefined, string | string[] | undefined>;
13
+ transactionSenderAddresses: z.ZodEffects<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, string[], string | string[]>>, string[] | undefined, string | string[] | undefined>;
14
14
  maxAmountUSD: z.ZodOptional<z.ZodNumber>;
15
15
  minAmountUSD: z.ZodOptional<z.ZodNumber>;
16
16
  fromDate: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodNumber>, z.ZodOptional<z.ZodDate>]>, Date | undefined, number | Date | undefined>, Date | undefined, number | Date | undefined>;
@@ -19,7 +19,7 @@ export declare const TokenTradesParamsSchema: z.ZodObject<{
19
19
  limit: number;
20
20
  offset: number;
21
21
  sortOrder: "asc" | "desc";
22
- mode: "pair" | "asset";
22
+ mode: "asset" | "pair";
23
23
  address?: string | undefined;
24
24
  blockchain?: string | undefined;
25
25
  fromDate?: Date | undefined;
@@ -36,7 +36,7 @@ export declare const TokenTradesParamsSchema: z.ZodObject<{
36
36
  limit?: number | undefined;
37
37
  offset?: number | undefined;
38
38
  sortOrder?: "asc" | "desc" | undefined;
39
- mode?: "pair" | "asset" | undefined;
39
+ mode?: "asset" | "pair" | undefined;
40
40
  fromDate?: number | Date | undefined;
41
41
  toDate?: number | Date | undefined;
42
42
  transactionSenderAddresses?: string | string[] | undefined;
@@ -71,7 +71,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
71
71
  baseTokenPriceUSD: z.ZodNumber;
72
72
  quoteTokenPriceUSD: z.ZodNumber;
73
73
  labels: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
74
- baseToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
74
+ baseToken: z.ZodOptional<z.ZodObject<{
75
75
  address: z.ZodString;
76
76
  chainId: z.ZodString;
77
77
  symbol: z.ZodNullable<z.ZodString>;
@@ -89,6 +89,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
89
89
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
90
90
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
91
91
  logo: z.ZodNullable<z.ZodString>;
92
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
93
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
93
94
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
94
95
  exchange: z.ZodOptional<z.ZodObject<{
@@ -283,7 +284,6 @@ export declare const TokenTradeOutput: z.ZodObject<{
283
284
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
284
285
  createdAt: z.ZodNullable<z.ZodDate>;
285
286
  latestTradeDate: z.ZodNullable<z.ZodDate>;
286
- holdersCount: z.ZodDefault<z.ZodNumber>;
287
287
  description: z.ZodNullable<z.ZodString>;
288
288
  socials: z.ZodObject<{
289
289
  twitter: z.ZodNullable<z.ZodString>;
@@ -304,17 +304,9 @@ export declare const TokenTradeOutput: z.ZodObject<{
304
304
  others: Record<string, unknown> | null;
305
305
  uri?: string | undefined;
306
306
  }>;
307
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
308
- buyTax: z.ZodOptional<z.ZodString>;
309
- sellTax: z.ZodOptional<z.ZodString>;
310
- transferPausable: z.ZodOptional<z.ZodBoolean>;
311
- top10Holders: z.ZodOptional<z.ZodString>;
312
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
307
+ security: z.ZodNullable<z.ZodObject<{
313
308
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
314
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
315
- lowLiquidity: z.ZodOptional<z.ZodString>;
316
- burnRate: z.ZodOptional<z.ZodString>;
317
- }, {
309
+ } & {
318
310
  buyTax: z.ZodOptional<z.ZodString>;
319
311
  sellTax: z.ZodOptional<z.ZodString>;
320
312
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -331,7 +323,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
331
323
  isMintable: z.ZodOptional<z.ZodBoolean>;
332
324
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
333
325
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
334
- }>, "strip", z.ZodTypeAny, {
326
+ }, "strip", z.ZodTypeAny, {
335
327
  buyTax?: string | undefined;
336
328
  sellTax?: string | undefined;
337
329
  transferPausable?: boolean | undefined;
@@ -403,7 +395,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
403
395
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
404
396
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
405
397
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
406
- }, {
398
+ } & {
407
399
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
408
400
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
409
401
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -425,7 +417,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
425
417
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
426
418
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
427
419
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
428
- }>, "strip", z.ZodTypeAny, {
420
+ }, "strip", z.ZodTypeAny, {
429
421
  symbol: string | null;
430
422
  description: string | null;
431
423
  name: string | null;
@@ -708,6 +700,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
708
700
  athDate?: Date | undefined;
709
701
  atlDate?: Date | undefined;
710
702
  tokenType?: "2020" | "2022" | null | undefined;
703
+ originLogoUrl?: string | null | undefined;
711
704
  }, {
712
705
  symbol: string | null;
713
706
  description: string | null;
@@ -902,6 +895,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
902
895
  dexscreenerHeader?: string | null | undefined;
903
896
  dexscreenerAdPaid?: boolean | null | undefined;
904
897
  deployerMigrationsCount?: number | undefined;
898
+ originLogoUrl?: string | null | undefined;
905
899
  rank?: number | null | undefined;
906
900
  cexs?: string[] | undefined;
907
901
  organicTrades1min?: number | undefined;
@@ -992,7 +986,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
992
986
  trendingScore12h?: number | undefined;
993
987
  trendingScore24h?: number | undefined;
994
988
  }>>;
995
- quoteToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
989
+ quoteToken: z.ZodOptional<z.ZodObject<{
996
990
  address: z.ZodString;
997
991
  chainId: z.ZodString;
998
992
  symbol: z.ZodNullable<z.ZodString>;
@@ -1010,6 +1004,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1010
1004
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
1011
1005
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1012
1006
  logo: z.ZodNullable<z.ZodString>;
1007
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1013
1008
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1014
1009
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1015
1010
  exchange: z.ZodOptional<z.ZodObject<{
@@ -1204,7 +1199,6 @@ export declare const TokenTradeOutput: z.ZodObject<{
1204
1199
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
1205
1200
  createdAt: z.ZodNullable<z.ZodDate>;
1206
1201
  latestTradeDate: z.ZodNullable<z.ZodDate>;
1207
- holdersCount: z.ZodDefault<z.ZodNumber>;
1208
1202
  description: z.ZodNullable<z.ZodString>;
1209
1203
  socials: z.ZodObject<{
1210
1204
  twitter: z.ZodNullable<z.ZodString>;
@@ -1225,17 +1219,9 @@ export declare const TokenTradeOutput: z.ZodObject<{
1225
1219
  others: Record<string, unknown> | null;
1226
1220
  uri?: string | undefined;
1227
1221
  }>;
1228
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
1229
- buyTax: z.ZodOptional<z.ZodString>;
1230
- sellTax: z.ZodOptional<z.ZodString>;
1231
- transferPausable: z.ZodOptional<z.ZodBoolean>;
1232
- top10Holders: z.ZodOptional<z.ZodString>;
1233
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
1222
+ security: z.ZodNullable<z.ZodObject<{
1234
1223
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
1235
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
1236
- lowLiquidity: z.ZodOptional<z.ZodString>;
1237
- burnRate: z.ZodOptional<z.ZodString>;
1238
- }, {
1224
+ } & {
1239
1225
  buyTax: z.ZodOptional<z.ZodString>;
1240
1226
  sellTax: z.ZodOptional<z.ZodString>;
1241
1227
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -1252,7 +1238,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1252
1238
  isMintable: z.ZodOptional<z.ZodBoolean>;
1253
1239
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
1254
1240
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
1255
- }>, "strip", z.ZodTypeAny, {
1241
+ }, "strip", z.ZodTypeAny, {
1256
1242
  buyTax?: string | undefined;
1257
1243
  sellTax?: string | undefined;
1258
1244
  transferPausable?: boolean | undefined;
@@ -1324,7 +1310,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1324
1310
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
1325
1311
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
1326
1312
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
1327
- }, {
1313
+ } & {
1328
1314
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1329
1315
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1330
1316
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -1346,7 +1332,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1346
1332
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1347
1333
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1348
1334
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1349
- }>, "strip", z.ZodTypeAny, {
1335
+ }, "strip", z.ZodTypeAny, {
1350
1336
  symbol: string | null;
1351
1337
  description: string | null;
1352
1338
  name: string | null;
@@ -1629,6 +1615,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1629
1615
  athDate?: Date | undefined;
1630
1616
  atlDate?: Date | undefined;
1631
1617
  tokenType?: "2020" | "2022" | null | undefined;
1618
+ originLogoUrl?: string | null | undefined;
1632
1619
  }, {
1633
1620
  symbol: string | null;
1634
1621
  description: string | null;
@@ -1823,6 +1810,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
1823
1810
  dexscreenerHeader?: string | null | undefined;
1824
1811
  dexscreenerAdPaid?: boolean | null | undefined;
1825
1812
  deployerMigrationsCount?: number | undefined;
1813
+ originLogoUrl?: string | null | undefined;
1826
1814
  rank?: number | null | undefined;
1827
1815
  cexs?: string[] | undefined;
1828
1816
  organicTrades1min?: number | undefined;
@@ -1913,6 +1901,10 @@ export declare const TokenTradeOutput: z.ZodObject<{
1913
1901
  trendingScore12h?: number | undefined;
1914
1902
  trendingScore24h?: number | undefined;
1915
1903
  }>>;
1904
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1905
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1906
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1907
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1916
1908
  }, "strip", z.ZodTypeAny, {
1917
1909
  type: string;
1918
1910
  date: number;
@@ -2215,6 +2207,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
2215
2207
  athDate?: Date | undefined;
2216
2208
  atlDate?: Date | undefined;
2217
2209
  tokenType?: "2020" | "2022" | null | undefined;
2210
+ originLogoUrl?: string | null | undefined;
2218
2211
  } | undefined;
2219
2212
  quoteToken?: {
2220
2213
  symbol: string | null;
@@ -2499,7 +2492,12 @@ export declare const TokenTradeOutput: z.ZodObject<{
2499
2492
  athDate?: Date | undefined;
2500
2493
  atlDate?: Date | undefined;
2501
2494
  tokenType?: "2020" | "2022" | null | undefined;
2495
+ originLogoUrl?: string | null | undefined;
2502
2496
  } | undefined;
2497
+ totalFeesUSD?: number | null | undefined;
2498
+ gasFeesUSD?: number | null | undefined;
2499
+ platformFeesUSD?: number | null | undefined;
2500
+ mevFeesUSD?: number | null | undefined;
2503
2501
  preBalanceBaseToken?: string | null | undefined;
2504
2502
  preBalanceQuoteToken?: string | null | undefined;
2505
2503
  postBalanceBaseToken?: string | null | undefined;
@@ -2716,6 +2714,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
2716
2714
  dexscreenerHeader?: string | null | undefined;
2717
2715
  dexscreenerAdPaid?: boolean | null | undefined;
2718
2716
  deployerMigrationsCount?: number | undefined;
2717
+ originLogoUrl?: string | null | undefined;
2719
2718
  rank?: number | null | undefined;
2720
2719
  cexs?: string[] | undefined;
2721
2720
  organicTrades1min?: number | undefined;
@@ -3000,6 +2999,7 @@ export declare const TokenTradeOutput: z.ZodObject<{
3000
2999
  dexscreenerHeader?: string | null | undefined;
3001
3000
  dexscreenerAdPaid?: boolean | null | undefined;
3002
3001
  deployerMigrationsCount?: number | undefined;
3002
+ originLogoUrl?: string | null | undefined;
3003
3003
  rank?: number | null | undefined;
3004
3004
  cexs?: string[] | undefined;
3005
3005
  organicTrades1min?: number | undefined;
@@ -3090,6 +3090,10 @@ export declare const TokenTradeOutput: z.ZodObject<{
3090
3090
  trendingScore12h?: number | undefined;
3091
3091
  trendingScore24h?: number | undefined;
3092
3092
  } | undefined;
3093
+ totalFeesUSD?: number | null | undefined;
3094
+ gasFeesUSD?: number | null | undefined;
3095
+ platformFeesUSD?: number | null | undefined;
3096
+ mevFeesUSD?: number | null | undefined;
3093
3097
  labels?: string[] | null | undefined;
3094
3098
  preBalanceBaseToken?: string | null | undefined;
3095
3099
  preBalanceQuoteToken?: string | null | undefined;
@@ -3120,7 +3124,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3120
3124
  baseTokenPriceUSD: z.ZodNumber;
3121
3125
  quoteTokenPriceUSD: z.ZodNumber;
3122
3126
  labels: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
3123
- baseToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
3127
+ baseToken: z.ZodOptional<z.ZodObject<{
3124
3128
  address: z.ZodString;
3125
3129
  chainId: z.ZodString;
3126
3130
  symbol: z.ZodNullable<z.ZodString>;
@@ -3138,6 +3142,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3138
3142
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
3139
3143
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
3140
3144
  logo: z.ZodNullable<z.ZodString>;
3145
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3141
3146
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
3142
3147
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
3143
3148
  exchange: z.ZodOptional<z.ZodObject<{
@@ -3332,7 +3337,6 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3332
3337
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
3333
3338
  createdAt: z.ZodNullable<z.ZodDate>;
3334
3339
  latestTradeDate: z.ZodNullable<z.ZodDate>;
3335
- holdersCount: z.ZodDefault<z.ZodNumber>;
3336
3340
  description: z.ZodNullable<z.ZodString>;
3337
3341
  socials: z.ZodObject<{
3338
3342
  twitter: z.ZodNullable<z.ZodString>;
@@ -3353,17 +3357,9 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3353
3357
  others: Record<string, unknown> | null;
3354
3358
  uri?: string | undefined;
3355
3359
  }>;
3356
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
3357
- buyTax: z.ZodOptional<z.ZodString>;
3358
- sellTax: z.ZodOptional<z.ZodString>;
3359
- transferPausable: z.ZodOptional<z.ZodBoolean>;
3360
- top10Holders: z.ZodOptional<z.ZodString>;
3361
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
3360
+ security: z.ZodNullable<z.ZodObject<{
3362
3361
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
3363
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
3364
- lowLiquidity: z.ZodOptional<z.ZodString>;
3365
- burnRate: z.ZodOptional<z.ZodString>;
3366
- }, {
3362
+ } & {
3367
3363
  buyTax: z.ZodOptional<z.ZodString>;
3368
3364
  sellTax: z.ZodOptional<z.ZodString>;
3369
3365
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -3380,7 +3376,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3380
3376
  isMintable: z.ZodOptional<z.ZodBoolean>;
3381
3377
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
3382
3378
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
3383
- }>, "strip", z.ZodTypeAny, {
3379
+ }, "strip", z.ZodTypeAny, {
3384
3380
  buyTax?: string | undefined;
3385
3381
  sellTax?: string | undefined;
3386
3382
  transferPausable?: boolean | undefined;
@@ -3452,7 +3448,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3452
3448
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
3453
3449
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
3454
3450
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
3455
- }, {
3451
+ } & {
3456
3452
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3457
3453
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3458
3454
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -3474,7 +3470,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3474
3470
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3475
3471
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3476
3472
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3477
- }>, "strip", z.ZodTypeAny, {
3473
+ }, "strip", z.ZodTypeAny, {
3478
3474
  symbol: string | null;
3479
3475
  description: string | null;
3480
3476
  name: string | null;
@@ -3757,6 +3753,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3757
3753
  athDate?: Date | undefined;
3758
3754
  atlDate?: Date | undefined;
3759
3755
  tokenType?: "2020" | "2022" | null | undefined;
3756
+ originLogoUrl?: string | null | undefined;
3760
3757
  }, {
3761
3758
  symbol: string | null;
3762
3759
  description: string | null;
@@ -3951,6 +3948,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
3951
3948
  dexscreenerHeader?: string | null | undefined;
3952
3949
  dexscreenerAdPaid?: boolean | null | undefined;
3953
3950
  deployerMigrationsCount?: number | undefined;
3951
+ originLogoUrl?: string | null | undefined;
3954
3952
  rank?: number | null | undefined;
3955
3953
  cexs?: string[] | undefined;
3956
3954
  organicTrades1min?: number | undefined;
@@ -4041,7 +4039,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4041
4039
  trendingScore12h?: number | undefined;
4042
4040
  trendingScore24h?: number | undefined;
4043
4041
  }>>;
4044
- quoteToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
4042
+ quoteToken: z.ZodOptional<z.ZodObject<{
4045
4043
  address: z.ZodString;
4046
4044
  chainId: z.ZodString;
4047
4045
  symbol: z.ZodNullable<z.ZodString>;
@@ -4059,6 +4057,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4059
4057
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
4060
4058
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
4061
4059
  logo: z.ZodNullable<z.ZodString>;
4060
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4062
4061
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
4063
4062
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
4064
4063
  exchange: z.ZodOptional<z.ZodObject<{
@@ -4253,7 +4252,6 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4253
4252
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
4254
4253
  createdAt: z.ZodNullable<z.ZodDate>;
4255
4254
  latestTradeDate: z.ZodNullable<z.ZodDate>;
4256
- holdersCount: z.ZodDefault<z.ZodNumber>;
4257
4255
  description: z.ZodNullable<z.ZodString>;
4258
4256
  socials: z.ZodObject<{
4259
4257
  twitter: z.ZodNullable<z.ZodString>;
@@ -4274,17 +4272,9 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4274
4272
  others: Record<string, unknown> | null;
4275
4273
  uri?: string | undefined;
4276
4274
  }>;
4277
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
4278
- buyTax: z.ZodOptional<z.ZodString>;
4279
- sellTax: z.ZodOptional<z.ZodString>;
4280
- transferPausable: z.ZodOptional<z.ZodBoolean>;
4281
- top10Holders: z.ZodOptional<z.ZodString>;
4282
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
4275
+ security: z.ZodNullable<z.ZodObject<{
4283
4276
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
4284
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
4285
- lowLiquidity: z.ZodOptional<z.ZodString>;
4286
- burnRate: z.ZodOptional<z.ZodString>;
4287
- }, {
4277
+ } & {
4288
4278
  buyTax: z.ZodOptional<z.ZodString>;
4289
4279
  sellTax: z.ZodOptional<z.ZodString>;
4290
4280
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -4301,7 +4291,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4301
4291
  isMintable: z.ZodOptional<z.ZodBoolean>;
4302
4292
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
4303
4293
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
4304
- }>, "strip", z.ZodTypeAny, {
4294
+ }, "strip", z.ZodTypeAny, {
4305
4295
  buyTax?: string | undefined;
4306
4296
  sellTax?: string | undefined;
4307
4297
  transferPausable?: boolean | undefined;
@@ -4373,7 +4363,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4373
4363
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
4374
4364
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
4375
4365
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
4376
- }, {
4366
+ } & {
4377
4367
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4378
4368
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4379
4369
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -4395,7 +4385,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4395
4385
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4396
4386
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4397
4387
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4398
- }>, "strip", z.ZodTypeAny, {
4388
+ }, "strip", z.ZodTypeAny, {
4399
4389
  symbol: string | null;
4400
4390
  description: string | null;
4401
4391
  name: string | null;
@@ -4678,6 +4668,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4678
4668
  athDate?: Date | undefined;
4679
4669
  atlDate?: Date | undefined;
4680
4670
  tokenType?: "2020" | "2022" | null | undefined;
4671
+ originLogoUrl?: string | null | undefined;
4681
4672
  }, {
4682
4673
  symbol: string | null;
4683
4674
  description: string | null;
@@ -4872,6 +4863,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4872
4863
  dexscreenerHeader?: string | null | undefined;
4873
4864
  dexscreenerAdPaid?: boolean | null | undefined;
4874
4865
  deployerMigrationsCount?: number | undefined;
4866
+ originLogoUrl?: string | null | undefined;
4875
4867
  rank?: number | null | undefined;
4876
4868
  cexs?: string[] | undefined;
4877
4869
  organicTrades1min?: number | undefined;
@@ -4962,6 +4954,10 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
4962
4954
  trendingScore12h?: number | undefined;
4963
4955
  trendingScore24h?: number | undefined;
4964
4956
  }>>;
4957
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4958
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4959
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4960
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4965
4961
  }, "strip", z.ZodTypeAny, {
4966
4962
  type: string;
4967
4963
  date: number;
@@ -5264,6 +5260,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
5264
5260
  athDate?: Date | undefined;
5265
5261
  atlDate?: Date | undefined;
5266
5262
  tokenType?: "2020" | "2022" | null | undefined;
5263
+ originLogoUrl?: string | null | undefined;
5267
5264
  } | undefined;
5268
5265
  quoteToken?: {
5269
5266
  symbol: string | null;
@@ -5548,7 +5545,12 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
5548
5545
  athDate?: Date | undefined;
5549
5546
  atlDate?: Date | undefined;
5550
5547
  tokenType?: "2020" | "2022" | null | undefined;
5548
+ originLogoUrl?: string | null | undefined;
5551
5549
  } | undefined;
5550
+ totalFeesUSD?: number | null | undefined;
5551
+ gasFeesUSD?: number | null | undefined;
5552
+ platformFeesUSD?: number | null | undefined;
5553
+ mevFeesUSD?: number | null | undefined;
5552
5554
  preBalanceBaseToken?: string | null | undefined;
5553
5555
  preBalanceQuoteToken?: string | null | undefined;
5554
5556
  postBalanceBaseToken?: string | null | undefined;
@@ -5765,6 +5767,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
5765
5767
  dexscreenerHeader?: string | null | undefined;
5766
5768
  dexscreenerAdPaid?: boolean | null | undefined;
5767
5769
  deployerMigrationsCount?: number | undefined;
5770
+ originLogoUrl?: string | null | undefined;
5768
5771
  rank?: number | null | undefined;
5769
5772
  cexs?: string[] | undefined;
5770
5773
  organicTrades1min?: number | undefined;
@@ -6049,6 +6052,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
6049
6052
  dexscreenerHeader?: string | null | undefined;
6050
6053
  dexscreenerAdPaid?: boolean | null | undefined;
6051
6054
  deployerMigrationsCount?: number | undefined;
6055
+ originLogoUrl?: string | null | undefined;
6052
6056
  rank?: number | null | undefined;
6053
6057
  cexs?: string[] | undefined;
6054
6058
  organicTrades1min?: number | undefined;
@@ -6139,6 +6143,10 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
6139
6143
  trendingScore12h?: number | undefined;
6140
6144
  trendingScore24h?: number | undefined;
6141
6145
  } | undefined;
6146
+ totalFeesUSD?: number | null | undefined;
6147
+ gasFeesUSD?: number | null | undefined;
6148
+ platformFeesUSD?: number | null | undefined;
6149
+ mevFeesUSD?: number | null | undefined;
6142
6150
  labels?: string[] | null | undefined;
6143
6151
  preBalanceBaseToken?: string | null | undefined;
6144
6152
  preBalanceQuoteToken?: string | null | undefined;
@@ -6448,6 +6456,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
6448
6456
  athDate?: Date | undefined;
6449
6457
  atlDate?: Date | undefined;
6450
6458
  tokenType?: "2020" | "2022" | null | undefined;
6459
+ originLogoUrl?: string | null | undefined;
6451
6460
  } | undefined;
6452
6461
  quoteToken?: {
6453
6462
  symbol: string | null;
@@ -6732,7 +6741,12 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
6732
6741
  athDate?: Date | undefined;
6733
6742
  atlDate?: Date | undefined;
6734
6743
  tokenType?: "2020" | "2022" | null | undefined;
6744
+ originLogoUrl?: string | null | undefined;
6735
6745
  } | undefined;
6746
+ totalFeesUSD?: number | null | undefined;
6747
+ gasFeesUSD?: number | null | undefined;
6748
+ platformFeesUSD?: number | null | undefined;
6749
+ mevFeesUSD?: number | null | undefined;
6736
6750
  preBalanceBaseToken?: string | null | undefined;
6737
6751
  preBalanceQuoteToken?: string | null | undefined;
6738
6752
  postBalanceBaseToken?: string | null | undefined;
@@ -6951,6 +6965,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
6951
6965
  dexscreenerHeader?: string | null | undefined;
6952
6966
  dexscreenerAdPaid?: boolean | null | undefined;
6953
6967
  deployerMigrationsCount?: number | undefined;
6968
+ originLogoUrl?: string | null | undefined;
6954
6969
  rank?: number | null | undefined;
6955
6970
  cexs?: string[] | undefined;
6956
6971
  organicTrades1min?: number | undefined;
@@ -7235,6 +7250,7 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
7235
7250
  dexscreenerHeader?: string | null | undefined;
7236
7251
  dexscreenerAdPaid?: boolean | null | undefined;
7237
7252
  deployerMigrationsCount?: number | undefined;
7253
+ originLogoUrl?: string | null | undefined;
7238
7254
  rank?: number | null | undefined;
7239
7255
  cexs?: string[] | undefined;
7240
7256
  organicTrades1min?: number | undefined;
@@ -7325,6 +7341,10 @@ export declare const TokenTradeResponseSchema: z.ZodObject<{
7325
7341
  trendingScore12h?: number | undefined;
7326
7342
  trendingScore24h?: number | undefined;
7327
7343
  } | undefined;
7344
+ totalFeesUSD?: number | null | undefined;
7345
+ gasFeesUSD?: number | null | undefined;
7346
+ platformFeesUSD?: number | null | undefined;
7347
+ mevFeesUSD?: number | null | undefined;
7328
7348
  labels?: string[] | null | undefined;
7329
7349
  preBalanceBaseToken?: string | null | undefined;
7330
7350
  preBalanceQuoteToken?: string | null | undefined;
@@ -7357,7 +7377,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7357
7377
  baseTokenPriceUSD: z.ZodNumber;
7358
7378
  quoteTokenPriceUSD: z.ZodNumber;
7359
7379
  labels: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
7360
- baseToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
7380
+ baseToken: z.ZodOptional<z.ZodObject<{
7361
7381
  address: z.ZodString;
7362
7382
  chainId: z.ZodString;
7363
7383
  symbol: z.ZodNullable<z.ZodString>;
@@ -7375,6 +7395,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7375
7395
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
7376
7396
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
7377
7397
  logo: z.ZodNullable<z.ZodString>;
7398
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7378
7399
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
7379
7400
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
7380
7401
  exchange: z.ZodOptional<z.ZodObject<{
@@ -7569,7 +7590,6 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7569
7590
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
7570
7591
  createdAt: z.ZodNullable<z.ZodDate>;
7571
7592
  latestTradeDate: z.ZodNullable<z.ZodDate>;
7572
- holdersCount: z.ZodDefault<z.ZodNumber>;
7573
7593
  description: z.ZodNullable<z.ZodString>;
7574
7594
  socials: z.ZodObject<{
7575
7595
  twitter: z.ZodNullable<z.ZodString>;
@@ -7590,17 +7610,9 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7590
7610
  others: Record<string, unknown> | null;
7591
7611
  uri?: string | undefined;
7592
7612
  }>;
7593
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
7594
- buyTax: z.ZodOptional<z.ZodString>;
7595
- sellTax: z.ZodOptional<z.ZodString>;
7596
- transferPausable: z.ZodOptional<z.ZodBoolean>;
7597
- top10Holders: z.ZodOptional<z.ZodString>;
7598
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
7613
+ security: z.ZodNullable<z.ZodObject<{
7599
7614
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
7600
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
7601
- lowLiquidity: z.ZodOptional<z.ZodString>;
7602
- burnRate: z.ZodOptional<z.ZodString>;
7603
- }, {
7615
+ } & {
7604
7616
  buyTax: z.ZodOptional<z.ZodString>;
7605
7617
  sellTax: z.ZodOptional<z.ZodString>;
7606
7618
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -7617,7 +7629,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7617
7629
  isMintable: z.ZodOptional<z.ZodBoolean>;
7618
7630
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
7619
7631
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
7620
- }>, "strip", z.ZodTypeAny, {
7632
+ }, "strip", z.ZodTypeAny, {
7621
7633
  buyTax?: string | undefined;
7622
7634
  sellTax?: string | undefined;
7623
7635
  transferPausable?: boolean | undefined;
@@ -7689,7 +7701,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7689
7701
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
7690
7702
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
7691
7703
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
7692
- }, {
7704
+ } & {
7693
7705
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7694
7706
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7695
7707
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7711,7 +7723,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7711
7723
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7712
7724
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7713
7725
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7714
- }>, "strip", z.ZodTypeAny, {
7726
+ }, "strip", z.ZodTypeAny, {
7715
7727
  symbol: string | null;
7716
7728
  description: string | null;
7717
7729
  name: string | null;
@@ -7994,6 +8006,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
7994
8006
  athDate?: Date | undefined;
7995
8007
  atlDate?: Date | undefined;
7996
8008
  tokenType?: "2020" | "2022" | null | undefined;
8009
+ originLogoUrl?: string | null | undefined;
7997
8010
  }, {
7998
8011
  symbol: string | null;
7999
8012
  description: string | null;
@@ -8188,6 +8201,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8188
8201
  dexscreenerHeader?: string | null | undefined;
8189
8202
  dexscreenerAdPaid?: boolean | null | undefined;
8190
8203
  deployerMigrationsCount?: number | undefined;
8204
+ originLogoUrl?: string | null | undefined;
8191
8205
  rank?: number | null | undefined;
8192
8206
  cexs?: string[] | undefined;
8193
8207
  organicTrades1min?: number | undefined;
@@ -8278,7 +8292,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8278
8292
  trendingScore12h?: number | undefined;
8279
8293
  trendingScore24h?: number | undefined;
8280
8294
  }>>;
8281
- quoteToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
8295
+ quoteToken: z.ZodOptional<z.ZodObject<{
8282
8296
  address: z.ZodString;
8283
8297
  chainId: z.ZodString;
8284
8298
  symbol: z.ZodNullable<z.ZodString>;
@@ -8296,6 +8310,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8296
8310
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
8297
8311
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
8298
8312
  logo: z.ZodNullable<z.ZodString>;
8313
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8299
8314
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
8300
8315
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
8301
8316
  exchange: z.ZodOptional<z.ZodObject<{
@@ -8490,7 +8505,6 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8490
8505
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
8491
8506
  createdAt: z.ZodNullable<z.ZodDate>;
8492
8507
  latestTradeDate: z.ZodNullable<z.ZodDate>;
8493
- holdersCount: z.ZodDefault<z.ZodNumber>;
8494
8508
  description: z.ZodNullable<z.ZodString>;
8495
8509
  socials: z.ZodObject<{
8496
8510
  twitter: z.ZodNullable<z.ZodString>;
@@ -8511,17 +8525,9 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8511
8525
  others: Record<string, unknown> | null;
8512
8526
  uri?: string | undefined;
8513
8527
  }>;
8514
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
8515
- buyTax: z.ZodOptional<z.ZodString>;
8516
- sellTax: z.ZodOptional<z.ZodString>;
8517
- transferPausable: z.ZodOptional<z.ZodBoolean>;
8518
- top10Holders: z.ZodOptional<z.ZodString>;
8519
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
8528
+ security: z.ZodNullable<z.ZodObject<{
8520
8529
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
8521
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
8522
- lowLiquidity: z.ZodOptional<z.ZodString>;
8523
- burnRate: z.ZodOptional<z.ZodString>;
8524
- }, {
8530
+ } & {
8525
8531
  buyTax: z.ZodOptional<z.ZodString>;
8526
8532
  sellTax: z.ZodOptional<z.ZodString>;
8527
8533
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -8538,7 +8544,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8538
8544
  isMintable: z.ZodOptional<z.ZodBoolean>;
8539
8545
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
8540
8546
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
8541
- }>, "strip", z.ZodTypeAny, {
8547
+ }, "strip", z.ZodTypeAny, {
8542
8548
  buyTax?: string | undefined;
8543
8549
  sellTax?: string | undefined;
8544
8550
  transferPausable?: boolean | undefined;
@@ -8610,7 +8616,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8610
8616
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
8611
8617
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
8612
8618
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
8613
- }, {
8619
+ } & {
8614
8620
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8615
8621
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8616
8622
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -8632,7 +8638,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8632
8638
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8633
8639
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8634
8640
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8635
- }>, "strip", z.ZodTypeAny, {
8641
+ }, "strip", z.ZodTypeAny, {
8636
8642
  symbol: string | null;
8637
8643
  description: string | null;
8638
8644
  name: string | null;
@@ -8915,6 +8921,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
8915
8921
  athDate?: Date | undefined;
8916
8922
  atlDate?: Date | undefined;
8917
8923
  tokenType?: "2020" | "2022" | null | undefined;
8924
+ originLogoUrl?: string | null | undefined;
8918
8925
  }, {
8919
8926
  symbol: string | null;
8920
8927
  description: string | null;
@@ -9109,6 +9116,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
9109
9116
  dexscreenerHeader?: string | null | undefined;
9110
9117
  dexscreenerAdPaid?: boolean | null | undefined;
9111
9118
  deployerMigrationsCount?: number | undefined;
9119
+ originLogoUrl?: string | null | undefined;
9112
9120
  rank?: number | null | undefined;
9113
9121
  cexs?: string[] | undefined;
9114
9122
  organicTrades1min?: number | undefined;
@@ -9199,6 +9207,10 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
9199
9207
  trendingScore12h?: number | undefined;
9200
9208
  trendingScore24h?: number | undefined;
9201
9209
  }>>;
9210
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9211
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9212
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9213
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9202
9214
  }, "strip", z.ZodTypeAny, {
9203
9215
  type: string;
9204
9216
  date: number;
@@ -9501,6 +9513,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
9501
9513
  athDate?: Date | undefined;
9502
9514
  atlDate?: Date | undefined;
9503
9515
  tokenType?: "2020" | "2022" | null | undefined;
9516
+ originLogoUrl?: string | null | undefined;
9504
9517
  } | undefined;
9505
9518
  quoteToken?: {
9506
9519
  symbol: string | null;
@@ -9785,7 +9798,12 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
9785
9798
  athDate?: Date | undefined;
9786
9799
  atlDate?: Date | undefined;
9787
9800
  tokenType?: "2020" | "2022" | null | undefined;
9801
+ originLogoUrl?: string | null | undefined;
9788
9802
  } | undefined;
9803
+ totalFeesUSD?: number | null | undefined;
9804
+ gasFeesUSD?: number | null | undefined;
9805
+ platformFeesUSD?: number | null | undefined;
9806
+ mevFeesUSD?: number | null | undefined;
9789
9807
  preBalanceBaseToken?: string | null | undefined;
9790
9808
  preBalanceQuoteToken?: string | null | undefined;
9791
9809
  postBalanceBaseToken?: string | null | undefined;
@@ -10002,6 +10020,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
10002
10020
  dexscreenerHeader?: string | null | undefined;
10003
10021
  dexscreenerAdPaid?: boolean | null | undefined;
10004
10022
  deployerMigrationsCount?: number | undefined;
10023
+ originLogoUrl?: string | null | undefined;
10005
10024
  rank?: number | null | undefined;
10006
10025
  cexs?: string[] | undefined;
10007
10026
  organicTrades1min?: number | undefined;
@@ -10286,6 +10305,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
10286
10305
  dexscreenerHeader?: string | null | undefined;
10287
10306
  dexscreenerAdPaid?: boolean | null | undefined;
10288
10307
  deployerMigrationsCount?: number | undefined;
10308
+ originLogoUrl?: string | null | undefined;
10289
10309
  rank?: number | null | undefined;
10290
10310
  cexs?: string[] | undefined;
10291
10311
  organicTrades1min?: number | undefined;
@@ -10376,6 +10396,10 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
10376
10396
  trendingScore12h?: number | undefined;
10377
10397
  trendingScore24h?: number | undefined;
10378
10398
  } | undefined;
10399
+ totalFeesUSD?: number | null | undefined;
10400
+ gasFeesUSD?: number | null | undefined;
10401
+ platformFeesUSD?: number | null | undefined;
10402
+ mevFeesUSD?: number | null | undefined;
10379
10403
  labels?: string[] | null | undefined;
10380
10404
  preBalanceBaseToken?: string | null | undefined;
10381
10405
  preBalanceQuoteToken?: string | null | undefined;
@@ -10685,6 +10709,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
10685
10709
  athDate?: Date | undefined;
10686
10710
  atlDate?: Date | undefined;
10687
10711
  tokenType?: "2020" | "2022" | null | undefined;
10712
+ originLogoUrl?: string | null | undefined;
10688
10713
  } | undefined;
10689
10714
  quoteToken?: {
10690
10715
  symbol: string | null;
@@ -10969,7 +10994,12 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
10969
10994
  athDate?: Date | undefined;
10970
10995
  atlDate?: Date | undefined;
10971
10996
  tokenType?: "2020" | "2022" | null | undefined;
10997
+ originLogoUrl?: string | null | undefined;
10972
10998
  } | undefined;
10999
+ totalFeesUSD?: number | null | undefined;
11000
+ gasFeesUSD?: number | null | undefined;
11001
+ platformFeesUSD?: number | null | undefined;
11002
+ mevFeesUSD?: number | null | undefined;
10973
11003
  preBalanceBaseToken?: string | null | undefined;
10974
11004
  preBalanceQuoteToken?: string | null | undefined;
10975
11005
  postBalanceBaseToken?: string | null | undefined;
@@ -11188,6 +11218,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
11188
11218
  dexscreenerHeader?: string | null | undefined;
11189
11219
  dexscreenerAdPaid?: boolean | null | undefined;
11190
11220
  deployerMigrationsCount?: number | undefined;
11221
+ originLogoUrl?: string | null | undefined;
11191
11222
  rank?: number | null | undefined;
11192
11223
  cexs?: string[] | undefined;
11193
11224
  organicTrades1min?: number | undefined;
@@ -11472,6 +11503,7 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
11472
11503
  dexscreenerHeader?: string | null | undefined;
11473
11504
  dexscreenerAdPaid?: boolean | null | undefined;
11474
11505
  deployerMigrationsCount?: number | undefined;
11506
+ originLogoUrl?: string | null | undefined;
11475
11507
  rank?: number | null | undefined;
11476
11508
  cexs?: string[] | undefined;
11477
11509
  organicTrades1min?: number | undefined;
@@ -11562,6 +11594,10 @@ export declare const SingleTokenTradeResponseSchema: z.ZodObject<{
11562
11594
  trendingScore12h?: number | undefined;
11563
11595
  trendingScore24h?: number | undefined;
11564
11596
  } | undefined;
11597
+ totalFeesUSD?: number | null | undefined;
11598
+ gasFeesUSD?: number | null | undefined;
11599
+ platformFeesUSD?: number | null | undefined;
11600
+ mevFeesUSD?: number | null | undefined;
11565
11601
  labels?: string[] | null | undefined;
11566
11602
  preBalanceBaseToken?: string | null | undefined;
11567
11603
  preBalanceQuoteToken?: string | null | undefined;
@@ -11587,6 +11623,10 @@ export declare const FormattedTokenTradeOutput: z.ZodObject<{
11587
11623
  sender: z.ZodString;
11588
11624
  tokenAmountRaw: z.ZodString;
11589
11625
  tokenAmountRawVs: z.ZodString;
11626
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11627
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11628
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11629
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11590
11630
  }, "strip", z.ZodTypeAny, {
11591
11631
  type: string;
11592
11632
  date: number;
@@ -11604,6 +11644,10 @@ export declare const FormattedTokenTradeOutput: z.ZodObject<{
11604
11644
  tokenAmountUsd: number;
11605
11645
  tokenAmountVsUsd: number;
11606
11646
  tokenAmountRawVs: string;
11647
+ totalFeesUSD?: number | null | undefined;
11648
+ gasFeesUSD?: number | null | undefined;
11649
+ platformFeesUSD?: number | null | undefined;
11650
+ mevFeesUSD?: number | null | undefined;
11607
11651
  }, {
11608
11652
  type: string;
11609
11653
  date: number;
@@ -11620,6 +11664,10 @@ export declare const FormattedTokenTradeOutput: z.ZodObject<{
11620
11664
  tokenAmountUsd: number;
11621
11665
  tokenAmountVsUsd: number;
11622
11666
  tokenAmountRawVs: string;
11667
+ totalFeesUSD?: number | null | undefined;
11668
+ gasFeesUSD?: number | null | undefined;
11669
+ platformFeesUSD?: number | null | undefined;
11670
+ mevFeesUSD?: number | null | undefined;
11623
11671
  labels?: string[] | null | undefined;
11624
11672
  }>;
11625
11673
  export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
@@ -11640,6 +11688,10 @@ export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
11640
11688
  sender: z.ZodString;
11641
11689
  tokenAmountRaw: z.ZodString;
11642
11690
  tokenAmountRawVs: z.ZodString;
11691
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11692
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11693
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11694
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11643
11695
  }, "strip", z.ZodTypeAny, {
11644
11696
  type: string;
11645
11697
  date: number;
@@ -11657,6 +11709,10 @@ export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
11657
11709
  tokenAmountUsd: number;
11658
11710
  tokenAmountVsUsd: number;
11659
11711
  tokenAmountRawVs: string;
11712
+ totalFeesUSD?: number | null | undefined;
11713
+ gasFeesUSD?: number | null | undefined;
11714
+ platformFeesUSD?: number | null | undefined;
11715
+ mevFeesUSD?: number | null | undefined;
11660
11716
  }, {
11661
11717
  type: string;
11662
11718
  date: number;
@@ -11673,6 +11729,10 @@ export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
11673
11729
  tokenAmountUsd: number;
11674
11730
  tokenAmountVsUsd: number;
11675
11731
  tokenAmountRawVs: string;
11732
+ totalFeesUSD?: number | null | undefined;
11733
+ gasFeesUSD?: number | null | undefined;
11734
+ platformFeesUSD?: number | null | undefined;
11735
+ mevFeesUSD?: number | null | undefined;
11676
11736
  labels?: string[] | null | undefined;
11677
11737
  }>, "many">;
11678
11738
  }, "strip", z.ZodTypeAny, {
@@ -11693,6 +11753,10 @@ export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
11693
11753
  tokenAmountUsd: number;
11694
11754
  tokenAmountVsUsd: number;
11695
11755
  tokenAmountRawVs: string;
11756
+ totalFeesUSD?: number | null | undefined;
11757
+ gasFeesUSD?: number | null | undefined;
11758
+ platformFeesUSD?: number | null | undefined;
11759
+ mevFeesUSD?: number | null | undefined;
11696
11760
  }[];
11697
11761
  }, {
11698
11762
  data: {
@@ -11711,6 +11775,10 @@ export declare const FormattedTokenTradeResponseSchema: z.ZodObject<{
11711
11775
  tokenAmountUsd: number;
11712
11776
  tokenAmountVsUsd: number;
11713
11777
  tokenAmountRawVs: string;
11778
+ totalFeesUSD?: number | null | undefined;
11779
+ gasFeesUSD?: number | null | undefined;
11780
+ platformFeesUSD?: number | null | undefined;
11781
+ mevFeesUSD?: number | null | undefined;
11714
11782
  labels?: string[] | null | undefined;
11715
11783
  }[];
11716
11784
  }>;
@@ -11756,7 +11824,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
11756
11824
  baseTokenPriceUSD: z.ZodNumber;
11757
11825
  quoteTokenPriceUSD: z.ZodNumber;
11758
11826
  labels: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
11759
- baseToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
11827
+ baseToken: z.ZodOptional<z.ZodObject<{
11760
11828
  address: z.ZodString;
11761
11829
  chainId: z.ZodString;
11762
11830
  symbol: z.ZodNullable<z.ZodString>;
@@ -11774,6 +11842,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
11774
11842
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
11775
11843
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
11776
11844
  logo: z.ZodNullable<z.ZodString>;
11845
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11777
11846
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
11778
11847
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
11779
11848
  exchange: z.ZodOptional<z.ZodObject<{
@@ -11968,7 +12037,6 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
11968
12037
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
11969
12038
  createdAt: z.ZodNullable<z.ZodDate>;
11970
12039
  latestTradeDate: z.ZodNullable<z.ZodDate>;
11971
- holdersCount: z.ZodDefault<z.ZodNumber>;
11972
12040
  description: z.ZodNullable<z.ZodString>;
11973
12041
  socials: z.ZodObject<{
11974
12042
  twitter: z.ZodNullable<z.ZodString>;
@@ -11989,17 +12057,9 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
11989
12057
  others: Record<string, unknown> | null;
11990
12058
  uri?: string | undefined;
11991
12059
  }>;
11992
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
11993
- buyTax: z.ZodOptional<z.ZodString>;
11994
- sellTax: z.ZodOptional<z.ZodString>;
11995
- transferPausable: z.ZodOptional<z.ZodBoolean>;
11996
- top10Holders: z.ZodOptional<z.ZodString>;
11997
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
12060
+ security: z.ZodNullable<z.ZodObject<{
11998
12061
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
11999
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
12000
- lowLiquidity: z.ZodOptional<z.ZodString>;
12001
- burnRate: z.ZodOptional<z.ZodString>;
12002
- }, {
12062
+ } & {
12003
12063
  buyTax: z.ZodOptional<z.ZodString>;
12004
12064
  sellTax: z.ZodOptional<z.ZodString>;
12005
12065
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -12016,7 +12076,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12016
12076
  isMintable: z.ZodOptional<z.ZodBoolean>;
12017
12077
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
12018
12078
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
12019
- }>, "strip", z.ZodTypeAny, {
12079
+ }, "strip", z.ZodTypeAny, {
12020
12080
  buyTax?: string | undefined;
12021
12081
  sellTax?: string | undefined;
12022
12082
  transferPausable?: boolean | undefined;
@@ -12088,7 +12148,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12088
12148
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
12089
12149
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
12090
12150
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
12091
- }, {
12151
+ } & {
12092
12152
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12093
12153
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12094
12154
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -12110,7 +12170,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12110
12170
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12111
12171
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12112
12172
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12113
- }>, "strip", z.ZodTypeAny, {
12173
+ }, "strip", z.ZodTypeAny, {
12114
12174
  symbol: string | null;
12115
12175
  description: string | null;
12116
12176
  name: string | null;
@@ -12393,6 +12453,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12393
12453
  athDate?: Date | undefined;
12394
12454
  atlDate?: Date | undefined;
12395
12455
  tokenType?: "2020" | "2022" | null | undefined;
12456
+ originLogoUrl?: string | null | undefined;
12396
12457
  }, {
12397
12458
  symbol: string | null;
12398
12459
  description: string | null;
@@ -12587,6 +12648,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12587
12648
  dexscreenerHeader?: string | null | undefined;
12588
12649
  dexscreenerAdPaid?: boolean | null | undefined;
12589
12650
  deployerMigrationsCount?: number | undefined;
12651
+ originLogoUrl?: string | null | undefined;
12590
12652
  rank?: number | null | undefined;
12591
12653
  cexs?: string[] | undefined;
12592
12654
  organicTrades1min?: number | undefined;
@@ -12677,7 +12739,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12677
12739
  trendingScore12h?: number | undefined;
12678
12740
  trendingScore24h?: number | undefined;
12679
12741
  }>>;
12680
- quoteToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
12742
+ quoteToken: z.ZodOptional<z.ZodObject<{
12681
12743
  address: z.ZodString;
12682
12744
  chainId: z.ZodString;
12683
12745
  symbol: z.ZodNullable<z.ZodString>;
@@ -12695,6 +12757,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12695
12757
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
12696
12758
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
12697
12759
  logo: z.ZodNullable<z.ZodString>;
12760
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12698
12761
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
12699
12762
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12700
12763
  exchange: z.ZodOptional<z.ZodObject<{
@@ -12889,7 +12952,6 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12889
12952
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
12890
12953
  createdAt: z.ZodNullable<z.ZodDate>;
12891
12954
  latestTradeDate: z.ZodNullable<z.ZodDate>;
12892
- holdersCount: z.ZodDefault<z.ZodNumber>;
12893
12955
  description: z.ZodNullable<z.ZodString>;
12894
12956
  socials: z.ZodObject<{
12895
12957
  twitter: z.ZodNullable<z.ZodString>;
@@ -12910,17 +12972,9 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12910
12972
  others: Record<string, unknown> | null;
12911
12973
  uri?: string | undefined;
12912
12974
  }>;
12913
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
12914
- buyTax: z.ZodOptional<z.ZodString>;
12915
- sellTax: z.ZodOptional<z.ZodString>;
12916
- transferPausable: z.ZodOptional<z.ZodBoolean>;
12917
- top10Holders: z.ZodOptional<z.ZodString>;
12918
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
12975
+ security: z.ZodNullable<z.ZodObject<{
12919
12976
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
12920
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
12921
- lowLiquidity: z.ZodOptional<z.ZodString>;
12922
- burnRate: z.ZodOptional<z.ZodString>;
12923
- }, {
12977
+ } & {
12924
12978
  buyTax: z.ZodOptional<z.ZodString>;
12925
12979
  sellTax: z.ZodOptional<z.ZodString>;
12926
12980
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -12937,7 +12991,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
12937
12991
  isMintable: z.ZodOptional<z.ZodBoolean>;
12938
12992
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
12939
12993
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
12940
- }>, "strip", z.ZodTypeAny, {
12994
+ }, "strip", z.ZodTypeAny, {
12941
12995
  buyTax?: string | undefined;
12942
12996
  sellTax?: string | undefined;
12943
12997
  transferPausable?: boolean | undefined;
@@ -13009,7 +13063,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13009
13063
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
13010
13064
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
13011
13065
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
13012
- }, {
13066
+ } & {
13013
13067
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13014
13068
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13015
13069
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -13031,7 +13085,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13031
13085
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13032
13086
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13033
13087
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13034
- }>, "strip", z.ZodTypeAny, {
13088
+ }, "strip", z.ZodTypeAny, {
13035
13089
  symbol: string | null;
13036
13090
  description: string | null;
13037
13091
  name: string | null;
@@ -13314,6 +13368,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13314
13368
  athDate?: Date | undefined;
13315
13369
  atlDate?: Date | undefined;
13316
13370
  tokenType?: "2020" | "2022" | null | undefined;
13371
+ originLogoUrl?: string | null | undefined;
13317
13372
  }, {
13318
13373
  symbol: string | null;
13319
13374
  description: string | null;
@@ -13508,6 +13563,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13508
13563
  dexscreenerHeader?: string | null | undefined;
13509
13564
  dexscreenerAdPaid?: boolean | null | undefined;
13510
13565
  deployerMigrationsCount?: number | undefined;
13566
+ originLogoUrl?: string | null | undefined;
13511
13567
  rank?: number | null | undefined;
13512
13568
  cexs?: string[] | undefined;
13513
13569
  organicTrades1min?: number | undefined;
@@ -13598,6 +13654,10 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13598
13654
  trendingScore12h?: number | undefined;
13599
13655
  trendingScore24h?: number | undefined;
13600
13656
  }>>;
13657
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13658
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13659
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13660
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13601
13661
  }, "strip", z.ZodTypeAny, {
13602
13662
  type: string;
13603
13663
  date: number;
@@ -13900,6 +13960,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
13900
13960
  athDate?: Date | undefined;
13901
13961
  atlDate?: Date | undefined;
13902
13962
  tokenType?: "2020" | "2022" | null | undefined;
13963
+ originLogoUrl?: string | null | undefined;
13903
13964
  } | undefined;
13904
13965
  quoteToken?: {
13905
13966
  symbol: string | null;
@@ -14184,7 +14245,12 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
14184
14245
  athDate?: Date | undefined;
14185
14246
  atlDate?: Date | undefined;
14186
14247
  tokenType?: "2020" | "2022" | null | undefined;
14248
+ originLogoUrl?: string | null | undefined;
14187
14249
  } | undefined;
14250
+ totalFeesUSD?: number | null | undefined;
14251
+ gasFeesUSD?: number | null | undefined;
14252
+ platformFeesUSD?: number | null | undefined;
14253
+ mevFeesUSD?: number | null | undefined;
14188
14254
  }, {
14189
14255
  type: string;
14190
14256
  date: number;
@@ -14397,6 +14463,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
14397
14463
  dexscreenerHeader?: string | null | undefined;
14398
14464
  dexscreenerAdPaid?: boolean | null | undefined;
14399
14465
  deployerMigrationsCount?: number | undefined;
14466
+ originLogoUrl?: string | null | undefined;
14400
14467
  rank?: number | null | undefined;
14401
14468
  cexs?: string[] | undefined;
14402
14469
  organicTrades1min?: number | undefined;
@@ -14681,6 +14748,7 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
14681
14748
  dexscreenerHeader?: string | null | undefined;
14682
14749
  dexscreenerAdPaid?: boolean | null | undefined;
14683
14750
  deployerMigrationsCount?: number | undefined;
14751
+ originLogoUrl?: string | null | undefined;
14684
14752
  rank?: number | null | undefined;
14685
14753
  cexs?: string[] | undefined;
14686
14754
  organicTrades1min?: number | undefined;
@@ -14771,6 +14839,10 @@ export declare const TokenTradeOutputOpenAPI: z.ZodObject<{
14771
14839
  trendingScore12h?: number | undefined;
14772
14840
  trendingScore24h?: number | undefined;
14773
14841
  } | undefined;
14842
+ totalFeesUSD?: number | null | undefined;
14843
+ gasFeesUSD?: number | null | undefined;
14844
+ platformFeesUSD?: number | null | undefined;
14845
+ mevFeesUSD?: number | null | undefined;
14774
14846
  labels?: string[] | null | undefined;
14775
14847
  }>;
14776
14848
  export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
@@ -14793,7 +14865,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
14793
14865
  baseTokenPriceUSD: z.ZodNumber;
14794
14866
  quoteTokenPriceUSD: z.ZodNumber;
14795
14867
  labels: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
14796
- baseToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
14868
+ baseToken: z.ZodOptional<z.ZodObject<{
14797
14869
  address: z.ZodString;
14798
14870
  chainId: z.ZodString;
14799
14871
  symbol: z.ZodNullable<z.ZodString>;
@@ -14811,6 +14883,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
14811
14883
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
14812
14884
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
14813
14885
  logo: z.ZodNullable<z.ZodString>;
14886
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14814
14887
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
14815
14888
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
14816
14889
  exchange: z.ZodOptional<z.ZodObject<{
@@ -15005,7 +15078,6 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15005
15078
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
15006
15079
  createdAt: z.ZodNullable<z.ZodDate>;
15007
15080
  latestTradeDate: z.ZodNullable<z.ZodDate>;
15008
- holdersCount: z.ZodDefault<z.ZodNumber>;
15009
15081
  description: z.ZodNullable<z.ZodString>;
15010
15082
  socials: z.ZodObject<{
15011
15083
  twitter: z.ZodNullable<z.ZodString>;
@@ -15026,17 +15098,9 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15026
15098
  others: Record<string, unknown> | null;
15027
15099
  uri?: string | undefined;
15028
15100
  }>;
15029
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
15030
- buyTax: z.ZodOptional<z.ZodString>;
15031
- sellTax: z.ZodOptional<z.ZodString>;
15032
- transferPausable: z.ZodOptional<z.ZodBoolean>;
15033
- top10Holders: z.ZodOptional<z.ZodString>;
15034
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
15101
+ security: z.ZodNullable<z.ZodObject<{
15035
15102
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
15036
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
15037
- lowLiquidity: z.ZodOptional<z.ZodString>;
15038
- burnRate: z.ZodOptional<z.ZodString>;
15039
- }, {
15103
+ } & {
15040
15104
  buyTax: z.ZodOptional<z.ZodString>;
15041
15105
  sellTax: z.ZodOptional<z.ZodString>;
15042
15106
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -15053,7 +15117,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15053
15117
  isMintable: z.ZodOptional<z.ZodBoolean>;
15054
15118
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
15055
15119
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
15056
- }>, "strip", z.ZodTypeAny, {
15120
+ }, "strip", z.ZodTypeAny, {
15057
15121
  buyTax?: string | undefined;
15058
15122
  sellTax?: string | undefined;
15059
15123
  transferPausable?: boolean | undefined;
@@ -15125,7 +15189,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15125
15189
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
15126
15190
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
15127
15191
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
15128
- }, {
15192
+ } & {
15129
15193
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15130
15194
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15131
15195
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -15147,7 +15211,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15147
15211
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15148
15212
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15149
15213
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15150
- }>, "strip", z.ZodTypeAny, {
15214
+ }, "strip", z.ZodTypeAny, {
15151
15215
  symbol: string | null;
15152
15216
  description: string | null;
15153
15217
  name: string | null;
@@ -15430,6 +15494,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15430
15494
  athDate?: Date | undefined;
15431
15495
  atlDate?: Date | undefined;
15432
15496
  tokenType?: "2020" | "2022" | null | undefined;
15497
+ originLogoUrl?: string | null | undefined;
15433
15498
  }, {
15434
15499
  symbol: string | null;
15435
15500
  description: string | null;
@@ -15624,6 +15689,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15624
15689
  dexscreenerHeader?: string | null | undefined;
15625
15690
  dexscreenerAdPaid?: boolean | null | undefined;
15626
15691
  deployerMigrationsCount?: number | undefined;
15692
+ originLogoUrl?: string | null | undefined;
15627
15693
  rank?: number | null | undefined;
15628
15694
  cexs?: string[] | undefined;
15629
15695
  organicTrades1min?: number | undefined;
@@ -15714,7 +15780,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15714
15780
  trendingScore12h?: number | undefined;
15715
15781
  trendingScore24h?: number | undefined;
15716
15782
  }>>;
15717
- quoteToken: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
15783
+ quoteToken: z.ZodOptional<z.ZodObject<{
15718
15784
  address: z.ZodString;
15719
15785
  chainId: z.ZodString;
15720
15786
  symbol: z.ZodNullable<z.ZodString>;
@@ -15732,6 +15798,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15732
15798
  marketCapUSD: z.ZodDefault<z.ZodNumber>;
15733
15799
  marketCapDilutedUSD: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
15734
15800
  logo: z.ZodNullable<z.ZodString>;
15801
+ originLogoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15735
15802
  rank: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
15736
15803
  cexs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
15737
15804
  exchange: z.ZodOptional<z.ZodObject<{
@@ -15926,7 +15993,6 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15926
15993
  organicSellers24h: z.ZodDefault<z.ZodNumber>;
15927
15994
  createdAt: z.ZodNullable<z.ZodDate>;
15928
15995
  latestTradeDate: z.ZodNullable<z.ZodDate>;
15929
- holdersCount: z.ZodDefault<z.ZodNumber>;
15930
15996
  description: z.ZodNullable<z.ZodString>;
15931
15997
  socials: z.ZodObject<{
15932
15998
  twitter: z.ZodNullable<z.ZodString>;
@@ -15947,17 +16013,9 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15947
16013
  others: Record<string, unknown> | null;
15948
16014
  uri?: string | undefined;
15949
16015
  }>;
15950
- security: z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
15951
- buyTax: z.ZodOptional<z.ZodString>;
15952
- sellTax: z.ZodOptional<z.ZodString>;
15953
- transferPausable: z.ZodOptional<z.ZodBoolean>;
15954
- top10Holders: z.ZodOptional<z.ZodString>;
15955
- isBlacklisted: z.ZodOptional<z.ZodBoolean>;
16016
+ security: z.ZodNullable<z.ZodObject<{
15956
16017
  noMintAuthority: z.ZodOptional<z.ZodBoolean>;
15957
- balanceMutable: z.ZodOptional<z.ZodBoolean>;
15958
- lowLiquidity: z.ZodOptional<z.ZodString>;
15959
- burnRate: z.ZodOptional<z.ZodString>;
15960
- }, {
16018
+ } & {
15961
16019
  buyTax: z.ZodOptional<z.ZodString>;
15962
16020
  sellTax: z.ZodOptional<z.ZodString>;
15963
16021
  transferPausable: z.ZodOptional<z.ZodBoolean>;
@@ -15974,7 +16032,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
15974
16032
  isMintable: z.ZodOptional<z.ZodBoolean>;
15975
16033
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
15976
16034
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
15977
- }>, "strip", z.ZodTypeAny, {
16035
+ }, "strip", z.ZodTypeAny, {
15978
16036
  buyTax?: string | undefined;
15979
16037
  sellTax?: string | undefined;
15980
16038
  transferPausable?: boolean | undefined;
@@ -16046,7 +16104,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16046
16104
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
16047
16105
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
16048
16106
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
16049
- }, {
16107
+ } & {
16050
16108
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16051
16109
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16052
16110
  top50HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -16068,7 +16126,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16068
16126
  freshTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16069
16127
  proTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16070
16128
  smartTradersBuys: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16071
- }>, "strip", z.ZodTypeAny, {
16129
+ }, "strip", z.ZodTypeAny, {
16072
16130
  symbol: string | null;
16073
16131
  description: string | null;
16074
16132
  name: string | null;
@@ -16351,6 +16409,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16351
16409
  athDate?: Date | undefined;
16352
16410
  atlDate?: Date | undefined;
16353
16411
  tokenType?: "2020" | "2022" | null | undefined;
16412
+ originLogoUrl?: string | null | undefined;
16354
16413
  }, {
16355
16414
  symbol: string | null;
16356
16415
  description: string | null;
@@ -16545,6 +16604,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16545
16604
  dexscreenerHeader?: string | null | undefined;
16546
16605
  dexscreenerAdPaid?: boolean | null | undefined;
16547
16606
  deployerMigrationsCount?: number | undefined;
16607
+ originLogoUrl?: string | null | undefined;
16548
16608
  rank?: number | null | undefined;
16549
16609
  cexs?: string[] | undefined;
16550
16610
  organicTrades1min?: number | undefined;
@@ -16635,6 +16695,10 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16635
16695
  trendingScore12h?: number | undefined;
16636
16696
  trendingScore24h?: number | undefined;
16637
16697
  }>>;
16698
+ totalFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16699
+ gasFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16700
+ platformFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16701
+ mevFeesUSD: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16638
16702
  }, "strip", z.ZodTypeAny, {
16639
16703
  type: string;
16640
16704
  date: number;
@@ -16937,6 +17001,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
16937
17001
  athDate?: Date | undefined;
16938
17002
  atlDate?: Date | undefined;
16939
17003
  tokenType?: "2020" | "2022" | null | undefined;
17004
+ originLogoUrl?: string | null | undefined;
16940
17005
  } | undefined;
16941
17006
  quoteToken?: {
16942
17007
  symbol: string | null;
@@ -17221,7 +17286,12 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
17221
17286
  athDate?: Date | undefined;
17222
17287
  atlDate?: Date | undefined;
17223
17288
  tokenType?: "2020" | "2022" | null | undefined;
17289
+ originLogoUrl?: string | null | undefined;
17224
17290
  } | undefined;
17291
+ totalFeesUSD?: number | null | undefined;
17292
+ gasFeesUSD?: number | null | undefined;
17293
+ platformFeesUSD?: number | null | undefined;
17294
+ mevFeesUSD?: number | null | undefined;
17225
17295
  }, {
17226
17296
  type: string;
17227
17297
  date: number;
@@ -17434,6 +17504,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
17434
17504
  dexscreenerHeader?: string | null | undefined;
17435
17505
  dexscreenerAdPaid?: boolean | null | undefined;
17436
17506
  deployerMigrationsCount?: number | undefined;
17507
+ originLogoUrl?: string | null | undefined;
17437
17508
  rank?: number | null | undefined;
17438
17509
  cexs?: string[] | undefined;
17439
17510
  organicTrades1min?: number | undefined;
@@ -17718,6 +17789,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
17718
17789
  dexscreenerHeader?: string | null | undefined;
17719
17790
  dexscreenerAdPaid?: boolean | null | undefined;
17720
17791
  deployerMigrationsCount?: number | undefined;
17792
+ originLogoUrl?: string | null | undefined;
17721
17793
  rank?: number | null | undefined;
17722
17794
  cexs?: string[] | undefined;
17723
17795
  organicTrades1min?: number | undefined;
@@ -17808,6 +17880,10 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
17808
17880
  trendingScore12h?: number | undefined;
17809
17881
  trendingScore24h?: number | undefined;
17810
17882
  } | undefined;
17883
+ totalFeesUSD?: number | null | undefined;
17884
+ gasFeesUSD?: number | null | undefined;
17885
+ platformFeesUSD?: number | null | undefined;
17886
+ mevFeesUSD?: number | null | undefined;
17811
17887
  labels?: string[] | null | undefined;
17812
17888
  }>;
17813
17889
  }, "strip", z.ZodTypeAny, {
@@ -18113,6 +18189,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
18113
18189
  athDate?: Date | undefined;
18114
18190
  atlDate?: Date | undefined;
18115
18191
  tokenType?: "2020" | "2022" | null | undefined;
18192
+ originLogoUrl?: string | null | undefined;
18116
18193
  } | undefined;
18117
18194
  quoteToken?: {
18118
18195
  symbol: string | null;
@@ -18397,7 +18474,12 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
18397
18474
  athDate?: Date | undefined;
18398
18475
  atlDate?: Date | undefined;
18399
18476
  tokenType?: "2020" | "2022" | null | undefined;
18477
+ originLogoUrl?: string | null | undefined;
18400
18478
  } | undefined;
18479
+ totalFeesUSD?: number | null | undefined;
18480
+ gasFeesUSD?: number | null | undefined;
18481
+ platformFeesUSD?: number | null | undefined;
18482
+ mevFeesUSD?: number | null | undefined;
18401
18483
  };
18402
18484
  }, {
18403
18485
  data: {
@@ -18612,6 +18694,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
18612
18694
  dexscreenerHeader?: string | null | undefined;
18613
18695
  dexscreenerAdPaid?: boolean | null | undefined;
18614
18696
  deployerMigrationsCount?: number | undefined;
18697
+ originLogoUrl?: string | null | undefined;
18615
18698
  rank?: number | null | undefined;
18616
18699
  cexs?: string[] | undefined;
18617
18700
  organicTrades1min?: number | undefined;
@@ -18896,6 +18979,7 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
18896
18979
  dexscreenerHeader?: string | null | undefined;
18897
18980
  dexscreenerAdPaid?: boolean | null | undefined;
18898
18981
  deployerMigrationsCount?: number | undefined;
18982
+ originLogoUrl?: string | null | undefined;
18899
18983
  rank?: number | null | undefined;
18900
18984
  cexs?: string[] | undefined;
18901
18985
  organicTrades1min?: number | undefined;
@@ -18986,6 +19070,10 @@ export declare const SingleTokenTradeResponseSchemaOpenAPI: z.ZodObject<{
18986
19070
  trendingScore12h?: number | undefined;
18987
19071
  trendingScore24h?: number | undefined;
18988
19072
  } | undefined;
19073
+ totalFeesUSD?: number | null | undefined;
19074
+ gasFeesUSD?: number | null | undefined;
19075
+ platformFeesUSD?: number | null | undefined;
19076
+ mevFeesUSD?: number | null | undefined;
18989
19077
  labels?: string[] | null | undefined;
18990
19078
  };
18991
19079
  }>;