@mobula_labs/types 0.1.9 → 0.1.11

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 (78) hide show
  1. package/dist/cjs/index.cjs +5011 -3856
  2. package/dist/cjs/index.cjs.map +59 -51
  3. package/dist/esm/index.js +5011 -3856
  4. package/dist/esm/index.js.map +59 -51
  5. package/dist/index.d.ts +8 -0
  6. package/dist/misc/ApiKeysQueries.d.ts +1 -1
  7. package/dist/utils/functions/openAPIHelpers.d.ts +41 -0
  8. package/dist/utils/schemas/BaseMessage.d.ts +2 -0
  9. package/dist/utils/schemas/EnrichedMarketData.d.ts +138 -1
  10. package/dist/utils/schemas/MarketDetailsOutput.d.ts +169 -0
  11. package/dist/utils/schemas/SecuritySchemas.d.ts +9 -0
  12. package/dist/utils/schemas/TokenDetailsOutput.d.ts +32 -0
  13. package/dist/utils/schemas/WalletDeployerSchema.d.ts +124 -12
  14. package/dist/utils/schemas/WalletMetadataOutput.d.ts +21 -0
  15. package/dist/v1/market/FundingRateSchema.d.ts +3 -0
  16. package/dist/v1/market/HoldersSchema.d.ts +5 -0
  17. package/dist/v1/market/MarketBlockchainPairsSchema.d.ts +59 -0
  18. package/dist/v1/market/MarketDataSchema.d.ts +5 -0
  19. package/dist/v1/market/MarketHistoryPairSchema.d.ts +5 -0
  20. package/dist/v1/market/MarketLighthouseSchema.d.ts +2734 -0
  21. package/dist/v1/market/MarketMultiDataSchema.d.ts +9 -4
  22. package/dist/v1/market/MarketMultiHistorySchema.d.ts +5 -0
  23. package/dist/v1/market/MarketMultiPricesSchema.d.ts +4 -4
  24. package/dist/v1/market/MarketPairSchema.d.ts +54 -0
  25. package/dist/v1/market/MarketPairsSchema.d.ts +68 -0
  26. package/dist/v1/market/MarketQuerySchema.d.ts +5 -0
  27. package/dist/v1/market/MarketTokenVsMarketSchema.d.ts +4 -4
  28. package/dist/v1/metadata/MetadataSchema.d.ts +10 -0
  29. package/dist/v1/pulse/PulseSchema.d.ts +616 -0
  30. package/dist/v1/search/SearchSchema.d.ts +112 -0
  31. package/dist/v1/wallet/DeployerSchema.d.ts +72 -8
  32. package/dist/v1/wallet/HistorySchema.d.ts +5 -0
  33. package/dist/v1/wallet/WalletLabelSchema.d.ts +550 -0
  34. package/dist/v1/wallet/WalletNFTSchema.d.ts +5 -0
  35. package/dist/v1/wallet/WalletPortfolioSchema.d.ts +32 -0
  36. package/dist/v1/wallet/WalletTradesSchema.d.ts +133 -20
  37. package/dist/v1/wallet/WalletTransactionSchema.d.ts +12 -2
  38. package/dist/v2/asset/AssetDetailsSchema.d.ts +217 -1
  39. package/dist/v2/market/MarketDetailsSchema.d.ts +454 -0
  40. package/dist/v2/market/MarketOHLCVHistorySchema.d.ts +3 -3
  41. package/dist/v2/metadata/SystemMetadataV2Schema.d.ts +424 -0
  42. package/dist/v2/swap/SwapQuotingBatchOutput.d.ts +1647 -257
  43. package/dist/v2/swap/SwapQuotingBatchSchema.d.ts +12 -12
  44. package/dist/v2/swap/SwapQuotingOutput.d.ts +1396 -274
  45. package/dist/v2/swap/SwapQuotingSchema.d.ts +26 -3
  46. package/dist/v2/swap/SwapSendOutput.d.ts +105 -0
  47. package/dist/v2/swap/SwapSendSchema.d.ts +77 -4
  48. package/dist/v2/token/TokenAthSchema.d.ts +29 -1
  49. package/dist/v2/token/TokenDetailsSchema.d.ts +124 -1
  50. package/dist/v2/token/TokenMarketsSchema.d.ts +396 -0
  51. package/dist/v2/token/TokenOHLCVHistorySchema.d.ts +3 -3
  52. package/dist/v2/token/TokenPositionsSchema.d.ts +119 -12
  53. package/dist/v2/token/TokenPriceAtSchema.d.ts +131 -0
  54. package/dist/v2/token/TokenPriceHistorySchema.d.ts +130 -0
  55. package/dist/v2/token/TokenSecurityOutput.d.ts +192 -0
  56. package/dist/v2/token/TokenSecurityQuery.d.ts +13 -1
  57. package/dist/v2/token/TokenTradesSchema.d.ts +572 -3
  58. package/dist/v2/trades/EnrichedSwapsSchema.d.ts +15994 -0
  59. package/dist/v2/trades/TradesFiltersSchema.d.ts +49 -0
  60. package/dist/v2/wallet/WalletActivityV2Schema.d.ts +53 -0
  61. package/dist/v2/wallet/WalletAnalysisQuerySchema.d.ts +114 -18
  62. package/dist/v2/wallet/WalletDeployerSchema.d.ts +72 -8
  63. package/dist/v2/wallet/WalletPerpsPositionsSchema.d.ts +24 -24
  64. package/dist/v2/wallet/WalletPositionsSchema.d.ts +5979 -33
  65. package/dist/v2/wallet/WalletTokenBalancesSchema.d.ts +16 -0
  66. package/dist/v2/wallet/WalletTradesSchema.d.ts +446 -0
  67. package/dist/wss/FastTradePayloadSchema.d.ts +12 -1
  68. package/dist/wss/FundingPayloadSchema.d.ts +3 -0
  69. package/dist/wss/HoldersV2PayloadSchema.d.ts +30 -0
  70. package/dist/wss/MarketDetailsPayloadSchema.d.ts +3 -0
  71. package/dist/wss/OhlcvPayloadSchema.d.ts +3 -0
  72. package/dist/wss/TokenDetailsPayloadSchema.d.ts +3 -0
  73. package/dist/x402/X402AgentSchemas.d.ts +62 -0
  74. package/package.json +2 -2
  75. package/dist/v2/explorer/BlockDataQuerySchema.d.ts +0 -33
  76. package/dist/v2/explorer/ContractVerifyQuerySchema.ts +0 -27
  77. package/dist/v2/wallet/WalleAnalysisQuerySchema.d.ts +0 -1135
  78. package/dist/v2/wallet/WalleFundingQuerySchema.d.ts +0 -57
@@ -31,6 +31,16 @@ export declare const MarketDetailsOutput: z.ZodObject<{
31
31
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
33
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
35
+ name: z.ZodString;
36
+ logo: z.ZodString;
37
+ }, "strip", z.ZodTypeAny, {
38
+ name: string;
39
+ logo: string;
40
+ }, {
41
+ name: string;
42
+ logo: string;
43
+ }>>>;
34
44
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
35
45
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
36
46
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -40,6 +50,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
40
50
  poolAddress: z.ZodOptional<z.ZodString>;
41
51
  blockchain: z.ZodOptional<z.ZodString>;
42
52
  type: z.ZodOptional<z.ZodString>;
53
+ isMayhemMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
54
+ isCashbackCoin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
55
+ isAgentMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
43
56
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44
57
  createdAt: z.ZodOptional<z.ZodString>;
45
58
  bondedAt: z.ZodNullable<z.ZodDate>;
@@ -87,6 +100,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
87
100
  marketCapUSD: number;
88
101
  marketCapDilutedUSD: number;
89
102
  logo: string | null;
103
+ isMayhemMode: boolean | null;
104
+ isCashbackCoin: boolean | null;
105
+ isAgentMode: boolean | null;
90
106
  bondedAt: Date | null;
91
107
  type?: string | undefined;
92
108
  createdAt?: string | undefined;
@@ -118,6 +134,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
118
134
  factory?: string | null | undefined;
119
135
  source?: string | null | undefined;
120
136
  sourceFactory?: string | null | undefined;
137
+ sourceMetadata?: {
138
+ name: string;
139
+ logo: string;
140
+ } | null | undefined;
121
141
  liquidityUSD?: number | undefined;
122
142
  liquidityMaxUSD?: number | undefined;
123
143
  bonded?: boolean | undefined;
@@ -180,6 +200,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
180
200
  factory?: string | null | undefined;
181
201
  source?: string | null | undefined;
182
202
  sourceFactory?: string | null | undefined;
203
+ sourceMetadata?: {
204
+ name: string;
205
+ logo: string;
206
+ } | null | undefined;
183
207
  liquidityUSD?: number | undefined;
184
208
  liquidityMaxUSD?: number | undefined;
185
209
  bonded?: boolean | undefined;
@@ -188,6 +212,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
188
212
  preBondingFactory?: string | undefined;
189
213
  poolAddress?: string | undefined;
190
214
  blockchain?: string | undefined;
215
+ isMayhemMode?: boolean | null | undefined;
216
+ isCashbackCoin?: boolean | null | undefined;
217
+ isAgentMode?: boolean | null | undefined;
191
218
  deployer?: string | null | undefined;
192
219
  athUSD?: number | undefined;
193
220
  atlUSD?: number | undefined;
@@ -225,6 +252,16 @@ export declare const MarketDetailsOutput: z.ZodObject<{
225
252
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
226
253
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
227
254
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
255
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
256
+ name: z.ZodString;
257
+ logo: z.ZodString;
258
+ }, "strip", z.ZodTypeAny, {
259
+ name: string;
260
+ logo: string;
261
+ }, {
262
+ name: string;
263
+ logo: string;
264
+ }>>>;
228
265
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
229
266
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
230
267
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -234,6 +271,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
234
271
  poolAddress: z.ZodOptional<z.ZodString>;
235
272
  blockchain: z.ZodOptional<z.ZodString>;
236
273
  type: z.ZodOptional<z.ZodString>;
274
+ isMayhemMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
275
+ isCashbackCoin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
276
+ isAgentMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
237
277
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
238
278
  createdAt: z.ZodOptional<z.ZodString>;
239
279
  bondedAt: z.ZodNullable<z.ZodDate>;
@@ -281,6 +321,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
281
321
  marketCapUSD: number;
282
322
  marketCapDilutedUSD: number;
283
323
  logo: string | null;
324
+ isMayhemMode: boolean | null;
325
+ isCashbackCoin: boolean | null;
326
+ isAgentMode: boolean | null;
284
327
  bondedAt: Date | null;
285
328
  type?: string | undefined;
286
329
  createdAt?: string | undefined;
@@ -312,6 +355,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
312
355
  factory?: string | null | undefined;
313
356
  source?: string | null | undefined;
314
357
  sourceFactory?: string | null | undefined;
358
+ sourceMetadata?: {
359
+ name: string;
360
+ logo: string;
361
+ } | null | undefined;
315
362
  liquidityUSD?: number | undefined;
316
363
  liquidityMaxUSD?: number | undefined;
317
364
  bonded?: boolean | undefined;
@@ -374,6 +421,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
374
421
  factory?: string | null | undefined;
375
422
  source?: string | null | undefined;
376
423
  sourceFactory?: string | null | undefined;
424
+ sourceMetadata?: {
425
+ name: string;
426
+ logo: string;
427
+ } | null | undefined;
377
428
  liquidityUSD?: number | undefined;
378
429
  liquidityMaxUSD?: number | undefined;
379
430
  bonded?: boolean | undefined;
@@ -382,6 +433,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
382
433
  preBondingFactory?: string | undefined;
383
434
  poolAddress?: string | undefined;
384
435
  blockchain?: string | undefined;
436
+ isMayhemMode?: boolean | null | undefined;
437
+ isCashbackCoin?: boolean | null | undefined;
438
+ isAgentMode?: boolean | null | undefined;
385
439
  deployer?: string | null | undefined;
386
440
  athUSD?: number | undefined;
387
441
  atlUSD?: number | undefined;
@@ -419,6 +473,16 @@ export declare const MarketDetailsOutput: z.ZodObject<{
419
473
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
420
474
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
421
475
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
476
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
477
+ name: z.ZodString;
478
+ logo: z.ZodString;
479
+ }, "strip", z.ZodTypeAny, {
480
+ name: string;
481
+ logo: string;
482
+ }, {
483
+ name: string;
484
+ logo: string;
485
+ }>>>;
422
486
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
423
487
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
424
488
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -428,6 +492,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
428
492
  poolAddress: z.ZodOptional<z.ZodString>;
429
493
  blockchain: z.ZodOptional<z.ZodString>;
430
494
  type: z.ZodOptional<z.ZodString>;
495
+ isMayhemMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
496
+ isCashbackCoin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
497
+ isAgentMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
431
498
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
432
499
  createdAt: z.ZodOptional<z.ZodString>;
433
500
  bondedAt: z.ZodNullable<z.ZodDate>;
@@ -475,6 +542,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
475
542
  marketCapUSD: number;
476
543
  marketCapDilutedUSD: number;
477
544
  logo: string | null;
545
+ isMayhemMode: boolean | null;
546
+ isCashbackCoin: boolean | null;
547
+ isAgentMode: boolean | null;
478
548
  bondedAt: Date | null;
479
549
  type?: string | undefined;
480
550
  createdAt?: string | undefined;
@@ -506,6 +576,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
506
576
  factory?: string | null | undefined;
507
577
  source?: string | null | undefined;
508
578
  sourceFactory?: string | null | undefined;
579
+ sourceMetadata?: {
580
+ name: string;
581
+ logo: string;
582
+ } | null | undefined;
509
583
  liquidityUSD?: number | undefined;
510
584
  liquidityMaxUSD?: number | undefined;
511
585
  bonded?: boolean | undefined;
@@ -568,6 +642,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
568
642
  factory?: string | null | undefined;
569
643
  source?: string | null | undefined;
570
644
  sourceFactory?: string | null | undefined;
645
+ sourceMetadata?: {
646
+ name: string;
647
+ logo: string;
648
+ } | null | undefined;
571
649
  liquidityUSD?: number | undefined;
572
650
  liquidityMaxUSD?: number | undefined;
573
651
  bonded?: boolean | undefined;
@@ -576,6 +654,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
576
654
  preBondingFactory?: string | undefined;
577
655
  poolAddress?: string | undefined;
578
656
  blockchain?: string | undefined;
657
+ isMayhemMode?: boolean | null | undefined;
658
+ isCashbackCoin?: boolean | null | undefined;
659
+ isAgentMode?: boolean | null | undefined;
579
660
  deployer?: string | null | undefined;
580
661
  athUSD?: number | undefined;
581
662
  atlUSD?: number | undefined;
@@ -613,6 +694,16 @@ export declare const MarketDetailsOutput: z.ZodObject<{
613
694
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
614
695
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
615
696
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
697
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
698
+ name: z.ZodString;
699
+ logo: z.ZodString;
700
+ }, "strip", z.ZodTypeAny, {
701
+ name: string;
702
+ logo: string;
703
+ }, {
704
+ name: string;
705
+ logo: string;
706
+ }>>>;
616
707
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
617
708
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
618
709
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -622,6 +713,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
622
713
  poolAddress: z.ZodOptional<z.ZodString>;
623
714
  blockchain: z.ZodOptional<z.ZodString>;
624
715
  type: z.ZodOptional<z.ZodString>;
716
+ isMayhemMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
717
+ isCashbackCoin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
718
+ isAgentMode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
625
719
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
626
720
  createdAt: z.ZodOptional<z.ZodString>;
627
721
  bondedAt: z.ZodNullable<z.ZodDate>;
@@ -669,6 +763,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
669
763
  marketCapUSD: number;
670
764
  marketCapDilutedUSD: number;
671
765
  logo: string | null;
766
+ isMayhemMode: boolean | null;
767
+ isCashbackCoin: boolean | null;
768
+ isAgentMode: boolean | null;
672
769
  bondedAt: Date | null;
673
770
  type?: string | undefined;
674
771
  createdAt?: string | undefined;
@@ -700,6 +797,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
700
797
  factory?: string | null | undefined;
701
798
  source?: string | null | undefined;
702
799
  sourceFactory?: string | null | undefined;
800
+ sourceMetadata?: {
801
+ name: string;
802
+ logo: string;
803
+ } | null | undefined;
703
804
  liquidityUSD?: number | undefined;
704
805
  liquidityMaxUSD?: number | undefined;
705
806
  bonded?: boolean | undefined;
@@ -762,6 +863,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
762
863
  factory?: string | null | undefined;
763
864
  source?: string | null | undefined;
764
865
  sourceFactory?: string | null | undefined;
866
+ sourceMetadata?: {
867
+ name: string;
868
+ logo: string;
869
+ } | null | undefined;
765
870
  liquidityUSD?: number | undefined;
766
871
  liquidityMaxUSD?: number | undefined;
767
872
  bonded?: boolean | undefined;
@@ -770,6 +875,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
770
875
  preBondingFactory?: string | undefined;
771
876
  poolAddress?: string | undefined;
772
877
  blockchain?: string | undefined;
878
+ isMayhemMode?: boolean | null | undefined;
879
+ isCashbackCoin?: boolean | null | undefined;
880
+ isAgentMode?: boolean | null | undefined;
773
881
  deployer?: string | null | undefined;
774
882
  athUSD?: number | undefined;
775
883
  atlUSD?: number | undefined;
@@ -936,6 +1044,7 @@ export declare const MarketDetailsOutput: z.ZodObject<{
936
1044
  isMintable: z.ZodOptional<z.ZodBoolean>;
937
1045
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
938
1046
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
1047
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
939
1048
  }, "strip", z.ZodTypeAny, {
940
1049
  buyTax?: string | undefined;
941
1050
  sellTax?: string | undefined;
@@ -953,6 +1062,7 @@ export declare const MarketDetailsOutput: z.ZodObject<{
953
1062
  isMintable?: boolean | undefined;
954
1063
  modifyableTax?: boolean | undefined;
955
1064
  selfDestruct?: boolean | undefined;
1065
+ liquidityBurnPercentage?: number | undefined;
956
1066
  noMintAuthority?: boolean | undefined;
957
1067
  }, {
958
1068
  buyTax?: string | undefined;
@@ -971,6 +1081,7 @@ export declare const MarketDetailsOutput: z.ZodObject<{
971
1081
  isMintable?: boolean | undefined;
972
1082
  modifyableTax?: boolean | undefined;
973
1083
  selfDestruct?: boolean | undefined;
1084
+ liquidityBurnPercentage?: number | undefined;
974
1085
  noMintAuthority?: boolean | undefined;
975
1086
  }>>;
976
1087
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -1243,6 +1354,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1243
1354
  marketCapUSD: number;
1244
1355
  marketCapDilutedUSD: number;
1245
1356
  logo: string | null;
1357
+ isMayhemMode: boolean | null;
1358
+ isCashbackCoin: boolean | null;
1359
+ isAgentMode: boolean | null;
1246
1360
  bondedAt: Date | null;
1247
1361
  type?: string | undefined;
1248
1362
  createdAt?: string | undefined;
@@ -1274,6 +1388,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1274
1388
  factory?: string | null | undefined;
1275
1389
  source?: string | null | undefined;
1276
1390
  sourceFactory?: string | null | undefined;
1391
+ sourceMetadata?: {
1392
+ name: string;
1393
+ logo: string;
1394
+ } | null | undefined;
1277
1395
  liquidityUSD?: number | undefined;
1278
1396
  liquidityMaxUSD?: number | undefined;
1279
1397
  bonded?: boolean | undefined;
@@ -1306,6 +1424,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1306
1424
  marketCapUSD: number;
1307
1425
  marketCapDilutedUSD: number;
1308
1426
  logo: string | null;
1427
+ isMayhemMode: boolean | null;
1428
+ isCashbackCoin: boolean | null;
1429
+ isAgentMode: boolean | null;
1309
1430
  bondedAt: Date | null;
1310
1431
  type?: string | undefined;
1311
1432
  createdAt?: string | undefined;
@@ -1337,6 +1458,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1337
1458
  factory?: string | null | undefined;
1338
1459
  source?: string | null | undefined;
1339
1460
  sourceFactory?: string | null | undefined;
1461
+ sourceMetadata?: {
1462
+ name: string;
1463
+ logo: string;
1464
+ } | null | undefined;
1340
1465
  liquidityUSD?: number | undefined;
1341
1466
  liquidityMaxUSD?: number | undefined;
1342
1467
  bonded?: boolean | undefined;
@@ -1472,6 +1597,7 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1472
1597
  isMintable?: boolean | undefined;
1473
1598
  modifyableTax?: boolean | undefined;
1474
1599
  selfDestruct?: boolean | undefined;
1600
+ liquidityBurnPercentage?: number | undefined;
1475
1601
  noMintAuthority?: boolean | undefined;
1476
1602
  } | null;
1477
1603
  twitterReusesCount: number;
@@ -1523,6 +1649,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1523
1649
  marketCapUSD: number;
1524
1650
  marketCapDilutedUSD: number;
1525
1651
  logo: string | null;
1652
+ isMayhemMode: boolean | null;
1653
+ isCashbackCoin: boolean | null;
1654
+ isAgentMode: boolean | null;
1526
1655
  bondedAt: Date | null;
1527
1656
  type?: string | undefined;
1528
1657
  createdAt?: string | undefined;
@@ -1554,6 +1683,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1554
1683
  factory?: string | null | undefined;
1555
1684
  source?: string | null | undefined;
1556
1685
  sourceFactory?: string | null | undefined;
1686
+ sourceMetadata?: {
1687
+ name: string;
1688
+ logo: string;
1689
+ } | null | undefined;
1557
1690
  liquidityUSD?: number | undefined;
1558
1691
  liquidityMaxUSD?: number | undefined;
1559
1692
  bonded?: boolean | undefined;
@@ -1586,6 +1719,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1586
1719
  marketCapUSD: number;
1587
1720
  marketCapDilutedUSD: number;
1588
1721
  logo: string | null;
1722
+ isMayhemMode: boolean | null;
1723
+ isCashbackCoin: boolean | null;
1724
+ isAgentMode: boolean | null;
1589
1725
  bondedAt: Date | null;
1590
1726
  type?: string | undefined;
1591
1727
  createdAt?: string | undefined;
@@ -1617,6 +1753,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1617
1753
  factory?: string | null | undefined;
1618
1754
  source?: string | null | undefined;
1619
1755
  sourceFactory?: string | null | undefined;
1756
+ sourceMetadata?: {
1757
+ name: string;
1758
+ logo: string;
1759
+ } | null | undefined;
1620
1760
  liquidityUSD?: number | undefined;
1621
1761
  liquidityMaxUSD?: number | undefined;
1622
1762
  bonded?: boolean | undefined;
@@ -1746,6 +1886,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1746
1886
  factory?: string | null | undefined;
1747
1887
  source?: string | null | undefined;
1748
1888
  sourceFactory?: string | null | undefined;
1889
+ sourceMetadata?: {
1890
+ name: string;
1891
+ logo: string;
1892
+ } | null | undefined;
1749
1893
  liquidityUSD?: number | undefined;
1750
1894
  liquidityMaxUSD?: number | undefined;
1751
1895
  bonded?: boolean | undefined;
@@ -1754,6 +1898,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1754
1898
  preBondingFactory?: string | undefined;
1755
1899
  poolAddress?: string | undefined;
1756
1900
  blockchain?: string | undefined;
1901
+ isMayhemMode?: boolean | null | undefined;
1902
+ isCashbackCoin?: boolean | null | undefined;
1903
+ isAgentMode?: boolean | null | undefined;
1757
1904
  deployer?: string | null | undefined;
1758
1905
  athUSD?: number | undefined;
1759
1906
  atlUSD?: number | undefined;
@@ -1809,6 +1956,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1809
1956
  factory?: string | null | undefined;
1810
1957
  source?: string | null | undefined;
1811
1958
  sourceFactory?: string | null | undefined;
1959
+ sourceMetadata?: {
1960
+ name: string;
1961
+ logo: string;
1962
+ } | null | undefined;
1812
1963
  liquidityUSD?: number | undefined;
1813
1964
  liquidityMaxUSD?: number | undefined;
1814
1965
  bonded?: boolean | undefined;
@@ -1817,6 +1968,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1817
1968
  preBondingFactory?: string | undefined;
1818
1969
  poolAddress?: string | undefined;
1819
1970
  blockchain?: string | undefined;
1971
+ isMayhemMode?: boolean | null | undefined;
1972
+ isCashbackCoin?: boolean | null | undefined;
1973
+ isAgentMode?: boolean | null | undefined;
1820
1974
  deployer?: string | null | undefined;
1821
1975
  athUSD?: number | undefined;
1822
1976
  atlUSD?: number | undefined;
@@ -1855,6 +2009,7 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1855
2009
  isMintable?: boolean | undefined;
1856
2010
  modifyableTax?: boolean | undefined;
1857
2011
  selfDestruct?: boolean | undefined;
2012
+ liquidityBurnPercentage?: number | undefined;
1858
2013
  noMintAuthority?: boolean | undefined;
1859
2014
  } | null;
1860
2015
  holdersCount?: number | null | undefined;
@@ -1932,6 +2087,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1932
2087
  factory?: string | null | undefined;
1933
2088
  source?: string | null | undefined;
1934
2089
  sourceFactory?: string | null | undefined;
2090
+ sourceMetadata?: {
2091
+ name: string;
2092
+ logo: string;
2093
+ } | null | undefined;
1935
2094
  liquidityUSD?: number | undefined;
1936
2095
  liquidityMaxUSD?: number | undefined;
1937
2096
  bonded?: boolean | undefined;
@@ -1940,6 +2099,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1940
2099
  preBondingFactory?: string | undefined;
1941
2100
  poolAddress?: string | undefined;
1942
2101
  blockchain?: string | undefined;
2102
+ isMayhemMode?: boolean | null | undefined;
2103
+ isCashbackCoin?: boolean | null | undefined;
2104
+ isAgentMode?: boolean | null | undefined;
1943
2105
  deployer?: string | null | undefined;
1944
2106
  athUSD?: number | undefined;
1945
2107
  atlUSD?: number | undefined;
@@ -1995,6 +2157,10 @@ export declare const MarketDetailsOutput: z.ZodObject<{
1995
2157
  factory?: string | null | undefined;
1996
2158
  source?: string | null | undefined;
1997
2159
  sourceFactory?: string | null | undefined;
2160
+ sourceMetadata?: {
2161
+ name: string;
2162
+ logo: string;
2163
+ } | null | undefined;
1998
2164
  liquidityUSD?: number | undefined;
1999
2165
  liquidityMaxUSD?: number | undefined;
2000
2166
  bonded?: boolean | undefined;
@@ -2003,6 +2169,9 @@ export declare const MarketDetailsOutput: z.ZodObject<{
2003
2169
  preBondingFactory?: string | undefined;
2004
2170
  poolAddress?: string | undefined;
2005
2171
  blockchain?: string | undefined;
2172
+ isMayhemMode?: boolean | null | undefined;
2173
+ isCashbackCoin?: boolean | null | undefined;
2174
+ isAgentMode?: boolean | null | undefined;
2006
2175
  deployer?: string | null | undefined;
2007
2176
  athUSD?: number | undefined;
2008
2177
  atlUSD?: number | undefined;
@@ -16,6 +16,7 @@ export declare const EVMSecurityFlagsSchema: z.ZodObject<{
16
16
  isMintable: z.ZodOptional<z.ZodBoolean>;
17
17
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
18
18
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
19
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
19
20
  }, "strip", z.ZodTypeAny, {
20
21
  buyTax?: string | undefined;
21
22
  sellTax?: string | undefined;
@@ -33,6 +34,7 @@ export declare const EVMSecurityFlagsSchema: z.ZodObject<{
33
34
  isMintable?: boolean | undefined;
34
35
  modifyableTax?: boolean | undefined;
35
36
  selfDestruct?: boolean | undefined;
37
+ liquidityBurnPercentage?: number | undefined;
36
38
  }, {
37
39
  buyTax?: string | undefined;
38
40
  sellTax?: string | undefined;
@@ -50,6 +52,7 @@ export declare const EVMSecurityFlagsSchema: z.ZodObject<{
50
52
  isMintable?: boolean | undefined;
51
53
  modifyableTax?: boolean | undefined;
52
54
  selfDestruct?: boolean | undefined;
55
+ liquidityBurnPercentage?: number | undefined;
53
56
  }>;
54
57
  export type EVMSecurityFlags = z.infer<typeof EVMSecurityFlagsSchema>;
55
58
  export declare const SolanaSecurityFlagsSchema: z.ZodObject<{
@@ -62,6 +65,7 @@ export declare const SolanaSecurityFlagsSchema: z.ZodObject<{
62
65
  balanceMutable: z.ZodOptional<z.ZodBoolean>;
63
66
  lowLiquidity: z.ZodOptional<z.ZodString>;
64
67
  burnRate: z.ZodOptional<z.ZodString>;
68
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
65
69
  }, "strip", z.ZodTypeAny, {
66
70
  buyTax?: string | undefined;
67
71
  sellTax?: string | undefined;
@@ -71,6 +75,7 @@ export declare const SolanaSecurityFlagsSchema: z.ZodObject<{
71
75
  balanceMutable?: boolean | undefined;
72
76
  lowLiquidity?: string | undefined;
73
77
  burnRate?: string | undefined;
78
+ liquidityBurnPercentage?: number | undefined;
74
79
  noMintAuthority?: boolean | undefined;
75
80
  }, {
76
81
  buyTax?: string | undefined;
@@ -81,6 +86,7 @@ export declare const SolanaSecurityFlagsSchema: z.ZodObject<{
81
86
  balanceMutable?: boolean | undefined;
82
87
  lowLiquidity?: string | undefined;
83
88
  burnRate?: string | undefined;
89
+ liquidityBurnPercentage?: number | undefined;
84
90
  noMintAuthority?: boolean | undefined;
85
91
  }>;
86
92
  export type SolanaSecurityFlags = z.infer<typeof SolanaSecurityFlagsSchema>;
@@ -103,6 +109,7 @@ export declare const SecurityFlagsSchema: z.ZodObject<{
103
109
  isMintable: z.ZodOptional<z.ZodBoolean>;
104
110
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
105
111
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
112
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
106
113
  }, "strip", z.ZodTypeAny, {
107
114
  buyTax?: string | undefined;
108
115
  sellTax?: string | undefined;
@@ -120,6 +127,7 @@ export declare const SecurityFlagsSchema: z.ZodObject<{
120
127
  isMintable?: boolean | undefined;
121
128
  modifyableTax?: boolean | undefined;
122
129
  selfDestruct?: boolean | undefined;
130
+ liquidityBurnPercentage?: number | undefined;
123
131
  noMintAuthority?: boolean | undefined;
124
132
  }, {
125
133
  buyTax?: string | undefined;
@@ -138,6 +146,7 @@ export declare const SecurityFlagsSchema: z.ZodObject<{
138
146
  isMintable?: boolean | undefined;
139
147
  modifyableTax?: boolean | undefined;
140
148
  selfDestruct?: boolean | undefined;
149
+ liquidityBurnPercentage?: number | undefined;
141
150
  noMintAuthority?: boolean | undefined;
142
151
  }>;
143
152
  export type SecurityFlags = z.infer<typeof SecurityFlagsSchema>;
@@ -33,6 +33,16 @@ export declare const TokenDetailsOutput: z.ZodObject<{
33
33
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
34
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35
35
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
37
+ name: z.ZodString;
38
+ logo: z.ZodString;
39
+ }, "strip", z.ZodTypeAny, {
40
+ name: string;
41
+ logo: string;
42
+ }, {
43
+ name: string;
44
+ logo: string;
45
+ }>>>;
36
46
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
37
47
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
38
48
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -251,6 +261,7 @@ export declare const TokenDetailsOutput: z.ZodObject<{
251
261
  isMintable: z.ZodOptional<z.ZodBoolean>;
252
262
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
253
263
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
264
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
254
265
  }, "strip", z.ZodTypeAny, {
255
266
  buyTax?: string | undefined;
256
267
  sellTax?: string | undefined;
@@ -268,6 +279,7 @@ export declare const TokenDetailsOutput: z.ZodObject<{
268
279
  isMintable?: boolean | undefined;
269
280
  modifyableTax?: boolean | undefined;
270
281
  selfDestruct?: boolean | undefined;
282
+ liquidityBurnPercentage?: number | undefined;
271
283
  noMintAuthority?: boolean | undefined;
272
284
  }, {
273
285
  buyTax?: string | undefined;
@@ -286,6 +298,7 @@ export declare const TokenDetailsOutput: z.ZodObject<{
286
298
  isMintable?: boolean | undefined;
287
299
  modifyableTax?: boolean | undefined;
288
300
  selfDestruct?: boolean | undefined;
301
+ liquidityBurnPercentage?: number | undefined;
289
302
  noMintAuthority?: boolean | undefined;
290
303
  }>>;
291
304
  twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -323,6 +336,9 @@ export declare const TokenDetailsOutput: z.ZodObject<{
323
336
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
324
337
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
325
338
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
339
+ isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
340
+ isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
341
+ isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
326
342
  } & {
327
343
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
328
344
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -365,6 +381,9 @@ export declare const TokenDetailsOutput: z.ZodObject<{
365
381
  marketCapUSD: number;
366
382
  marketCapDilutedUSD: number;
367
383
  logo: string | null;
384
+ isMayhemMode: boolean | null;
385
+ isCashbackCoin: boolean | null;
386
+ isAgentMode: boolean | null;
368
387
  bondedAt: Date | null;
369
388
  latestTradeDate: Date | null;
370
389
  totalFeesPaidUSD: number;
@@ -481,6 +500,7 @@ export declare const TokenDetailsOutput: z.ZodObject<{
481
500
  isMintable?: boolean | undefined;
482
501
  modifyableTax?: boolean | undefined;
483
502
  selfDestruct?: boolean | undefined;
503
+ liquidityBurnPercentage?: number | undefined;
484
504
  noMintAuthority?: boolean | undefined;
485
505
  } | null;
486
506
  twitterReusesCount: number | null;
@@ -614,6 +634,10 @@ export declare const TokenDetailsOutput: z.ZodObject<{
614
634
  factory?: string | null | undefined;
615
635
  source?: string | null | undefined;
616
636
  sourceFactory?: string | null | undefined;
637
+ sourceMetadata?: {
638
+ name: string;
639
+ logo: string;
640
+ } | null | undefined;
617
641
  liquidityUSD?: number | undefined;
618
642
  liquidityMaxUSD?: number | undefined;
619
643
  bonded?: boolean | undefined;
@@ -665,6 +689,7 @@ export declare const TokenDetailsOutput: z.ZodObject<{
665
689
  isMintable?: boolean | undefined;
666
690
  modifyableTax?: boolean | undefined;
667
691
  selfDestruct?: boolean | undefined;
692
+ liquidityBurnPercentage?: number | undefined;
668
693
  noMintAuthority?: boolean | undefined;
669
694
  } | null;
670
695
  liveStatus: string | null;
@@ -710,6 +735,10 @@ export declare const TokenDetailsOutput: z.ZodObject<{
710
735
  factory?: string | null | undefined;
711
736
  source?: string | null | undefined;
712
737
  sourceFactory?: string | null | undefined;
738
+ sourceMetadata?: {
739
+ name: string;
740
+ logo: string;
741
+ } | null | undefined;
713
742
  liquidityUSD?: number | undefined;
714
743
  liquidityMaxUSD?: number | undefined;
715
744
  bonded?: boolean | undefined;
@@ -718,6 +747,9 @@ export declare const TokenDetailsOutput: z.ZodObject<{
718
747
  preBondingFactory?: string | undefined;
719
748
  poolAddress?: string | undefined;
720
749
  blockchain?: string | undefined;
750
+ isMayhemMode?: boolean | null | undefined;
751
+ isCashbackCoin?: boolean | null | undefined;
752
+ isAgentMode?: boolean | null | undefined;
721
753
  deployer?: string | null | undefined;
722
754
  athUSD?: number | undefined;
723
755
  atlUSD?: number | undefined;