@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
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './misc/ApiKeysQueries.ts';
2
2
  export * from './utils/constants/constants.ts';
3
3
  export * from './utils/functions/bigintAbs.ts';
4
+ export * from './utils/functions/openAPIHelpers.ts';
4
5
  export * from './utils/functions/period.ts';
5
6
  export * from './utils/functions/zodUtils.ts';
6
7
  export * from './utils/schemas/BaseMessage.ts';
@@ -22,6 +23,7 @@ export * from './v1/market/MarketBlockchainStatsSchema.ts';
22
23
  export * from './v1/market/MarketDataSchema.ts';
23
24
  export * from './v1/market/MarketHistoryPairSchema.ts';
24
25
  export * from './v1/market/MarketHistorySchema.ts';
26
+ export * from './v1/market/MarketLighthouseSchema.ts';
25
27
  export * from './v1/market/MarketMultiDataSchema.ts';
26
28
  export * from './v1/market/MarketMultiHistorySchema.ts';
27
29
  export * from './v1/market/MarketMultiPricesSchema.ts';
@@ -59,6 +61,7 @@ export * from './v2/asset/AssetPriceHistorySchema.ts';
59
61
  export * from './v2/explorer/BlockQuerySchema.ts';
60
62
  export * from './v2/market/MarketDetailsSchema.ts';
61
63
  export * from './v2/market/MarketOHLCVHistorySchema.ts';
64
+ export * from './v2/metadata/SystemMetadataV2Schema.ts';
62
65
  export * from './v2/perp/PerpBlocksSchema.ts';
63
66
  export * from './v2/perp/PerpOrderQuotingSchema.ts';
64
67
  export * from './v2/swap/SwapQuotingBatchOutput.ts';
@@ -74,11 +77,14 @@ export * from './v2/token/TokenKlineBsPointSchema.ts';
74
77
  export * from './v2/token/TokenMarketsSchema.ts';
75
78
  export * from './v2/token/TokenOHLCVHistorySchema.ts';
76
79
  export * from './v2/token/TokenPositionsSchema.ts';
80
+ export * from './v2/token/TokenPriceAtSchema.ts';
81
+ export * from './v2/token/TokenPriceHistorySchema.ts';
77
82
  export * from './v2/token/TokenPriceSchema.ts';
78
83
  export * from './v2/token/TokenSecurityOutput.ts';
79
84
  export * from './v2/token/TokenSecurityQuery.ts';
80
85
  export * from './v2/token/TokenSecuritySchema.ts';
81
86
  export * from './v2/token/TokenTradesSchema.ts';
87
+ export * from './v2/trades/EnrichedSwapsSchema.ts';
82
88
  export * from './v2/trades/TradesFiltersSchema.ts';
83
89
  export * from './v2/wallet/WalletActivityV2Schema.ts';
84
90
  export * from './v2/wallet/WalletAnalysisQuerySchema.ts';
@@ -90,6 +96,7 @@ export * from './v2/wallet/WalletFundingQuerySchema.ts';
90
96
  export * from './v2/wallet/WalletPerpsPositionsSchema.ts';
91
97
  export * from './v2/wallet/WalletPositionsSchema.ts';
92
98
  export * from './v2/wallet/WalletTokenBalancesSchema.ts';
99
+ export * from './v2/wallet/WalletTradesSchema.ts';
93
100
  export * from './wss/aggregated-feed/FeedSchema.ts';
94
101
  export * from './wss/BalancePayloadSchema.ts';
95
102
  export * from './wss/FastTradePayloadSchema.ts';
@@ -103,3 +110,4 @@ export * from './wss/PositionPayloadSchema.ts';
103
110
  export * from './wss/pulse/PausePulsePayloadSchema.ts';
104
111
  export * from './wss/stream/StreamPayloadSchema.ts';
105
112
  export * from './wss/TokenDetailsPayloadSchema.ts';
113
+ export * from './x402/X402AgentSchemas.ts';
@@ -1,4 +1,4 @@
1
1
  export declare const API_KEYS_QUERIES: {
2
2
  readonly SELECT_BY_NAME_AND_OWNER: "\n SELECT key FROM misc.api_keys\n WHERE name = $1\n AND deleted_at IS NULL\n AND (\n ($2::text IS NULL AND organization_id IS NULL AND customer_id = $3)\n OR\n (organization_id = $2)\n )\n LIMIT 1\n ";
3
- readonly INSERT: "\n INSERT INTO misc.api_keys\n (key, customer_id, organization_id, name, total_calls, metrics)\n VALUES\n ($1, $2, $3, $4, 0, $5)\n ";
3
+ readonly INSERT: "\n INSERT INTO misc.api_keys\n (key, customer_id, organization_id, name, total_calls, metrics, ip_rps_limit)\n VALUES\n ($1, $2, $3, $4, 0, $5, $6)\n ";
4
4
  };
@@ -0,0 +1,41 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Recursively strips Zod effects (transforms, defaults, refinements, preprocess)
4
+ * from a schema, returning the underlying base type.
5
+ *
6
+ * Needed because OpenAPI generators cannot represent JS transforms/defaults.
7
+ */
8
+ export declare function stripEffects(schema: z.ZodTypeAny): z.ZodTypeAny;
9
+ /**
10
+ * Creates an OpenAPI-compatible schema from a runtime Zod object schema.
11
+ *
12
+ * 1. Unwraps top-level transforms/refinements
13
+ * 2. Omits hidden fields (deprecated, internal)
14
+ * 3. Strips per-field transforms/defaults
15
+ * 4. Adds descriptions for documentation
16
+ *
17
+ * @example
18
+ * ```ts
19
+ * export const MySchemaOpenAPI = createOpenAPIParams(MyRuntimeSchema, {
20
+ * omit: ['blockchain', '_internalField'],
21
+ * describe: {
22
+ * wallet: 'Wallet address',
23
+ * blockchains: 'Comma-separated blockchain IDs',
24
+ * },
25
+ * });
26
+ * ```
27
+ */
28
+ export declare function createOpenAPIParams(runtimeSchema: z.ZodTypeAny, options: {
29
+ omit?: string[];
30
+ describe?: Record<string, string>;
31
+ }): z.ZodObject<z.ZodRawShape>;
32
+ /**
33
+ * Utility type: Omit hidden fields from SDK input types.
34
+ * Use this to hide deprecated/internal fields from TypeScript autocomplete.
35
+ *
36
+ * @example
37
+ * ```ts
38
+ * export type MyParams = SDKInput<typeof MySchema, 'blockchain' | '_internalFlag'>;
39
+ * ```
40
+ */
41
+ export type SDKInput<T extends z.ZodTypeAny, Hidden extends string> = Omit<z.input<T>, Hidden>;
@@ -1,5 +1,6 @@
1
1
  import type { MarketDetailsOutputType } from './MarketDetailsOutput.ts';
2
2
  import type { TokenDetailsOutputType } from './TokenDetailsOutput.ts';
3
+ import type { WalletMetadataOutput } from './WalletMetadataOutput.ts';
3
4
  export interface PlatformMetadataType {
4
5
  id: string;
5
6
  name: string;
@@ -21,6 +22,7 @@ export interface BaseMessageType {
21
22
  token_amount_raw: string;
22
23
  token_amount_raw_vs: string;
23
24
  labels?: string[];
25
+ walletMetadata?: WalletMetadataOutput | null;
24
26
  pairData?: MarketDetailsOutputType;
25
27
  tokenData?: TokenDetailsOutputType;
26
28
  preBalanceBaseToken: string | null;
@@ -12,7 +12,7 @@ export declare const keysToRemovePoolToPulse: Partial<Record<keyof PoolData, tru
12
12
  * Metadata keys that can be used as fallback from Token table when TokensStatsRealTime is empty
13
13
  * These are the social and security fields that are shared between Token and TokensStatsRealTime tables
14
14
  */
15
- export declare const TOKEN_METADATA_KEYS: readonly ["twitter", "telegram", "website", "others", "security", "logo", "twitterRenameCount", "twitterRenameHistory", "dexscreenerListed", "dexscreenerHeader", "dexscreenerAdPaid", "liveStatus", "liveThumbnail", "livestreamTitle", "liveReplyCount", "deployer", "bonded_at", "description"];
15
+ export declare const TOKEN_METADATA_KEYS: readonly ["twitter", "telegram", "website", "others", "security", "logo", "twitterRenameCount", "twitterRenameHistory", "dexscreenerListed", "dexscreenerHeader", "dexscreenerAdPaid", "liveStatus", "liveThumbnail", "livestreamTitle", "liveReplyCount", "deployer", "bonded_at", "description", "is_mayhem_mode", "is_cashback_coin", "is_agent_mode"];
16
16
  export type TokenMetadataKey = (typeof TOKEN_METADATA_KEYS)[number];
17
17
  export declare const TokenData: z.ZodObject<{
18
18
  address: z.ZodString;
@@ -55,6 +55,9 @@ export declare const TokenData: z.ZodObject<{
55
55
  blockchain: z.ZodOptional<z.ZodString>;
56
56
  type: z.ZodOptional<z.ZodString>;
57
57
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
58
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
59
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
60
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
58
61
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
59
62
  createdAt: z.ZodOptional<z.ZodString>;
60
63
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -103,6 +106,9 @@ export declare const TokenData: z.ZodObject<{
103
106
  price: number;
104
107
  marketCap: number;
105
108
  marketCapDiluted: number;
109
+ is_mayhem_mode: boolean | null;
110
+ is_cashback_coin: boolean | null;
111
+ is_agent_mode: boolean | null;
106
112
  type?: string | undefined;
107
113
  createdAt?: string | undefined;
108
114
  holdersCount?: number | null | undefined;
@@ -208,6 +214,9 @@ export declare const TokenData: z.ZodObject<{
208
214
  liquidity?: number | undefined;
209
215
  liquidityMax?: number | undefined;
210
216
  tokenType?: "2020" | "2022" | null | undefined;
217
+ is_mayhem_mode?: boolean | null | undefined;
218
+ is_cashback_coin?: boolean | null | undefined;
219
+ is_agent_mode?: boolean | null | undefined;
211
220
  ath?: number | undefined;
212
221
  atl?: number | undefined;
213
222
  }>;
@@ -255,6 +264,9 @@ export declare const PoolData: z.ZodObject<{
255
264
  blockchain: z.ZodOptional<z.ZodString>;
256
265
  type: z.ZodOptional<z.ZodString>;
257
266
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
267
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
268
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
269
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
258
270
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
259
271
  createdAt: z.ZodOptional<z.ZodString>;
260
272
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -303,6 +315,9 @@ export declare const PoolData: z.ZodObject<{
303
315
  price: number;
304
316
  marketCap: number;
305
317
  marketCapDiluted: number;
318
+ is_mayhem_mode: boolean | null;
319
+ is_cashback_coin: boolean | null;
320
+ is_agent_mode: boolean | null;
306
321
  type?: string | undefined;
307
322
  createdAt?: string | undefined;
308
323
  holdersCount?: number | null | undefined;
@@ -408,6 +423,9 @@ export declare const PoolData: z.ZodObject<{
408
423
  liquidity?: number | undefined;
409
424
  liquidityMax?: number | undefined;
410
425
  tokenType?: "2020" | "2022" | null | undefined;
426
+ is_mayhem_mode?: boolean | null | undefined;
427
+ is_cashback_coin?: boolean | null | undefined;
428
+ is_agent_mode?: boolean | null | undefined;
411
429
  ath?: number | undefined;
412
430
  atl?: number | undefined;
413
431
  }>;
@@ -452,6 +470,9 @@ export declare const PoolData: z.ZodObject<{
452
470
  blockchain: z.ZodOptional<z.ZodString>;
453
471
  type: z.ZodOptional<z.ZodString>;
454
472
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
473
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
474
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
475
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
455
476
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
456
477
  createdAt: z.ZodOptional<z.ZodString>;
457
478
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -500,6 +521,9 @@ export declare const PoolData: z.ZodObject<{
500
521
  price: number;
501
522
  marketCap: number;
502
523
  marketCapDiluted: number;
524
+ is_mayhem_mode: boolean | null;
525
+ is_cashback_coin: boolean | null;
526
+ is_agent_mode: boolean | null;
503
527
  type?: string | undefined;
504
528
  createdAt?: string | undefined;
505
529
  holdersCount?: number | null | undefined;
@@ -605,6 +629,9 @@ export declare const PoolData: z.ZodObject<{
605
629
  liquidity?: number | undefined;
606
630
  liquidityMax?: number | undefined;
607
631
  tokenType?: "2020" | "2022" | null | undefined;
632
+ is_mayhem_mode?: boolean | null | undefined;
633
+ is_cashback_coin?: boolean | null | undefined;
634
+ is_agent_mode?: boolean | null | undefined;
608
635
  ath?: number | undefined;
609
636
  atl?: number | undefined;
610
637
  }>;
@@ -677,6 +704,9 @@ export declare const PoolData: z.ZodObject<{
677
704
  price: number;
678
705
  marketCap: number;
679
706
  marketCapDiluted: number;
707
+ is_mayhem_mode: boolean | null;
708
+ is_cashback_coin: boolean | null;
709
+ is_agent_mode: boolean | null;
680
710
  type?: string | undefined;
681
711
  createdAt?: string | undefined;
682
712
  holdersCount?: number | null | undefined;
@@ -741,6 +771,9 @@ export declare const PoolData: z.ZodObject<{
741
771
  price: number;
742
772
  marketCap: number;
743
773
  marketCapDiluted: number;
774
+ is_mayhem_mode: boolean | null;
775
+ is_cashback_coin: boolean | null;
776
+ is_agent_mode: boolean | null;
744
777
  type?: string | undefined;
745
778
  createdAt?: string | undefined;
746
779
  holdersCount?: number | null | undefined;
@@ -879,6 +912,9 @@ export declare const PoolData: z.ZodObject<{
879
912
  liquidity?: number | undefined;
880
913
  liquidityMax?: number | undefined;
881
914
  tokenType?: "2020" | "2022" | null | undefined;
915
+ is_mayhem_mode?: boolean | null | undefined;
916
+ is_cashback_coin?: boolean | null | undefined;
917
+ is_agent_mode?: boolean | null | undefined;
882
918
  ath?: number | undefined;
883
919
  atl?: number | undefined;
884
920
  };
@@ -943,6 +979,9 @@ export declare const PoolData: z.ZodObject<{
943
979
  liquidity?: number | undefined;
944
980
  liquidityMax?: number | undefined;
945
981
  tokenType?: "2020" | "2022" | null | undefined;
982
+ is_mayhem_mode?: boolean | null | undefined;
983
+ is_cashback_coin?: boolean | null | undefined;
984
+ is_agent_mode?: boolean | null | undefined;
946
985
  ath?: number | undefined;
947
986
  atl?: number | undefined;
948
987
  };
@@ -1298,6 +1337,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1298
1337
  blockchain: z.ZodOptional<z.ZodString>;
1299
1338
  type: z.ZodOptional<z.ZodString>;
1300
1339
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
1340
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1341
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1342
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1301
1343
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1302
1344
  createdAt: z.ZodOptional<z.ZodString>;
1303
1345
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -1346,6 +1388,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1346
1388
  price: number;
1347
1389
  marketCap: number;
1348
1390
  marketCapDiluted: number;
1391
+ is_mayhem_mode: boolean | null;
1392
+ is_cashback_coin: boolean | null;
1393
+ is_agent_mode: boolean | null;
1349
1394
  type?: string | undefined;
1350
1395
  createdAt?: string | undefined;
1351
1396
  holdersCount?: number | null | undefined;
@@ -1451,6 +1496,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1451
1496
  liquidity?: number | undefined;
1452
1497
  liquidityMax?: number | undefined;
1453
1498
  tokenType?: "2020" | "2022" | null | undefined;
1499
+ is_mayhem_mode?: boolean | null | undefined;
1500
+ is_cashback_coin?: boolean | null | undefined;
1501
+ is_agent_mode?: boolean | null | undefined;
1454
1502
  ath?: number | undefined;
1455
1503
  atl?: number | undefined;
1456
1504
  }>;
@@ -1495,6 +1543,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1495
1543
  blockchain: z.ZodOptional<z.ZodString>;
1496
1544
  type: z.ZodOptional<z.ZodString>;
1497
1545
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
1546
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1547
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1548
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1498
1549
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1499
1550
  createdAt: z.ZodOptional<z.ZodString>;
1500
1551
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -1543,6 +1594,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1543
1594
  price: number;
1544
1595
  marketCap: number;
1545
1596
  marketCapDiluted: number;
1597
+ is_mayhem_mode: boolean | null;
1598
+ is_cashback_coin: boolean | null;
1599
+ is_agent_mode: boolean | null;
1546
1600
  type?: string | undefined;
1547
1601
  createdAt?: string | undefined;
1548
1602
  holdersCount?: number | null | undefined;
@@ -1648,6 +1702,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1648
1702
  liquidity?: number | undefined;
1649
1703
  liquidityMax?: number | undefined;
1650
1704
  tokenType?: "2020" | "2022" | null | undefined;
1705
+ is_mayhem_mode?: boolean | null | undefined;
1706
+ is_cashback_coin?: boolean | null | undefined;
1707
+ is_agent_mode?: boolean | null | undefined;
1651
1708
  ath?: number | undefined;
1652
1709
  atl?: number | undefined;
1653
1710
  }>;
@@ -1831,6 +1888,7 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1831
1888
  isMintable: z.ZodOptional<z.ZodBoolean>;
1832
1889
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
1833
1890
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
1891
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
1834
1892
  }, "strip", z.ZodTypeAny, {
1835
1893
  buyTax?: string | undefined;
1836
1894
  sellTax?: string | undefined;
@@ -1848,6 +1906,7 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1848
1906
  isMintable?: boolean | undefined;
1849
1907
  modifyableTax?: boolean | undefined;
1850
1908
  selfDestruct?: boolean | undefined;
1909
+ liquidityBurnPercentage?: number | undefined;
1851
1910
  noMintAuthority?: boolean | undefined;
1852
1911
  }, {
1853
1912
  buyTax?: string | undefined;
@@ -1866,6 +1925,7 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1866
1925
  isMintable?: boolean | undefined;
1867
1926
  modifyableTax?: boolean | undefined;
1868
1927
  selfDestruct?: boolean | undefined;
1928
+ liquidityBurnPercentage?: number | undefined;
1869
1929
  noMintAuthority?: boolean | undefined;
1870
1930
  }>>;
1871
1931
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -1993,6 +2053,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
1993
2053
  price: number;
1994
2054
  marketCap: number;
1995
2055
  marketCapDiluted: number;
2056
+ is_mayhem_mode: boolean | null;
2057
+ is_cashback_coin: boolean | null;
2058
+ is_agent_mode: boolean | null;
1996
2059
  type?: string | undefined;
1997
2060
  createdAt?: string | undefined;
1998
2061
  holdersCount?: number | null | undefined;
@@ -2057,6 +2120,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
2057
2120
  price: number;
2058
2121
  marketCap: number;
2059
2122
  marketCapDiluted: number;
2123
+ is_mayhem_mode: boolean | null;
2124
+ is_cashback_coin: boolean | null;
2125
+ is_agent_mode: boolean | null;
2060
2126
  type?: string | undefined;
2061
2127
  createdAt?: string | undefined;
2062
2128
  holdersCount?: number | null | undefined;
@@ -2134,6 +2200,7 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
2134
2200
  isMintable?: boolean | undefined;
2135
2201
  modifyableTax?: boolean | undefined;
2136
2202
  selfDestruct?: boolean | undefined;
2203
+ liquidityBurnPercentage?: number | undefined;
2137
2204
  noMintAuthority?: boolean | undefined;
2138
2205
  } | null;
2139
2206
  twitterReusesCount: number;
@@ -2373,6 +2440,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
2373
2440
  liquidity?: number | undefined;
2374
2441
  liquidityMax?: number | undefined;
2375
2442
  tokenType?: "2020" | "2022" | null | undefined;
2443
+ is_mayhem_mode?: boolean | null | undefined;
2444
+ is_cashback_coin?: boolean | null | undefined;
2445
+ is_agent_mode?: boolean | null | undefined;
2376
2446
  ath?: number | undefined;
2377
2447
  atl?: number | undefined;
2378
2448
  };
@@ -2437,6 +2507,9 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
2437
2507
  liquidity?: number | undefined;
2438
2508
  liquidityMax?: number | undefined;
2439
2509
  tokenType?: "2020" | "2022" | null | undefined;
2510
+ is_mayhem_mode?: boolean | null | undefined;
2511
+ is_cashback_coin?: boolean | null | undefined;
2512
+ is_agent_mode?: boolean | null | undefined;
2440
2513
  ath?: number | undefined;
2441
2514
  atl?: number | undefined;
2442
2515
  };
@@ -2469,6 +2542,7 @@ export declare const EnrichedPoolDataSchema: z.ZodObject<{
2469
2542
  isMintable?: boolean | undefined;
2470
2543
  modifyableTax?: boolean | undefined;
2471
2544
  selfDestruct?: boolean | undefined;
2545
+ liquidityBurnPercentage?: number | undefined;
2472
2546
  noMintAuthority?: boolean | undefined;
2473
2547
  } | null;
2474
2548
  created_at: Date | null;
@@ -2678,6 +2752,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
2678
2752
  blockchain: z.ZodOptional<z.ZodString>;
2679
2753
  type: z.ZodOptional<z.ZodString>;
2680
2754
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
2755
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2756
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2757
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2681
2758
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2682
2759
  createdAt: z.ZodOptional<z.ZodString>;
2683
2760
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -2726,6 +2803,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
2726
2803
  price: number;
2727
2804
  marketCap: number;
2728
2805
  marketCapDiluted: number;
2806
+ is_mayhem_mode: boolean | null;
2807
+ is_cashback_coin: boolean | null;
2808
+ is_agent_mode: boolean | null;
2729
2809
  type?: string | undefined;
2730
2810
  createdAt?: string | undefined;
2731
2811
  holdersCount?: number | null | undefined;
@@ -2831,6 +2911,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
2831
2911
  liquidity?: number | undefined;
2832
2912
  liquidityMax?: number | undefined;
2833
2913
  tokenType?: "2020" | "2022" | null | undefined;
2914
+ is_mayhem_mode?: boolean | null | undefined;
2915
+ is_cashback_coin?: boolean | null | undefined;
2916
+ is_agent_mode?: boolean | null | undefined;
2834
2917
  ath?: number | undefined;
2835
2918
  atl?: number | undefined;
2836
2919
  }>;
@@ -2875,6 +2958,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
2875
2958
  blockchain: z.ZodOptional<z.ZodString>;
2876
2959
  type: z.ZodOptional<z.ZodString>;
2877
2960
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
2961
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2962
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2963
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2878
2964
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2879
2965
  createdAt: z.ZodOptional<z.ZodString>;
2880
2966
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -2923,6 +3009,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
2923
3009
  price: number;
2924
3010
  marketCap: number;
2925
3011
  marketCapDiluted: number;
3012
+ is_mayhem_mode: boolean | null;
3013
+ is_cashback_coin: boolean | null;
3014
+ is_agent_mode: boolean | null;
2926
3015
  type?: string | undefined;
2927
3016
  createdAt?: string | undefined;
2928
3017
  holdersCount?: number | null | undefined;
@@ -3028,6 +3117,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3028
3117
  liquidity?: number | undefined;
3029
3118
  liquidityMax?: number | undefined;
3030
3119
  tokenType?: "2020" | "2022" | null | undefined;
3120
+ is_mayhem_mode?: boolean | null | undefined;
3121
+ is_cashback_coin?: boolean | null | undefined;
3122
+ is_agent_mode?: boolean | null | undefined;
3031
3123
  ath?: number | undefined;
3032
3124
  atl?: number | undefined;
3033
3125
  }>;
@@ -3211,6 +3303,7 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3211
3303
  isMintable: z.ZodOptional<z.ZodBoolean>;
3212
3304
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
3213
3305
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
3306
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
3214
3307
  }, "strip", z.ZodTypeAny, {
3215
3308
  buyTax?: string | undefined;
3216
3309
  sellTax?: string | undefined;
@@ -3228,6 +3321,7 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3228
3321
  isMintable?: boolean | undefined;
3229
3322
  modifyableTax?: boolean | undefined;
3230
3323
  selfDestruct?: boolean | undefined;
3324
+ liquidityBurnPercentage?: number | undefined;
3231
3325
  noMintAuthority?: boolean | undefined;
3232
3326
  }, {
3233
3327
  buyTax?: string | undefined;
@@ -3246,6 +3340,7 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3246
3340
  isMintable?: boolean | undefined;
3247
3341
  modifyableTax?: boolean | undefined;
3248
3342
  selfDestruct?: boolean | undefined;
3343
+ liquidityBurnPercentage?: number | undefined;
3249
3344
  noMintAuthority?: boolean | undefined;
3250
3345
  }>>;
3251
3346
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -3373,6 +3468,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3373
3468
  price: number;
3374
3469
  marketCap: number;
3375
3470
  marketCapDiluted: number;
3471
+ is_mayhem_mode: boolean | null;
3472
+ is_cashback_coin: boolean | null;
3473
+ is_agent_mode: boolean | null;
3376
3474
  type?: string | undefined;
3377
3475
  createdAt?: string | undefined;
3378
3476
  holdersCount?: number | null | undefined;
@@ -3437,6 +3535,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3437
3535
  price: number;
3438
3536
  marketCap: number;
3439
3537
  marketCapDiluted: number;
3538
+ is_mayhem_mode: boolean | null;
3539
+ is_cashback_coin: boolean | null;
3540
+ is_agent_mode: boolean | null;
3440
3541
  type?: string | undefined;
3441
3542
  createdAt?: string | undefined;
3442
3543
  holdersCount?: number | null | undefined;
@@ -3514,6 +3615,7 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3514
3615
  isMintable?: boolean | undefined;
3515
3616
  modifyableTax?: boolean | undefined;
3516
3617
  selfDestruct?: boolean | undefined;
3618
+ liquidityBurnPercentage?: number | undefined;
3517
3619
  noMintAuthority?: boolean | undefined;
3518
3620
  } | null;
3519
3621
  twitterReusesCount: number;
@@ -3753,6 +3855,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3753
3855
  liquidity?: number | undefined;
3754
3856
  liquidityMax?: number | undefined;
3755
3857
  tokenType?: "2020" | "2022" | null | undefined;
3858
+ is_mayhem_mode?: boolean | null | undefined;
3859
+ is_cashback_coin?: boolean | null | undefined;
3860
+ is_agent_mode?: boolean | null | undefined;
3756
3861
  ath?: number | undefined;
3757
3862
  atl?: number | undefined;
3758
3863
  };
@@ -3817,6 +3922,9 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3817
3922
  liquidity?: number | undefined;
3818
3923
  liquidityMax?: number | undefined;
3819
3924
  tokenType?: "2020" | "2022" | null | undefined;
3925
+ is_mayhem_mode?: boolean | null | undefined;
3926
+ is_cashback_coin?: boolean | null | undefined;
3927
+ is_agent_mode?: boolean | null | undefined;
3820
3928
  ath?: number | undefined;
3821
3929
  atl?: number | undefined;
3822
3930
  };
@@ -3849,6 +3957,7 @@ export declare const PulseEnrichedPoolDataSchema: z.ZodObject<{
3849
3957
  isMintable?: boolean | undefined;
3850
3958
  modifyableTax?: boolean | undefined;
3851
3959
  selfDestruct?: boolean | undefined;
3960
+ liquidityBurnPercentage?: number | undefined;
3852
3961
  noMintAuthority?: boolean | undefined;
3853
3962
  } | null;
3854
3963
  created_at: Date | null;
@@ -4569,6 +4678,9 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4569
4678
  blockchain: z.ZodOptional<z.ZodString>;
4570
4679
  type: z.ZodOptional<z.ZodString>;
4571
4680
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
4681
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
4682
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
4683
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
4572
4684
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4573
4685
  createdAt: z.ZodOptional<z.ZodString>;
4574
4686
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -4789,6 +4901,7 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4789
4901
  isMintable: z.ZodOptional<z.ZodBoolean>;
4790
4902
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
4791
4903
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
4904
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
4792
4905
  }, "strip", z.ZodTypeAny, {
4793
4906
  buyTax?: string | undefined;
4794
4907
  sellTax?: string | undefined;
@@ -4806,6 +4919,7 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4806
4919
  isMintable?: boolean | undefined;
4807
4920
  modifyableTax?: boolean | undefined;
4808
4921
  selfDestruct?: boolean | undefined;
4922
+ liquidityBurnPercentage?: number | undefined;
4809
4923
  noMintAuthority?: boolean | undefined;
4810
4924
  }, {
4811
4925
  buyTax?: string | undefined;
@@ -4824,6 +4938,7 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4824
4938
  isMintable?: boolean | undefined;
4825
4939
  modifyableTax?: boolean | undefined;
4826
4940
  selfDestruct?: boolean | undefined;
4941
+ liquidityBurnPercentage?: number | undefined;
4827
4942
  noMintAuthority?: boolean | undefined;
4828
4943
  }>>;
4829
4944
  twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -4967,6 +5082,7 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4967
5082
  isMintable?: boolean | undefined;
4968
5083
  modifyableTax?: boolean | undefined;
4969
5084
  selfDestruct?: boolean | undefined;
5085
+ liquidityBurnPercentage?: number | undefined;
4970
5086
  noMintAuthority?: boolean | undefined;
4971
5087
  } | null;
4972
5088
  twitterReusesCount: number | null;
@@ -4974,6 +5090,9 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
4974
5090
  price: number;
4975
5091
  marketCap: number;
4976
5092
  marketCapDiluted: number;
5093
+ is_mayhem_mode: boolean | null;
5094
+ is_cashback_coin: boolean | null;
5095
+ is_agent_mode: boolean | null;
4977
5096
  dexscreenerHeader: string | null;
4978
5097
  dexscreenerAdPaid: boolean | null;
4979
5098
  liveStatus: string | null;
@@ -5254,6 +5373,7 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
5254
5373
  isMintable?: boolean | undefined;
5255
5374
  modifyableTax?: boolean | undefined;
5256
5375
  selfDestruct?: boolean | undefined;
5376
+ liquidityBurnPercentage?: number | undefined;
5257
5377
  noMintAuthority?: boolean | undefined;
5258
5378
  } | null;
5259
5379
  liveStatus: string | null;
@@ -5342,6 +5462,9 @@ export declare const EnrichedTokenDataSchema: z.ZodObject<{
5342
5462
  liquidity?: number | undefined;
5343
5463
  liquidityMax?: number | undefined;
5344
5464
  tokenType?: "2020" | "2022" | null | undefined;
5465
+ is_mayhem_mode?: boolean | null | undefined;
5466
+ is_cashback_coin?: boolean | null | undefined;
5467
+ is_agent_mode?: boolean | null | undefined;
5345
5468
  ath?: number | undefined;
5346
5469
  atl?: number | undefined;
5347
5470
  dexscreenerHeader?: string | null | undefined;
@@ -5560,6 +5683,9 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5560
5683
  blockchain: z.ZodOptional<z.ZodString>;
5561
5684
  type: z.ZodOptional<z.ZodString>;
5562
5685
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
5686
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5687
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5688
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5563
5689
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5564
5690
  createdAt: z.ZodOptional<z.ZodString>;
5565
5691
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -5780,6 +5906,7 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5780
5906
  isMintable: z.ZodOptional<z.ZodBoolean>;
5781
5907
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
5782
5908
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
5909
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
5783
5910
  }, "strip", z.ZodTypeAny, {
5784
5911
  buyTax?: string | undefined;
5785
5912
  sellTax?: string | undefined;
@@ -5797,6 +5924,7 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5797
5924
  isMintable?: boolean | undefined;
5798
5925
  modifyableTax?: boolean | undefined;
5799
5926
  selfDestruct?: boolean | undefined;
5927
+ liquidityBurnPercentage?: number | undefined;
5800
5928
  noMintAuthority?: boolean | undefined;
5801
5929
  }, {
5802
5930
  buyTax?: string | undefined;
@@ -5815,6 +5943,7 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5815
5943
  isMintable?: boolean | undefined;
5816
5944
  modifyableTax?: boolean | undefined;
5817
5945
  selfDestruct?: boolean | undefined;
5946
+ liquidityBurnPercentage?: number | undefined;
5818
5947
  noMintAuthority?: boolean | undefined;
5819
5948
  }>>;
5820
5949
  twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -5958,6 +6087,7 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5958
6087
  isMintable?: boolean | undefined;
5959
6088
  modifyableTax?: boolean | undefined;
5960
6089
  selfDestruct?: boolean | undefined;
6090
+ liquidityBurnPercentage?: number | undefined;
5961
6091
  noMintAuthority?: boolean | undefined;
5962
6092
  } | null;
5963
6093
  twitterReusesCount: number | null;
@@ -5965,6 +6095,9 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
5965
6095
  price: number;
5966
6096
  marketCap: number;
5967
6097
  marketCapDiluted: number;
6098
+ is_mayhem_mode: boolean | null;
6099
+ is_cashback_coin: boolean | null;
6100
+ is_agent_mode: boolean | null;
5968
6101
  dexscreenerHeader: string | null;
5969
6102
  dexscreenerAdPaid: boolean | null;
5970
6103
  liveStatus: string | null;
@@ -6245,6 +6378,7 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
6245
6378
  isMintable?: boolean | undefined;
6246
6379
  modifyableTax?: boolean | undefined;
6247
6380
  selfDestruct?: boolean | undefined;
6381
+ liquidityBurnPercentage?: number | undefined;
6248
6382
  noMintAuthority?: boolean | undefined;
6249
6383
  } | null;
6250
6384
  liveStatus: string | null;
@@ -6333,6 +6467,9 @@ export declare const PulseEnrichedTokenDataSchema: z.ZodObject<{
6333
6467
  liquidity?: number | undefined;
6334
6468
  liquidityMax?: number | undefined;
6335
6469
  tokenType?: "2020" | "2022" | null | undefined;
6470
+ is_mayhem_mode?: boolean | null | undefined;
6471
+ is_cashback_coin?: boolean | null | undefined;
6472
+ is_agent_mode?: boolean | null | undefined;
6336
6473
  ath?: number | undefined;
6337
6474
  atl?: number | undefined;
6338
6475
  dexscreenerHeader?: string | null | undefined;