@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
@@ -219,6 +219,9 @@ export declare const poolDataSchema: z.ZodObject<{
219
219
  blockchain: z.ZodOptional<z.ZodString>;
220
220
  type: z.ZodOptional<z.ZodString>;
221
221
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
222
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
223
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
224
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
222
225
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
223
226
  createdAt: z.ZodOptional<z.ZodString>;
224
227
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -267,6 +270,9 @@ export declare const poolDataSchema: z.ZodObject<{
267
270
  price: number;
268
271
  marketCap: number;
269
272
  marketCapDiluted: number;
273
+ is_mayhem_mode: boolean | null;
274
+ is_cashback_coin: boolean | null;
275
+ is_agent_mode: boolean | null;
270
276
  type?: string | undefined;
271
277
  createdAt?: string | undefined;
272
278
  holdersCount?: number | null | undefined;
@@ -372,6 +378,9 @@ export declare const poolDataSchema: z.ZodObject<{
372
378
  liquidity?: number | undefined;
373
379
  liquidityMax?: number | undefined;
374
380
  tokenType?: "2020" | "2022" | null | undefined;
381
+ is_mayhem_mode?: boolean | null | undefined;
382
+ is_cashback_coin?: boolean | null | undefined;
383
+ is_agent_mode?: boolean | null | undefined;
375
384
  ath?: number | undefined;
376
385
  atl?: number | undefined;
377
386
  }>;
@@ -416,6 +425,9 @@ export declare const poolDataSchema: z.ZodObject<{
416
425
  blockchain: z.ZodOptional<z.ZodString>;
417
426
  type: z.ZodOptional<z.ZodString>;
418
427
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
428
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
429
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
430
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
419
431
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
420
432
  createdAt: z.ZodOptional<z.ZodString>;
421
433
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -464,6 +476,9 @@ export declare const poolDataSchema: z.ZodObject<{
464
476
  price: number;
465
477
  marketCap: number;
466
478
  marketCapDiluted: number;
479
+ is_mayhem_mode: boolean | null;
480
+ is_cashback_coin: boolean | null;
481
+ is_agent_mode: boolean | null;
467
482
  type?: string | undefined;
468
483
  createdAt?: string | undefined;
469
484
  holdersCount?: number | null | undefined;
@@ -569,6 +584,9 @@ export declare const poolDataSchema: z.ZodObject<{
569
584
  liquidity?: number | undefined;
570
585
  liquidityMax?: number | undefined;
571
586
  tokenType?: "2020" | "2022" | null | undefined;
587
+ is_mayhem_mode?: boolean | null | undefined;
588
+ is_cashback_coin?: boolean | null | undefined;
589
+ is_agent_mode?: boolean | null | undefined;
572
590
  ath?: number | undefined;
573
591
  atl?: number | undefined;
574
592
  }>;
@@ -752,6 +770,7 @@ export declare const poolDataSchema: z.ZodObject<{
752
770
  isMintable: z.ZodOptional<z.ZodBoolean>;
753
771
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
754
772
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
773
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
755
774
  }, "strip", z.ZodTypeAny, {
756
775
  buyTax?: string | undefined;
757
776
  sellTax?: string | undefined;
@@ -769,6 +788,7 @@ export declare const poolDataSchema: z.ZodObject<{
769
788
  isMintable?: boolean | undefined;
770
789
  modifyableTax?: boolean | undefined;
771
790
  selfDestruct?: boolean | undefined;
791
+ liquidityBurnPercentage?: number | undefined;
772
792
  noMintAuthority?: boolean | undefined;
773
793
  }, {
774
794
  buyTax?: string | undefined;
@@ -787,6 +807,7 @@ export declare const poolDataSchema: z.ZodObject<{
787
807
  isMintable?: boolean | undefined;
788
808
  modifyableTax?: boolean | undefined;
789
809
  selfDestruct?: boolean | undefined;
810
+ liquidityBurnPercentage?: number | undefined;
790
811
  noMintAuthority?: boolean | undefined;
791
812
  }>>;
792
813
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -914,6 +935,9 @@ export declare const poolDataSchema: z.ZodObject<{
914
935
  price: number;
915
936
  marketCap: number;
916
937
  marketCapDiluted: number;
938
+ is_mayhem_mode: boolean | null;
939
+ is_cashback_coin: boolean | null;
940
+ is_agent_mode: boolean | null;
917
941
  type?: string | undefined;
918
942
  createdAt?: string | undefined;
919
943
  holdersCount?: number | null | undefined;
@@ -978,6 +1002,9 @@ export declare const poolDataSchema: z.ZodObject<{
978
1002
  price: number;
979
1003
  marketCap: number;
980
1004
  marketCapDiluted: number;
1005
+ is_mayhem_mode: boolean | null;
1006
+ is_cashback_coin: boolean | null;
1007
+ is_agent_mode: boolean | null;
981
1008
  type?: string | undefined;
982
1009
  createdAt?: string | undefined;
983
1010
  holdersCount?: number | null | undefined;
@@ -1055,6 +1082,7 @@ export declare const poolDataSchema: z.ZodObject<{
1055
1082
  isMintable?: boolean | undefined;
1056
1083
  modifyableTax?: boolean | undefined;
1057
1084
  selfDestruct?: boolean | undefined;
1085
+ liquidityBurnPercentage?: number | undefined;
1058
1086
  noMintAuthority?: boolean | undefined;
1059
1087
  } | null;
1060
1088
  twitterReusesCount: number;
@@ -1294,6 +1322,9 @@ export declare const poolDataSchema: z.ZodObject<{
1294
1322
  liquidity?: number | undefined;
1295
1323
  liquidityMax?: number | undefined;
1296
1324
  tokenType?: "2020" | "2022" | null | undefined;
1325
+ is_mayhem_mode?: boolean | null | undefined;
1326
+ is_cashback_coin?: boolean | null | undefined;
1327
+ is_agent_mode?: boolean | null | undefined;
1297
1328
  ath?: number | undefined;
1298
1329
  atl?: number | undefined;
1299
1330
  };
@@ -1358,6 +1389,9 @@ export declare const poolDataSchema: z.ZodObject<{
1358
1389
  liquidity?: number | undefined;
1359
1390
  liquidityMax?: number | undefined;
1360
1391
  tokenType?: "2020" | "2022" | null | undefined;
1392
+ is_mayhem_mode?: boolean | null | undefined;
1393
+ is_cashback_coin?: boolean | null | undefined;
1394
+ is_agent_mode?: boolean | null | undefined;
1361
1395
  ath?: number | undefined;
1362
1396
  atl?: number | undefined;
1363
1397
  };
@@ -1390,6 +1424,7 @@ export declare const poolDataSchema: z.ZodObject<{
1390
1424
  isMintable?: boolean | undefined;
1391
1425
  modifyableTax?: boolean | undefined;
1392
1426
  selfDestruct?: boolean | undefined;
1427
+ liquidityBurnPercentage?: number | undefined;
1393
1428
  noMintAuthority?: boolean | undefined;
1394
1429
  } | null;
1395
1430
  created_at: Date | null;
@@ -1598,6 +1633,9 @@ export declare const tokenDataSchema: z.ZodObject<{
1598
1633
  blockchain: z.ZodOptional<z.ZodString>;
1599
1634
  type: z.ZodOptional<z.ZodString>;
1600
1635
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
1636
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1637
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1638
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1601
1639
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1602
1640
  createdAt: z.ZodOptional<z.ZodString>;
1603
1641
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -1818,6 +1856,7 @@ export declare const tokenDataSchema: z.ZodObject<{
1818
1856
  isMintable: z.ZodOptional<z.ZodBoolean>;
1819
1857
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
1820
1858
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
1859
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
1821
1860
  }, "strip", z.ZodTypeAny, {
1822
1861
  buyTax?: string | undefined;
1823
1862
  sellTax?: string | undefined;
@@ -1835,6 +1874,7 @@ export declare const tokenDataSchema: z.ZodObject<{
1835
1874
  isMintable?: boolean | undefined;
1836
1875
  modifyableTax?: boolean | undefined;
1837
1876
  selfDestruct?: boolean | undefined;
1877
+ liquidityBurnPercentage?: number | undefined;
1838
1878
  noMintAuthority?: boolean | undefined;
1839
1879
  }, {
1840
1880
  buyTax?: string | undefined;
@@ -1853,6 +1893,7 @@ export declare const tokenDataSchema: z.ZodObject<{
1853
1893
  isMintable?: boolean | undefined;
1854
1894
  modifyableTax?: boolean | undefined;
1855
1895
  selfDestruct?: boolean | undefined;
1896
+ liquidityBurnPercentage?: number | undefined;
1856
1897
  noMintAuthority?: boolean | undefined;
1857
1898
  }>>;
1858
1899
  twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -1996,6 +2037,7 @@ export declare const tokenDataSchema: z.ZodObject<{
1996
2037
  isMintable?: boolean | undefined;
1997
2038
  modifyableTax?: boolean | undefined;
1998
2039
  selfDestruct?: boolean | undefined;
2040
+ liquidityBurnPercentage?: number | undefined;
1999
2041
  noMintAuthority?: boolean | undefined;
2000
2042
  } | null;
2001
2043
  twitterReusesCount: number | null;
@@ -2003,6 +2045,9 @@ export declare const tokenDataSchema: z.ZodObject<{
2003
2045
  price: number;
2004
2046
  marketCap: number;
2005
2047
  marketCapDiluted: number;
2048
+ is_mayhem_mode: boolean | null;
2049
+ is_cashback_coin: boolean | null;
2050
+ is_agent_mode: boolean | null;
2006
2051
  dexscreenerHeader: string | null;
2007
2052
  dexscreenerAdPaid: boolean | null;
2008
2053
  liveStatus: string | null;
@@ -2283,6 +2328,7 @@ export declare const tokenDataSchema: z.ZodObject<{
2283
2328
  isMintable?: boolean | undefined;
2284
2329
  modifyableTax?: boolean | undefined;
2285
2330
  selfDestruct?: boolean | undefined;
2331
+ liquidityBurnPercentage?: number | undefined;
2286
2332
  noMintAuthority?: boolean | undefined;
2287
2333
  } | null;
2288
2334
  liveStatus: string | null;
@@ -2371,6 +2417,9 @@ export declare const tokenDataSchema: z.ZodObject<{
2371
2417
  liquidity?: number | undefined;
2372
2418
  liquidityMax?: number | undefined;
2373
2419
  tokenType?: "2020" | "2022" | null | undefined;
2420
+ is_mayhem_mode?: boolean | null | undefined;
2421
+ is_cashback_coin?: boolean | null | undefined;
2422
+ is_agent_mode?: boolean | null | undefined;
2374
2423
  ath?: number | undefined;
2375
2424
  atl?: number | undefined;
2376
2425
  dexscreenerHeader?: string | null | undefined;
@@ -2593,6 +2642,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2593
2642
  blockchain: z.ZodOptional<z.ZodString>;
2594
2643
  type: z.ZodOptional<z.ZodString>;
2595
2644
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
2645
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2646
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2647
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2596
2648
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2597
2649
  createdAt: z.ZodOptional<z.ZodString>;
2598
2650
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -2641,6 +2693,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2641
2693
  price: number;
2642
2694
  marketCap: number;
2643
2695
  marketCapDiluted: number;
2696
+ is_mayhem_mode: boolean | null;
2697
+ is_cashback_coin: boolean | null;
2698
+ is_agent_mode: boolean | null;
2644
2699
  type?: string | undefined;
2645
2700
  createdAt?: string | undefined;
2646
2701
  holdersCount?: number | null | undefined;
@@ -2746,6 +2801,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2746
2801
  liquidity?: number | undefined;
2747
2802
  liquidityMax?: number | undefined;
2748
2803
  tokenType?: "2020" | "2022" | null | undefined;
2804
+ is_mayhem_mode?: boolean | null | undefined;
2805
+ is_cashback_coin?: boolean | null | undefined;
2806
+ is_agent_mode?: boolean | null | undefined;
2749
2807
  ath?: number | undefined;
2750
2808
  atl?: number | undefined;
2751
2809
  }>;
@@ -2790,6 +2848,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2790
2848
  blockchain: z.ZodOptional<z.ZodString>;
2791
2849
  type: z.ZodOptional<z.ZodString>;
2792
2850
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
2851
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2852
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2853
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2793
2854
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2794
2855
  createdAt: z.ZodOptional<z.ZodString>;
2795
2856
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -2838,6 +2899,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2838
2899
  price: number;
2839
2900
  marketCap: number;
2840
2901
  marketCapDiluted: number;
2902
+ is_mayhem_mode: boolean | null;
2903
+ is_cashback_coin: boolean | null;
2904
+ is_agent_mode: boolean | null;
2841
2905
  type?: string | undefined;
2842
2906
  createdAt?: string | undefined;
2843
2907
  holdersCount?: number | null | undefined;
@@ -2943,6 +3007,9 @@ export declare const syncMessageSchema: z.ZodObject<{
2943
3007
  liquidity?: number | undefined;
2944
3008
  liquidityMax?: number | undefined;
2945
3009
  tokenType?: "2020" | "2022" | null | undefined;
3010
+ is_mayhem_mode?: boolean | null | undefined;
3011
+ is_cashback_coin?: boolean | null | undefined;
3012
+ is_agent_mode?: boolean | null | undefined;
2946
3013
  ath?: number | undefined;
2947
3014
  atl?: number | undefined;
2948
3015
  }>;
@@ -3126,6 +3193,7 @@ export declare const syncMessageSchema: z.ZodObject<{
3126
3193
  isMintable: z.ZodOptional<z.ZodBoolean>;
3127
3194
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
3128
3195
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
3196
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
3129
3197
  }, "strip", z.ZodTypeAny, {
3130
3198
  buyTax?: string | undefined;
3131
3199
  sellTax?: string | undefined;
@@ -3143,6 +3211,7 @@ export declare const syncMessageSchema: z.ZodObject<{
3143
3211
  isMintable?: boolean | undefined;
3144
3212
  modifyableTax?: boolean | undefined;
3145
3213
  selfDestruct?: boolean | undefined;
3214
+ liquidityBurnPercentage?: number | undefined;
3146
3215
  noMintAuthority?: boolean | undefined;
3147
3216
  }, {
3148
3217
  buyTax?: string | undefined;
@@ -3161,6 +3230,7 @@ export declare const syncMessageSchema: z.ZodObject<{
3161
3230
  isMintable?: boolean | undefined;
3162
3231
  modifyableTax?: boolean | undefined;
3163
3232
  selfDestruct?: boolean | undefined;
3233
+ liquidityBurnPercentage?: number | undefined;
3164
3234
  noMintAuthority?: boolean | undefined;
3165
3235
  }>>;
3166
3236
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -3288,6 +3358,9 @@ export declare const syncMessageSchema: z.ZodObject<{
3288
3358
  price: number;
3289
3359
  marketCap: number;
3290
3360
  marketCapDiluted: number;
3361
+ is_mayhem_mode: boolean | null;
3362
+ is_cashback_coin: boolean | null;
3363
+ is_agent_mode: boolean | null;
3291
3364
  type?: string | undefined;
3292
3365
  createdAt?: string | undefined;
3293
3366
  holdersCount?: number | null | undefined;
@@ -3352,6 +3425,9 @@ export declare const syncMessageSchema: z.ZodObject<{
3352
3425
  price: number;
3353
3426
  marketCap: number;
3354
3427
  marketCapDiluted: number;
3428
+ is_mayhem_mode: boolean | null;
3429
+ is_cashback_coin: boolean | null;
3430
+ is_agent_mode: boolean | null;
3355
3431
  type?: string | undefined;
3356
3432
  createdAt?: string | undefined;
3357
3433
  holdersCount?: number | null | undefined;
@@ -3429,6 +3505,7 @@ export declare const syncMessageSchema: z.ZodObject<{
3429
3505
  isMintable?: boolean | undefined;
3430
3506
  modifyableTax?: boolean | undefined;
3431
3507
  selfDestruct?: boolean | undefined;
3508
+ liquidityBurnPercentage?: number | undefined;
3432
3509
  noMintAuthority?: boolean | undefined;
3433
3510
  } | null;
3434
3511
  twitterReusesCount: number;
@@ -3668,6 +3745,9 @@ export declare const syncMessageSchema: z.ZodObject<{
3668
3745
  liquidity?: number | undefined;
3669
3746
  liquidityMax?: number | undefined;
3670
3747
  tokenType?: "2020" | "2022" | null | undefined;
3748
+ is_mayhem_mode?: boolean | null | undefined;
3749
+ is_cashback_coin?: boolean | null | undefined;
3750
+ is_agent_mode?: boolean | null | undefined;
3671
3751
  ath?: number | undefined;
3672
3752
  atl?: number | undefined;
3673
3753
  };
@@ -3732,6 +3812,9 @@ export declare const syncMessageSchema: z.ZodObject<{
3732
3812
  liquidity?: number | undefined;
3733
3813
  liquidityMax?: number | undefined;
3734
3814
  tokenType?: "2020" | "2022" | null | undefined;
3815
+ is_mayhem_mode?: boolean | null | undefined;
3816
+ is_cashback_coin?: boolean | null | undefined;
3817
+ is_agent_mode?: boolean | null | undefined;
3735
3818
  ath?: number | undefined;
3736
3819
  atl?: number | undefined;
3737
3820
  };
@@ -3764,6 +3847,7 @@ export declare const syncMessageSchema: z.ZodObject<{
3764
3847
  isMintable?: boolean | undefined;
3765
3848
  modifyableTax?: boolean | undefined;
3766
3849
  selfDestruct?: boolean | undefined;
3850
+ liquidityBurnPercentage?: number | undefined;
3767
3851
  noMintAuthority?: boolean | undefined;
3768
3852
  } | null;
3769
3853
  created_at: Date | null;
@@ -3966,6 +4050,9 @@ export declare const syncMessageSchema: z.ZodObject<{
3966
4050
  price: number;
3967
4051
  marketCap: number;
3968
4052
  marketCapDiluted: number;
4053
+ is_mayhem_mode: boolean | null;
4054
+ is_cashback_coin: boolean | null;
4055
+ is_agent_mode: boolean | null;
3969
4056
  type?: string | undefined;
3970
4057
  createdAt?: string | undefined;
3971
4058
  holdersCount?: number | null | undefined;
@@ -4030,6 +4117,9 @@ export declare const syncMessageSchema: z.ZodObject<{
4030
4117
  price: number;
4031
4118
  marketCap: number;
4032
4119
  marketCapDiluted: number;
4120
+ is_mayhem_mode: boolean | null;
4121
+ is_cashback_coin: boolean | null;
4122
+ is_agent_mode: boolean | null;
4033
4123
  type?: string | undefined;
4034
4124
  createdAt?: string | undefined;
4035
4125
  holdersCount?: number | null | undefined;
@@ -4107,6 +4197,7 @@ export declare const syncMessageSchema: z.ZodObject<{
4107
4197
  isMintable?: boolean | undefined;
4108
4198
  modifyableTax?: boolean | undefined;
4109
4199
  selfDestruct?: boolean | undefined;
4200
+ liquidityBurnPercentage?: number | undefined;
4110
4201
  noMintAuthority?: boolean | undefined;
4111
4202
  } | null;
4112
4203
  twitterReusesCount: number;
@@ -4348,6 +4439,9 @@ export declare const syncMessageSchema: z.ZodObject<{
4348
4439
  liquidity?: number | undefined;
4349
4440
  liquidityMax?: number | undefined;
4350
4441
  tokenType?: "2020" | "2022" | null | undefined;
4442
+ is_mayhem_mode?: boolean | null | undefined;
4443
+ is_cashback_coin?: boolean | null | undefined;
4444
+ is_agent_mode?: boolean | null | undefined;
4351
4445
  ath?: number | undefined;
4352
4446
  atl?: number | undefined;
4353
4447
  };
@@ -4412,6 +4506,9 @@ export declare const syncMessageSchema: z.ZodObject<{
4412
4506
  liquidity?: number | undefined;
4413
4507
  liquidityMax?: number | undefined;
4414
4508
  tokenType?: "2020" | "2022" | null | undefined;
4509
+ is_mayhem_mode?: boolean | null | undefined;
4510
+ is_cashback_coin?: boolean | null | undefined;
4511
+ is_agent_mode?: boolean | null | undefined;
4415
4512
  ath?: number | undefined;
4416
4513
  atl?: number | undefined;
4417
4514
  };
@@ -4444,6 +4541,7 @@ export declare const syncMessageSchema: z.ZodObject<{
4444
4541
  isMintable?: boolean | undefined;
4445
4542
  modifyableTax?: boolean | undefined;
4446
4543
  selfDestruct?: boolean | undefined;
4544
+ liquidityBurnPercentage?: number | undefined;
4447
4545
  noMintAuthority?: boolean | undefined;
4448
4546
  } | null;
4449
4547
  created_at: Date | null;
@@ -4649,6 +4747,9 @@ export declare const syncMessageSchema: z.ZodObject<{
4649
4747
  price: number;
4650
4748
  marketCap: number;
4651
4749
  marketCapDiluted: number;
4750
+ is_mayhem_mode: boolean | null;
4751
+ is_cashback_coin: boolean | null;
4752
+ is_agent_mode: boolean | null;
4652
4753
  type?: string | undefined;
4653
4754
  createdAt?: string | undefined;
4654
4755
  holdersCount?: number | null | undefined;
@@ -4713,6 +4814,9 @@ export declare const syncMessageSchema: z.ZodObject<{
4713
4814
  price: number;
4714
4815
  marketCap: number;
4715
4816
  marketCapDiluted: number;
4817
+ is_mayhem_mode: boolean | null;
4818
+ is_cashback_coin: boolean | null;
4819
+ is_agent_mode: boolean | null;
4716
4820
  type?: string | undefined;
4717
4821
  createdAt?: string | undefined;
4718
4822
  holdersCount?: number | null | undefined;
@@ -4790,6 +4894,7 @@ export declare const syncMessageSchema: z.ZodObject<{
4790
4894
  isMintable?: boolean | undefined;
4791
4895
  modifyableTax?: boolean | undefined;
4792
4896
  selfDestruct?: boolean | undefined;
4897
+ liquidityBurnPercentage?: number | undefined;
4793
4898
  noMintAuthority?: boolean | undefined;
4794
4899
  } | null;
4795
4900
  twitterReusesCount: number;
@@ -5034,6 +5139,9 @@ export declare const syncMessageSchema: z.ZodObject<{
5034
5139
  liquidity?: number | undefined;
5035
5140
  liquidityMax?: number | undefined;
5036
5141
  tokenType?: "2020" | "2022" | null | undefined;
5142
+ is_mayhem_mode?: boolean | null | undefined;
5143
+ is_cashback_coin?: boolean | null | undefined;
5144
+ is_agent_mode?: boolean | null | undefined;
5037
5145
  ath?: number | undefined;
5038
5146
  atl?: number | undefined;
5039
5147
  };
@@ -5098,6 +5206,9 @@ export declare const syncMessageSchema: z.ZodObject<{
5098
5206
  liquidity?: number | undefined;
5099
5207
  liquidityMax?: number | undefined;
5100
5208
  tokenType?: "2020" | "2022" | null | undefined;
5209
+ is_mayhem_mode?: boolean | null | undefined;
5210
+ is_cashback_coin?: boolean | null | undefined;
5211
+ is_agent_mode?: boolean | null | undefined;
5101
5212
  ath?: number | undefined;
5102
5213
  atl?: number | undefined;
5103
5214
  };
@@ -5130,6 +5241,7 @@ export declare const syncMessageSchema: z.ZodObject<{
5130
5241
  isMintable?: boolean | undefined;
5131
5242
  modifyableTax?: boolean | undefined;
5132
5243
  selfDestruct?: boolean | undefined;
5244
+ liquidityBurnPercentage?: number | undefined;
5133
5245
  noMintAuthority?: boolean | undefined;
5134
5246
  } | null;
5135
5247
  created_at: Date | null;
@@ -5344,6 +5456,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5344
5456
  blockchain: z.ZodOptional<z.ZodString>;
5345
5457
  type: z.ZodOptional<z.ZodString>;
5346
5458
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
5459
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5460
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5461
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5347
5462
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5348
5463
  createdAt: z.ZodOptional<z.ZodString>;
5349
5464
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -5392,6 +5507,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5392
5507
  price: number;
5393
5508
  marketCap: number;
5394
5509
  marketCapDiluted: number;
5510
+ is_mayhem_mode: boolean | null;
5511
+ is_cashback_coin: boolean | null;
5512
+ is_agent_mode: boolean | null;
5395
5513
  type?: string | undefined;
5396
5514
  createdAt?: string | undefined;
5397
5515
  holdersCount?: number | null | undefined;
@@ -5497,6 +5615,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5497
5615
  liquidity?: number | undefined;
5498
5616
  liquidityMax?: number | undefined;
5499
5617
  tokenType?: "2020" | "2022" | null | undefined;
5618
+ is_mayhem_mode?: boolean | null | undefined;
5619
+ is_cashback_coin?: boolean | null | undefined;
5620
+ is_agent_mode?: boolean | null | undefined;
5500
5621
  ath?: number | undefined;
5501
5622
  atl?: number | undefined;
5502
5623
  }>;
@@ -5541,6 +5662,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5541
5662
  blockchain: z.ZodOptional<z.ZodString>;
5542
5663
  type: z.ZodOptional<z.ZodString>;
5543
5664
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
5665
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5666
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5667
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
5544
5668
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5545
5669
  createdAt: z.ZodOptional<z.ZodString>;
5546
5670
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -5589,6 +5713,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5589
5713
  price: number;
5590
5714
  marketCap: number;
5591
5715
  marketCapDiluted: number;
5716
+ is_mayhem_mode: boolean | null;
5717
+ is_cashback_coin: boolean | null;
5718
+ is_agent_mode: boolean | null;
5592
5719
  type?: string | undefined;
5593
5720
  createdAt?: string | undefined;
5594
5721
  holdersCount?: number | null | undefined;
@@ -5694,6 +5821,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5694
5821
  liquidity?: number | undefined;
5695
5822
  liquidityMax?: number | undefined;
5696
5823
  tokenType?: "2020" | "2022" | null | undefined;
5824
+ is_mayhem_mode?: boolean | null | undefined;
5825
+ is_cashback_coin?: boolean | null | undefined;
5826
+ is_agent_mode?: boolean | null | undefined;
5697
5827
  ath?: number | undefined;
5698
5828
  atl?: number | undefined;
5699
5829
  }>;
@@ -5877,6 +6007,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5877
6007
  isMintable: z.ZodOptional<z.ZodBoolean>;
5878
6008
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
5879
6009
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
6010
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
5880
6011
  }, "strip", z.ZodTypeAny, {
5881
6012
  buyTax?: string | undefined;
5882
6013
  sellTax?: string | undefined;
@@ -5894,6 +6025,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5894
6025
  isMintable?: boolean | undefined;
5895
6026
  modifyableTax?: boolean | undefined;
5896
6027
  selfDestruct?: boolean | undefined;
6028
+ liquidityBurnPercentage?: number | undefined;
5897
6029
  noMintAuthority?: boolean | undefined;
5898
6030
  }, {
5899
6031
  buyTax?: string | undefined;
@@ -5912,6 +6044,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
5912
6044
  isMintable?: boolean | undefined;
5913
6045
  modifyableTax?: boolean | undefined;
5914
6046
  selfDestruct?: boolean | undefined;
6047
+ liquidityBurnPercentage?: number | undefined;
5915
6048
  noMintAuthority?: boolean | undefined;
5916
6049
  }>>;
5917
6050
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -6039,6 +6172,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6039
6172
  price: number;
6040
6173
  marketCap: number;
6041
6174
  marketCapDiluted: number;
6175
+ is_mayhem_mode: boolean | null;
6176
+ is_cashback_coin: boolean | null;
6177
+ is_agent_mode: boolean | null;
6042
6178
  type?: string | undefined;
6043
6179
  createdAt?: string | undefined;
6044
6180
  holdersCount?: number | null | undefined;
@@ -6103,6 +6239,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6103
6239
  price: number;
6104
6240
  marketCap: number;
6105
6241
  marketCapDiluted: number;
6242
+ is_mayhem_mode: boolean | null;
6243
+ is_cashback_coin: boolean | null;
6244
+ is_agent_mode: boolean | null;
6106
6245
  type?: string | undefined;
6107
6246
  createdAt?: string | undefined;
6108
6247
  holdersCount?: number | null | undefined;
@@ -6180,6 +6319,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6180
6319
  isMintable?: boolean | undefined;
6181
6320
  modifyableTax?: boolean | undefined;
6182
6321
  selfDestruct?: boolean | undefined;
6322
+ liquidityBurnPercentage?: number | undefined;
6183
6323
  noMintAuthority?: boolean | undefined;
6184
6324
  } | null;
6185
6325
  twitterReusesCount: number;
@@ -6419,6 +6559,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6419
6559
  liquidity?: number | undefined;
6420
6560
  liquidityMax?: number | undefined;
6421
6561
  tokenType?: "2020" | "2022" | null | undefined;
6562
+ is_mayhem_mode?: boolean | null | undefined;
6563
+ is_cashback_coin?: boolean | null | undefined;
6564
+ is_agent_mode?: boolean | null | undefined;
6422
6565
  ath?: number | undefined;
6423
6566
  atl?: number | undefined;
6424
6567
  };
@@ -6483,6 +6626,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6483
6626
  liquidity?: number | undefined;
6484
6627
  liquidityMax?: number | undefined;
6485
6628
  tokenType?: "2020" | "2022" | null | undefined;
6629
+ is_mayhem_mode?: boolean | null | undefined;
6630
+ is_cashback_coin?: boolean | null | undefined;
6631
+ is_agent_mode?: boolean | null | undefined;
6486
6632
  ath?: number | undefined;
6487
6633
  atl?: number | undefined;
6488
6634
  };
@@ -6515,6 +6661,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6515
6661
  isMintable?: boolean | undefined;
6516
6662
  modifyableTax?: boolean | undefined;
6517
6663
  selfDestruct?: boolean | undefined;
6664
+ liquidityBurnPercentage?: number | undefined;
6518
6665
  noMintAuthority?: boolean | undefined;
6519
6666
  } | null;
6520
6667
  created_at: Date | null;
@@ -6717,6 +6864,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6717
6864
  price: number;
6718
6865
  marketCap: number;
6719
6866
  marketCapDiluted: number;
6867
+ is_mayhem_mode: boolean | null;
6868
+ is_cashback_coin: boolean | null;
6869
+ is_agent_mode: boolean | null;
6720
6870
  type?: string | undefined;
6721
6871
  createdAt?: string | undefined;
6722
6872
  holdersCount?: number | null | undefined;
@@ -6781,6 +6931,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6781
6931
  price: number;
6782
6932
  marketCap: number;
6783
6933
  marketCapDiluted: number;
6934
+ is_mayhem_mode: boolean | null;
6935
+ is_cashback_coin: boolean | null;
6936
+ is_agent_mode: boolean | null;
6784
6937
  type?: string | undefined;
6785
6938
  createdAt?: string | undefined;
6786
6939
  holdersCount?: number | null | undefined;
@@ -6858,6 +7011,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
6858
7011
  isMintable?: boolean | undefined;
6859
7012
  modifyableTax?: boolean | undefined;
6860
7013
  selfDestruct?: boolean | undefined;
7014
+ liquidityBurnPercentage?: number | undefined;
6861
7015
  noMintAuthority?: boolean | undefined;
6862
7016
  } | null;
6863
7017
  twitterReusesCount: number;
@@ -7100,6 +7254,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7100
7254
  liquidity?: number | undefined;
7101
7255
  liquidityMax?: number | undefined;
7102
7256
  tokenType?: "2020" | "2022" | null | undefined;
7257
+ is_mayhem_mode?: boolean | null | undefined;
7258
+ is_cashback_coin?: boolean | null | undefined;
7259
+ is_agent_mode?: boolean | null | undefined;
7103
7260
  ath?: number | undefined;
7104
7261
  atl?: number | undefined;
7105
7262
  };
@@ -7164,6 +7321,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7164
7321
  liquidity?: number | undefined;
7165
7322
  liquidityMax?: number | undefined;
7166
7323
  tokenType?: "2020" | "2022" | null | undefined;
7324
+ is_mayhem_mode?: boolean | null | undefined;
7325
+ is_cashback_coin?: boolean | null | undefined;
7326
+ is_agent_mode?: boolean | null | undefined;
7167
7327
  ath?: number | undefined;
7168
7328
  atl?: number | undefined;
7169
7329
  };
@@ -7196,6 +7356,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7196
7356
  isMintable?: boolean | undefined;
7197
7357
  modifyableTax?: boolean | undefined;
7198
7358
  selfDestruct?: boolean | undefined;
7359
+ liquidityBurnPercentage?: number | undefined;
7199
7360
  noMintAuthority?: boolean | undefined;
7200
7361
  } | null;
7201
7362
  created_at: Date | null;
@@ -7402,6 +7563,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7402
7563
  price: number;
7403
7564
  marketCap: number;
7404
7565
  marketCapDiluted: number;
7566
+ is_mayhem_mode: boolean | null;
7567
+ is_cashback_coin: boolean | null;
7568
+ is_agent_mode: boolean | null;
7405
7569
  type?: string | undefined;
7406
7570
  createdAt?: string | undefined;
7407
7571
  holdersCount?: number | null | undefined;
@@ -7466,6 +7630,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7466
7630
  price: number;
7467
7631
  marketCap: number;
7468
7632
  marketCapDiluted: number;
7633
+ is_mayhem_mode: boolean | null;
7634
+ is_cashback_coin: boolean | null;
7635
+ is_agent_mode: boolean | null;
7469
7636
  type?: string | undefined;
7470
7637
  createdAt?: string | undefined;
7471
7638
  holdersCount?: number | null | undefined;
@@ -7543,6 +7710,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7543
7710
  isMintable?: boolean | undefined;
7544
7711
  modifyableTax?: boolean | undefined;
7545
7712
  selfDestruct?: boolean | undefined;
7713
+ liquidityBurnPercentage?: number | undefined;
7546
7714
  noMintAuthority?: boolean | undefined;
7547
7715
  } | null;
7548
7716
  twitterReusesCount: number;
@@ -7788,6 +7956,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7788
7956
  liquidity?: number | undefined;
7789
7957
  liquidityMax?: number | undefined;
7790
7958
  tokenType?: "2020" | "2022" | null | undefined;
7959
+ is_mayhem_mode?: boolean | null | undefined;
7960
+ is_cashback_coin?: boolean | null | undefined;
7961
+ is_agent_mode?: boolean | null | undefined;
7791
7962
  ath?: number | undefined;
7792
7963
  atl?: number | undefined;
7793
7964
  };
@@ -7852,6 +8023,9 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7852
8023
  liquidity?: number | undefined;
7853
8024
  liquidityMax?: number | undefined;
7854
8025
  tokenType?: "2020" | "2022" | null | undefined;
8026
+ is_mayhem_mode?: boolean | null | undefined;
8027
+ is_cashback_coin?: boolean | null | undefined;
8028
+ is_agent_mode?: boolean | null | undefined;
7855
8029
  ath?: number | undefined;
7856
8030
  atl?: number | undefined;
7857
8031
  };
@@ -7884,6 +8058,7 @@ export declare const newPoolMessageSchema: z.ZodObject<{
7884
8058
  isMintable?: boolean | undefined;
7885
8059
  modifyableTax?: boolean | undefined;
7886
8060
  selfDestruct?: boolean | undefined;
8061
+ liquidityBurnPercentage?: number | undefined;
7887
8062
  noMintAuthority?: boolean | undefined;
7888
8063
  } | null;
7889
8064
  created_at: Date | null;
@@ -8099,6 +8274,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8099
8274
  blockchain: z.ZodOptional<z.ZodString>;
8100
8275
  type: z.ZodOptional<z.ZodString>;
8101
8276
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
8277
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8278
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8279
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8102
8280
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8103
8281
  createdAt: z.ZodOptional<z.ZodString>;
8104
8282
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -8147,6 +8325,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8147
8325
  price: number;
8148
8326
  marketCap: number;
8149
8327
  marketCapDiluted: number;
8328
+ is_mayhem_mode: boolean | null;
8329
+ is_cashback_coin: boolean | null;
8330
+ is_agent_mode: boolean | null;
8150
8331
  type?: string | undefined;
8151
8332
  createdAt?: string | undefined;
8152
8333
  holdersCount?: number | null | undefined;
@@ -8252,6 +8433,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8252
8433
  liquidity?: number | undefined;
8253
8434
  liquidityMax?: number | undefined;
8254
8435
  tokenType?: "2020" | "2022" | null | undefined;
8436
+ is_mayhem_mode?: boolean | null | undefined;
8437
+ is_cashback_coin?: boolean | null | undefined;
8438
+ is_agent_mode?: boolean | null | undefined;
8255
8439
  ath?: number | undefined;
8256
8440
  atl?: number | undefined;
8257
8441
  }>;
@@ -8296,6 +8480,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8296
8480
  blockchain: z.ZodOptional<z.ZodString>;
8297
8481
  type: z.ZodOptional<z.ZodString>;
8298
8482
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
8483
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8484
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8485
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
8299
8486
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8300
8487
  createdAt: z.ZodOptional<z.ZodString>;
8301
8488
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -8344,6 +8531,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8344
8531
  price: number;
8345
8532
  marketCap: number;
8346
8533
  marketCapDiluted: number;
8534
+ is_mayhem_mode: boolean | null;
8535
+ is_cashback_coin: boolean | null;
8536
+ is_agent_mode: boolean | null;
8347
8537
  type?: string | undefined;
8348
8538
  createdAt?: string | undefined;
8349
8539
  holdersCount?: number | null | undefined;
@@ -8449,6 +8639,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8449
8639
  liquidity?: number | undefined;
8450
8640
  liquidityMax?: number | undefined;
8451
8641
  tokenType?: "2020" | "2022" | null | undefined;
8642
+ is_mayhem_mode?: boolean | null | undefined;
8643
+ is_cashback_coin?: boolean | null | undefined;
8644
+ is_agent_mode?: boolean | null | undefined;
8452
8645
  ath?: number | undefined;
8453
8646
  atl?: number | undefined;
8454
8647
  }>;
@@ -8632,6 +8825,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8632
8825
  isMintable: z.ZodOptional<z.ZodBoolean>;
8633
8826
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
8634
8827
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
8828
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
8635
8829
  }, "strip", z.ZodTypeAny, {
8636
8830
  buyTax?: string | undefined;
8637
8831
  sellTax?: string | undefined;
@@ -8649,6 +8843,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8649
8843
  isMintable?: boolean | undefined;
8650
8844
  modifyableTax?: boolean | undefined;
8651
8845
  selfDestruct?: boolean | undefined;
8846
+ liquidityBurnPercentage?: number | undefined;
8652
8847
  noMintAuthority?: boolean | undefined;
8653
8848
  }, {
8654
8849
  buyTax?: string | undefined;
@@ -8667,6 +8862,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8667
8862
  isMintable?: boolean | undefined;
8668
8863
  modifyableTax?: boolean | undefined;
8669
8864
  selfDestruct?: boolean | undefined;
8865
+ liquidityBurnPercentage?: number | undefined;
8670
8866
  noMintAuthority?: boolean | undefined;
8671
8867
  }>>;
8672
8868
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -8794,6 +8990,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8794
8990
  price: number;
8795
8991
  marketCap: number;
8796
8992
  marketCapDiluted: number;
8993
+ is_mayhem_mode: boolean | null;
8994
+ is_cashback_coin: boolean | null;
8995
+ is_agent_mode: boolean | null;
8797
8996
  type?: string | undefined;
8798
8997
  createdAt?: string | undefined;
8799
8998
  holdersCount?: number | null | undefined;
@@ -8858,6 +9057,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8858
9057
  price: number;
8859
9058
  marketCap: number;
8860
9059
  marketCapDiluted: number;
9060
+ is_mayhem_mode: boolean | null;
9061
+ is_cashback_coin: boolean | null;
9062
+ is_agent_mode: boolean | null;
8861
9063
  type?: string | undefined;
8862
9064
  createdAt?: string | undefined;
8863
9065
  holdersCount?: number | null | undefined;
@@ -8935,6 +9137,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
8935
9137
  isMintable?: boolean | undefined;
8936
9138
  modifyableTax?: boolean | undefined;
8937
9139
  selfDestruct?: boolean | undefined;
9140
+ liquidityBurnPercentage?: number | undefined;
8938
9141
  noMintAuthority?: boolean | undefined;
8939
9142
  } | null;
8940
9143
  twitterReusesCount: number;
@@ -9174,6 +9377,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9174
9377
  liquidity?: number | undefined;
9175
9378
  liquidityMax?: number | undefined;
9176
9379
  tokenType?: "2020" | "2022" | null | undefined;
9380
+ is_mayhem_mode?: boolean | null | undefined;
9381
+ is_cashback_coin?: boolean | null | undefined;
9382
+ is_agent_mode?: boolean | null | undefined;
9177
9383
  ath?: number | undefined;
9178
9384
  atl?: number | undefined;
9179
9385
  };
@@ -9238,6 +9444,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9238
9444
  liquidity?: number | undefined;
9239
9445
  liquidityMax?: number | undefined;
9240
9446
  tokenType?: "2020" | "2022" | null | undefined;
9447
+ is_mayhem_mode?: boolean | null | undefined;
9448
+ is_cashback_coin?: boolean | null | undefined;
9449
+ is_agent_mode?: boolean | null | undefined;
9241
9450
  ath?: number | undefined;
9242
9451
  atl?: number | undefined;
9243
9452
  };
@@ -9270,6 +9479,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9270
9479
  isMintable?: boolean | undefined;
9271
9480
  modifyableTax?: boolean | undefined;
9272
9481
  selfDestruct?: boolean | undefined;
9482
+ liquidityBurnPercentage?: number | undefined;
9273
9483
  noMintAuthority?: boolean | undefined;
9274
9484
  } | null;
9275
9485
  created_at: Date | null;
@@ -9472,6 +9682,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9472
9682
  price: number;
9473
9683
  marketCap: number;
9474
9684
  marketCapDiluted: number;
9685
+ is_mayhem_mode: boolean | null;
9686
+ is_cashback_coin: boolean | null;
9687
+ is_agent_mode: boolean | null;
9475
9688
  type?: string | undefined;
9476
9689
  createdAt?: string | undefined;
9477
9690
  holdersCount?: number | null | undefined;
@@ -9536,6 +9749,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9536
9749
  price: number;
9537
9750
  marketCap: number;
9538
9751
  marketCapDiluted: number;
9752
+ is_mayhem_mode: boolean | null;
9753
+ is_cashback_coin: boolean | null;
9754
+ is_agent_mode: boolean | null;
9539
9755
  type?: string | undefined;
9540
9756
  createdAt?: string | undefined;
9541
9757
  holdersCount?: number | null | undefined;
@@ -9613,6 +9829,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9613
9829
  isMintable?: boolean | undefined;
9614
9830
  modifyableTax?: boolean | undefined;
9615
9831
  selfDestruct?: boolean | undefined;
9832
+ liquidityBurnPercentage?: number | undefined;
9616
9833
  noMintAuthority?: boolean | undefined;
9617
9834
  } | null;
9618
9835
  twitterReusesCount: number;
@@ -9855,6 +10072,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9855
10072
  liquidity?: number | undefined;
9856
10073
  liquidityMax?: number | undefined;
9857
10074
  tokenType?: "2020" | "2022" | null | undefined;
10075
+ is_mayhem_mode?: boolean | null | undefined;
10076
+ is_cashback_coin?: boolean | null | undefined;
10077
+ is_agent_mode?: boolean | null | undefined;
9858
10078
  ath?: number | undefined;
9859
10079
  atl?: number | undefined;
9860
10080
  };
@@ -9919,6 +10139,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9919
10139
  liquidity?: number | undefined;
9920
10140
  liquidityMax?: number | undefined;
9921
10141
  tokenType?: "2020" | "2022" | null | undefined;
10142
+ is_mayhem_mode?: boolean | null | undefined;
10143
+ is_cashback_coin?: boolean | null | undefined;
10144
+ is_agent_mode?: boolean | null | undefined;
9922
10145
  ath?: number | undefined;
9923
10146
  atl?: number | undefined;
9924
10147
  };
@@ -9951,6 +10174,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
9951
10174
  isMintable?: boolean | undefined;
9952
10175
  modifyableTax?: boolean | undefined;
9953
10176
  selfDestruct?: boolean | undefined;
10177
+ liquidityBurnPercentage?: number | undefined;
9954
10178
  noMintAuthority?: boolean | undefined;
9955
10179
  } | null;
9956
10180
  created_at: Date | null;
@@ -10157,6 +10381,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10157
10381
  price: number;
10158
10382
  marketCap: number;
10159
10383
  marketCapDiluted: number;
10384
+ is_mayhem_mode: boolean | null;
10385
+ is_cashback_coin: boolean | null;
10386
+ is_agent_mode: boolean | null;
10160
10387
  type?: string | undefined;
10161
10388
  createdAt?: string | undefined;
10162
10389
  holdersCount?: number | null | undefined;
@@ -10221,6 +10448,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10221
10448
  price: number;
10222
10449
  marketCap: number;
10223
10450
  marketCapDiluted: number;
10451
+ is_mayhem_mode: boolean | null;
10452
+ is_cashback_coin: boolean | null;
10453
+ is_agent_mode: boolean | null;
10224
10454
  type?: string | undefined;
10225
10455
  createdAt?: string | undefined;
10226
10456
  holdersCount?: number | null | undefined;
@@ -10298,6 +10528,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10298
10528
  isMintable?: boolean | undefined;
10299
10529
  modifyableTax?: boolean | undefined;
10300
10530
  selfDestruct?: boolean | undefined;
10531
+ liquidityBurnPercentage?: number | undefined;
10301
10532
  noMintAuthority?: boolean | undefined;
10302
10533
  } | null;
10303
10534
  twitterReusesCount: number;
@@ -10543,6 +10774,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10543
10774
  liquidity?: number | undefined;
10544
10775
  liquidityMax?: number | undefined;
10545
10776
  tokenType?: "2020" | "2022" | null | undefined;
10777
+ is_mayhem_mode?: boolean | null | undefined;
10778
+ is_cashback_coin?: boolean | null | undefined;
10779
+ is_agent_mode?: boolean | null | undefined;
10546
10780
  ath?: number | undefined;
10547
10781
  atl?: number | undefined;
10548
10782
  };
@@ -10607,6 +10841,9 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10607
10841
  liquidity?: number | undefined;
10608
10842
  liquidityMax?: number | undefined;
10609
10843
  tokenType?: "2020" | "2022" | null | undefined;
10844
+ is_mayhem_mode?: boolean | null | undefined;
10845
+ is_cashback_coin?: boolean | null | undefined;
10846
+ is_agent_mode?: boolean | null | undefined;
10610
10847
  ath?: number | undefined;
10611
10848
  atl?: number | undefined;
10612
10849
  };
@@ -10639,6 +10876,7 @@ export declare const updatePoolMessageSchema: z.ZodObject<{
10639
10876
  isMintable?: boolean | undefined;
10640
10877
  modifyableTax?: boolean | undefined;
10641
10878
  selfDestruct?: boolean | undefined;
10879
+ liquidityBurnPercentage?: number | undefined;
10642
10880
  noMintAuthority?: boolean | undefined;
10643
10881
  } | null;
10644
10882
  created_at: Date | null;
@@ -10878,6 +11116,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
10878
11116
  blockchain: z.ZodOptional<z.ZodString>;
10879
11117
  type: z.ZodOptional<z.ZodString>;
10880
11118
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
11119
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
11120
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
11121
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
10881
11122
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10882
11123
  createdAt: z.ZodOptional<z.ZodString>;
10883
11124
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -10926,6 +11167,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
10926
11167
  price: number;
10927
11168
  marketCap: number;
10928
11169
  marketCapDiluted: number;
11170
+ is_mayhem_mode: boolean | null;
11171
+ is_cashback_coin: boolean | null;
11172
+ is_agent_mode: boolean | null;
10929
11173
  type?: string | undefined;
10930
11174
  createdAt?: string | undefined;
10931
11175
  holdersCount?: number | null | undefined;
@@ -11031,6 +11275,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11031
11275
  liquidity?: number | undefined;
11032
11276
  liquidityMax?: number | undefined;
11033
11277
  tokenType?: "2020" | "2022" | null | undefined;
11278
+ is_mayhem_mode?: boolean | null | undefined;
11279
+ is_cashback_coin?: boolean | null | undefined;
11280
+ is_agent_mode?: boolean | null | undefined;
11034
11281
  ath?: number | undefined;
11035
11282
  atl?: number | undefined;
11036
11283
  }>;
@@ -11075,6 +11322,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11075
11322
  blockchain: z.ZodOptional<z.ZodString>;
11076
11323
  type: z.ZodOptional<z.ZodString>;
11077
11324
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
11325
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
11326
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
11327
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
11078
11328
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11079
11329
  createdAt: z.ZodOptional<z.ZodString>;
11080
11330
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -11123,6 +11373,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11123
11373
  price: number;
11124
11374
  marketCap: number;
11125
11375
  marketCapDiluted: number;
11376
+ is_mayhem_mode: boolean | null;
11377
+ is_cashback_coin: boolean | null;
11378
+ is_agent_mode: boolean | null;
11126
11379
  type?: string | undefined;
11127
11380
  createdAt?: string | undefined;
11128
11381
  holdersCount?: number | null | undefined;
@@ -11228,6 +11481,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11228
11481
  liquidity?: number | undefined;
11229
11482
  liquidityMax?: number | undefined;
11230
11483
  tokenType?: "2020" | "2022" | null | undefined;
11484
+ is_mayhem_mode?: boolean | null | undefined;
11485
+ is_cashback_coin?: boolean | null | undefined;
11486
+ is_agent_mode?: boolean | null | undefined;
11231
11487
  ath?: number | undefined;
11232
11488
  atl?: number | undefined;
11233
11489
  }>;
@@ -11411,6 +11667,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11411
11667
  isMintable: z.ZodOptional<z.ZodBoolean>;
11412
11668
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
11413
11669
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
11670
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
11414
11671
  }, "strip", z.ZodTypeAny, {
11415
11672
  buyTax?: string | undefined;
11416
11673
  sellTax?: string | undefined;
@@ -11428,6 +11685,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11428
11685
  isMintable?: boolean | undefined;
11429
11686
  modifyableTax?: boolean | undefined;
11430
11687
  selfDestruct?: boolean | undefined;
11688
+ liquidityBurnPercentage?: number | undefined;
11431
11689
  noMintAuthority?: boolean | undefined;
11432
11690
  }, {
11433
11691
  buyTax?: string | undefined;
@@ -11446,6 +11704,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11446
11704
  isMintable?: boolean | undefined;
11447
11705
  modifyableTax?: boolean | undefined;
11448
11706
  selfDestruct?: boolean | undefined;
11707
+ liquidityBurnPercentage?: number | undefined;
11449
11708
  noMintAuthority?: boolean | undefined;
11450
11709
  }>>;
11451
11710
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -11573,6 +11832,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11573
11832
  price: number;
11574
11833
  marketCap: number;
11575
11834
  marketCapDiluted: number;
11835
+ is_mayhem_mode: boolean | null;
11836
+ is_cashback_coin: boolean | null;
11837
+ is_agent_mode: boolean | null;
11576
11838
  type?: string | undefined;
11577
11839
  createdAt?: string | undefined;
11578
11840
  holdersCount?: number | null | undefined;
@@ -11637,6 +11899,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11637
11899
  price: number;
11638
11900
  marketCap: number;
11639
11901
  marketCapDiluted: number;
11902
+ is_mayhem_mode: boolean | null;
11903
+ is_cashback_coin: boolean | null;
11904
+ is_agent_mode: boolean | null;
11640
11905
  type?: string | undefined;
11641
11906
  createdAt?: string | undefined;
11642
11907
  holdersCount?: number | null | undefined;
@@ -11714,6 +11979,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11714
11979
  isMintable?: boolean | undefined;
11715
11980
  modifyableTax?: boolean | undefined;
11716
11981
  selfDestruct?: boolean | undefined;
11982
+ liquidityBurnPercentage?: number | undefined;
11717
11983
  noMintAuthority?: boolean | undefined;
11718
11984
  } | null;
11719
11985
  twitterReusesCount: number;
@@ -11953,6 +12219,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
11953
12219
  liquidity?: number | undefined;
11954
12220
  liquidityMax?: number | undefined;
11955
12221
  tokenType?: "2020" | "2022" | null | undefined;
12222
+ is_mayhem_mode?: boolean | null | undefined;
12223
+ is_cashback_coin?: boolean | null | undefined;
12224
+ is_agent_mode?: boolean | null | undefined;
11956
12225
  ath?: number | undefined;
11957
12226
  atl?: number | undefined;
11958
12227
  };
@@ -12017,6 +12286,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12017
12286
  liquidity?: number | undefined;
12018
12287
  liquidityMax?: number | undefined;
12019
12288
  tokenType?: "2020" | "2022" | null | undefined;
12289
+ is_mayhem_mode?: boolean | null | undefined;
12290
+ is_cashback_coin?: boolean | null | undefined;
12291
+ is_agent_mode?: boolean | null | undefined;
12020
12292
  ath?: number | undefined;
12021
12293
  atl?: number | undefined;
12022
12294
  };
@@ -12049,6 +12321,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12049
12321
  isMintable?: boolean | undefined;
12050
12322
  modifyableTax?: boolean | undefined;
12051
12323
  selfDestruct?: boolean | undefined;
12324
+ liquidityBurnPercentage?: number | undefined;
12052
12325
  noMintAuthority?: boolean | undefined;
12053
12326
  } | null;
12054
12327
  created_at: Date | null;
@@ -12251,6 +12524,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12251
12524
  price: number;
12252
12525
  marketCap: number;
12253
12526
  marketCapDiluted: number;
12527
+ is_mayhem_mode: boolean | null;
12528
+ is_cashback_coin: boolean | null;
12529
+ is_agent_mode: boolean | null;
12254
12530
  type?: string | undefined;
12255
12531
  createdAt?: string | undefined;
12256
12532
  holdersCount?: number | null | undefined;
@@ -12315,6 +12591,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12315
12591
  price: number;
12316
12592
  marketCap: number;
12317
12593
  marketCapDiluted: number;
12594
+ is_mayhem_mode: boolean | null;
12595
+ is_cashback_coin: boolean | null;
12596
+ is_agent_mode: boolean | null;
12318
12597
  type?: string | undefined;
12319
12598
  createdAt?: string | undefined;
12320
12599
  holdersCount?: number | null | undefined;
@@ -12392,6 +12671,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12392
12671
  isMintable?: boolean | undefined;
12393
12672
  modifyableTax?: boolean | undefined;
12394
12673
  selfDestruct?: boolean | undefined;
12674
+ liquidityBurnPercentage?: number | undefined;
12395
12675
  noMintAuthority?: boolean | undefined;
12396
12676
  } | null;
12397
12677
  twitterReusesCount: number;
@@ -12633,6 +12913,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12633
12913
  liquidity?: number | undefined;
12634
12914
  liquidityMax?: number | undefined;
12635
12915
  tokenType?: "2020" | "2022" | null | undefined;
12916
+ is_mayhem_mode?: boolean | null | undefined;
12917
+ is_cashback_coin?: boolean | null | undefined;
12918
+ is_agent_mode?: boolean | null | undefined;
12636
12919
  ath?: number | undefined;
12637
12920
  atl?: number | undefined;
12638
12921
  };
@@ -12697,6 +12980,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12697
12980
  liquidity?: number | undefined;
12698
12981
  liquidityMax?: number | undefined;
12699
12982
  tokenType?: "2020" | "2022" | null | undefined;
12983
+ is_mayhem_mode?: boolean | null | undefined;
12984
+ is_cashback_coin?: boolean | null | undefined;
12985
+ is_agent_mode?: boolean | null | undefined;
12700
12986
  ath?: number | undefined;
12701
12987
  atl?: number | undefined;
12702
12988
  };
@@ -12729,6 +13015,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12729
13015
  isMintable?: boolean | undefined;
12730
13016
  modifyableTax?: boolean | undefined;
12731
13017
  selfDestruct?: boolean | undefined;
13018
+ liquidityBurnPercentage?: number | undefined;
12732
13019
  noMintAuthority?: boolean | undefined;
12733
13020
  } | null;
12734
13021
  created_at: Date | null;
@@ -12934,6 +13221,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12934
13221
  price: number;
12935
13222
  marketCap: number;
12936
13223
  marketCapDiluted: number;
13224
+ is_mayhem_mode: boolean | null;
13225
+ is_cashback_coin: boolean | null;
13226
+ is_agent_mode: boolean | null;
12937
13227
  type?: string | undefined;
12938
13228
  createdAt?: string | undefined;
12939
13229
  holdersCount?: number | null | undefined;
@@ -12998,6 +13288,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
12998
13288
  price: number;
12999
13289
  marketCap: number;
13000
13290
  marketCapDiluted: number;
13291
+ is_mayhem_mode: boolean | null;
13292
+ is_cashback_coin: boolean | null;
13293
+ is_agent_mode: boolean | null;
13001
13294
  type?: string | undefined;
13002
13295
  createdAt?: string | undefined;
13003
13296
  holdersCount?: number | null | undefined;
@@ -13075,6 +13368,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13075
13368
  isMintable?: boolean | undefined;
13076
13369
  modifyableTax?: boolean | undefined;
13077
13370
  selfDestruct?: boolean | undefined;
13371
+ liquidityBurnPercentage?: number | undefined;
13078
13372
  noMintAuthority?: boolean | undefined;
13079
13373
  } | null;
13080
13374
  twitterReusesCount: number;
@@ -13319,6 +13613,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13319
13613
  liquidity?: number | undefined;
13320
13614
  liquidityMax?: number | undefined;
13321
13615
  tokenType?: "2020" | "2022" | null | undefined;
13616
+ is_mayhem_mode?: boolean | null | undefined;
13617
+ is_cashback_coin?: boolean | null | undefined;
13618
+ is_agent_mode?: boolean | null | undefined;
13322
13619
  ath?: number | undefined;
13323
13620
  atl?: number | undefined;
13324
13621
  };
@@ -13383,6 +13680,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13383
13680
  liquidity?: number | undefined;
13384
13681
  liquidityMax?: number | undefined;
13385
13682
  tokenType?: "2020" | "2022" | null | undefined;
13683
+ is_mayhem_mode?: boolean | null | undefined;
13684
+ is_cashback_coin?: boolean | null | undefined;
13685
+ is_agent_mode?: boolean | null | undefined;
13386
13686
  ath?: number | undefined;
13387
13687
  atl?: number | undefined;
13388
13688
  };
@@ -13415,6 +13715,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13415
13715
  isMintable?: boolean | undefined;
13416
13716
  modifyableTax?: boolean | undefined;
13417
13717
  selfDestruct?: boolean | undefined;
13718
+ liquidityBurnPercentage?: number | undefined;
13418
13719
  noMintAuthority?: boolean | undefined;
13419
13720
  } | null;
13420
13721
  created_at: Date | null;
@@ -13628,6 +13929,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13628
13929
  blockchain: z.ZodOptional<z.ZodString>;
13629
13930
  type: z.ZodOptional<z.ZodString>;
13630
13931
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
13932
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
13933
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
13934
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
13631
13935
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13632
13936
  createdAt: z.ZodOptional<z.ZodString>;
13633
13937
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -13676,6 +13980,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13676
13980
  price: number;
13677
13981
  marketCap: number;
13678
13982
  marketCapDiluted: number;
13983
+ is_mayhem_mode: boolean | null;
13984
+ is_cashback_coin: boolean | null;
13985
+ is_agent_mode: boolean | null;
13679
13986
  type?: string | undefined;
13680
13987
  createdAt?: string | undefined;
13681
13988
  holdersCount?: number | null | undefined;
@@ -13781,6 +14088,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13781
14088
  liquidity?: number | undefined;
13782
14089
  liquidityMax?: number | undefined;
13783
14090
  tokenType?: "2020" | "2022" | null | undefined;
14091
+ is_mayhem_mode?: boolean | null | undefined;
14092
+ is_cashback_coin?: boolean | null | undefined;
14093
+ is_agent_mode?: boolean | null | undefined;
13784
14094
  ath?: number | undefined;
13785
14095
  atl?: number | undefined;
13786
14096
  }>;
@@ -13825,6 +14135,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13825
14135
  blockchain: z.ZodOptional<z.ZodString>;
13826
14136
  type: z.ZodOptional<z.ZodString>;
13827
14137
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
14138
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
14139
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
14140
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
13828
14141
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13829
14142
  createdAt: z.ZodOptional<z.ZodString>;
13830
14143
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -13873,6 +14186,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13873
14186
  price: number;
13874
14187
  marketCap: number;
13875
14188
  marketCapDiluted: number;
14189
+ is_mayhem_mode: boolean | null;
14190
+ is_cashback_coin: boolean | null;
14191
+ is_agent_mode: boolean | null;
13876
14192
  type?: string | undefined;
13877
14193
  createdAt?: string | undefined;
13878
14194
  holdersCount?: number | null | undefined;
@@ -13978,6 +14294,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
13978
14294
  liquidity?: number | undefined;
13979
14295
  liquidityMax?: number | undefined;
13980
14296
  tokenType?: "2020" | "2022" | null | undefined;
14297
+ is_mayhem_mode?: boolean | null | undefined;
14298
+ is_cashback_coin?: boolean | null | undefined;
14299
+ is_agent_mode?: boolean | null | undefined;
13981
14300
  ath?: number | undefined;
13982
14301
  atl?: number | undefined;
13983
14302
  }>;
@@ -14161,6 +14480,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14161
14480
  isMintable: z.ZodOptional<z.ZodBoolean>;
14162
14481
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
14163
14482
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
14483
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
14164
14484
  }, "strip", z.ZodTypeAny, {
14165
14485
  buyTax?: string | undefined;
14166
14486
  sellTax?: string | undefined;
@@ -14178,6 +14498,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14178
14498
  isMintable?: boolean | undefined;
14179
14499
  modifyableTax?: boolean | undefined;
14180
14500
  selfDestruct?: boolean | undefined;
14501
+ liquidityBurnPercentage?: number | undefined;
14181
14502
  noMintAuthority?: boolean | undefined;
14182
14503
  }, {
14183
14504
  buyTax?: string | undefined;
@@ -14196,6 +14517,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14196
14517
  isMintable?: boolean | undefined;
14197
14518
  modifyableTax?: boolean | undefined;
14198
14519
  selfDestruct?: boolean | undefined;
14520
+ liquidityBurnPercentage?: number | undefined;
14199
14521
  noMintAuthority?: boolean | undefined;
14200
14522
  }>>;
14201
14523
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -14323,6 +14645,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14323
14645
  price: number;
14324
14646
  marketCap: number;
14325
14647
  marketCapDiluted: number;
14648
+ is_mayhem_mode: boolean | null;
14649
+ is_cashback_coin: boolean | null;
14650
+ is_agent_mode: boolean | null;
14326
14651
  type?: string | undefined;
14327
14652
  createdAt?: string | undefined;
14328
14653
  holdersCount?: number | null | undefined;
@@ -14387,6 +14712,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14387
14712
  price: number;
14388
14713
  marketCap: number;
14389
14714
  marketCapDiluted: number;
14715
+ is_mayhem_mode: boolean | null;
14716
+ is_cashback_coin: boolean | null;
14717
+ is_agent_mode: boolean | null;
14390
14718
  type?: string | undefined;
14391
14719
  createdAt?: string | undefined;
14392
14720
  holdersCount?: number | null | undefined;
@@ -14464,6 +14792,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14464
14792
  isMintable?: boolean | undefined;
14465
14793
  modifyableTax?: boolean | undefined;
14466
14794
  selfDestruct?: boolean | undefined;
14795
+ liquidityBurnPercentage?: number | undefined;
14467
14796
  noMintAuthority?: boolean | undefined;
14468
14797
  } | null;
14469
14798
  twitterReusesCount: number;
@@ -14703,6 +15032,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14703
15032
  liquidity?: number | undefined;
14704
15033
  liquidityMax?: number | undefined;
14705
15034
  tokenType?: "2020" | "2022" | null | undefined;
15035
+ is_mayhem_mode?: boolean | null | undefined;
15036
+ is_cashback_coin?: boolean | null | undefined;
15037
+ is_agent_mode?: boolean | null | undefined;
14706
15038
  ath?: number | undefined;
14707
15039
  atl?: number | undefined;
14708
15040
  };
@@ -14767,6 +15099,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14767
15099
  liquidity?: number | undefined;
14768
15100
  liquidityMax?: number | undefined;
14769
15101
  tokenType?: "2020" | "2022" | null | undefined;
15102
+ is_mayhem_mode?: boolean | null | undefined;
15103
+ is_cashback_coin?: boolean | null | undefined;
15104
+ is_agent_mode?: boolean | null | undefined;
14770
15105
  ath?: number | undefined;
14771
15106
  atl?: number | undefined;
14772
15107
  };
@@ -14799,6 +15134,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
14799
15134
  isMintable?: boolean | undefined;
14800
15135
  modifyableTax?: boolean | undefined;
14801
15136
  selfDestruct?: boolean | undefined;
15137
+ liquidityBurnPercentage?: number | undefined;
14802
15138
  noMintAuthority?: boolean | undefined;
14803
15139
  } | null;
14804
15140
  created_at: Date | null;
@@ -15001,6 +15337,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15001
15337
  price: number;
15002
15338
  marketCap: number;
15003
15339
  marketCapDiluted: number;
15340
+ is_mayhem_mode: boolean | null;
15341
+ is_cashback_coin: boolean | null;
15342
+ is_agent_mode: boolean | null;
15004
15343
  type?: string | undefined;
15005
15344
  createdAt?: string | undefined;
15006
15345
  holdersCount?: number | null | undefined;
@@ -15065,6 +15404,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15065
15404
  price: number;
15066
15405
  marketCap: number;
15067
15406
  marketCapDiluted: number;
15407
+ is_mayhem_mode: boolean | null;
15408
+ is_cashback_coin: boolean | null;
15409
+ is_agent_mode: boolean | null;
15068
15410
  type?: string | undefined;
15069
15411
  createdAt?: string | undefined;
15070
15412
  holdersCount?: number | null | undefined;
@@ -15142,6 +15484,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15142
15484
  isMintable?: boolean | undefined;
15143
15485
  modifyableTax?: boolean | undefined;
15144
15486
  selfDestruct?: boolean | undefined;
15487
+ liquidityBurnPercentage?: number | undefined;
15145
15488
  noMintAuthority?: boolean | undefined;
15146
15489
  } | null;
15147
15490
  twitterReusesCount: number;
@@ -15384,6 +15727,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15384
15727
  liquidity?: number | undefined;
15385
15728
  liquidityMax?: number | undefined;
15386
15729
  tokenType?: "2020" | "2022" | null | undefined;
15730
+ is_mayhem_mode?: boolean | null | undefined;
15731
+ is_cashback_coin?: boolean | null | undefined;
15732
+ is_agent_mode?: boolean | null | undefined;
15387
15733
  ath?: number | undefined;
15388
15734
  atl?: number | undefined;
15389
15735
  };
@@ -15448,6 +15794,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15448
15794
  liquidity?: number | undefined;
15449
15795
  liquidityMax?: number | undefined;
15450
15796
  tokenType?: "2020" | "2022" | null | undefined;
15797
+ is_mayhem_mode?: boolean | null | undefined;
15798
+ is_cashback_coin?: boolean | null | undefined;
15799
+ is_agent_mode?: boolean | null | undefined;
15451
15800
  ath?: number | undefined;
15452
15801
  atl?: number | undefined;
15453
15802
  };
@@ -15480,6 +15829,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15480
15829
  isMintable?: boolean | undefined;
15481
15830
  modifyableTax?: boolean | undefined;
15482
15831
  selfDestruct?: boolean | undefined;
15832
+ liquidityBurnPercentage?: number | undefined;
15483
15833
  noMintAuthority?: boolean | undefined;
15484
15834
  } | null;
15485
15835
  created_at: Date | null;
@@ -15686,6 +16036,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15686
16036
  price: number;
15687
16037
  marketCap: number;
15688
16038
  marketCapDiluted: number;
16039
+ is_mayhem_mode: boolean | null;
16040
+ is_cashback_coin: boolean | null;
16041
+ is_agent_mode: boolean | null;
15689
16042
  type?: string | undefined;
15690
16043
  createdAt?: string | undefined;
15691
16044
  holdersCount?: number | null | undefined;
@@ -15750,6 +16103,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15750
16103
  price: number;
15751
16104
  marketCap: number;
15752
16105
  marketCapDiluted: number;
16106
+ is_mayhem_mode: boolean | null;
16107
+ is_cashback_coin: boolean | null;
16108
+ is_agent_mode: boolean | null;
15753
16109
  type?: string | undefined;
15754
16110
  createdAt?: string | undefined;
15755
16111
  holdersCount?: number | null | undefined;
@@ -15827,6 +16183,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
15827
16183
  isMintable?: boolean | undefined;
15828
16184
  modifyableTax?: boolean | undefined;
15829
16185
  selfDestruct?: boolean | undefined;
16186
+ liquidityBurnPercentage?: number | undefined;
15830
16187
  noMintAuthority?: boolean | undefined;
15831
16188
  } | null;
15832
16189
  twitterReusesCount: number;
@@ -16072,6 +16429,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16072
16429
  liquidity?: number | undefined;
16073
16430
  liquidityMax?: number | undefined;
16074
16431
  tokenType?: "2020" | "2022" | null | undefined;
16432
+ is_mayhem_mode?: boolean | null | undefined;
16433
+ is_cashback_coin?: boolean | null | undefined;
16434
+ is_agent_mode?: boolean | null | undefined;
16075
16435
  ath?: number | undefined;
16076
16436
  atl?: number | undefined;
16077
16437
  };
@@ -16136,6 +16496,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16136
16496
  liquidity?: number | undefined;
16137
16497
  liquidityMax?: number | undefined;
16138
16498
  tokenType?: "2020" | "2022" | null | undefined;
16499
+ is_mayhem_mode?: boolean | null | undefined;
16500
+ is_cashback_coin?: boolean | null | undefined;
16501
+ is_agent_mode?: boolean | null | undefined;
16139
16502
  ath?: number | undefined;
16140
16503
  atl?: number | undefined;
16141
16504
  };
@@ -16168,6 +16531,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16168
16531
  isMintable?: boolean | undefined;
16169
16532
  modifyableTax?: boolean | undefined;
16170
16533
  selfDestruct?: boolean | undefined;
16534
+ liquidityBurnPercentage?: number | undefined;
16171
16535
  noMintAuthority?: boolean | undefined;
16172
16536
  } | null;
16173
16537
  created_at: Date | null;
@@ -16382,6 +16746,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16382
16746
  blockchain: z.ZodOptional<z.ZodString>;
16383
16747
  type: z.ZodOptional<z.ZodString>;
16384
16748
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
16749
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16750
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16751
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16385
16752
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16386
16753
  createdAt: z.ZodOptional<z.ZodString>;
16387
16754
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -16430,6 +16797,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16430
16797
  price: number;
16431
16798
  marketCap: number;
16432
16799
  marketCapDiluted: number;
16800
+ is_mayhem_mode: boolean | null;
16801
+ is_cashback_coin: boolean | null;
16802
+ is_agent_mode: boolean | null;
16433
16803
  type?: string | undefined;
16434
16804
  createdAt?: string | undefined;
16435
16805
  holdersCount?: number | null | undefined;
@@ -16535,6 +16905,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16535
16905
  liquidity?: number | undefined;
16536
16906
  liquidityMax?: number | undefined;
16537
16907
  tokenType?: "2020" | "2022" | null | undefined;
16908
+ is_mayhem_mode?: boolean | null | undefined;
16909
+ is_cashback_coin?: boolean | null | undefined;
16910
+ is_agent_mode?: boolean | null | undefined;
16538
16911
  ath?: number | undefined;
16539
16912
  atl?: number | undefined;
16540
16913
  }>;
@@ -16579,6 +16952,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16579
16952
  blockchain: z.ZodOptional<z.ZodString>;
16580
16953
  type: z.ZodOptional<z.ZodString>;
16581
16954
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
16955
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16956
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16957
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
16582
16958
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16583
16959
  createdAt: z.ZodOptional<z.ZodString>;
16584
16960
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -16627,6 +17003,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16627
17003
  price: number;
16628
17004
  marketCap: number;
16629
17005
  marketCapDiluted: number;
17006
+ is_mayhem_mode: boolean | null;
17007
+ is_cashback_coin: boolean | null;
17008
+ is_agent_mode: boolean | null;
16630
17009
  type?: string | undefined;
16631
17010
  createdAt?: string | undefined;
16632
17011
  holdersCount?: number | null | undefined;
@@ -16732,6 +17111,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16732
17111
  liquidity?: number | undefined;
16733
17112
  liquidityMax?: number | undefined;
16734
17113
  tokenType?: "2020" | "2022" | null | undefined;
17114
+ is_mayhem_mode?: boolean | null | undefined;
17115
+ is_cashback_coin?: boolean | null | undefined;
17116
+ is_agent_mode?: boolean | null | undefined;
16735
17117
  ath?: number | undefined;
16736
17118
  atl?: number | undefined;
16737
17119
  }>;
@@ -16915,6 +17297,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16915
17297
  isMintable: z.ZodOptional<z.ZodBoolean>;
16916
17298
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
16917
17299
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
17300
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
16918
17301
  }, "strip", z.ZodTypeAny, {
16919
17302
  buyTax?: string | undefined;
16920
17303
  sellTax?: string | undefined;
@@ -16932,6 +17315,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16932
17315
  isMintable?: boolean | undefined;
16933
17316
  modifyableTax?: boolean | undefined;
16934
17317
  selfDestruct?: boolean | undefined;
17318
+ liquidityBurnPercentage?: number | undefined;
16935
17319
  noMintAuthority?: boolean | undefined;
16936
17320
  }, {
16937
17321
  buyTax?: string | undefined;
@@ -16950,6 +17334,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
16950
17334
  isMintable?: boolean | undefined;
16951
17335
  modifyableTax?: boolean | undefined;
16952
17336
  selfDestruct?: boolean | undefined;
17337
+ liquidityBurnPercentage?: number | undefined;
16953
17338
  noMintAuthority?: boolean | undefined;
16954
17339
  }>>;
16955
17340
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -17077,6 +17462,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17077
17462
  price: number;
17078
17463
  marketCap: number;
17079
17464
  marketCapDiluted: number;
17465
+ is_mayhem_mode: boolean | null;
17466
+ is_cashback_coin: boolean | null;
17467
+ is_agent_mode: boolean | null;
17080
17468
  type?: string | undefined;
17081
17469
  createdAt?: string | undefined;
17082
17470
  holdersCount?: number | null | undefined;
@@ -17141,6 +17529,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17141
17529
  price: number;
17142
17530
  marketCap: number;
17143
17531
  marketCapDiluted: number;
17532
+ is_mayhem_mode: boolean | null;
17533
+ is_cashback_coin: boolean | null;
17534
+ is_agent_mode: boolean | null;
17144
17535
  type?: string | undefined;
17145
17536
  createdAt?: string | undefined;
17146
17537
  holdersCount?: number | null | undefined;
@@ -17218,6 +17609,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17218
17609
  isMintable?: boolean | undefined;
17219
17610
  modifyableTax?: boolean | undefined;
17220
17611
  selfDestruct?: boolean | undefined;
17612
+ liquidityBurnPercentage?: number | undefined;
17221
17613
  noMintAuthority?: boolean | undefined;
17222
17614
  } | null;
17223
17615
  twitterReusesCount: number;
@@ -17457,6 +17849,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17457
17849
  liquidity?: number | undefined;
17458
17850
  liquidityMax?: number | undefined;
17459
17851
  tokenType?: "2020" | "2022" | null | undefined;
17852
+ is_mayhem_mode?: boolean | null | undefined;
17853
+ is_cashback_coin?: boolean | null | undefined;
17854
+ is_agent_mode?: boolean | null | undefined;
17460
17855
  ath?: number | undefined;
17461
17856
  atl?: number | undefined;
17462
17857
  };
@@ -17521,6 +17916,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17521
17916
  liquidity?: number | undefined;
17522
17917
  liquidityMax?: number | undefined;
17523
17918
  tokenType?: "2020" | "2022" | null | undefined;
17919
+ is_mayhem_mode?: boolean | null | undefined;
17920
+ is_cashback_coin?: boolean | null | undefined;
17921
+ is_agent_mode?: boolean | null | undefined;
17524
17922
  ath?: number | undefined;
17525
17923
  atl?: number | undefined;
17526
17924
  };
@@ -17553,6 +17951,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17553
17951
  isMintable?: boolean | undefined;
17554
17952
  modifyableTax?: boolean | undefined;
17555
17953
  selfDestruct?: boolean | undefined;
17954
+ liquidityBurnPercentage?: number | undefined;
17556
17955
  noMintAuthority?: boolean | undefined;
17557
17956
  } | null;
17558
17957
  created_at: Date | null;
@@ -17755,6 +18154,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17755
18154
  price: number;
17756
18155
  marketCap: number;
17757
18156
  marketCapDiluted: number;
18157
+ is_mayhem_mode: boolean | null;
18158
+ is_cashback_coin: boolean | null;
18159
+ is_agent_mode: boolean | null;
17758
18160
  type?: string | undefined;
17759
18161
  createdAt?: string | undefined;
17760
18162
  holdersCount?: number | null | undefined;
@@ -17819,6 +18221,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17819
18221
  price: number;
17820
18222
  marketCap: number;
17821
18223
  marketCapDiluted: number;
18224
+ is_mayhem_mode: boolean | null;
18225
+ is_cashback_coin: boolean | null;
18226
+ is_agent_mode: boolean | null;
17822
18227
  type?: string | undefined;
17823
18228
  createdAt?: string | undefined;
17824
18229
  holdersCount?: number | null | undefined;
@@ -17896,6 +18301,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
17896
18301
  isMintable?: boolean | undefined;
17897
18302
  modifyableTax?: boolean | undefined;
17898
18303
  selfDestruct?: boolean | undefined;
18304
+ liquidityBurnPercentage?: number | undefined;
17899
18305
  noMintAuthority?: boolean | undefined;
17900
18306
  } | null;
17901
18307
  twitterReusesCount: number;
@@ -18138,6 +18544,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18138
18544
  liquidity?: number | undefined;
18139
18545
  liquidityMax?: number | undefined;
18140
18546
  tokenType?: "2020" | "2022" | null | undefined;
18547
+ is_mayhem_mode?: boolean | null | undefined;
18548
+ is_cashback_coin?: boolean | null | undefined;
18549
+ is_agent_mode?: boolean | null | undefined;
18141
18550
  ath?: number | undefined;
18142
18551
  atl?: number | undefined;
18143
18552
  };
@@ -18202,6 +18611,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18202
18611
  liquidity?: number | undefined;
18203
18612
  liquidityMax?: number | undefined;
18204
18613
  tokenType?: "2020" | "2022" | null | undefined;
18614
+ is_mayhem_mode?: boolean | null | undefined;
18615
+ is_cashback_coin?: boolean | null | undefined;
18616
+ is_agent_mode?: boolean | null | undefined;
18205
18617
  ath?: number | undefined;
18206
18618
  atl?: number | undefined;
18207
18619
  };
@@ -18234,6 +18646,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18234
18646
  isMintable?: boolean | undefined;
18235
18647
  modifyableTax?: boolean | undefined;
18236
18648
  selfDestruct?: boolean | undefined;
18649
+ liquidityBurnPercentage?: number | undefined;
18237
18650
  noMintAuthority?: boolean | undefined;
18238
18651
  } | null;
18239
18652
  created_at: Date | null;
@@ -18440,6 +18853,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18440
18853
  price: number;
18441
18854
  marketCap: number;
18442
18855
  marketCapDiluted: number;
18856
+ is_mayhem_mode: boolean | null;
18857
+ is_cashback_coin: boolean | null;
18858
+ is_agent_mode: boolean | null;
18443
18859
  type?: string | undefined;
18444
18860
  createdAt?: string | undefined;
18445
18861
  holdersCount?: number | null | undefined;
@@ -18504,6 +18920,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18504
18920
  price: number;
18505
18921
  marketCap: number;
18506
18922
  marketCapDiluted: number;
18923
+ is_mayhem_mode: boolean | null;
18924
+ is_cashback_coin: boolean | null;
18925
+ is_agent_mode: boolean | null;
18507
18926
  type?: string | undefined;
18508
18927
  createdAt?: string | undefined;
18509
18928
  holdersCount?: number | null | undefined;
@@ -18581,6 +19000,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18581
19000
  isMintable?: boolean | undefined;
18582
19001
  modifyableTax?: boolean | undefined;
18583
19002
  selfDestruct?: boolean | undefined;
19003
+ liquidityBurnPercentage?: number | undefined;
18584
19004
  noMintAuthority?: boolean | undefined;
18585
19005
  } | null;
18586
19006
  twitterReusesCount: number;
@@ -18826,6 +19246,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18826
19246
  liquidity?: number | undefined;
18827
19247
  liquidityMax?: number | undefined;
18828
19248
  tokenType?: "2020" | "2022" | null | undefined;
19249
+ is_mayhem_mode?: boolean | null | undefined;
19250
+ is_cashback_coin?: boolean | null | undefined;
19251
+ is_agent_mode?: boolean | null | undefined;
18829
19252
  ath?: number | undefined;
18830
19253
  atl?: number | undefined;
18831
19254
  };
@@ -18890,6 +19313,9 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18890
19313
  liquidity?: number | undefined;
18891
19314
  liquidityMax?: number | undefined;
18892
19315
  tokenType?: "2020" | "2022" | null | undefined;
19316
+ is_mayhem_mode?: boolean | null | undefined;
19317
+ is_cashback_coin?: boolean | null | undefined;
19318
+ is_agent_mode?: boolean | null | undefined;
18893
19319
  ath?: number | undefined;
18894
19320
  atl?: number | undefined;
18895
19321
  };
@@ -18922,6 +19348,7 @@ export declare const WebSocketMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
18922
19348
  isMintable?: boolean | undefined;
18923
19349
  modifyableTax?: boolean | undefined;
18924
19350
  selfDestruct?: boolean | undefined;
19351
+ liquidityBurnPercentage?: number | undefined;
18925
19352
  noMintAuthority?: boolean | undefined;
18926
19353
  } | null;
18927
19354
  created_at: Date | null;
@@ -19160,6 +19587,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19160
19587
  blockchain: z.ZodOptional<z.ZodString>;
19161
19588
  type: z.ZodOptional<z.ZodString>;
19162
19589
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
19590
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19591
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19592
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19163
19593
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19164
19594
  createdAt: z.ZodOptional<z.ZodString>;
19165
19595
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -19208,6 +19638,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19208
19638
  price: number;
19209
19639
  marketCap: number;
19210
19640
  marketCapDiluted: number;
19641
+ is_mayhem_mode: boolean | null;
19642
+ is_cashback_coin: boolean | null;
19643
+ is_agent_mode: boolean | null;
19211
19644
  type?: string | undefined;
19212
19645
  createdAt?: string | undefined;
19213
19646
  holdersCount?: number | null | undefined;
@@ -19313,6 +19746,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19313
19746
  liquidity?: number | undefined;
19314
19747
  liquidityMax?: number | undefined;
19315
19748
  tokenType?: "2020" | "2022" | null | undefined;
19749
+ is_mayhem_mode?: boolean | null | undefined;
19750
+ is_cashback_coin?: boolean | null | undefined;
19751
+ is_agent_mode?: boolean | null | undefined;
19316
19752
  ath?: number | undefined;
19317
19753
  atl?: number | undefined;
19318
19754
  }>;
@@ -19357,6 +19793,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19357
19793
  blockchain: z.ZodOptional<z.ZodString>;
19358
19794
  type: z.ZodOptional<z.ZodString>;
19359
19795
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
19796
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19797
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19798
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
19360
19799
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19361
19800
  createdAt: z.ZodOptional<z.ZodString>;
19362
19801
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -19405,6 +19844,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19405
19844
  price: number;
19406
19845
  marketCap: number;
19407
19846
  marketCapDiluted: number;
19847
+ is_mayhem_mode: boolean | null;
19848
+ is_cashback_coin: boolean | null;
19849
+ is_agent_mode: boolean | null;
19408
19850
  type?: string | undefined;
19409
19851
  createdAt?: string | undefined;
19410
19852
  holdersCount?: number | null | undefined;
@@ -19510,6 +19952,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19510
19952
  liquidity?: number | undefined;
19511
19953
  liquidityMax?: number | undefined;
19512
19954
  tokenType?: "2020" | "2022" | null | undefined;
19955
+ is_mayhem_mode?: boolean | null | undefined;
19956
+ is_cashback_coin?: boolean | null | undefined;
19957
+ is_agent_mode?: boolean | null | undefined;
19513
19958
  ath?: number | undefined;
19514
19959
  atl?: number | undefined;
19515
19960
  }>;
@@ -19693,6 +20138,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19693
20138
  isMintable: z.ZodOptional<z.ZodBoolean>;
19694
20139
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
19695
20140
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
20141
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
19696
20142
  }, "strip", z.ZodTypeAny, {
19697
20143
  buyTax?: string | undefined;
19698
20144
  sellTax?: string | undefined;
@@ -19710,6 +20156,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19710
20156
  isMintable?: boolean | undefined;
19711
20157
  modifyableTax?: boolean | undefined;
19712
20158
  selfDestruct?: boolean | undefined;
20159
+ liquidityBurnPercentage?: number | undefined;
19713
20160
  noMintAuthority?: boolean | undefined;
19714
20161
  }, {
19715
20162
  buyTax?: string | undefined;
@@ -19728,6 +20175,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19728
20175
  isMintable?: boolean | undefined;
19729
20176
  modifyableTax?: boolean | undefined;
19730
20177
  selfDestruct?: boolean | undefined;
20178
+ liquidityBurnPercentage?: number | undefined;
19731
20179
  noMintAuthority?: boolean | undefined;
19732
20180
  }>>;
19733
20181
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -19855,6 +20303,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19855
20303
  price: number;
19856
20304
  marketCap: number;
19857
20305
  marketCapDiluted: number;
20306
+ is_mayhem_mode: boolean | null;
20307
+ is_cashback_coin: boolean | null;
20308
+ is_agent_mode: boolean | null;
19858
20309
  type?: string | undefined;
19859
20310
  createdAt?: string | undefined;
19860
20311
  holdersCount?: number | null | undefined;
@@ -19919,6 +20370,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19919
20370
  price: number;
19920
20371
  marketCap: number;
19921
20372
  marketCapDiluted: number;
20373
+ is_mayhem_mode: boolean | null;
20374
+ is_cashback_coin: boolean | null;
20375
+ is_agent_mode: boolean | null;
19922
20376
  type?: string | undefined;
19923
20377
  createdAt?: string | undefined;
19924
20378
  holdersCount?: number | null | undefined;
@@ -19996,6 +20450,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
19996
20450
  isMintable?: boolean | undefined;
19997
20451
  modifyableTax?: boolean | undefined;
19998
20452
  selfDestruct?: boolean | undefined;
20453
+ liquidityBurnPercentage?: number | undefined;
19999
20454
  noMintAuthority?: boolean | undefined;
20000
20455
  } | null;
20001
20456
  twitterReusesCount: number;
@@ -20235,6 +20690,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20235
20690
  liquidity?: number | undefined;
20236
20691
  liquidityMax?: number | undefined;
20237
20692
  tokenType?: "2020" | "2022" | null | undefined;
20693
+ is_mayhem_mode?: boolean | null | undefined;
20694
+ is_cashback_coin?: boolean | null | undefined;
20695
+ is_agent_mode?: boolean | null | undefined;
20238
20696
  ath?: number | undefined;
20239
20697
  atl?: number | undefined;
20240
20698
  };
@@ -20299,6 +20757,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20299
20757
  liquidity?: number | undefined;
20300
20758
  liquidityMax?: number | undefined;
20301
20759
  tokenType?: "2020" | "2022" | null | undefined;
20760
+ is_mayhem_mode?: boolean | null | undefined;
20761
+ is_cashback_coin?: boolean | null | undefined;
20762
+ is_agent_mode?: boolean | null | undefined;
20302
20763
  ath?: number | undefined;
20303
20764
  atl?: number | undefined;
20304
20765
  };
@@ -20331,6 +20792,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20331
20792
  isMintable?: boolean | undefined;
20332
20793
  modifyableTax?: boolean | undefined;
20333
20794
  selfDestruct?: boolean | undefined;
20795
+ liquidityBurnPercentage?: number | undefined;
20334
20796
  noMintAuthority?: boolean | undefined;
20335
20797
  } | null;
20336
20798
  created_at: Date | null;
@@ -20533,6 +20995,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20533
20995
  price: number;
20534
20996
  marketCap: number;
20535
20997
  marketCapDiluted: number;
20998
+ is_mayhem_mode: boolean | null;
20999
+ is_cashback_coin: boolean | null;
21000
+ is_agent_mode: boolean | null;
20536
21001
  type?: string | undefined;
20537
21002
  createdAt?: string | undefined;
20538
21003
  holdersCount?: number | null | undefined;
@@ -20597,6 +21062,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20597
21062
  price: number;
20598
21063
  marketCap: number;
20599
21064
  marketCapDiluted: number;
21065
+ is_mayhem_mode: boolean | null;
21066
+ is_cashback_coin: boolean | null;
21067
+ is_agent_mode: boolean | null;
20600
21068
  type?: string | undefined;
20601
21069
  createdAt?: string | undefined;
20602
21070
  holdersCount?: number | null | undefined;
@@ -20674,6 +21142,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20674
21142
  isMintable?: boolean | undefined;
20675
21143
  modifyableTax?: boolean | undefined;
20676
21144
  selfDestruct?: boolean | undefined;
21145
+ liquidityBurnPercentage?: number | undefined;
20677
21146
  noMintAuthority?: boolean | undefined;
20678
21147
  } | null;
20679
21148
  twitterReusesCount: number;
@@ -20915,6 +21384,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20915
21384
  liquidity?: number | undefined;
20916
21385
  liquidityMax?: number | undefined;
20917
21386
  tokenType?: "2020" | "2022" | null | undefined;
21387
+ is_mayhem_mode?: boolean | null | undefined;
21388
+ is_cashback_coin?: boolean | null | undefined;
21389
+ is_agent_mode?: boolean | null | undefined;
20918
21390
  ath?: number | undefined;
20919
21391
  atl?: number | undefined;
20920
21392
  };
@@ -20979,6 +21451,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
20979
21451
  liquidity?: number | undefined;
20980
21452
  liquidityMax?: number | undefined;
20981
21453
  tokenType?: "2020" | "2022" | null | undefined;
21454
+ is_mayhem_mode?: boolean | null | undefined;
21455
+ is_cashback_coin?: boolean | null | undefined;
21456
+ is_agent_mode?: boolean | null | undefined;
20982
21457
  ath?: number | undefined;
20983
21458
  atl?: number | undefined;
20984
21459
  };
@@ -21011,6 +21486,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21011
21486
  isMintable?: boolean | undefined;
21012
21487
  modifyableTax?: boolean | undefined;
21013
21488
  selfDestruct?: boolean | undefined;
21489
+ liquidityBurnPercentage?: number | undefined;
21014
21490
  noMintAuthority?: boolean | undefined;
21015
21491
  } | null;
21016
21492
  created_at: Date | null;
@@ -21216,6 +21692,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21216
21692
  price: number;
21217
21693
  marketCap: number;
21218
21694
  marketCapDiluted: number;
21695
+ is_mayhem_mode: boolean | null;
21696
+ is_cashback_coin: boolean | null;
21697
+ is_agent_mode: boolean | null;
21219
21698
  type?: string | undefined;
21220
21699
  createdAt?: string | undefined;
21221
21700
  holdersCount?: number | null | undefined;
@@ -21280,6 +21759,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21280
21759
  price: number;
21281
21760
  marketCap: number;
21282
21761
  marketCapDiluted: number;
21762
+ is_mayhem_mode: boolean | null;
21763
+ is_cashback_coin: boolean | null;
21764
+ is_agent_mode: boolean | null;
21283
21765
  type?: string | undefined;
21284
21766
  createdAt?: string | undefined;
21285
21767
  holdersCount?: number | null | undefined;
@@ -21357,6 +21839,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21357
21839
  isMintable?: boolean | undefined;
21358
21840
  modifyableTax?: boolean | undefined;
21359
21841
  selfDestruct?: boolean | undefined;
21842
+ liquidityBurnPercentage?: number | undefined;
21360
21843
  noMintAuthority?: boolean | undefined;
21361
21844
  } | null;
21362
21845
  twitterReusesCount: number;
@@ -21601,6 +22084,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21601
22084
  liquidity?: number | undefined;
21602
22085
  liquidityMax?: number | undefined;
21603
22086
  tokenType?: "2020" | "2022" | null | undefined;
22087
+ is_mayhem_mode?: boolean | null | undefined;
22088
+ is_cashback_coin?: boolean | null | undefined;
22089
+ is_agent_mode?: boolean | null | undefined;
21604
22090
  ath?: number | undefined;
21605
22091
  atl?: number | undefined;
21606
22092
  };
@@ -21665,6 +22151,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21665
22151
  liquidity?: number | undefined;
21666
22152
  liquidityMax?: number | undefined;
21667
22153
  tokenType?: "2020" | "2022" | null | undefined;
22154
+ is_mayhem_mode?: boolean | null | undefined;
22155
+ is_cashback_coin?: boolean | null | undefined;
22156
+ is_agent_mode?: boolean | null | undefined;
21668
22157
  ath?: number | undefined;
21669
22158
  atl?: number | undefined;
21670
22159
  };
@@ -21697,6 +22186,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21697
22186
  isMintable?: boolean | undefined;
21698
22187
  modifyableTax?: boolean | undefined;
21699
22188
  selfDestruct?: boolean | undefined;
22189
+ liquidityBurnPercentage?: number | undefined;
21700
22190
  noMintAuthority?: boolean | undefined;
21701
22191
  } | null;
21702
22192
  created_at: Date | null;
@@ -21910,6 +22400,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21910
22400
  blockchain: z.ZodOptional<z.ZodString>;
21911
22401
  type: z.ZodOptional<z.ZodString>;
21912
22402
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
22403
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
22404
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
22405
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
21913
22406
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21914
22407
  createdAt: z.ZodOptional<z.ZodString>;
21915
22408
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -21958,6 +22451,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
21958
22451
  price: number;
21959
22452
  marketCap: number;
21960
22453
  marketCapDiluted: number;
22454
+ is_mayhem_mode: boolean | null;
22455
+ is_cashback_coin: boolean | null;
22456
+ is_agent_mode: boolean | null;
21961
22457
  type?: string | undefined;
21962
22458
  createdAt?: string | undefined;
21963
22459
  holdersCount?: number | null | undefined;
@@ -22063,6 +22559,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22063
22559
  liquidity?: number | undefined;
22064
22560
  liquidityMax?: number | undefined;
22065
22561
  tokenType?: "2020" | "2022" | null | undefined;
22562
+ is_mayhem_mode?: boolean | null | undefined;
22563
+ is_cashback_coin?: boolean | null | undefined;
22564
+ is_agent_mode?: boolean | null | undefined;
22066
22565
  ath?: number | undefined;
22067
22566
  atl?: number | undefined;
22068
22567
  }>;
@@ -22107,6 +22606,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22107
22606
  blockchain: z.ZodOptional<z.ZodString>;
22108
22607
  type: z.ZodOptional<z.ZodString>;
22109
22608
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
22609
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
22610
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
22611
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
22110
22612
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22111
22613
  createdAt: z.ZodOptional<z.ZodString>;
22112
22614
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -22155,6 +22657,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22155
22657
  price: number;
22156
22658
  marketCap: number;
22157
22659
  marketCapDiluted: number;
22660
+ is_mayhem_mode: boolean | null;
22661
+ is_cashback_coin: boolean | null;
22662
+ is_agent_mode: boolean | null;
22158
22663
  type?: string | undefined;
22159
22664
  createdAt?: string | undefined;
22160
22665
  holdersCount?: number | null | undefined;
@@ -22260,6 +22765,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22260
22765
  liquidity?: number | undefined;
22261
22766
  liquidityMax?: number | undefined;
22262
22767
  tokenType?: "2020" | "2022" | null | undefined;
22768
+ is_mayhem_mode?: boolean | null | undefined;
22769
+ is_cashback_coin?: boolean | null | undefined;
22770
+ is_agent_mode?: boolean | null | undefined;
22263
22771
  ath?: number | undefined;
22264
22772
  atl?: number | undefined;
22265
22773
  }>;
@@ -22443,6 +22951,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22443
22951
  isMintable: z.ZodOptional<z.ZodBoolean>;
22444
22952
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
22445
22953
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
22954
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
22446
22955
  }, "strip", z.ZodTypeAny, {
22447
22956
  buyTax?: string | undefined;
22448
22957
  sellTax?: string | undefined;
@@ -22460,6 +22969,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22460
22969
  isMintable?: boolean | undefined;
22461
22970
  modifyableTax?: boolean | undefined;
22462
22971
  selfDestruct?: boolean | undefined;
22972
+ liquidityBurnPercentage?: number | undefined;
22463
22973
  noMintAuthority?: boolean | undefined;
22464
22974
  }, {
22465
22975
  buyTax?: string | undefined;
@@ -22478,6 +22988,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22478
22988
  isMintable?: boolean | undefined;
22479
22989
  modifyableTax?: boolean | undefined;
22480
22990
  selfDestruct?: boolean | undefined;
22991
+ liquidityBurnPercentage?: number | undefined;
22481
22992
  noMintAuthority?: boolean | undefined;
22482
22993
  }>>;
22483
22994
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -22605,6 +23116,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22605
23116
  price: number;
22606
23117
  marketCap: number;
22607
23118
  marketCapDiluted: number;
23119
+ is_mayhem_mode: boolean | null;
23120
+ is_cashback_coin: boolean | null;
23121
+ is_agent_mode: boolean | null;
22608
23122
  type?: string | undefined;
22609
23123
  createdAt?: string | undefined;
22610
23124
  holdersCount?: number | null | undefined;
@@ -22669,6 +23183,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22669
23183
  price: number;
22670
23184
  marketCap: number;
22671
23185
  marketCapDiluted: number;
23186
+ is_mayhem_mode: boolean | null;
23187
+ is_cashback_coin: boolean | null;
23188
+ is_agent_mode: boolean | null;
22672
23189
  type?: string | undefined;
22673
23190
  createdAt?: string | undefined;
22674
23191
  holdersCount?: number | null | undefined;
@@ -22746,6 +23263,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22746
23263
  isMintable?: boolean | undefined;
22747
23264
  modifyableTax?: boolean | undefined;
22748
23265
  selfDestruct?: boolean | undefined;
23266
+ liquidityBurnPercentage?: number | undefined;
22749
23267
  noMintAuthority?: boolean | undefined;
22750
23268
  } | null;
22751
23269
  twitterReusesCount: number;
@@ -22985,6 +23503,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
22985
23503
  liquidity?: number | undefined;
22986
23504
  liquidityMax?: number | undefined;
22987
23505
  tokenType?: "2020" | "2022" | null | undefined;
23506
+ is_mayhem_mode?: boolean | null | undefined;
23507
+ is_cashback_coin?: boolean | null | undefined;
23508
+ is_agent_mode?: boolean | null | undefined;
22988
23509
  ath?: number | undefined;
22989
23510
  atl?: number | undefined;
22990
23511
  };
@@ -23049,6 +23570,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23049
23570
  liquidity?: number | undefined;
23050
23571
  liquidityMax?: number | undefined;
23051
23572
  tokenType?: "2020" | "2022" | null | undefined;
23573
+ is_mayhem_mode?: boolean | null | undefined;
23574
+ is_cashback_coin?: boolean | null | undefined;
23575
+ is_agent_mode?: boolean | null | undefined;
23052
23576
  ath?: number | undefined;
23053
23577
  atl?: number | undefined;
23054
23578
  };
@@ -23081,6 +23605,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23081
23605
  isMintable?: boolean | undefined;
23082
23606
  modifyableTax?: boolean | undefined;
23083
23607
  selfDestruct?: boolean | undefined;
23608
+ liquidityBurnPercentage?: number | undefined;
23084
23609
  noMintAuthority?: boolean | undefined;
23085
23610
  } | null;
23086
23611
  created_at: Date | null;
@@ -23283,6 +23808,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23283
23808
  price: number;
23284
23809
  marketCap: number;
23285
23810
  marketCapDiluted: number;
23811
+ is_mayhem_mode: boolean | null;
23812
+ is_cashback_coin: boolean | null;
23813
+ is_agent_mode: boolean | null;
23286
23814
  type?: string | undefined;
23287
23815
  createdAt?: string | undefined;
23288
23816
  holdersCount?: number | null | undefined;
@@ -23347,6 +23875,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23347
23875
  price: number;
23348
23876
  marketCap: number;
23349
23877
  marketCapDiluted: number;
23878
+ is_mayhem_mode: boolean | null;
23879
+ is_cashback_coin: boolean | null;
23880
+ is_agent_mode: boolean | null;
23350
23881
  type?: string | undefined;
23351
23882
  createdAt?: string | undefined;
23352
23883
  holdersCount?: number | null | undefined;
@@ -23424,6 +23955,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23424
23955
  isMintable?: boolean | undefined;
23425
23956
  modifyableTax?: boolean | undefined;
23426
23957
  selfDestruct?: boolean | undefined;
23958
+ liquidityBurnPercentage?: number | undefined;
23427
23959
  noMintAuthority?: boolean | undefined;
23428
23960
  } | null;
23429
23961
  twitterReusesCount: number;
@@ -23666,6 +24198,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23666
24198
  liquidity?: number | undefined;
23667
24199
  liquidityMax?: number | undefined;
23668
24200
  tokenType?: "2020" | "2022" | null | undefined;
24201
+ is_mayhem_mode?: boolean | null | undefined;
24202
+ is_cashback_coin?: boolean | null | undefined;
24203
+ is_agent_mode?: boolean | null | undefined;
23669
24204
  ath?: number | undefined;
23670
24205
  atl?: number | undefined;
23671
24206
  };
@@ -23730,6 +24265,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23730
24265
  liquidity?: number | undefined;
23731
24266
  liquidityMax?: number | undefined;
23732
24267
  tokenType?: "2020" | "2022" | null | undefined;
24268
+ is_mayhem_mode?: boolean | null | undefined;
24269
+ is_cashback_coin?: boolean | null | undefined;
24270
+ is_agent_mode?: boolean | null | undefined;
23733
24271
  ath?: number | undefined;
23734
24272
  atl?: number | undefined;
23735
24273
  };
@@ -23762,6 +24300,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23762
24300
  isMintable?: boolean | undefined;
23763
24301
  modifyableTax?: boolean | undefined;
23764
24302
  selfDestruct?: boolean | undefined;
24303
+ liquidityBurnPercentage?: number | undefined;
23765
24304
  noMintAuthority?: boolean | undefined;
23766
24305
  } | null;
23767
24306
  created_at: Date | null;
@@ -23968,6 +24507,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
23968
24507
  price: number;
23969
24508
  marketCap: number;
23970
24509
  marketCapDiluted: number;
24510
+ is_mayhem_mode: boolean | null;
24511
+ is_cashback_coin: boolean | null;
24512
+ is_agent_mode: boolean | null;
23971
24513
  type?: string | undefined;
23972
24514
  createdAt?: string | undefined;
23973
24515
  holdersCount?: number | null | undefined;
@@ -24032,6 +24574,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24032
24574
  price: number;
24033
24575
  marketCap: number;
24034
24576
  marketCapDiluted: number;
24577
+ is_mayhem_mode: boolean | null;
24578
+ is_cashback_coin: boolean | null;
24579
+ is_agent_mode: boolean | null;
24035
24580
  type?: string | undefined;
24036
24581
  createdAt?: string | undefined;
24037
24582
  holdersCount?: number | null | undefined;
@@ -24109,6 +24654,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24109
24654
  isMintable?: boolean | undefined;
24110
24655
  modifyableTax?: boolean | undefined;
24111
24656
  selfDestruct?: boolean | undefined;
24657
+ liquidityBurnPercentage?: number | undefined;
24112
24658
  noMintAuthority?: boolean | undefined;
24113
24659
  } | null;
24114
24660
  twitterReusesCount: number;
@@ -24354,6 +24900,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24354
24900
  liquidity?: number | undefined;
24355
24901
  liquidityMax?: number | undefined;
24356
24902
  tokenType?: "2020" | "2022" | null | undefined;
24903
+ is_mayhem_mode?: boolean | null | undefined;
24904
+ is_cashback_coin?: boolean | null | undefined;
24905
+ is_agent_mode?: boolean | null | undefined;
24357
24906
  ath?: number | undefined;
24358
24907
  atl?: number | undefined;
24359
24908
  };
@@ -24418,6 +24967,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24418
24967
  liquidity?: number | undefined;
24419
24968
  liquidityMax?: number | undefined;
24420
24969
  tokenType?: "2020" | "2022" | null | undefined;
24970
+ is_mayhem_mode?: boolean | null | undefined;
24971
+ is_cashback_coin?: boolean | null | undefined;
24972
+ is_agent_mode?: boolean | null | undefined;
24421
24973
  ath?: number | undefined;
24422
24974
  atl?: number | undefined;
24423
24975
  };
@@ -24450,6 +25002,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24450
25002
  isMintable?: boolean | undefined;
24451
25003
  modifyableTax?: boolean | undefined;
24452
25004
  selfDestruct?: boolean | undefined;
25005
+ liquidityBurnPercentage?: number | undefined;
24453
25006
  noMintAuthority?: boolean | undefined;
24454
25007
  } | null;
24455
25008
  created_at: Date | null;
@@ -24664,6 +25217,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24664
25217
  blockchain: z.ZodOptional<z.ZodString>;
24665
25218
  type: z.ZodOptional<z.ZodString>;
24666
25219
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
25220
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
25221
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
25222
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
24667
25223
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24668
25224
  createdAt: z.ZodOptional<z.ZodString>;
24669
25225
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -24712,6 +25268,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24712
25268
  price: number;
24713
25269
  marketCap: number;
24714
25270
  marketCapDiluted: number;
25271
+ is_mayhem_mode: boolean | null;
25272
+ is_cashback_coin: boolean | null;
25273
+ is_agent_mode: boolean | null;
24715
25274
  type?: string | undefined;
24716
25275
  createdAt?: string | undefined;
24717
25276
  holdersCount?: number | null | undefined;
@@ -24817,6 +25376,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24817
25376
  liquidity?: number | undefined;
24818
25377
  liquidityMax?: number | undefined;
24819
25378
  tokenType?: "2020" | "2022" | null | undefined;
25379
+ is_mayhem_mode?: boolean | null | undefined;
25380
+ is_cashback_coin?: boolean | null | undefined;
25381
+ is_agent_mode?: boolean | null | undefined;
24820
25382
  ath?: number | undefined;
24821
25383
  atl?: number | undefined;
24822
25384
  }>;
@@ -24861,6 +25423,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24861
25423
  blockchain: z.ZodOptional<z.ZodString>;
24862
25424
  type: z.ZodOptional<z.ZodString>;
24863
25425
  tokenType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["2020", "2022"]>>>;
25426
+ is_mayhem_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
25427
+ is_cashback_coin: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
25428
+ is_agent_mode: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
24864
25429
  deployer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24865
25430
  createdAt: z.ZodOptional<z.ZodString>;
24866
25431
  bonded_at: z.ZodNullable<z.ZodDate>;
@@ -24909,6 +25474,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
24909
25474
  price: number;
24910
25475
  marketCap: number;
24911
25476
  marketCapDiluted: number;
25477
+ is_mayhem_mode: boolean | null;
25478
+ is_cashback_coin: boolean | null;
25479
+ is_agent_mode: boolean | null;
24912
25480
  type?: string | undefined;
24913
25481
  createdAt?: string | undefined;
24914
25482
  holdersCount?: number | null | undefined;
@@ -25014,6 +25582,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25014
25582
  liquidity?: number | undefined;
25015
25583
  liquidityMax?: number | undefined;
25016
25584
  tokenType?: "2020" | "2022" | null | undefined;
25585
+ is_mayhem_mode?: boolean | null | undefined;
25586
+ is_cashback_coin?: boolean | null | undefined;
25587
+ is_agent_mode?: boolean | null | undefined;
25017
25588
  ath?: number | undefined;
25018
25589
  atl?: number | undefined;
25019
25590
  }>;
@@ -25197,6 +25768,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25197
25768
  isMintable: z.ZodOptional<z.ZodBoolean>;
25198
25769
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
25199
25770
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
25771
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
25200
25772
  }, "strip", z.ZodTypeAny, {
25201
25773
  buyTax?: string | undefined;
25202
25774
  sellTax?: string | undefined;
@@ -25214,6 +25786,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25214
25786
  isMintable?: boolean | undefined;
25215
25787
  modifyableTax?: boolean | undefined;
25216
25788
  selfDestruct?: boolean | undefined;
25789
+ liquidityBurnPercentage?: number | undefined;
25217
25790
  noMintAuthority?: boolean | undefined;
25218
25791
  }, {
25219
25792
  buyTax?: string | undefined;
@@ -25232,6 +25805,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25232
25805
  isMintable?: boolean | undefined;
25233
25806
  modifyableTax?: boolean | undefined;
25234
25807
  selfDestruct?: boolean | undefined;
25808
+ liquidityBurnPercentage?: number | undefined;
25235
25809
  noMintAuthority?: boolean | undefined;
25236
25810
  }>>;
25237
25811
  twitterReusesCount: z.ZodDefault<z.ZodNumber>;
@@ -25359,6 +25933,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25359
25933
  price: number;
25360
25934
  marketCap: number;
25361
25935
  marketCapDiluted: number;
25936
+ is_mayhem_mode: boolean | null;
25937
+ is_cashback_coin: boolean | null;
25938
+ is_agent_mode: boolean | null;
25362
25939
  type?: string | undefined;
25363
25940
  createdAt?: string | undefined;
25364
25941
  holdersCount?: number | null | undefined;
@@ -25423,6 +26000,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25423
26000
  price: number;
25424
26001
  marketCap: number;
25425
26002
  marketCapDiluted: number;
26003
+ is_mayhem_mode: boolean | null;
26004
+ is_cashback_coin: boolean | null;
26005
+ is_agent_mode: boolean | null;
25426
26006
  type?: string | undefined;
25427
26007
  createdAt?: string | undefined;
25428
26008
  holdersCount?: number | null | undefined;
@@ -25500,6 +26080,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25500
26080
  isMintable?: boolean | undefined;
25501
26081
  modifyableTax?: boolean | undefined;
25502
26082
  selfDestruct?: boolean | undefined;
26083
+ liquidityBurnPercentage?: number | undefined;
25503
26084
  noMintAuthority?: boolean | undefined;
25504
26085
  } | null;
25505
26086
  twitterReusesCount: number;
@@ -25739,6 +26320,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25739
26320
  liquidity?: number | undefined;
25740
26321
  liquidityMax?: number | undefined;
25741
26322
  tokenType?: "2020" | "2022" | null | undefined;
26323
+ is_mayhem_mode?: boolean | null | undefined;
26324
+ is_cashback_coin?: boolean | null | undefined;
26325
+ is_agent_mode?: boolean | null | undefined;
25742
26326
  ath?: number | undefined;
25743
26327
  atl?: number | undefined;
25744
26328
  };
@@ -25803,6 +26387,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25803
26387
  liquidity?: number | undefined;
25804
26388
  liquidityMax?: number | undefined;
25805
26389
  tokenType?: "2020" | "2022" | null | undefined;
26390
+ is_mayhem_mode?: boolean | null | undefined;
26391
+ is_cashback_coin?: boolean | null | undefined;
26392
+ is_agent_mode?: boolean | null | undefined;
25806
26393
  ath?: number | undefined;
25807
26394
  atl?: number | undefined;
25808
26395
  };
@@ -25835,6 +26422,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
25835
26422
  isMintable?: boolean | undefined;
25836
26423
  modifyableTax?: boolean | undefined;
25837
26424
  selfDestruct?: boolean | undefined;
26425
+ liquidityBurnPercentage?: number | undefined;
25838
26426
  noMintAuthority?: boolean | undefined;
25839
26427
  } | null;
25840
26428
  created_at: Date | null;
@@ -26037,6 +26625,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26037
26625
  price: number;
26038
26626
  marketCap: number;
26039
26627
  marketCapDiluted: number;
26628
+ is_mayhem_mode: boolean | null;
26629
+ is_cashback_coin: boolean | null;
26630
+ is_agent_mode: boolean | null;
26040
26631
  type?: string | undefined;
26041
26632
  createdAt?: string | undefined;
26042
26633
  holdersCount?: number | null | undefined;
@@ -26101,6 +26692,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26101
26692
  price: number;
26102
26693
  marketCap: number;
26103
26694
  marketCapDiluted: number;
26695
+ is_mayhem_mode: boolean | null;
26696
+ is_cashback_coin: boolean | null;
26697
+ is_agent_mode: boolean | null;
26104
26698
  type?: string | undefined;
26105
26699
  createdAt?: string | undefined;
26106
26700
  holdersCount?: number | null | undefined;
@@ -26178,6 +26772,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26178
26772
  isMintable?: boolean | undefined;
26179
26773
  modifyableTax?: boolean | undefined;
26180
26774
  selfDestruct?: boolean | undefined;
26775
+ liquidityBurnPercentage?: number | undefined;
26181
26776
  noMintAuthority?: boolean | undefined;
26182
26777
  } | null;
26183
26778
  twitterReusesCount: number;
@@ -26420,6 +27015,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26420
27015
  liquidity?: number | undefined;
26421
27016
  liquidityMax?: number | undefined;
26422
27017
  tokenType?: "2020" | "2022" | null | undefined;
27018
+ is_mayhem_mode?: boolean | null | undefined;
27019
+ is_cashback_coin?: boolean | null | undefined;
27020
+ is_agent_mode?: boolean | null | undefined;
26423
27021
  ath?: number | undefined;
26424
27022
  atl?: number | undefined;
26425
27023
  };
@@ -26484,6 +27082,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26484
27082
  liquidity?: number | undefined;
26485
27083
  liquidityMax?: number | undefined;
26486
27084
  tokenType?: "2020" | "2022" | null | undefined;
27085
+ is_mayhem_mode?: boolean | null | undefined;
27086
+ is_cashback_coin?: boolean | null | undefined;
27087
+ is_agent_mode?: boolean | null | undefined;
26487
27088
  ath?: number | undefined;
26488
27089
  atl?: number | undefined;
26489
27090
  };
@@ -26516,6 +27117,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26516
27117
  isMintable?: boolean | undefined;
26517
27118
  modifyableTax?: boolean | undefined;
26518
27119
  selfDestruct?: boolean | undefined;
27120
+ liquidityBurnPercentage?: number | undefined;
26519
27121
  noMintAuthority?: boolean | undefined;
26520
27122
  } | null;
26521
27123
  created_at: Date | null;
@@ -26722,6 +27324,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26722
27324
  price: number;
26723
27325
  marketCap: number;
26724
27326
  marketCapDiluted: number;
27327
+ is_mayhem_mode: boolean | null;
27328
+ is_cashback_coin: boolean | null;
27329
+ is_agent_mode: boolean | null;
26725
27330
  type?: string | undefined;
26726
27331
  createdAt?: string | undefined;
26727
27332
  holdersCount?: number | null | undefined;
@@ -26786,6 +27391,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26786
27391
  price: number;
26787
27392
  marketCap: number;
26788
27393
  marketCapDiluted: number;
27394
+ is_mayhem_mode: boolean | null;
27395
+ is_cashback_coin: boolean | null;
27396
+ is_agent_mode: boolean | null;
26789
27397
  type?: string | undefined;
26790
27398
  createdAt?: string | undefined;
26791
27399
  holdersCount?: number | null | undefined;
@@ -26863,6 +27471,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
26863
27471
  isMintable?: boolean | undefined;
26864
27472
  modifyableTax?: boolean | undefined;
26865
27473
  selfDestruct?: boolean | undefined;
27474
+ liquidityBurnPercentage?: number | undefined;
26866
27475
  noMintAuthority?: boolean | undefined;
26867
27476
  } | null;
26868
27477
  twitterReusesCount: number;
@@ -27108,6 +27717,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
27108
27717
  liquidity?: number | undefined;
27109
27718
  liquidityMax?: number | undefined;
27110
27719
  tokenType?: "2020" | "2022" | null | undefined;
27720
+ is_mayhem_mode?: boolean | null | undefined;
27721
+ is_cashback_coin?: boolean | null | undefined;
27722
+ is_agent_mode?: boolean | null | undefined;
27111
27723
  ath?: number | undefined;
27112
27724
  atl?: number | undefined;
27113
27725
  };
@@ -27172,6 +27784,9 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
27172
27784
  liquidity?: number | undefined;
27173
27785
  liquidityMax?: number | undefined;
27174
27786
  tokenType?: "2020" | "2022" | null | undefined;
27787
+ is_mayhem_mode?: boolean | null | undefined;
27788
+ is_cashback_coin?: boolean | null | undefined;
27789
+ is_agent_mode?: boolean | null | undefined;
27175
27790
  ath?: number | undefined;
27176
27791
  atl?: number | undefined;
27177
27792
  };
@@ -27204,6 +27819,7 @@ export declare const PulseOutputSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
27204
27819
  isMintable?: boolean | undefined;
27205
27820
  modifyableTax?: boolean | undefined;
27206
27821
  selfDestruct?: boolean | undefined;
27822
+ liquidityBurnPercentage?: number | undefined;
27207
27823
  noMintAuthority?: boolean | undefined;
27208
27824
  } | null;
27209
27825
  created_at: Date | null;