@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
@@ -133,14 +133,35 @@ export declare const TradesFiltersResponseSchema: z.ZodObject<{
133
133
  entityName: z.ZodNullable<z.ZodString>;
134
134
  entityLogo: z.ZodNullable<z.ZodString>;
135
135
  entityLabels: z.ZodArray<z.ZodString, "many">;
136
+ entityType: z.ZodNullable<z.ZodString>;
137
+ entityDescription: z.ZodNullable<z.ZodString>;
138
+ entityTwitter: z.ZodNullable<z.ZodString>;
139
+ entityWebsite: z.ZodNullable<z.ZodString>;
140
+ entityGithub: z.ZodNullable<z.ZodString>;
141
+ entityDiscord: z.ZodNullable<z.ZodString>;
142
+ entityTelegram: z.ZodNullable<z.ZodString>;
136
143
  }, "strip", z.ZodTypeAny, {
137
144
  entityName: string | null;
138
145
  entityLogo: string | null;
139
146
  entityLabels: string[];
147
+ entityType: string | null;
148
+ entityDescription: string | null;
149
+ entityTwitter: string | null;
150
+ entityWebsite: string | null;
151
+ entityGithub: string | null;
152
+ entityDiscord: string | null;
153
+ entityTelegram: string | null;
140
154
  }, {
141
155
  entityName: string | null;
142
156
  entityLogo: string | null;
143
157
  entityLabels: string[];
158
+ entityType: string | null;
159
+ entityDescription: string | null;
160
+ entityTwitter: string | null;
161
+ entityWebsite: string | null;
162
+ entityGithub: string | null;
163
+ entityDiscord: string | null;
164
+ entityTelegram: string | null;
144
165
  }>>>;
145
166
  baseToken: z.ZodOptional<z.ZodNullable<z.ZodObject<{
146
167
  address: z.ZodString;
@@ -243,6 +264,13 @@ export declare const TradesFiltersResponseSchema: z.ZodObject<{
243
264
  entityName: string | null;
244
265
  entityLogo: string | null;
245
266
  entityLabels: string[];
267
+ entityType: string | null;
268
+ entityDescription: string | null;
269
+ entityTwitter: string | null;
270
+ entityWebsite: string | null;
271
+ entityGithub: string | null;
272
+ entityDiscord: string | null;
273
+ entityTelegram: string | null;
246
274
  } | null | undefined;
247
275
  preBalanceBaseToken?: string | null | undefined;
248
276
  preBalanceQuoteToken?: string | null | undefined;
@@ -296,6 +324,13 @@ export declare const TradesFiltersResponseSchema: z.ZodObject<{
296
324
  entityName: string | null;
297
325
  entityLogo: string | null;
298
326
  entityLabels: string[];
327
+ entityType: string | null;
328
+ entityDescription: string | null;
329
+ entityTwitter: string | null;
330
+ entityWebsite: string | null;
331
+ entityGithub: string | null;
332
+ entityDiscord: string | null;
333
+ entityTelegram: string | null;
299
334
  } | null | undefined;
300
335
  preBalanceBaseToken?: string | null | undefined;
301
336
  preBalanceQuoteToken?: string | null | undefined;
@@ -370,6 +405,13 @@ export declare const TradesFiltersResponseSchema: z.ZodObject<{
370
405
  entityName: string | null;
371
406
  entityLogo: string | null;
372
407
  entityLabels: string[];
408
+ entityType: string | null;
409
+ entityDescription: string | null;
410
+ entityTwitter: string | null;
411
+ entityWebsite: string | null;
412
+ entityGithub: string | null;
413
+ entityDiscord: string | null;
414
+ entityTelegram: string | null;
373
415
  } | null | undefined;
374
416
  preBalanceBaseToken?: string | null | undefined;
375
417
  preBalanceQuoteToken?: string | null | undefined;
@@ -432,6 +474,13 @@ export declare const TradesFiltersResponseSchema: z.ZodObject<{
432
474
  entityName: string | null;
433
475
  entityLogo: string | null;
434
476
  entityLabels: string[];
477
+ entityType: string | null;
478
+ entityDescription: string | null;
479
+ entityTwitter: string | null;
480
+ entityWebsite: string | null;
481
+ entityGithub: string | null;
482
+ entityDiscord: string | null;
483
+ entityTelegram: string | null;
435
484
  } | null | undefined;
436
485
  preBalanceBaseToken?: string | null | undefined;
437
486
  preBalanceQuoteToken?: string | null | undefined;
@@ -121,6 +121,11 @@ export declare const WalletActivityV2ParamsSchema: z.ZodEffects<z.ZodObject<{
121
121
  enrichSwaps?: string | boolean | undefined;
122
122
  }>;
123
123
  export type WalletActivityV2Params = z.input<typeof WalletActivityV2ParamsSchema>;
124
+ export declare const WalletActivityV2ParamsSchemaOpenAPI: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
125
+ [x: string]: any;
126
+ }, {
127
+ [x: string]: any;
128
+ }>;
124
129
  export declare const WalletActivityV2TransactionActivitySchema: z.ZodObject<{
125
130
  model: z.ZodEnum<["swap", "transfer"]>;
126
131
  swapType: z.ZodOptional<z.ZodEnum<["REGULAR", "MEV", "SANDWICHED_MEV", "DEPOSIT", "WITHDRAW"]>>;
@@ -1932,6 +1937,16 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
1932
1937
  factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1933
1938
  source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1934
1939
  sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1940
+ sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1941
+ name: z.ZodString;
1942
+ logo: z.ZodString;
1943
+ }, "strip", z.ZodTypeAny, {
1944
+ name: string;
1945
+ logo: string;
1946
+ }, {
1947
+ name: string;
1948
+ logo: string;
1949
+ }>>>;
1935
1950
  liquidityUSD: z.ZodOptional<z.ZodNumber>;
1936
1951
  liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
1937
1952
  bonded: z.ZodOptional<z.ZodBoolean>;
@@ -2150,6 +2165,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2150
2165
  isMintable: z.ZodOptional<z.ZodBoolean>;
2151
2166
  modifyableTax: z.ZodOptional<z.ZodBoolean>;
2152
2167
  selfDestruct: z.ZodOptional<z.ZodBoolean>;
2168
+ liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
2153
2169
  }, "strip", z.ZodTypeAny, {
2154
2170
  buyTax?: string | undefined;
2155
2171
  sellTax?: string | undefined;
@@ -2167,6 +2183,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2167
2183
  isMintable?: boolean | undefined;
2168
2184
  modifyableTax?: boolean | undefined;
2169
2185
  selfDestruct?: boolean | undefined;
2186
+ liquidityBurnPercentage?: number | undefined;
2170
2187
  noMintAuthority?: boolean | undefined;
2171
2188
  }, {
2172
2189
  buyTax?: string | undefined;
@@ -2185,6 +2202,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2185
2202
  isMintable?: boolean | undefined;
2186
2203
  modifyableTax?: boolean | undefined;
2187
2204
  selfDestruct?: boolean | undefined;
2205
+ liquidityBurnPercentage?: number | undefined;
2188
2206
  noMintAuthority?: boolean | undefined;
2189
2207
  }>>;
2190
2208
  twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -2222,6 +2240,9 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2222
2240
  trendingScore6h: z.ZodDefault<z.ZodNumber>;
2223
2241
  trendingScore12h: z.ZodDefault<z.ZodNumber>;
2224
2242
  trendingScore24h: z.ZodDefault<z.ZodNumber>;
2243
+ isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
2244
+ isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
2245
+ isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
2225
2246
  } & {
2226
2247
  holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2227
2248
  top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2264,6 +2285,9 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2264
2285
  marketCapUSD: number;
2265
2286
  marketCapDilutedUSD: number;
2266
2287
  logo: string | null;
2288
+ isMayhemMode: boolean | null;
2289
+ isCashbackCoin: boolean | null;
2290
+ isAgentMode: boolean | null;
2267
2291
  bondedAt: Date | null;
2268
2292
  latestTradeDate: Date | null;
2269
2293
  totalFeesPaidUSD: number;
@@ -2380,6 +2404,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2380
2404
  isMintable?: boolean | undefined;
2381
2405
  modifyableTax?: boolean | undefined;
2382
2406
  selfDestruct?: boolean | undefined;
2407
+ liquidityBurnPercentage?: number | undefined;
2383
2408
  noMintAuthority?: boolean | undefined;
2384
2409
  } | null;
2385
2410
  twitterReusesCount: number | null;
@@ -2513,6 +2538,10 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2513
2538
  factory?: string | null | undefined;
2514
2539
  source?: string | null | undefined;
2515
2540
  sourceFactory?: string | null | undefined;
2541
+ sourceMetadata?: {
2542
+ name: string;
2543
+ logo: string;
2544
+ } | null | undefined;
2516
2545
  liquidityUSD?: number | undefined;
2517
2546
  liquidityMaxUSD?: number | undefined;
2518
2547
  bonded?: boolean | undefined;
@@ -2564,6 +2593,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2564
2593
  isMintable?: boolean | undefined;
2565
2594
  modifyableTax?: boolean | undefined;
2566
2595
  selfDestruct?: boolean | undefined;
2596
+ liquidityBurnPercentage?: number | undefined;
2567
2597
  noMintAuthority?: boolean | undefined;
2568
2598
  } | null;
2569
2599
  liveStatus: string | null;
@@ -2609,6 +2639,10 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2609
2639
  factory?: string | null | undefined;
2610
2640
  source?: string | null | undefined;
2611
2641
  sourceFactory?: string | null | undefined;
2642
+ sourceMetadata?: {
2643
+ name: string;
2644
+ logo: string;
2645
+ } | null | undefined;
2612
2646
  liquidityUSD?: number | undefined;
2613
2647
  liquidityMaxUSD?: number | undefined;
2614
2648
  bonded?: boolean | undefined;
@@ -2617,6 +2651,9 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2617
2651
  preBondingFactory?: string | undefined;
2618
2652
  poolAddress?: string | undefined;
2619
2653
  blockchain?: string | undefined;
2654
+ isMayhemMode?: boolean | null | undefined;
2655
+ isCashbackCoin?: boolean | null | undefined;
2656
+ isAgentMode?: boolean | null | undefined;
2620
2657
  deployer?: string | null | undefined;
2621
2658
  athUSD?: number | undefined;
2622
2659
  atlUSD?: number | undefined;
@@ -2924,6 +2961,9 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
2924
2961
  marketCapUSD: number;
2925
2962
  marketCapDilutedUSD: number;
2926
2963
  logo: string | null;
2964
+ isMayhemMode: boolean | null;
2965
+ isCashbackCoin: boolean | null;
2966
+ isAgentMode: boolean | null;
2927
2967
  bondedAt: Date | null;
2928
2968
  latestTradeDate: Date | null;
2929
2969
  totalFeesPaidUSD: number;
@@ -3040,6 +3080,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
3040
3080
  isMintable?: boolean | undefined;
3041
3081
  modifyableTax?: boolean | undefined;
3042
3082
  selfDestruct?: boolean | undefined;
3083
+ liquidityBurnPercentage?: number | undefined;
3043
3084
  noMintAuthority?: boolean | undefined;
3044
3085
  } | null;
3045
3086
  twitterReusesCount: number | null;
@@ -3173,6 +3214,10 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
3173
3214
  factory?: string | null | undefined;
3174
3215
  source?: string | null | undefined;
3175
3216
  sourceFactory?: string | null | undefined;
3217
+ sourceMetadata?: {
3218
+ name: string;
3219
+ logo: string;
3220
+ } | null | undefined;
3176
3221
  liquidityUSD?: number | undefined;
3177
3222
  liquidityMaxUSD?: number | undefined;
3178
3223
  bonded?: boolean | undefined;
@@ -3317,6 +3362,7 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
3317
3362
  isMintable?: boolean | undefined;
3318
3363
  modifyableTax?: boolean | undefined;
3319
3364
  selfDestruct?: boolean | undefined;
3365
+ liquidityBurnPercentage?: number | undefined;
3320
3366
  noMintAuthority?: boolean | undefined;
3321
3367
  } | null;
3322
3368
  liveStatus: string | null;
@@ -3362,6 +3408,10 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
3362
3408
  factory?: string | null | undefined;
3363
3409
  source?: string | null | undefined;
3364
3410
  sourceFactory?: string | null | undefined;
3411
+ sourceMetadata?: {
3412
+ name: string;
3413
+ logo: string;
3414
+ } | null | undefined;
3365
3415
  liquidityUSD?: number | undefined;
3366
3416
  liquidityMaxUSD?: number | undefined;
3367
3417
  bonded?: boolean | undefined;
@@ -3370,6 +3420,9 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
3370
3420
  preBondingFactory?: string | undefined;
3371
3421
  poolAddress?: string | undefined;
3372
3422
  blockchain?: string | undefined;
3423
+ isMayhemMode?: boolean | null | undefined;
3424
+ isCashbackCoin?: boolean | null | undefined;
3425
+ isAgentMode?: boolean | null | undefined;
3373
3426
  deployer?: string | null | undefined;
3374
3427
  athUSD?: number | undefined;
3375
3428
  atlUSD?: number | undefined;
@@ -1,4 +1,5 @@
1
1
  import { z } from 'zod';
2
+ import { type SDKInput } from '../../utils/functions/openAPIHelpers.ts';
2
3
  export declare const PlatformMetadataSchema: z.ZodObject<{
3
4
  id: z.ZodString;
4
5
  name: z.ZodString;
@@ -16,10 +17,12 @@ export type PlatformMetadata = z.infer<typeof PlatformMetadataSchema>;
16
17
  export declare const WalletAnalysisParamsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
17
18
  wallet: z.ZodString;
18
19
  blockchain: z.ZodOptional<z.ZodString>;
20
+ blockchains: z.ZodEffects<z.ZodOptional<z.ZodString>, string[], string | undefined>;
19
21
  period: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>, string | undefined, string | undefined>;
20
22
  from: z.ZodOptional<z.ZodNumber>;
21
23
  to: z.ZodOptional<z.ZodNumber>;
22
24
  }, "strip", z.ZodTypeAny, {
25
+ blockchains: string[];
23
26
  wallet: string;
24
27
  blockchain?: string | undefined;
25
28
  from?: number | undefined;
@@ -28,10 +31,12 @@ export declare const WalletAnalysisParamsSchema: z.ZodEffects<z.ZodEffects<z.Zod
28
31
  }, {
29
32
  wallet: string;
30
33
  blockchain?: string | undefined;
34
+ blockchains?: string | undefined;
31
35
  from?: number | undefined;
32
36
  to?: number | undefined;
33
37
  period?: string | undefined;
34
38
  }>, {
39
+ blockchains: string[];
35
40
  wallet: string;
36
41
  blockchain?: string | undefined;
37
42
  from?: number | undefined;
@@ -40,10 +45,12 @@ export declare const WalletAnalysisParamsSchema: z.ZodEffects<z.ZodEffects<z.Zod
40
45
  }, {
41
46
  wallet: string;
42
47
  blockchain?: string | undefined;
48
+ blockchains?: string | undefined;
43
49
  from?: number | undefined;
44
50
  to?: number | undefined;
45
51
  period?: string | undefined;
46
52
  }>, {
53
+ blockchains: string[];
47
54
  wallet: string;
48
55
  blockchain?: string | undefined;
49
56
  from?: number | undefined;
@@ -52,29 +59,19 @@ export declare const WalletAnalysisParamsSchema: z.ZodEffects<z.ZodEffects<z.Zod
52
59
  }, {
53
60
  wallet: string;
54
61
  blockchain?: string | undefined;
62
+ blockchains?: string | undefined;
55
63
  from?: number | undefined;
56
64
  to?: number | undefined;
57
65
  period?: string | undefined;
58
66
  }>;
59
- export type WalletAnalysisParams = z.input<typeof WalletAnalysisParamsSchema>;
60
- export declare const WalletAnalysisParamsSchemaOpenAPI: z.ZodObject<{
61
- wallet: z.ZodString;
62
- blockchain: z.ZodOptional<z.ZodString>;
63
- period: z.ZodOptional<z.ZodString>;
64
- from: z.ZodOptional<z.ZodNumber>;
65
- to: z.ZodOptional<z.ZodNumber>;
66
- }, "strip", z.ZodTypeAny, {
67
- wallet: string;
68
- blockchain?: string | undefined;
69
- from?: number | undefined;
70
- to?: number | undefined;
71
- period?: string | undefined;
67
+ /** Fields accepted at runtime but hidden from SDK types and OpenAPI spec */
68
+ declare const WALLET_ANALYSIS_HIDDEN: readonly ["blockchain"];
69
+ type WalletAnalysisHiddenFields = (typeof WALLET_ANALYSIS_HIDDEN)[number];
70
+ export type WalletAnalysisParams = SDKInput<typeof WalletAnalysisParamsSchema, WalletAnalysisHiddenFields>;
71
+ export declare const WalletAnalysisParamsSchemaOpenAPI: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
72
+ [x: string]: any;
72
73
  }, {
73
- wallet: string;
74
- blockchain?: string | undefined;
75
- from?: number | undefined;
76
- to?: number | undefined;
77
- period?: string | undefined;
74
+ [x: string]: any;
78
75
  }>;
79
76
  export declare const CalendarDayBreakdownSchema: z.ZodObject<{
80
77
  date: z.ZodDate;
@@ -442,14 +439,35 @@ export declare const WalletAnalysisResponseSchema: z.ZodObject<{
442
439
  entityName: z.ZodNullable<z.ZodString>;
443
440
  entityLogo: z.ZodNullable<z.ZodString>;
444
441
  entityLabels: z.ZodArray<z.ZodString, "many">;
442
+ entityType: z.ZodNullable<z.ZodString>;
443
+ entityDescription: z.ZodNullable<z.ZodString>;
444
+ entityTwitter: z.ZodNullable<z.ZodString>;
445
+ entityWebsite: z.ZodNullable<z.ZodString>;
446
+ entityGithub: z.ZodNullable<z.ZodString>;
447
+ entityDiscord: z.ZodNullable<z.ZodString>;
448
+ entityTelegram: z.ZodNullable<z.ZodString>;
445
449
  }, "strip", z.ZodTypeAny, {
446
450
  entityName: string | null;
447
451
  entityLogo: string | null;
448
452
  entityLabels: string[];
453
+ entityType: string | null;
454
+ entityDescription: string | null;
455
+ entityTwitter: string | null;
456
+ entityWebsite: string | null;
457
+ entityGithub: string | null;
458
+ entityDiscord: string | null;
459
+ entityTelegram: string | null;
449
460
  }, {
450
461
  entityName: string | null;
451
462
  entityLogo: string | null;
452
463
  entityLabels: string[];
464
+ entityType: string | null;
465
+ entityDescription: string | null;
466
+ entityTwitter: string | null;
467
+ entityWebsite: string | null;
468
+ entityGithub: string | null;
469
+ entityDiscord: string | null;
470
+ entityTelegram: string | null;
453
471
  }>>;
454
472
  platform: z.ZodNullable<z.ZodObject<{
455
473
  id: z.ZodString;
@@ -475,6 +493,13 @@ export declare const WalletAnalysisResponseSchema: z.ZodObject<{
475
493
  entityName: string | null;
476
494
  entityLogo: string | null;
477
495
  entityLabels: string[];
496
+ entityType: string | null;
497
+ entityDescription: string | null;
498
+ entityTwitter: string | null;
499
+ entityWebsite: string | null;
500
+ entityGithub: string | null;
501
+ entityDiscord: string | null;
502
+ entityTelegram: string | null;
478
503
  } | null;
479
504
  winRateDistribution: {
480
505
  '>500%': number;
@@ -574,6 +599,13 @@ export declare const WalletAnalysisResponseSchema: z.ZodObject<{
574
599
  entityName: string | null;
575
600
  entityLogo: string | null;
576
601
  entityLabels: string[];
602
+ entityType: string | null;
603
+ entityDescription: string | null;
604
+ entityTwitter: string | null;
605
+ entityWebsite: string | null;
606
+ entityGithub: string | null;
607
+ entityDiscord: string | null;
608
+ entityTelegram: string | null;
577
609
  } | null;
578
610
  winRateDistribution: {
579
611
  '>500%': number;
@@ -675,6 +707,13 @@ export declare const WalletAnalysisResponseSchema: z.ZodObject<{
675
707
  entityName: string | null;
676
708
  entityLogo: string | null;
677
709
  entityLabels: string[];
710
+ entityType: string | null;
711
+ entityDescription: string | null;
712
+ entityTwitter: string | null;
713
+ entityWebsite: string | null;
714
+ entityGithub: string | null;
715
+ entityDiscord: string | null;
716
+ entityTelegram: string | null;
678
717
  } | null;
679
718
  winRateDistribution: {
680
719
  '>500%': number;
@@ -776,6 +815,13 @@ export declare const WalletAnalysisResponseSchema: z.ZodObject<{
776
815
  entityName: string | null;
777
816
  entityLogo: string | null;
778
817
  entityLabels: string[];
818
+ entityType: string | null;
819
+ entityDescription: string | null;
820
+ entityTwitter: string | null;
821
+ entityWebsite: string | null;
822
+ entityGithub: string | null;
823
+ entityDiscord: string | null;
824
+ entityTelegram: string | null;
779
825
  } | null;
780
826
  winRateDistribution: {
781
827
  '>500%': number;
@@ -1232,14 +1278,35 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1232
1278
  entityName: z.ZodNullable<z.ZodString>;
1233
1279
  entityLogo: z.ZodNullable<z.ZodString>;
1234
1280
  entityLabels: z.ZodArray<z.ZodString, "many">;
1281
+ entityType: z.ZodNullable<z.ZodString>;
1282
+ entityDescription: z.ZodNullable<z.ZodString>;
1283
+ entityTwitter: z.ZodNullable<z.ZodString>;
1284
+ entityWebsite: z.ZodNullable<z.ZodString>;
1285
+ entityGithub: z.ZodNullable<z.ZodString>;
1286
+ entityDiscord: z.ZodNullable<z.ZodString>;
1287
+ entityTelegram: z.ZodNullable<z.ZodString>;
1235
1288
  }, "strip", z.ZodTypeAny, {
1236
1289
  entityName: string | null;
1237
1290
  entityLogo: string | null;
1238
1291
  entityLabels: string[];
1292
+ entityType: string | null;
1293
+ entityDescription: string | null;
1294
+ entityTwitter: string | null;
1295
+ entityWebsite: string | null;
1296
+ entityGithub: string | null;
1297
+ entityDiscord: string | null;
1298
+ entityTelegram: string | null;
1239
1299
  }, {
1240
1300
  entityName: string | null;
1241
1301
  entityLogo: string | null;
1242
1302
  entityLabels: string[];
1303
+ entityType: string | null;
1304
+ entityDescription: string | null;
1305
+ entityTwitter: string | null;
1306
+ entityWebsite: string | null;
1307
+ entityGithub: string | null;
1308
+ entityDiscord: string | null;
1309
+ entityTelegram: string | null;
1243
1310
  }>>;
1244
1311
  platform: z.ZodNullable<z.ZodObject<{
1245
1312
  id: z.ZodString;
@@ -1265,6 +1332,13 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1265
1332
  entityName: string | null;
1266
1333
  entityLogo: string | null;
1267
1334
  entityLabels: string[];
1335
+ entityType: string | null;
1336
+ entityDescription: string | null;
1337
+ entityTwitter: string | null;
1338
+ entityWebsite: string | null;
1339
+ entityGithub: string | null;
1340
+ entityDiscord: string | null;
1341
+ entityTelegram: string | null;
1268
1342
  } | null;
1269
1343
  winRateDistribution: {
1270
1344
  '>500%': number;
@@ -1364,6 +1438,13 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1364
1438
  entityName: string | null;
1365
1439
  entityLogo: string | null;
1366
1440
  entityLabels: string[];
1441
+ entityType: string | null;
1442
+ entityDescription: string | null;
1443
+ entityTwitter: string | null;
1444
+ entityWebsite: string | null;
1445
+ entityGithub: string | null;
1446
+ entityDiscord: string | null;
1447
+ entityTelegram: string | null;
1367
1448
  } | null;
1368
1449
  winRateDistribution: {
1369
1450
  '>500%': number;
@@ -1465,6 +1546,13 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1465
1546
  entityName: string | null;
1466
1547
  entityLogo: string | null;
1467
1548
  entityLabels: string[];
1549
+ entityType: string | null;
1550
+ entityDescription: string | null;
1551
+ entityTwitter: string | null;
1552
+ entityWebsite: string | null;
1553
+ entityGithub: string | null;
1554
+ entityDiscord: string | null;
1555
+ entityTelegram: string | null;
1468
1556
  } | null;
1469
1557
  winRateDistribution: {
1470
1558
  '>500%': number;
@@ -1566,6 +1654,13 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1566
1654
  entityName: string | null;
1567
1655
  entityLogo: string | null;
1568
1656
  entityLabels: string[];
1657
+ entityType: string | null;
1658
+ entityDescription: string | null;
1659
+ entityTwitter: string | null;
1660
+ entityWebsite: string | null;
1661
+ entityGithub: string | null;
1662
+ entityDiscord: string | null;
1663
+ entityTelegram: string | null;
1569
1664
  } | null;
1570
1665
  winRateDistribution: {
1571
1666
  '>500%': number;
@@ -1656,3 +1751,4 @@ export declare const WalletAnalysisResponseSchemaOpenAPI: z.ZodObject<{
1656
1751
  };
1657
1752
  };
1658
1753
  }>;
1754
+ export {};