hyperstack-stacks 0.4.2 → 0.5.0

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.
@@ -1,3 +1,6 @@
1
+ import * as hyperstack_typescript from 'hyperstack-typescript';
2
+ import { z } from 'zod';
3
+
1
4
  interface PumpfunTokenEvents {
2
5
  buys?: EventWrapper<Buy>[] | null;
3
6
  buys_exact_sol?: any[] | null;
@@ -147,6 +150,2354 @@ interface EventWrapper<T> {
147
150
  /** Optional transaction signature */
148
151
  signature?: string;
149
152
  }
153
+ declare const EventWrapperSchema: <T extends z.ZodTypeAny>(data: T) => z.ZodObject<{
154
+ timestamp: z.ZodNumber;
155
+ data: T;
156
+ slot: z.ZodOptional<z.ZodNumber>;
157
+ signature: z.ZodOptional<z.ZodString>;
158
+ }, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
159
+ timestamp: z.ZodNumber;
160
+ data: T;
161
+ slot: z.ZodOptional<z.ZodNumber>;
162
+ signature: z.ZodOptional<z.ZodString>;
163
+ }>, any> extends infer T_1 ? { [k in keyof T_1]: T_1[k]; } : never, z.baseObjectInputType<{
164
+ timestamp: z.ZodNumber;
165
+ data: T;
166
+ slot: z.ZodOptional<z.ZodNumber>;
167
+ signature: z.ZodOptional<z.ZodString>;
168
+ }> extends infer T_2 ? { [k_1 in keyof T_2]: T_2[k_1]; } : never>;
169
+ declare const CreateSchema: z.ZodObject<{
170
+ mint: z.ZodOptional<z.ZodString>;
171
+ mint_authority: z.ZodOptional<z.ZodString>;
172
+ bonding_curve: z.ZodOptional<z.ZodString>;
173
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
174
+ global: z.ZodOptional<z.ZodString>;
175
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
176
+ metadata: z.ZodOptional<z.ZodString>;
177
+ user: z.ZodOptional<z.ZodString>;
178
+ system_program: z.ZodOptional<z.ZodString>;
179
+ token_program: z.ZodOptional<z.ZodString>;
180
+ associated_token_program: z.ZodOptional<z.ZodString>;
181
+ rent: z.ZodOptional<z.ZodString>;
182
+ event_authority: z.ZodOptional<z.ZodString>;
183
+ program: z.ZodOptional<z.ZodString>;
184
+ name: z.ZodOptional<z.ZodString>;
185
+ symbol: z.ZodOptional<z.ZodString>;
186
+ uri: z.ZodOptional<z.ZodString>;
187
+ creator: z.ZodOptional<z.ZodString>;
188
+ }, "strip", z.ZodTypeAny, {
189
+ symbol?: string | undefined;
190
+ mint?: string | undefined;
191
+ mint_authority?: string | undefined;
192
+ bonding_curve?: string | undefined;
193
+ associated_bonding_curve?: string | undefined;
194
+ global?: string | undefined;
195
+ mpl_token_metadata?: string | undefined;
196
+ metadata?: string | undefined;
197
+ user?: string | undefined;
198
+ system_program?: string | undefined;
199
+ token_program?: string | undefined;
200
+ associated_token_program?: string | undefined;
201
+ rent?: string | undefined;
202
+ event_authority?: string | undefined;
203
+ program?: string | undefined;
204
+ name?: string | undefined;
205
+ uri?: string | undefined;
206
+ creator?: string | undefined;
207
+ }, {
208
+ symbol?: string | undefined;
209
+ mint?: string | undefined;
210
+ mint_authority?: string | undefined;
211
+ bonding_curve?: string | undefined;
212
+ associated_bonding_curve?: string | undefined;
213
+ global?: string | undefined;
214
+ mpl_token_metadata?: string | undefined;
215
+ metadata?: string | undefined;
216
+ user?: string | undefined;
217
+ system_program?: string | undefined;
218
+ token_program?: string | undefined;
219
+ associated_token_program?: string | undefined;
220
+ rent?: string | undefined;
221
+ event_authority?: string | undefined;
222
+ program?: string | undefined;
223
+ name?: string | undefined;
224
+ uri?: string | undefined;
225
+ creator?: string | undefined;
226
+ }>;
227
+ declare const BuySchema: z.ZodObject<{
228
+ global: z.ZodOptional<z.ZodString>;
229
+ fee_recipient: z.ZodOptional<z.ZodString>;
230
+ mint: z.ZodOptional<z.ZodString>;
231
+ bonding_curve: z.ZodOptional<z.ZodString>;
232
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
233
+ associated_user: z.ZodOptional<z.ZodString>;
234
+ user: z.ZodOptional<z.ZodString>;
235
+ system_program: z.ZodOptional<z.ZodString>;
236
+ token_program: z.ZodOptional<z.ZodString>;
237
+ creator_vault: z.ZodOptional<z.ZodString>;
238
+ event_authority: z.ZodOptional<z.ZodString>;
239
+ program: z.ZodOptional<z.ZodString>;
240
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
241
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
242
+ fee_config: z.ZodOptional<z.ZodString>;
243
+ fee_program: z.ZodOptional<z.ZodString>;
244
+ amount: z.ZodOptional<z.ZodNumber>;
245
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
246
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
247
+ }, "strip", z.ZodTypeAny, {
248
+ mint?: string | undefined;
249
+ bonding_curve?: string | undefined;
250
+ associated_bonding_curve?: string | undefined;
251
+ global?: string | undefined;
252
+ user?: string | undefined;
253
+ system_program?: string | undefined;
254
+ token_program?: string | undefined;
255
+ event_authority?: string | undefined;
256
+ program?: string | undefined;
257
+ fee_recipient?: string | undefined;
258
+ associated_user?: string | undefined;
259
+ creator_vault?: string | undefined;
260
+ global_volume_accumulator?: string | undefined;
261
+ user_volume_accumulator?: string | undefined;
262
+ fee_config?: string | undefined;
263
+ fee_program?: string | undefined;
264
+ amount?: number | undefined;
265
+ max_sol_cost?: number | undefined;
266
+ track_volume?: Record<string, any> | undefined;
267
+ }, {
268
+ mint?: string | undefined;
269
+ bonding_curve?: string | undefined;
270
+ associated_bonding_curve?: string | undefined;
271
+ global?: string | undefined;
272
+ user?: string | undefined;
273
+ system_program?: string | undefined;
274
+ token_program?: string | undefined;
275
+ event_authority?: string | undefined;
276
+ program?: string | undefined;
277
+ fee_recipient?: string | undefined;
278
+ associated_user?: string | undefined;
279
+ creator_vault?: string | undefined;
280
+ global_volume_accumulator?: string | undefined;
281
+ user_volume_accumulator?: string | undefined;
282
+ fee_config?: string | undefined;
283
+ fee_program?: string | undefined;
284
+ amount?: number | undefined;
285
+ max_sol_cost?: number | undefined;
286
+ track_volume?: Record<string, any> | undefined;
287
+ }>;
288
+ declare const SellSchema: z.ZodObject<{
289
+ global: z.ZodOptional<z.ZodString>;
290
+ fee_recipient: z.ZodOptional<z.ZodString>;
291
+ mint: z.ZodOptional<z.ZodString>;
292
+ bonding_curve: z.ZodOptional<z.ZodString>;
293
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
294
+ associated_user: z.ZodOptional<z.ZodString>;
295
+ user: z.ZodOptional<z.ZodString>;
296
+ system_program: z.ZodOptional<z.ZodString>;
297
+ creator_vault: z.ZodOptional<z.ZodString>;
298
+ token_program: z.ZodOptional<z.ZodString>;
299
+ event_authority: z.ZodOptional<z.ZodString>;
300
+ program: z.ZodOptional<z.ZodString>;
301
+ fee_config: z.ZodOptional<z.ZodString>;
302
+ fee_program: z.ZodOptional<z.ZodString>;
303
+ amount: z.ZodOptional<z.ZodNumber>;
304
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
305
+ }, "strip", z.ZodTypeAny, {
306
+ mint?: string | undefined;
307
+ bonding_curve?: string | undefined;
308
+ associated_bonding_curve?: string | undefined;
309
+ global?: string | undefined;
310
+ user?: string | undefined;
311
+ system_program?: string | undefined;
312
+ token_program?: string | undefined;
313
+ event_authority?: string | undefined;
314
+ program?: string | undefined;
315
+ fee_recipient?: string | undefined;
316
+ associated_user?: string | undefined;
317
+ creator_vault?: string | undefined;
318
+ fee_config?: string | undefined;
319
+ fee_program?: string | undefined;
320
+ amount?: number | undefined;
321
+ min_sol_output?: number | undefined;
322
+ }, {
323
+ mint?: string | undefined;
324
+ bonding_curve?: string | undefined;
325
+ associated_bonding_curve?: string | undefined;
326
+ global?: string | undefined;
327
+ user?: string | undefined;
328
+ system_program?: string | undefined;
329
+ token_program?: string | undefined;
330
+ event_authority?: string | undefined;
331
+ program?: string | undefined;
332
+ fee_recipient?: string | undefined;
333
+ associated_user?: string | undefined;
334
+ creator_vault?: string | undefined;
335
+ fee_config?: string | undefined;
336
+ fee_program?: string | undefined;
337
+ amount?: number | undefined;
338
+ min_sol_output?: number | undefined;
339
+ }>;
340
+ declare const BondingCurveSchema: z.ZodObject<{
341
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
342
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
343
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
344
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
345
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
346
+ complete: z.ZodOptional<z.ZodBoolean>;
347
+ creator: z.ZodOptional<z.ZodString>;
348
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
349
+ }, "strip", z.ZodTypeAny, {
350
+ creator?: string | undefined;
351
+ virtual_token_reserves?: number | undefined;
352
+ virtual_sol_reserves?: number | undefined;
353
+ real_token_reserves?: number | undefined;
354
+ real_sol_reserves?: number | undefined;
355
+ token_total_supply?: number | undefined;
356
+ complete?: boolean | undefined;
357
+ is_mayhem_mode?: boolean | undefined;
358
+ }, {
359
+ creator?: string | undefined;
360
+ virtual_token_reserves?: number | undefined;
361
+ virtual_sol_reserves?: number | undefined;
362
+ real_token_reserves?: number | undefined;
363
+ real_sol_reserves?: number | undefined;
364
+ token_total_supply?: number | undefined;
365
+ complete?: boolean | undefined;
366
+ is_mayhem_mode?: boolean | undefined;
367
+ }>;
368
+ declare const BuysEventSchema: z.ZodObject<{
369
+ amount: z.ZodNumber;
370
+ max_sol_cost: z.ZodNumber;
371
+ }, "strip", z.ZodTypeAny, {
372
+ amount: number;
373
+ max_sol_cost: number;
374
+ }, {
375
+ amount: number;
376
+ max_sol_cost: number;
377
+ }>;
378
+ declare const BuysExactSolEventSchema: z.ZodObject<{
379
+ spendable_sol_in: z.ZodNumber;
380
+ min_tokens_out: z.ZodNumber;
381
+ }, "strip", z.ZodTypeAny, {
382
+ spendable_sol_in: number;
383
+ min_tokens_out: number;
384
+ }, {
385
+ spendable_sol_in: number;
386
+ min_tokens_out: number;
387
+ }>;
388
+ declare const CreateEventSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
389
+ declare const CreateV2EventSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
390
+ declare const SellsEventSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
391
+ declare const ConfigStatusSchema: z.ZodEnum<["Paused", "Active"]>;
392
+ declare const PumpfunTokenEventsSchema: z.ZodObject<{
393
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
394
+ timestamp: z.ZodNumber;
395
+ data: z.ZodObject<{
396
+ global: z.ZodOptional<z.ZodString>;
397
+ fee_recipient: z.ZodOptional<z.ZodString>;
398
+ mint: z.ZodOptional<z.ZodString>;
399
+ bonding_curve: z.ZodOptional<z.ZodString>;
400
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
401
+ associated_user: z.ZodOptional<z.ZodString>;
402
+ user: z.ZodOptional<z.ZodString>;
403
+ system_program: z.ZodOptional<z.ZodString>;
404
+ token_program: z.ZodOptional<z.ZodString>;
405
+ creator_vault: z.ZodOptional<z.ZodString>;
406
+ event_authority: z.ZodOptional<z.ZodString>;
407
+ program: z.ZodOptional<z.ZodString>;
408
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
409
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
410
+ fee_config: z.ZodOptional<z.ZodString>;
411
+ fee_program: z.ZodOptional<z.ZodString>;
412
+ amount: z.ZodOptional<z.ZodNumber>;
413
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
414
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
415
+ }, "strip", z.ZodTypeAny, {
416
+ mint?: string | undefined;
417
+ bonding_curve?: string | undefined;
418
+ associated_bonding_curve?: string | undefined;
419
+ global?: string | undefined;
420
+ user?: string | undefined;
421
+ system_program?: string | undefined;
422
+ token_program?: string | undefined;
423
+ event_authority?: string | undefined;
424
+ program?: string | undefined;
425
+ fee_recipient?: string | undefined;
426
+ associated_user?: string | undefined;
427
+ creator_vault?: string | undefined;
428
+ global_volume_accumulator?: string | undefined;
429
+ user_volume_accumulator?: string | undefined;
430
+ fee_config?: string | undefined;
431
+ fee_program?: string | undefined;
432
+ amount?: number | undefined;
433
+ max_sol_cost?: number | undefined;
434
+ track_volume?: Record<string, any> | undefined;
435
+ }, {
436
+ mint?: string | undefined;
437
+ bonding_curve?: string | undefined;
438
+ associated_bonding_curve?: string | undefined;
439
+ global?: string | undefined;
440
+ user?: string | undefined;
441
+ system_program?: string | undefined;
442
+ token_program?: string | undefined;
443
+ event_authority?: string | undefined;
444
+ program?: string | undefined;
445
+ fee_recipient?: string | undefined;
446
+ associated_user?: string | undefined;
447
+ creator_vault?: string | undefined;
448
+ global_volume_accumulator?: string | undefined;
449
+ user_volume_accumulator?: string | undefined;
450
+ fee_config?: string | undefined;
451
+ fee_program?: string | undefined;
452
+ amount?: number | undefined;
453
+ max_sol_cost?: number | undefined;
454
+ track_volume?: Record<string, any> | undefined;
455
+ }>;
456
+ slot: z.ZodOptional<z.ZodNumber>;
457
+ signature: z.ZodOptional<z.ZodString>;
458
+ }, "strip", z.ZodTypeAny, {
459
+ timestamp: number;
460
+ data: {
461
+ mint?: string | undefined;
462
+ bonding_curve?: string | undefined;
463
+ associated_bonding_curve?: string | undefined;
464
+ global?: string | undefined;
465
+ user?: string | undefined;
466
+ system_program?: string | undefined;
467
+ token_program?: string | undefined;
468
+ event_authority?: string | undefined;
469
+ program?: string | undefined;
470
+ fee_recipient?: string | undefined;
471
+ associated_user?: string | undefined;
472
+ creator_vault?: string | undefined;
473
+ global_volume_accumulator?: string | undefined;
474
+ user_volume_accumulator?: string | undefined;
475
+ fee_config?: string | undefined;
476
+ fee_program?: string | undefined;
477
+ amount?: number | undefined;
478
+ max_sol_cost?: number | undefined;
479
+ track_volume?: Record<string, any> | undefined;
480
+ };
481
+ slot?: number | undefined;
482
+ signature?: string | undefined;
483
+ }, {
484
+ timestamp: number;
485
+ data: {
486
+ mint?: string | undefined;
487
+ bonding_curve?: string | undefined;
488
+ associated_bonding_curve?: string | undefined;
489
+ global?: string | undefined;
490
+ user?: string | undefined;
491
+ system_program?: string | undefined;
492
+ token_program?: string | undefined;
493
+ event_authority?: string | undefined;
494
+ program?: string | undefined;
495
+ fee_recipient?: string | undefined;
496
+ associated_user?: string | undefined;
497
+ creator_vault?: string | undefined;
498
+ global_volume_accumulator?: string | undefined;
499
+ user_volume_accumulator?: string | undefined;
500
+ fee_config?: string | undefined;
501
+ fee_program?: string | undefined;
502
+ amount?: number | undefined;
503
+ max_sol_cost?: number | undefined;
504
+ track_volume?: Record<string, any> | undefined;
505
+ };
506
+ slot?: number | undefined;
507
+ signature?: string | undefined;
508
+ }>, "many">>>;
509
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
510
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
511
+ mint: z.ZodOptional<z.ZodString>;
512
+ mint_authority: z.ZodOptional<z.ZodString>;
513
+ bonding_curve: z.ZodOptional<z.ZodString>;
514
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
515
+ global: z.ZodOptional<z.ZodString>;
516
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
517
+ metadata: z.ZodOptional<z.ZodString>;
518
+ user: z.ZodOptional<z.ZodString>;
519
+ system_program: z.ZodOptional<z.ZodString>;
520
+ token_program: z.ZodOptional<z.ZodString>;
521
+ associated_token_program: z.ZodOptional<z.ZodString>;
522
+ rent: z.ZodOptional<z.ZodString>;
523
+ event_authority: z.ZodOptional<z.ZodString>;
524
+ program: z.ZodOptional<z.ZodString>;
525
+ name: z.ZodOptional<z.ZodString>;
526
+ symbol: z.ZodOptional<z.ZodString>;
527
+ uri: z.ZodOptional<z.ZodString>;
528
+ creator: z.ZodOptional<z.ZodString>;
529
+ }, "strip", z.ZodTypeAny, {
530
+ symbol?: string | undefined;
531
+ mint?: string | undefined;
532
+ mint_authority?: string | undefined;
533
+ bonding_curve?: string | undefined;
534
+ associated_bonding_curve?: string | undefined;
535
+ global?: string | undefined;
536
+ mpl_token_metadata?: string | undefined;
537
+ metadata?: string | undefined;
538
+ user?: string | undefined;
539
+ system_program?: string | undefined;
540
+ token_program?: string | undefined;
541
+ associated_token_program?: string | undefined;
542
+ rent?: string | undefined;
543
+ event_authority?: string | undefined;
544
+ program?: string | undefined;
545
+ name?: string | undefined;
546
+ uri?: string | undefined;
547
+ creator?: string | undefined;
548
+ }, {
549
+ symbol?: string | undefined;
550
+ mint?: string | undefined;
551
+ mint_authority?: string | undefined;
552
+ bonding_curve?: string | undefined;
553
+ associated_bonding_curve?: string | undefined;
554
+ global?: string | undefined;
555
+ mpl_token_metadata?: string | undefined;
556
+ metadata?: string | undefined;
557
+ user?: string | undefined;
558
+ system_program?: string | undefined;
559
+ token_program?: string | undefined;
560
+ associated_token_program?: string | undefined;
561
+ rent?: string | undefined;
562
+ event_authority?: string | undefined;
563
+ program?: string | undefined;
564
+ name?: string | undefined;
565
+ uri?: string | undefined;
566
+ creator?: string | undefined;
567
+ }>>>;
568
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
569
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
570
+ timestamp: z.ZodNumber;
571
+ data: z.ZodObject<{
572
+ global: z.ZodOptional<z.ZodString>;
573
+ fee_recipient: z.ZodOptional<z.ZodString>;
574
+ mint: z.ZodOptional<z.ZodString>;
575
+ bonding_curve: z.ZodOptional<z.ZodString>;
576
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
577
+ associated_user: z.ZodOptional<z.ZodString>;
578
+ user: z.ZodOptional<z.ZodString>;
579
+ system_program: z.ZodOptional<z.ZodString>;
580
+ creator_vault: z.ZodOptional<z.ZodString>;
581
+ token_program: z.ZodOptional<z.ZodString>;
582
+ event_authority: z.ZodOptional<z.ZodString>;
583
+ program: z.ZodOptional<z.ZodString>;
584
+ fee_config: z.ZodOptional<z.ZodString>;
585
+ fee_program: z.ZodOptional<z.ZodString>;
586
+ amount: z.ZodOptional<z.ZodNumber>;
587
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
588
+ }, "strip", z.ZodTypeAny, {
589
+ mint?: string | undefined;
590
+ bonding_curve?: string | undefined;
591
+ associated_bonding_curve?: string | undefined;
592
+ global?: string | undefined;
593
+ user?: string | undefined;
594
+ system_program?: string | undefined;
595
+ token_program?: string | undefined;
596
+ event_authority?: string | undefined;
597
+ program?: string | undefined;
598
+ fee_recipient?: string | undefined;
599
+ associated_user?: string | undefined;
600
+ creator_vault?: string | undefined;
601
+ fee_config?: string | undefined;
602
+ fee_program?: string | undefined;
603
+ amount?: number | undefined;
604
+ min_sol_output?: number | undefined;
605
+ }, {
606
+ mint?: string | undefined;
607
+ bonding_curve?: string | undefined;
608
+ associated_bonding_curve?: string | undefined;
609
+ global?: string | undefined;
610
+ user?: string | undefined;
611
+ system_program?: string | undefined;
612
+ token_program?: string | undefined;
613
+ event_authority?: string | undefined;
614
+ program?: string | undefined;
615
+ fee_recipient?: string | undefined;
616
+ associated_user?: string | undefined;
617
+ creator_vault?: string | undefined;
618
+ fee_config?: string | undefined;
619
+ fee_program?: string | undefined;
620
+ amount?: number | undefined;
621
+ min_sol_output?: number | undefined;
622
+ }>;
623
+ slot: z.ZodOptional<z.ZodNumber>;
624
+ signature: z.ZodOptional<z.ZodString>;
625
+ }, "strip", z.ZodTypeAny, {
626
+ timestamp: number;
627
+ data: {
628
+ mint?: string | undefined;
629
+ bonding_curve?: string | undefined;
630
+ associated_bonding_curve?: string | undefined;
631
+ global?: string | undefined;
632
+ user?: string | undefined;
633
+ system_program?: string | undefined;
634
+ token_program?: string | undefined;
635
+ event_authority?: string | undefined;
636
+ program?: string | undefined;
637
+ fee_recipient?: string | undefined;
638
+ associated_user?: string | undefined;
639
+ creator_vault?: string | undefined;
640
+ fee_config?: string | undefined;
641
+ fee_program?: string | undefined;
642
+ amount?: number | undefined;
643
+ min_sol_output?: number | undefined;
644
+ };
645
+ slot?: number | undefined;
646
+ signature?: string | undefined;
647
+ }, {
648
+ timestamp: number;
649
+ data: {
650
+ mint?: string | undefined;
651
+ bonding_curve?: string | undefined;
652
+ associated_bonding_curve?: string | undefined;
653
+ global?: string | undefined;
654
+ user?: string | undefined;
655
+ system_program?: string | undefined;
656
+ token_program?: string | undefined;
657
+ event_authority?: string | undefined;
658
+ program?: string | undefined;
659
+ fee_recipient?: string | undefined;
660
+ associated_user?: string | undefined;
661
+ creator_vault?: string | undefined;
662
+ fee_config?: string | undefined;
663
+ fee_program?: string | undefined;
664
+ amount?: number | undefined;
665
+ min_sol_output?: number | undefined;
666
+ };
667
+ slot?: number | undefined;
668
+ signature?: string | undefined;
669
+ }>, "many">>>;
670
+ }, "strip", z.ZodTypeAny, {
671
+ buys?: {
672
+ timestamp: number;
673
+ data: {
674
+ mint?: string | undefined;
675
+ bonding_curve?: string | undefined;
676
+ associated_bonding_curve?: string | undefined;
677
+ global?: string | undefined;
678
+ user?: string | undefined;
679
+ system_program?: string | undefined;
680
+ token_program?: string | undefined;
681
+ event_authority?: string | undefined;
682
+ program?: string | undefined;
683
+ fee_recipient?: string | undefined;
684
+ associated_user?: string | undefined;
685
+ creator_vault?: string | undefined;
686
+ global_volume_accumulator?: string | undefined;
687
+ user_volume_accumulator?: string | undefined;
688
+ fee_config?: string | undefined;
689
+ fee_program?: string | undefined;
690
+ amount?: number | undefined;
691
+ max_sol_cost?: number | undefined;
692
+ track_volume?: Record<string, any> | undefined;
693
+ };
694
+ slot?: number | undefined;
695
+ signature?: string | undefined;
696
+ }[] | null | undefined;
697
+ buys_exact_sol?: any[] | null | undefined;
698
+ create?: {
699
+ symbol?: string | undefined;
700
+ mint?: string | undefined;
701
+ mint_authority?: string | undefined;
702
+ bonding_curve?: string | undefined;
703
+ associated_bonding_curve?: string | undefined;
704
+ global?: string | undefined;
705
+ mpl_token_metadata?: string | undefined;
706
+ metadata?: string | undefined;
707
+ user?: string | undefined;
708
+ system_program?: string | undefined;
709
+ token_program?: string | undefined;
710
+ associated_token_program?: string | undefined;
711
+ rent?: string | undefined;
712
+ event_authority?: string | undefined;
713
+ program?: string | undefined;
714
+ name?: string | undefined;
715
+ uri?: string | undefined;
716
+ creator?: string | undefined;
717
+ } | null | undefined;
718
+ create_v2?: Record<string, any> | null | undefined;
719
+ sells?: {
720
+ timestamp: number;
721
+ data: {
722
+ mint?: string | undefined;
723
+ bonding_curve?: string | undefined;
724
+ associated_bonding_curve?: string | undefined;
725
+ global?: string | undefined;
726
+ user?: string | undefined;
727
+ system_program?: string | undefined;
728
+ token_program?: string | undefined;
729
+ event_authority?: string | undefined;
730
+ program?: string | undefined;
731
+ fee_recipient?: string | undefined;
732
+ associated_user?: string | undefined;
733
+ creator_vault?: string | undefined;
734
+ fee_config?: string | undefined;
735
+ fee_program?: string | undefined;
736
+ amount?: number | undefined;
737
+ min_sol_output?: number | undefined;
738
+ };
739
+ slot?: number | undefined;
740
+ signature?: string | undefined;
741
+ }[] | null | undefined;
742
+ }, {
743
+ buys?: {
744
+ timestamp: number;
745
+ data: {
746
+ mint?: string | undefined;
747
+ bonding_curve?: string | undefined;
748
+ associated_bonding_curve?: string | undefined;
749
+ global?: string | undefined;
750
+ user?: string | undefined;
751
+ system_program?: string | undefined;
752
+ token_program?: string | undefined;
753
+ event_authority?: string | undefined;
754
+ program?: string | undefined;
755
+ fee_recipient?: string | undefined;
756
+ associated_user?: string | undefined;
757
+ creator_vault?: string | undefined;
758
+ global_volume_accumulator?: string | undefined;
759
+ user_volume_accumulator?: string | undefined;
760
+ fee_config?: string | undefined;
761
+ fee_program?: string | undefined;
762
+ amount?: number | undefined;
763
+ max_sol_cost?: number | undefined;
764
+ track_volume?: Record<string, any> | undefined;
765
+ };
766
+ slot?: number | undefined;
767
+ signature?: string | undefined;
768
+ }[] | null | undefined;
769
+ buys_exact_sol?: any[] | null | undefined;
770
+ create?: {
771
+ symbol?: string | undefined;
772
+ mint?: string | undefined;
773
+ mint_authority?: string | undefined;
774
+ bonding_curve?: string | undefined;
775
+ associated_bonding_curve?: string | undefined;
776
+ global?: string | undefined;
777
+ mpl_token_metadata?: string | undefined;
778
+ metadata?: string | undefined;
779
+ user?: string | undefined;
780
+ system_program?: string | undefined;
781
+ token_program?: string | undefined;
782
+ associated_token_program?: string | undefined;
783
+ rent?: string | undefined;
784
+ event_authority?: string | undefined;
785
+ program?: string | undefined;
786
+ name?: string | undefined;
787
+ uri?: string | undefined;
788
+ creator?: string | undefined;
789
+ } | null | undefined;
790
+ create_v2?: Record<string, any> | null | undefined;
791
+ sells?: {
792
+ timestamp: number;
793
+ data: {
794
+ mint?: string | undefined;
795
+ bonding_curve?: string | undefined;
796
+ associated_bonding_curve?: string | undefined;
797
+ global?: string | undefined;
798
+ user?: string | undefined;
799
+ system_program?: string | undefined;
800
+ token_program?: string | undefined;
801
+ event_authority?: string | undefined;
802
+ program?: string | undefined;
803
+ fee_recipient?: string | undefined;
804
+ associated_user?: string | undefined;
805
+ creator_vault?: string | undefined;
806
+ fee_config?: string | undefined;
807
+ fee_program?: string | undefined;
808
+ amount?: number | undefined;
809
+ min_sol_output?: number | undefined;
810
+ };
811
+ slot?: number | undefined;
812
+ signature?: string | undefined;
813
+ }[] | null | undefined;
814
+ }>;
815
+ declare const PumpfunTokenIdSchema: z.ZodObject<{
816
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
817
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
818
+ }, "strip", z.ZodTypeAny, {
819
+ mint?: string | null | undefined;
820
+ bonding_curve?: string | null | undefined;
821
+ }, {
822
+ mint?: string | null | undefined;
823
+ bonding_curve?: string | null | undefined;
824
+ }>;
825
+ declare const PumpfunTokenInfoSchema: z.ZodObject<{
826
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
827
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
828
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
829
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
830
+ }, "strip", z.ZodTypeAny, {
831
+ symbol?: string | null | undefined;
832
+ name?: string | null | undefined;
833
+ uri?: string | null | undefined;
834
+ is_complete?: boolean | null | undefined;
835
+ }, {
836
+ symbol?: string | null | undefined;
837
+ name?: string | null | undefined;
838
+ uri?: string | null | undefined;
839
+ is_complete?: boolean | null | undefined;
840
+ }>;
841
+ declare const PumpfunTokenReservesSchema: z.ZodObject<{
842
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
843
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
844
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
845
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
846
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
847
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
848
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ virtual_token_reserves?: number | null | undefined;
851
+ virtual_sol_reserves?: number | null | undefined;
852
+ real_token_reserves?: number | null | undefined;
853
+ real_sol_reserves?: number | null | undefined;
854
+ token_total_supply?: number | null | undefined;
855
+ current_price_sol?: number | null | undefined;
856
+ market_cap_sol?: number | null | undefined;
857
+ }, {
858
+ virtual_token_reserves?: number | null | undefined;
859
+ virtual_sol_reserves?: number | null | undefined;
860
+ real_token_reserves?: number | null | undefined;
861
+ real_sol_reserves?: number | null | undefined;
862
+ token_total_supply?: number | null | undefined;
863
+ current_price_sol?: number | null | undefined;
864
+ market_cap_sol?: number | null | undefined;
865
+ }>;
866
+ declare const PumpfunTokenTradingSchema: z.ZodObject<{
867
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
868
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
869
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
870
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
871
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
872
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
873
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
874
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
875
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
876
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
877
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
878
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
879
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
880
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
881
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
882
+ }, "strip", z.ZodTypeAny, {
883
+ average_trade_size?: number | null | undefined;
884
+ buy_count?: number | null | undefined;
885
+ largest_trade?: number | null | undefined;
886
+ last_trade_price?: number | null | undefined;
887
+ last_trade_timestamp?: number | null | undefined;
888
+ last_whale_address?: string | null | undefined;
889
+ sell_count?: number | null | undefined;
890
+ smallest_trade?: number | null | undefined;
891
+ total_buy_exact_sol_volume?: number | null | undefined;
892
+ total_buy_volume?: number | null | undefined;
893
+ total_sell_volume?: number | null | undefined;
894
+ total_trades?: number | null | undefined;
895
+ total_volume?: number | null | undefined;
896
+ unique_traders?: number | null | undefined;
897
+ whale_trade_count?: number | null | undefined;
898
+ }, {
899
+ average_trade_size?: number | null | undefined;
900
+ buy_count?: number | null | undefined;
901
+ largest_trade?: number | null | undefined;
902
+ last_trade_price?: number | null | undefined;
903
+ last_trade_timestamp?: number | null | undefined;
904
+ last_whale_address?: string | null | undefined;
905
+ sell_count?: number | null | undefined;
906
+ smallest_trade?: number | null | undefined;
907
+ total_buy_exact_sol_volume?: number | null | undefined;
908
+ total_buy_volume?: number | null | undefined;
909
+ total_sell_volume?: number | null | undefined;
910
+ total_trades?: number | null | undefined;
911
+ total_volume?: number | null | undefined;
912
+ unique_traders?: number | null | undefined;
913
+ whale_trade_count?: number | null | undefined;
914
+ }>;
915
+ declare const PumpfunTokenSchema: z.ZodObject<{
916
+ events: z.ZodOptional<z.ZodObject<{
917
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
918
+ timestamp: z.ZodNumber;
919
+ data: z.ZodObject<{
920
+ global: z.ZodOptional<z.ZodString>;
921
+ fee_recipient: z.ZodOptional<z.ZodString>;
922
+ mint: z.ZodOptional<z.ZodString>;
923
+ bonding_curve: z.ZodOptional<z.ZodString>;
924
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
925
+ associated_user: z.ZodOptional<z.ZodString>;
926
+ user: z.ZodOptional<z.ZodString>;
927
+ system_program: z.ZodOptional<z.ZodString>;
928
+ token_program: z.ZodOptional<z.ZodString>;
929
+ creator_vault: z.ZodOptional<z.ZodString>;
930
+ event_authority: z.ZodOptional<z.ZodString>;
931
+ program: z.ZodOptional<z.ZodString>;
932
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
933
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
934
+ fee_config: z.ZodOptional<z.ZodString>;
935
+ fee_program: z.ZodOptional<z.ZodString>;
936
+ amount: z.ZodOptional<z.ZodNumber>;
937
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
938
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
939
+ }, "strip", z.ZodTypeAny, {
940
+ mint?: string | undefined;
941
+ bonding_curve?: string | undefined;
942
+ associated_bonding_curve?: string | undefined;
943
+ global?: string | undefined;
944
+ user?: string | undefined;
945
+ system_program?: string | undefined;
946
+ token_program?: string | undefined;
947
+ event_authority?: string | undefined;
948
+ program?: string | undefined;
949
+ fee_recipient?: string | undefined;
950
+ associated_user?: string | undefined;
951
+ creator_vault?: string | undefined;
952
+ global_volume_accumulator?: string | undefined;
953
+ user_volume_accumulator?: string | undefined;
954
+ fee_config?: string | undefined;
955
+ fee_program?: string | undefined;
956
+ amount?: number | undefined;
957
+ max_sol_cost?: number | undefined;
958
+ track_volume?: Record<string, any> | undefined;
959
+ }, {
960
+ mint?: string | undefined;
961
+ bonding_curve?: string | undefined;
962
+ associated_bonding_curve?: string | undefined;
963
+ global?: string | undefined;
964
+ user?: string | undefined;
965
+ system_program?: string | undefined;
966
+ token_program?: string | undefined;
967
+ event_authority?: string | undefined;
968
+ program?: string | undefined;
969
+ fee_recipient?: string | undefined;
970
+ associated_user?: string | undefined;
971
+ creator_vault?: string | undefined;
972
+ global_volume_accumulator?: string | undefined;
973
+ user_volume_accumulator?: string | undefined;
974
+ fee_config?: string | undefined;
975
+ fee_program?: string | undefined;
976
+ amount?: number | undefined;
977
+ max_sol_cost?: number | undefined;
978
+ track_volume?: Record<string, any> | undefined;
979
+ }>;
980
+ slot: z.ZodOptional<z.ZodNumber>;
981
+ signature: z.ZodOptional<z.ZodString>;
982
+ }, "strip", z.ZodTypeAny, {
983
+ timestamp: number;
984
+ data: {
985
+ mint?: string | undefined;
986
+ bonding_curve?: string | undefined;
987
+ associated_bonding_curve?: string | undefined;
988
+ global?: string | undefined;
989
+ user?: string | undefined;
990
+ system_program?: string | undefined;
991
+ token_program?: string | undefined;
992
+ event_authority?: string | undefined;
993
+ program?: string | undefined;
994
+ fee_recipient?: string | undefined;
995
+ associated_user?: string | undefined;
996
+ creator_vault?: string | undefined;
997
+ global_volume_accumulator?: string | undefined;
998
+ user_volume_accumulator?: string | undefined;
999
+ fee_config?: string | undefined;
1000
+ fee_program?: string | undefined;
1001
+ amount?: number | undefined;
1002
+ max_sol_cost?: number | undefined;
1003
+ track_volume?: Record<string, any> | undefined;
1004
+ };
1005
+ slot?: number | undefined;
1006
+ signature?: string | undefined;
1007
+ }, {
1008
+ timestamp: number;
1009
+ data: {
1010
+ mint?: string | undefined;
1011
+ bonding_curve?: string | undefined;
1012
+ associated_bonding_curve?: string | undefined;
1013
+ global?: string | undefined;
1014
+ user?: string | undefined;
1015
+ system_program?: string | undefined;
1016
+ token_program?: string | undefined;
1017
+ event_authority?: string | undefined;
1018
+ program?: string | undefined;
1019
+ fee_recipient?: string | undefined;
1020
+ associated_user?: string | undefined;
1021
+ creator_vault?: string | undefined;
1022
+ global_volume_accumulator?: string | undefined;
1023
+ user_volume_accumulator?: string | undefined;
1024
+ fee_config?: string | undefined;
1025
+ fee_program?: string | undefined;
1026
+ amount?: number | undefined;
1027
+ max_sol_cost?: number | undefined;
1028
+ track_volume?: Record<string, any> | undefined;
1029
+ };
1030
+ slot?: number | undefined;
1031
+ signature?: string | undefined;
1032
+ }>, "many">>>;
1033
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
1034
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1035
+ mint: z.ZodOptional<z.ZodString>;
1036
+ mint_authority: z.ZodOptional<z.ZodString>;
1037
+ bonding_curve: z.ZodOptional<z.ZodString>;
1038
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
1039
+ global: z.ZodOptional<z.ZodString>;
1040
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
1041
+ metadata: z.ZodOptional<z.ZodString>;
1042
+ user: z.ZodOptional<z.ZodString>;
1043
+ system_program: z.ZodOptional<z.ZodString>;
1044
+ token_program: z.ZodOptional<z.ZodString>;
1045
+ associated_token_program: z.ZodOptional<z.ZodString>;
1046
+ rent: z.ZodOptional<z.ZodString>;
1047
+ event_authority: z.ZodOptional<z.ZodString>;
1048
+ program: z.ZodOptional<z.ZodString>;
1049
+ name: z.ZodOptional<z.ZodString>;
1050
+ symbol: z.ZodOptional<z.ZodString>;
1051
+ uri: z.ZodOptional<z.ZodString>;
1052
+ creator: z.ZodOptional<z.ZodString>;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ symbol?: string | undefined;
1055
+ mint?: string | undefined;
1056
+ mint_authority?: string | undefined;
1057
+ bonding_curve?: string | undefined;
1058
+ associated_bonding_curve?: string | undefined;
1059
+ global?: string | undefined;
1060
+ mpl_token_metadata?: string | undefined;
1061
+ metadata?: string | undefined;
1062
+ user?: string | undefined;
1063
+ system_program?: string | undefined;
1064
+ token_program?: string | undefined;
1065
+ associated_token_program?: string | undefined;
1066
+ rent?: string | undefined;
1067
+ event_authority?: string | undefined;
1068
+ program?: string | undefined;
1069
+ name?: string | undefined;
1070
+ uri?: string | undefined;
1071
+ creator?: string | undefined;
1072
+ }, {
1073
+ symbol?: string | undefined;
1074
+ mint?: string | undefined;
1075
+ mint_authority?: string | undefined;
1076
+ bonding_curve?: string | undefined;
1077
+ associated_bonding_curve?: string | undefined;
1078
+ global?: string | undefined;
1079
+ mpl_token_metadata?: string | undefined;
1080
+ metadata?: string | undefined;
1081
+ user?: string | undefined;
1082
+ system_program?: string | undefined;
1083
+ token_program?: string | undefined;
1084
+ associated_token_program?: string | undefined;
1085
+ rent?: string | undefined;
1086
+ event_authority?: string | undefined;
1087
+ program?: string | undefined;
1088
+ name?: string | undefined;
1089
+ uri?: string | undefined;
1090
+ creator?: string | undefined;
1091
+ }>>>;
1092
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1093
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1094
+ timestamp: z.ZodNumber;
1095
+ data: z.ZodObject<{
1096
+ global: z.ZodOptional<z.ZodString>;
1097
+ fee_recipient: z.ZodOptional<z.ZodString>;
1098
+ mint: z.ZodOptional<z.ZodString>;
1099
+ bonding_curve: z.ZodOptional<z.ZodString>;
1100
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
1101
+ associated_user: z.ZodOptional<z.ZodString>;
1102
+ user: z.ZodOptional<z.ZodString>;
1103
+ system_program: z.ZodOptional<z.ZodString>;
1104
+ creator_vault: z.ZodOptional<z.ZodString>;
1105
+ token_program: z.ZodOptional<z.ZodString>;
1106
+ event_authority: z.ZodOptional<z.ZodString>;
1107
+ program: z.ZodOptional<z.ZodString>;
1108
+ fee_config: z.ZodOptional<z.ZodString>;
1109
+ fee_program: z.ZodOptional<z.ZodString>;
1110
+ amount: z.ZodOptional<z.ZodNumber>;
1111
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
1112
+ }, "strip", z.ZodTypeAny, {
1113
+ mint?: string | undefined;
1114
+ bonding_curve?: string | undefined;
1115
+ associated_bonding_curve?: string | undefined;
1116
+ global?: string | undefined;
1117
+ user?: string | undefined;
1118
+ system_program?: string | undefined;
1119
+ token_program?: string | undefined;
1120
+ event_authority?: string | undefined;
1121
+ program?: string | undefined;
1122
+ fee_recipient?: string | undefined;
1123
+ associated_user?: string | undefined;
1124
+ creator_vault?: string | undefined;
1125
+ fee_config?: string | undefined;
1126
+ fee_program?: string | undefined;
1127
+ amount?: number | undefined;
1128
+ min_sol_output?: number | undefined;
1129
+ }, {
1130
+ mint?: string | undefined;
1131
+ bonding_curve?: string | undefined;
1132
+ associated_bonding_curve?: string | undefined;
1133
+ global?: string | undefined;
1134
+ user?: string | undefined;
1135
+ system_program?: string | undefined;
1136
+ token_program?: string | undefined;
1137
+ event_authority?: string | undefined;
1138
+ program?: string | undefined;
1139
+ fee_recipient?: string | undefined;
1140
+ associated_user?: string | undefined;
1141
+ creator_vault?: string | undefined;
1142
+ fee_config?: string | undefined;
1143
+ fee_program?: string | undefined;
1144
+ amount?: number | undefined;
1145
+ min_sol_output?: number | undefined;
1146
+ }>;
1147
+ slot: z.ZodOptional<z.ZodNumber>;
1148
+ signature: z.ZodOptional<z.ZodString>;
1149
+ }, "strip", z.ZodTypeAny, {
1150
+ timestamp: number;
1151
+ data: {
1152
+ mint?: string | undefined;
1153
+ bonding_curve?: string | undefined;
1154
+ associated_bonding_curve?: string | undefined;
1155
+ global?: string | undefined;
1156
+ user?: string | undefined;
1157
+ system_program?: string | undefined;
1158
+ token_program?: string | undefined;
1159
+ event_authority?: string | undefined;
1160
+ program?: string | undefined;
1161
+ fee_recipient?: string | undefined;
1162
+ associated_user?: string | undefined;
1163
+ creator_vault?: string | undefined;
1164
+ fee_config?: string | undefined;
1165
+ fee_program?: string | undefined;
1166
+ amount?: number | undefined;
1167
+ min_sol_output?: number | undefined;
1168
+ };
1169
+ slot?: number | undefined;
1170
+ signature?: string | undefined;
1171
+ }, {
1172
+ timestamp: number;
1173
+ data: {
1174
+ mint?: string | undefined;
1175
+ bonding_curve?: string | undefined;
1176
+ associated_bonding_curve?: string | undefined;
1177
+ global?: string | undefined;
1178
+ user?: string | undefined;
1179
+ system_program?: string | undefined;
1180
+ token_program?: string | undefined;
1181
+ event_authority?: string | undefined;
1182
+ program?: string | undefined;
1183
+ fee_recipient?: string | undefined;
1184
+ associated_user?: string | undefined;
1185
+ creator_vault?: string | undefined;
1186
+ fee_config?: string | undefined;
1187
+ fee_program?: string | undefined;
1188
+ amount?: number | undefined;
1189
+ min_sol_output?: number | undefined;
1190
+ };
1191
+ slot?: number | undefined;
1192
+ signature?: string | undefined;
1193
+ }>, "many">>>;
1194
+ }, "strip", z.ZodTypeAny, {
1195
+ buys?: {
1196
+ timestamp: number;
1197
+ data: {
1198
+ mint?: string | undefined;
1199
+ bonding_curve?: string | undefined;
1200
+ associated_bonding_curve?: string | undefined;
1201
+ global?: string | undefined;
1202
+ user?: string | undefined;
1203
+ system_program?: string | undefined;
1204
+ token_program?: string | undefined;
1205
+ event_authority?: string | undefined;
1206
+ program?: string | undefined;
1207
+ fee_recipient?: string | undefined;
1208
+ associated_user?: string | undefined;
1209
+ creator_vault?: string | undefined;
1210
+ global_volume_accumulator?: string | undefined;
1211
+ user_volume_accumulator?: string | undefined;
1212
+ fee_config?: string | undefined;
1213
+ fee_program?: string | undefined;
1214
+ amount?: number | undefined;
1215
+ max_sol_cost?: number | undefined;
1216
+ track_volume?: Record<string, any> | undefined;
1217
+ };
1218
+ slot?: number | undefined;
1219
+ signature?: string | undefined;
1220
+ }[] | null | undefined;
1221
+ buys_exact_sol?: any[] | null | undefined;
1222
+ create?: {
1223
+ symbol?: string | undefined;
1224
+ mint?: string | undefined;
1225
+ mint_authority?: string | undefined;
1226
+ bonding_curve?: string | undefined;
1227
+ associated_bonding_curve?: string | undefined;
1228
+ global?: string | undefined;
1229
+ mpl_token_metadata?: string | undefined;
1230
+ metadata?: string | undefined;
1231
+ user?: string | undefined;
1232
+ system_program?: string | undefined;
1233
+ token_program?: string | undefined;
1234
+ associated_token_program?: string | undefined;
1235
+ rent?: string | undefined;
1236
+ event_authority?: string | undefined;
1237
+ program?: string | undefined;
1238
+ name?: string | undefined;
1239
+ uri?: string | undefined;
1240
+ creator?: string | undefined;
1241
+ } | null | undefined;
1242
+ create_v2?: Record<string, any> | null | undefined;
1243
+ sells?: {
1244
+ timestamp: number;
1245
+ data: {
1246
+ mint?: string | undefined;
1247
+ bonding_curve?: string | undefined;
1248
+ associated_bonding_curve?: string | undefined;
1249
+ global?: string | undefined;
1250
+ user?: string | undefined;
1251
+ system_program?: string | undefined;
1252
+ token_program?: string | undefined;
1253
+ event_authority?: string | undefined;
1254
+ program?: string | undefined;
1255
+ fee_recipient?: string | undefined;
1256
+ associated_user?: string | undefined;
1257
+ creator_vault?: string | undefined;
1258
+ fee_config?: string | undefined;
1259
+ fee_program?: string | undefined;
1260
+ amount?: number | undefined;
1261
+ min_sol_output?: number | undefined;
1262
+ };
1263
+ slot?: number | undefined;
1264
+ signature?: string | undefined;
1265
+ }[] | null | undefined;
1266
+ }, {
1267
+ buys?: {
1268
+ timestamp: number;
1269
+ data: {
1270
+ mint?: string | undefined;
1271
+ bonding_curve?: string | undefined;
1272
+ associated_bonding_curve?: string | undefined;
1273
+ global?: string | undefined;
1274
+ user?: string | undefined;
1275
+ system_program?: string | undefined;
1276
+ token_program?: string | undefined;
1277
+ event_authority?: string | undefined;
1278
+ program?: string | undefined;
1279
+ fee_recipient?: string | undefined;
1280
+ associated_user?: string | undefined;
1281
+ creator_vault?: string | undefined;
1282
+ global_volume_accumulator?: string | undefined;
1283
+ user_volume_accumulator?: string | undefined;
1284
+ fee_config?: string | undefined;
1285
+ fee_program?: string | undefined;
1286
+ amount?: number | undefined;
1287
+ max_sol_cost?: number | undefined;
1288
+ track_volume?: Record<string, any> | undefined;
1289
+ };
1290
+ slot?: number | undefined;
1291
+ signature?: string | undefined;
1292
+ }[] | null | undefined;
1293
+ buys_exact_sol?: any[] | null | undefined;
1294
+ create?: {
1295
+ symbol?: string | undefined;
1296
+ mint?: string | undefined;
1297
+ mint_authority?: string | undefined;
1298
+ bonding_curve?: string | undefined;
1299
+ associated_bonding_curve?: string | undefined;
1300
+ global?: string | undefined;
1301
+ mpl_token_metadata?: string | undefined;
1302
+ metadata?: string | undefined;
1303
+ user?: string | undefined;
1304
+ system_program?: string | undefined;
1305
+ token_program?: string | undefined;
1306
+ associated_token_program?: string | undefined;
1307
+ rent?: string | undefined;
1308
+ event_authority?: string | undefined;
1309
+ program?: string | undefined;
1310
+ name?: string | undefined;
1311
+ uri?: string | undefined;
1312
+ creator?: string | undefined;
1313
+ } | null | undefined;
1314
+ create_v2?: Record<string, any> | null | undefined;
1315
+ sells?: {
1316
+ timestamp: number;
1317
+ data: {
1318
+ mint?: string | undefined;
1319
+ bonding_curve?: string | undefined;
1320
+ associated_bonding_curve?: string | undefined;
1321
+ global?: string | undefined;
1322
+ user?: string | undefined;
1323
+ system_program?: string | undefined;
1324
+ token_program?: string | undefined;
1325
+ event_authority?: string | undefined;
1326
+ program?: string | undefined;
1327
+ fee_recipient?: string | undefined;
1328
+ associated_user?: string | undefined;
1329
+ creator_vault?: string | undefined;
1330
+ fee_config?: string | undefined;
1331
+ fee_program?: string | undefined;
1332
+ amount?: number | undefined;
1333
+ min_sol_output?: number | undefined;
1334
+ };
1335
+ slot?: number | undefined;
1336
+ signature?: string | undefined;
1337
+ }[] | null | undefined;
1338
+ }>>;
1339
+ id: z.ZodOptional<z.ZodObject<{
1340
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1341
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1342
+ }, "strip", z.ZodTypeAny, {
1343
+ mint?: string | null | undefined;
1344
+ bonding_curve?: string | null | undefined;
1345
+ }, {
1346
+ mint?: string | null | undefined;
1347
+ bonding_curve?: string | null | undefined;
1348
+ }>>;
1349
+ info: z.ZodOptional<z.ZodObject<{
1350
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1351
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1352
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1353
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1354
+ }, "strip", z.ZodTypeAny, {
1355
+ symbol?: string | null | undefined;
1356
+ name?: string | null | undefined;
1357
+ uri?: string | null | undefined;
1358
+ is_complete?: boolean | null | undefined;
1359
+ }, {
1360
+ symbol?: string | null | undefined;
1361
+ name?: string | null | undefined;
1362
+ uri?: string | null | undefined;
1363
+ is_complete?: boolean | null | undefined;
1364
+ }>>;
1365
+ reserves: z.ZodOptional<z.ZodObject<{
1366
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1367
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1368
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1369
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1370
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1371
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1372
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1373
+ }, "strip", z.ZodTypeAny, {
1374
+ virtual_token_reserves?: number | null | undefined;
1375
+ virtual_sol_reserves?: number | null | undefined;
1376
+ real_token_reserves?: number | null | undefined;
1377
+ real_sol_reserves?: number | null | undefined;
1378
+ token_total_supply?: number | null | undefined;
1379
+ current_price_sol?: number | null | undefined;
1380
+ market_cap_sol?: number | null | undefined;
1381
+ }, {
1382
+ virtual_token_reserves?: number | null | undefined;
1383
+ virtual_sol_reserves?: number | null | undefined;
1384
+ real_token_reserves?: number | null | undefined;
1385
+ real_sol_reserves?: number | null | undefined;
1386
+ token_total_supply?: number | null | undefined;
1387
+ current_price_sol?: number | null | undefined;
1388
+ market_cap_sol?: number | null | undefined;
1389
+ }>>;
1390
+ trading: z.ZodOptional<z.ZodObject<{
1391
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1392
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1393
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1394
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1395
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1396
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1397
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1398
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1399
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1400
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1401
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1402
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1403
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1404
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1405
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1406
+ }, "strip", z.ZodTypeAny, {
1407
+ average_trade_size?: number | null | undefined;
1408
+ buy_count?: number | null | undefined;
1409
+ largest_trade?: number | null | undefined;
1410
+ last_trade_price?: number | null | undefined;
1411
+ last_trade_timestamp?: number | null | undefined;
1412
+ last_whale_address?: string | null | undefined;
1413
+ sell_count?: number | null | undefined;
1414
+ smallest_trade?: number | null | undefined;
1415
+ total_buy_exact_sol_volume?: number | null | undefined;
1416
+ total_buy_volume?: number | null | undefined;
1417
+ total_sell_volume?: number | null | undefined;
1418
+ total_trades?: number | null | undefined;
1419
+ total_volume?: number | null | undefined;
1420
+ unique_traders?: number | null | undefined;
1421
+ whale_trade_count?: number | null | undefined;
1422
+ }, {
1423
+ average_trade_size?: number | null | undefined;
1424
+ buy_count?: number | null | undefined;
1425
+ largest_trade?: number | null | undefined;
1426
+ last_trade_price?: number | null | undefined;
1427
+ last_trade_timestamp?: number | null | undefined;
1428
+ last_whale_address?: string | null | undefined;
1429
+ sell_count?: number | null | undefined;
1430
+ smallest_trade?: number | null | undefined;
1431
+ total_buy_exact_sol_volume?: number | null | undefined;
1432
+ total_buy_volume?: number | null | undefined;
1433
+ total_sell_volume?: number | null | undefined;
1434
+ total_trades?: number | null | undefined;
1435
+ total_volume?: number | null | undefined;
1436
+ unique_traders?: number | null | undefined;
1437
+ whale_trade_count?: number | null | undefined;
1438
+ }>>;
1439
+ bonding_curve_snapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1440
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
1441
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
1442
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
1443
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
1444
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
1445
+ complete: z.ZodOptional<z.ZodBoolean>;
1446
+ creator: z.ZodOptional<z.ZodString>;
1447
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
1448
+ }, "strip", z.ZodTypeAny, {
1449
+ creator?: string | undefined;
1450
+ virtual_token_reserves?: number | undefined;
1451
+ virtual_sol_reserves?: number | undefined;
1452
+ real_token_reserves?: number | undefined;
1453
+ real_sol_reserves?: number | undefined;
1454
+ token_total_supply?: number | undefined;
1455
+ complete?: boolean | undefined;
1456
+ is_mayhem_mode?: boolean | undefined;
1457
+ }, {
1458
+ creator?: string | undefined;
1459
+ virtual_token_reserves?: number | undefined;
1460
+ virtual_sol_reserves?: number | undefined;
1461
+ real_token_reserves?: number | undefined;
1462
+ real_sol_reserves?: number | undefined;
1463
+ token_total_supply?: number | undefined;
1464
+ complete?: boolean | undefined;
1465
+ is_mayhem_mode?: boolean | undefined;
1466
+ }>>>;
1467
+ }, "strip", z.ZodTypeAny, {
1468
+ events?: {
1469
+ buys?: {
1470
+ timestamp: number;
1471
+ data: {
1472
+ mint?: string | undefined;
1473
+ bonding_curve?: string | undefined;
1474
+ associated_bonding_curve?: string | undefined;
1475
+ global?: string | undefined;
1476
+ user?: string | undefined;
1477
+ system_program?: string | undefined;
1478
+ token_program?: string | undefined;
1479
+ event_authority?: string | undefined;
1480
+ program?: string | undefined;
1481
+ fee_recipient?: string | undefined;
1482
+ associated_user?: string | undefined;
1483
+ creator_vault?: string | undefined;
1484
+ global_volume_accumulator?: string | undefined;
1485
+ user_volume_accumulator?: string | undefined;
1486
+ fee_config?: string | undefined;
1487
+ fee_program?: string | undefined;
1488
+ amount?: number | undefined;
1489
+ max_sol_cost?: number | undefined;
1490
+ track_volume?: Record<string, any> | undefined;
1491
+ };
1492
+ slot?: number | undefined;
1493
+ signature?: string | undefined;
1494
+ }[] | null | undefined;
1495
+ buys_exact_sol?: any[] | null | undefined;
1496
+ create?: {
1497
+ symbol?: string | undefined;
1498
+ mint?: string | undefined;
1499
+ mint_authority?: string | undefined;
1500
+ bonding_curve?: string | undefined;
1501
+ associated_bonding_curve?: string | undefined;
1502
+ global?: string | undefined;
1503
+ mpl_token_metadata?: string | undefined;
1504
+ metadata?: string | undefined;
1505
+ user?: string | undefined;
1506
+ system_program?: string | undefined;
1507
+ token_program?: string | undefined;
1508
+ associated_token_program?: string | undefined;
1509
+ rent?: string | undefined;
1510
+ event_authority?: string | undefined;
1511
+ program?: string | undefined;
1512
+ name?: string | undefined;
1513
+ uri?: string | undefined;
1514
+ creator?: string | undefined;
1515
+ } | null | undefined;
1516
+ create_v2?: Record<string, any> | null | undefined;
1517
+ sells?: {
1518
+ timestamp: number;
1519
+ data: {
1520
+ mint?: string | undefined;
1521
+ bonding_curve?: string | undefined;
1522
+ associated_bonding_curve?: string | undefined;
1523
+ global?: string | undefined;
1524
+ user?: string | undefined;
1525
+ system_program?: string | undefined;
1526
+ token_program?: string | undefined;
1527
+ event_authority?: string | undefined;
1528
+ program?: string | undefined;
1529
+ fee_recipient?: string | undefined;
1530
+ associated_user?: string | undefined;
1531
+ creator_vault?: string | undefined;
1532
+ fee_config?: string | undefined;
1533
+ fee_program?: string | undefined;
1534
+ amount?: number | undefined;
1535
+ min_sol_output?: number | undefined;
1536
+ };
1537
+ slot?: number | undefined;
1538
+ signature?: string | undefined;
1539
+ }[] | null | undefined;
1540
+ } | undefined;
1541
+ id?: {
1542
+ mint?: string | null | undefined;
1543
+ bonding_curve?: string | null | undefined;
1544
+ } | undefined;
1545
+ info?: {
1546
+ symbol?: string | null | undefined;
1547
+ name?: string | null | undefined;
1548
+ uri?: string | null | undefined;
1549
+ is_complete?: boolean | null | undefined;
1550
+ } | undefined;
1551
+ reserves?: {
1552
+ virtual_token_reserves?: number | null | undefined;
1553
+ virtual_sol_reserves?: number | null | undefined;
1554
+ real_token_reserves?: number | null | undefined;
1555
+ real_sol_reserves?: number | null | undefined;
1556
+ token_total_supply?: number | null | undefined;
1557
+ current_price_sol?: number | null | undefined;
1558
+ market_cap_sol?: number | null | undefined;
1559
+ } | undefined;
1560
+ trading?: {
1561
+ average_trade_size?: number | null | undefined;
1562
+ buy_count?: number | null | undefined;
1563
+ largest_trade?: number | null | undefined;
1564
+ last_trade_price?: number | null | undefined;
1565
+ last_trade_timestamp?: number | null | undefined;
1566
+ last_whale_address?: string | null | undefined;
1567
+ sell_count?: number | null | undefined;
1568
+ smallest_trade?: number | null | undefined;
1569
+ total_buy_exact_sol_volume?: number | null | undefined;
1570
+ total_buy_volume?: number | null | undefined;
1571
+ total_sell_volume?: number | null | undefined;
1572
+ total_trades?: number | null | undefined;
1573
+ total_volume?: number | null | undefined;
1574
+ unique_traders?: number | null | undefined;
1575
+ whale_trade_count?: number | null | undefined;
1576
+ } | undefined;
1577
+ bonding_curve_snapshot?: {
1578
+ creator?: string | undefined;
1579
+ virtual_token_reserves?: number | undefined;
1580
+ virtual_sol_reserves?: number | undefined;
1581
+ real_token_reserves?: number | undefined;
1582
+ real_sol_reserves?: number | undefined;
1583
+ token_total_supply?: number | undefined;
1584
+ complete?: boolean | undefined;
1585
+ is_mayhem_mode?: boolean | undefined;
1586
+ } | null | undefined;
1587
+ }, {
1588
+ events?: {
1589
+ buys?: {
1590
+ timestamp: number;
1591
+ data: {
1592
+ mint?: string | undefined;
1593
+ bonding_curve?: string | undefined;
1594
+ associated_bonding_curve?: string | undefined;
1595
+ global?: string | undefined;
1596
+ user?: string | undefined;
1597
+ system_program?: string | undefined;
1598
+ token_program?: string | undefined;
1599
+ event_authority?: string | undefined;
1600
+ program?: string | undefined;
1601
+ fee_recipient?: string | undefined;
1602
+ associated_user?: string | undefined;
1603
+ creator_vault?: string | undefined;
1604
+ global_volume_accumulator?: string | undefined;
1605
+ user_volume_accumulator?: string | undefined;
1606
+ fee_config?: string | undefined;
1607
+ fee_program?: string | undefined;
1608
+ amount?: number | undefined;
1609
+ max_sol_cost?: number | undefined;
1610
+ track_volume?: Record<string, any> | undefined;
1611
+ };
1612
+ slot?: number | undefined;
1613
+ signature?: string | undefined;
1614
+ }[] | null | undefined;
1615
+ buys_exact_sol?: any[] | null | undefined;
1616
+ create?: {
1617
+ symbol?: string | undefined;
1618
+ mint?: string | undefined;
1619
+ mint_authority?: string | undefined;
1620
+ bonding_curve?: string | undefined;
1621
+ associated_bonding_curve?: string | undefined;
1622
+ global?: string | undefined;
1623
+ mpl_token_metadata?: string | undefined;
1624
+ metadata?: string | undefined;
1625
+ user?: string | undefined;
1626
+ system_program?: string | undefined;
1627
+ token_program?: string | undefined;
1628
+ associated_token_program?: string | undefined;
1629
+ rent?: string | undefined;
1630
+ event_authority?: string | undefined;
1631
+ program?: string | undefined;
1632
+ name?: string | undefined;
1633
+ uri?: string | undefined;
1634
+ creator?: string | undefined;
1635
+ } | null | undefined;
1636
+ create_v2?: Record<string, any> | null | undefined;
1637
+ sells?: {
1638
+ timestamp: number;
1639
+ data: {
1640
+ mint?: string | undefined;
1641
+ bonding_curve?: string | undefined;
1642
+ associated_bonding_curve?: string | undefined;
1643
+ global?: string | undefined;
1644
+ user?: string | undefined;
1645
+ system_program?: string | undefined;
1646
+ token_program?: string | undefined;
1647
+ event_authority?: string | undefined;
1648
+ program?: string | undefined;
1649
+ fee_recipient?: string | undefined;
1650
+ associated_user?: string | undefined;
1651
+ creator_vault?: string | undefined;
1652
+ fee_config?: string | undefined;
1653
+ fee_program?: string | undefined;
1654
+ amount?: number | undefined;
1655
+ min_sol_output?: number | undefined;
1656
+ };
1657
+ slot?: number | undefined;
1658
+ signature?: string | undefined;
1659
+ }[] | null | undefined;
1660
+ } | undefined;
1661
+ id?: {
1662
+ mint?: string | null | undefined;
1663
+ bonding_curve?: string | null | undefined;
1664
+ } | undefined;
1665
+ info?: {
1666
+ symbol?: string | null | undefined;
1667
+ name?: string | null | undefined;
1668
+ uri?: string | null | undefined;
1669
+ is_complete?: boolean | null | undefined;
1670
+ } | undefined;
1671
+ reserves?: {
1672
+ virtual_token_reserves?: number | null | undefined;
1673
+ virtual_sol_reserves?: number | null | undefined;
1674
+ real_token_reserves?: number | null | undefined;
1675
+ real_sol_reserves?: number | null | undefined;
1676
+ token_total_supply?: number | null | undefined;
1677
+ current_price_sol?: number | null | undefined;
1678
+ market_cap_sol?: number | null | undefined;
1679
+ } | undefined;
1680
+ trading?: {
1681
+ average_trade_size?: number | null | undefined;
1682
+ buy_count?: number | null | undefined;
1683
+ largest_trade?: number | null | undefined;
1684
+ last_trade_price?: number | null | undefined;
1685
+ last_trade_timestamp?: number | null | undefined;
1686
+ last_whale_address?: string | null | undefined;
1687
+ sell_count?: number | null | undefined;
1688
+ smallest_trade?: number | null | undefined;
1689
+ total_buy_exact_sol_volume?: number | null | undefined;
1690
+ total_buy_volume?: number | null | undefined;
1691
+ total_sell_volume?: number | null | undefined;
1692
+ total_trades?: number | null | undefined;
1693
+ total_volume?: number | null | undefined;
1694
+ unique_traders?: number | null | undefined;
1695
+ whale_trade_count?: number | null | undefined;
1696
+ } | undefined;
1697
+ bonding_curve_snapshot?: {
1698
+ creator?: string | undefined;
1699
+ virtual_token_reserves?: number | undefined;
1700
+ virtual_sol_reserves?: number | undefined;
1701
+ real_token_reserves?: number | undefined;
1702
+ real_sol_reserves?: number | undefined;
1703
+ token_total_supply?: number | undefined;
1704
+ complete?: boolean | undefined;
1705
+ is_mayhem_mode?: boolean | undefined;
1706
+ } | null | undefined;
1707
+ }>;
1708
+ declare const PumpfunTokenCompletedSchema: z.ZodObject<{
1709
+ events: z.ZodObject<{
1710
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1711
+ timestamp: z.ZodNumber;
1712
+ data: z.ZodObject<{
1713
+ global: z.ZodOptional<z.ZodString>;
1714
+ fee_recipient: z.ZodOptional<z.ZodString>;
1715
+ mint: z.ZodOptional<z.ZodString>;
1716
+ bonding_curve: z.ZodOptional<z.ZodString>;
1717
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
1718
+ associated_user: z.ZodOptional<z.ZodString>;
1719
+ user: z.ZodOptional<z.ZodString>;
1720
+ system_program: z.ZodOptional<z.ZodString>;
1721
+ token_program: z.ZodOptional<z.ZodString>;
1722
+ creator_vault: z.ZodOptional<z.ZodString>;
1723
+ event_authority: z.ZodOptional<z.ZodString>;
1724
+ program: z.ZodOptional<z.ZodString>;
1725
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
1726
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
1727
+ fee_config: z.ZodOptional<z.ZodString>;
1728
+ fee_program: z.ZodOptional<z.ZodString>;
1729
+ amount: z.ZodOptional<z.ZodNumber>;
1730
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
1731
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1732
+ }, "strip", z.ZodTypeAny, {
1733
+ mint?: string | undefined;
1734
+ bonding_curve?: string | undefined;
1735
+ associated_bonding_curve?: string | undefined;
1736
+ global?: string | undefined;
1737
+ user?: string | undefined;
1738
+ system_program?: string | undefined;
1739
+ token_program?: string | undefined;
1740
+ event_authority?: string | undefined;
1741
+ program?: string | undefined;
1742
+ fee_recipient?: string | undefined;
1743
+ associated_user?: string | undefined;
1744
+ creator_vault?: string | undefined;
1745
+ global_volume_accumulator?: string | undefined;
1746
+ user_volume_accumulator?: string | undefined;
1747
+ fee_config?: string | undefined;
1748
+ fee_program?: string | undefined;
1749
+ amount?: number | undefined;
1750
+ max_sol_cost?: number | undefined;
1751
+ track_volume?: Record<string, any> | undefined;
1752
+ }, {
1753
+ mint?: string | undefined;
1754
+ bonding_curve?: string | undefined;
1755
+ associated_bonding_curve?: string | undefined;
1756
+ global?: string | undefined;
1757
+ user?: string | undefined;
1758
+ system_program?: string | undefined;
1759
+ token_program?: string | undefined;
1760
+ event_authority?: string | undefined;
1761
+ program?: string | undefined;
1762
+ fee_recipient?: string | undefined;
1763
+ associated_user?: string | undefined;
1764
+ creator_vault?: string | undefined;
1765
+ global_volume_accumulator?: string | undefined;
1766
+ user_volume_accumulator?: string | undefined;
1767
+ fee_config?: string | undefined;
1768
+ fee_program?: string | undefined;
1769
+ amount?: number | undefined;
1770
+ max_sol_cost?: number | undefined;
1771
+ track_volume?: Record<string, any> | undefined;
1772
+ }>;
1773
+ slot: z.ZodOptional<z.ZodNumber>;
1774
+ signature: z.ZodOptional<z.ZodString>;
1775
+ }, "strip", z.ZodTypeAny, {
1776
+ timestamp: number;
1777
+ data: {
1778
+ mint?: string | undefined;
1779
+ bonding_curve?: string | undefined;
1780
+ associated_bonding_curve?: string | undefined;
1781
+ global?: string | undefined;
1782
+ user?: string | undefined;
1783
+ system_program?: string | undefined;
1784
+ token_program?: string | undefined;
1785
+ event_authority?: string | undefined;
1786
+ program?: string | undefined;
1787
+ fee_recipient?: string | undefined;
1788
+ associated_user?: string | undefined;
1789
+ creator_vault?: string | undefined;
1790
+ global_volume_accumulator?: string | undefined;
1791
+ user_volume_accumulator?: string | undefined;
1792
+ fee_config?: string | undefined;
1793
+ fee_program?: string | undefined;
1794
+ amount?: number | undefined;
1795
+ max_sol_cost?: number | undefined;
1796
+ track_volume?: Record<string, any> | undefined;
1797
+ };
1798
+ slot?: number | undefined;
1799
+ signature?: string | undefined;
1800
+ }, {
1801
+ timestamp: number;
1802
+ data: {
1803
+ mint?: string | undefined;
1804
+ bonding_curve?: string | undefined;
1805
+ associated_bonding_curve?: string | undefined;
1806
+ global?: string | undefined;
1807
+ user?: string | undefined;
1808
+ system_program?: string | undefined;
1809
+ token_program?: string | undefined;
1810
+ event_authority?: string | undefined;
1811
+ program?: string | undefined;
1812
+ fee_recipient?: string | undefined;
1813
+ associated_user?: string | undefined;
1814
+ creator_vault?: string | undefined;
1815
+ global_volume_accumulator?: string | undefined;
1816
+ user_volume_accumulator?: string | undefined;
1817
+ fee_config?: string | undefined;
1818
+ fee_program?: string | undefined;
1819
+ amount?: number | undefined;
1820
+ max_sol_cost?: number | undefined;
1821
+ track_volume?: Record<string, any> | undefined;
1822
+ };
1823
+ slot?: number | undefined;
1824
+ signature?: string | undefined;
1825
+ }>, "many">>>;
1826
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
1827
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1828
+ mint: z.ZodOptional<z.ZodString>;
1829
+ mint_authority: z.ZodOptional<z.ZodString>;
1830
+ bonding_curve: z.ZodOptional<z.ZodString>;
1831
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
1832
+ global: z.ZodOptional<z.ZodString>;
1833
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
1834
+ metadata: z.ZodOptional<z.ZodString>;
1835
+ user: z.ZodOptional<z.ZodString>;
1836
+ system_program: z.ZodOptional<z.ZodString>;
1837
+ token_program: z.ZodOptional<z.ZodString>;
1838
+ associated_token_program: z.ZodOptional<z.ZodString>;
1839
+ rent: z.ZodOptional<z.ZodString>;
1840
+ event_authority: z.ZodOptional<z.ZodString>;
1841
+ program: z.ZodOptional<z.ZodString>;
1842
+ name: z.ZodOptional<z.ZodString>;
1843
+ symbol: z.ZodOptional<z.ZodString>;
1844
+ uri: z.ZodOptional<z.ZodString>;
1845
+ creator: z.ZodOptional<z.ZodString>;
1846
+ }, "strip", z.ZodTypeAny, {
1847
+ symbol?: string | undefined;
1848
+ mint?: string | undefined;
1849
+ mint_authority?: string | undefined;
1850
+ bonding_curve?: string | undefined;
1851
+ associated_bonding_curve?: string | undefined;
1852
+ global?: string | undefined;
1853
+ mpl_token_metadata?: string | undefined;
1854
+ metadata?: string | undefined;
1855
+ user?: string | undefined;
1856
+ system_program?: string | undefined;
1857
+ token_program?: string | undefined;
1858
+ associated_token_program?: string | undefined;
1859
+ rent?: string | undefined;
1860
+ event_authority?: string | undefined;
1861
+ program?: string | undefined;
1862
+ name?: string | undefined;
1863
+ uri?: string | undefined;
1864
+ creator?: string | undefined;
1865
+ }, {
1866
+ symbol?: string | undefined;
1867
+ mint?: string | undefined;
1868
+ mint_authority?: string | undefined;
1869
+ bonding_curve?: string | undefined;
1870
+ associated_bonding_curve?: string | undefined;
1871
+ global?: string | undefined;
1872
+ mpl_token_metadata?: string | undefined;
1873
+ metadata?: string | undefined;
1874
+ user?: string | undefined;
1875
+ system_program?: string | undefined;
1876
+ token_program?: string | undefined;
1877
+ associated_token_program?: string | undefined;
1878
+ rent?: string | undefined;
1879
+ event_authority?: string | undefined;
1880
+ program?: string | undefined;
1881
+ name?: string | undefined;
1882
+ uri?: string | undefined;
1883
+ creator?: string | undefined;
1884
+ }>>>;
1885
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1886
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1887
+ timestamp: z.ZodNumber;
1888
+ data: z.ZodObject<{
1889
+ global: z.ZodOptional<z.ZodString>;
1890
+ fee_recipient: z.ZodOptional<z.ZodString>;
1891
+ mint: z.ZodOptional<z.ZodString>;
1892
+ bonding_curve: z.ZodOptional<z.ZodString>;
1893
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
1894
+ associated_user: z.ZodOptional<z.ZodString>;
1895
+ user: z.ZodOptional<z.ZodString>;
1896
+ system_program: z.ZodOptional<z.ZodString>;
1897
+ creator_vault: z.ZodOptional<z.ZodString>;
1898
+ token_program: z.ZodOptional<z.ZodString>;
1899
+ event_authority: z.ZodOptional<z.ZodString>;
1900
+ program: z.ZodOptional<z.ZodString>;
1901
+ fee_config: z.ZodOptional<z.ZodString>;
1902
+ fee_program: z.ZodOptional<z.ZodString>;
1903
+ amount: z.ZodOptional<z.ZodNumber>;
1904
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
1905
+ }, "strip", z.ZodTypeAny, {
1906
+ mint?: string | undefined;
1907
+ bonding_curve?: string | undefined;
1908
+ associated_bonding_curve?: string | undefined;
1909
+ global?: string | undefined;
1910
+ user?: string | undefined;
1911
+ system_program?: string | undefined;
1912
+ token_program?: string | undefined;
1913
+ event_authority?: string | undefined;
1914
+ program?: string | undefined;
1915
+ fee_recipient?: string | undefined;
1916
+ associated_user?: string | undefined;
1917
+ creator_vault?: string | undefined;
1918
+ fee_config?: string | undefined;
1919
+ fee_program?: string | undefined;
1920
+ amount?: number | undefined;
1921
+ min_sol_output?: number | undefined;
1922
+ }, {
1923
+ mint?: string | undefined;
1924
+ bonding_curve?: string | undefined;
1925
+ associated_bonding_curve?: string | undefined;
1926
+ global?: string | undefined;
1927
+ user?: string | undefined;
1928
+ system_program?: string | undefined;
1929
+ token_program?: string | undefined;
1930
+ event_authority?: string | undefined;
1931
+ program?: string | undefined;
1932
+ fee_recipient?: string | undefined;
1933
+ associated_user?: string | undefined;
1934
+ creator_vault?: string | undefined;
1935
+ fee_config?: string | undefined;
1936
+ fee_program?: string | undefined;
1937
+ amount?: number | undefined;
1938
+ min_sol_output?: number | undefined;
1939
+ }>;
1940
+ slot: z.ZodOptional<z.ZodNumber>;
1941
+ signature: z.ZodOptional<z.ZodString>;
1942
+ }, "strip", z.ZodTypeAny, {
1943
+ timestamp: number;
1944
+ data: {
1945
+ mint?: string | undefined;
1946
+ bonding_curve?: string | undefined;
1947
+ associated_bonding_curve?: string | undefined;
1948
+ global?: string | undefined;
1949
+ user?: string | undefined;
1950
+ system_program?: string | undefined;
1951
+ token_program?: string | undefined;
1952
+ event_authority?: string | undefined;
1953
+ program?: string | undefined;
1954
+ fee_recipient?: string | undefined;
1955
+ associated_user?: string | undefined;
1956
+ creator_vault?: string | undefined;
1957
+ fee_config?: string | undefined;
1958
+ fee_program?: string | undefined;
1959
+ amount?: number | undefined;
1960
+ min_sol_output?: number | undefined;
1961
+ };
1962
+ slot?: number | undefined;
1963
+ signature?: string | undefined;
1964
+ }, {
1965
+ timestamp: number;
1966
+ data: {
1967
+ mint?: string | undefined;
1968
+ bonding_curve?: string | undefined;
1969
+ associated_bonding_curve?: string | undefined;
1970
+ global?: string | undefined;
1971
+ user?: string | undefined;
1972
+ system_program?: string | undefined;
1973
+ token_program?: string | undefined;
1974
+ event_authority?: string | undefined;
1975
+ program?: string | undefined;
1976
+ fee_recipient?: string | undefined;
1977
+ associated_user?: string | undefined;
1978
+ creator_vault?: string | undefined;
1979
+ fee_config?: string | undefined;
1980
+ fee_program?: string | undefined;
1981
+ amount?: number | undefined;
1982
+ min_sol_output?: number | undefined;
1983
+ };
1984
+ slot?: number | undefined;
1985
+ signature?: string | undefined;
1986
+ }>, "many">>>;
1987
+ }, "strip", z.ZodTypeAny, {
1988
+ buys?: {
1989
+ timestamp: number;
1990
+ data: {
1991
+ mint?: string | undefined;
1992
+ bonding_curve?: string | undefined;
1993
+ associated_bonding_curve?: string | undefined;
1994
+ global?: string | undefined;
1995
+ user?: string | undefined;
1996
+ system_program?: string | undefined;
1997
+ token_program?: string | undefined;
1998
+ event_authority?: string | undefined;
1999
+ program?: string | undefined;
2000
+ fee_recipient?: string | undefined;
2001
+ associated_user?: string | undefined;
2002
+ creator_vault?: string | undefined;
2003
+ global_volume_accumulator?: string | undefined;
2004
+ user_volume_accumulator?: string | undefined;
2005
+ fee_config?: string | undefined;
2006
+ fee_program?: string | undefined;
2007
+ amount?: number | undefined;
2008
+ max_sol_cost?: number | undefined;
2009
+ track_volume?: Record<string, any> | undefined;
2010
+ };
2011
+ slot?: number | undefined;
2012
+ signature?: string | undefined;
2013
+ }[] | null | undefined;
2014
+ buys_exact_sol?: any[] | null | undefined;
2015
+ create?: {
2016
+ symbol?: string | undefined;
2017
+ mint?: string | undefined;
2018
+ mint_authority?: string | undefined;
2019
+ bonding_curve?: string | undefined;
2020
+ associated_bonding_curve?: string | undefined;
2021
+ global?: string | undefined;
2022
+ mpl_token_metadata?: string | undefined;
2023
+ metadata?: string | undefined;
2024
+ user?: string | undefined;
2025
+ system_program?: string | undefined;
2026
+ token_program?: string | undefined;
2027
+ associated_token_program?: string | undefined;
2028
+ rent?: string | undefined;
2029
+ event_authority?: string | undefined;
2030
+ program?: string | undefined;
2031
+ name?: string | undefined;
2032
+ uri?: string | undefined;
2033
+ creator?: string | undefined;
2034
+ } | null | undefined;
2035
+ create_v2?: Record<string, any> | null | undefined;
2036
+ sells?: {
2037
+ timestamp: number;
2038
+ data: {
2039
+ mint?: string | undefined;
2040
+ bonding_curve?: string | undefined;
2041
+ associated_bonding_curve?: string | undefined;
2042
+ global?: string | undefined;
2043
+ user?: string | undefined;
2044
+ system_program?: string | undefined;
2045
+ token_program?: string | undefined;
2046
+ event_authority?: string | undefined;
2047
+ program?: string | undefined;
2048
+ fee_recipient?: string | undefined;
2049
+ associated_user?: string | undefined;
2050
+ creator_vault?: string | undefined;
2051
+ fee_config?: string | undefined;
2052
+ fee_program?: string | undefined;
2053
+ amount?: number | undefined;
2054
+ min_sol_output?: number | undefined;
2055
+ };
2056
+ slot?: number | undefined;
2057
+ signature?: string | undefined;
2058
+ }[] | null | undefined;
2059
+ }, {
2060
+ buys?: {
2061
+ timestamp: number;
2062
+ data: {
2063
+ mint?: string | undefined;
2064
+ bonding_curve?: string | undefined;
2065
+ associated_bonding_curve?: string | undefined;
2066
+ global?: string | undefined;
2067
+ user?: string | undefined;
2068
+ system_program?: string | undefined;
2069
+ token_program?: string | undefined;
2070
+ event_authority?: string | undefined;
2071
+ program?: string | undefined;
2072
+ fee_recipient?: string | undefined;
2073
+ associated_user?: string | undefined;
2074
+ creator_vault?: string | undefined;
2075
+ global_volume_accumulator?: string | undefined;
2076
+ user_volume_accumulator?: string | undefined;
2077
+ fee_config?: string | undefined;
2078
+ fee_program?: string | undefined;
2079
+ amount?: number | undefined;
2080
+ max_sol_cost?: number | undefined;
2081
+ track_volume?: Record<string, any> | undefined;
2082
+ };
2083
+ slot?: number | undefined;
2084
+ signature?: string | undefined;
2085
+ }[] | null | undefined;
2086
+ buys_exact_sol?: any[] | null | undefined;
2087
+ create?: {
2088
+ symbol?: string | undefined;
2089
+ mint?: string | undefined;
2090
+ mint_authority?: string | undefined;
2091
+ bonding_curve?: string | undefined;
2092
+ associated_bonding_curve?: string | undefined;
2093
+ global?: string | undefined;
2094
+ mpl_token_metadata?: string | undefined;
2095
+ metadata?: string | undefined;
2096
+ user?: string | undefined;
2097
+ system_program?: string | undefined;
2098
+ token_program?: string | undefined;
2099
+ associated_token_program?: string | undefined;
2100
+ rent?: string | undefined;
2101
+ event_authority?: string | undefined;
2102
+ program?: string | undefined;
2103
+ name?: string | undefined;
2104
+ uri?: string | undefined;
2105
+ creator?: string | undefined;
2106
+ } | null | undefined;
2107
+ create_v2?: Record<string, any> | null | undefined;
2108
+ sells?: {
2109
+ timestamp: number;
2110
+ data: {
2111
+ mint?: string | undefined;
2112
+ bonding_curve?: string | undefined;
2113
+ associated_bonding_curve?: string | undefined;
2114
+ global?: string | undefined;
2115
+ user?: string | undefined;
2116
+ system_program?: string | undefined;
2117
+ token_program?: string | undefined;
2118
+ event_authority?: string | undefined;
2119
+ program?: string | undefined;
2120
+ fee_recipient?: string | undefined;
2121
+ associated_user?: string | undefined;
2122
+ creator_vault?: string | undefined;
2123
+ fee_config?: string | undefined;
2124
+ fee_program?: string | undefined;
2125
+ amount?: number | undefined;
2126
+ min_sol_output?: number | undefined;
2127
+ };
2128
+ slot?: number | undefined;
2129
+ signature?: string | undefined;
2130
+ }[] | null | undefined;
2131
+ }>;
2132
+ id: z.ZodObject<{
2133
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2134
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2135
+ }, "strip", z.ZodTypeAny, {
2136
+ mint?: string | null | undefined;
2137
+ bonding_curve?: string | null | undefined;
2138
+ }, {
2139
+ mint?: string | null | undefined;
2140
+ bonding_curve?: string | null | undefined;
2141
+ }>;
2142
+ info: z.ZodObject<{
2143
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2144
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2145
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2146
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2147
+ }, "strip", z.ZodTypeAny, {
2148
+ symbol?: string | null | undefined;
2149
+ name?: string | null | undefined;
2150
+ uri?: string | null | undefined;
2151
+ is_complete?: boolean | null | undefined;
2152
+ }, {
2153
+ symbol?: string | null | undefined;
2154
+ name?: string | null | undefined;
2155
+ uri?: string | null | undefined;
2156
+ is_complete?: boolean | null | undefined;
2157
+ }>;
2158
+ reserves: z.ZodObject<{
2159
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2160
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2161
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2162
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2163
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2164
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2165
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2166
+ }, "strip", z.ZodTypeAny, {
2167
+ virtual_token_reserves?: number | null | undefined;
2168
+ virtual_sol_reserves?: number | null | undefined;
2169
+ real_token_reserves?: number | null | undefined;
2170
+ real_sol_reserves?: number | null | undefined;
2171
+ token_total_supply?: number | null | undefined;
2172
+ current_price_sol?: number | null | undefined;
2173
+ market_cap_sol?: number | null | undefined;
2174
+ }, {
2175
+ virtual_token_reserves?: number | null | undefined;
2176
+ virtual_sol_reserves?: number | null | undefined;
2177
+ real_token_reserves?: number | null | undefined;
2178
+ real_sol_reserves?: number | null | undefined;
2179
+ token_total_supply?: number | null | undefined;
2180
+ current_price_sol?: number | null | undefined;
2181
+ market_cap_sol?: number | null | undefined;
2182
+ }>;
2183
+ trading: z.ZodObject<{
2184
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2185
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2186
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2187
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2188
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2189
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2190
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2191
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2192
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2193
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2194
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2195
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2196
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2197
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2198
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2199
+ }, "strip", z.ZodTypeAny, {
2200
+ average_trade_size?: number | null | undefined;
2201
+ buy_count?: number | null | undefined;
2202
+ largest_trade?: number | null | undefined;
2203
+ last_trade_price?: number | null | undefined;
2204
+ last_trade_timestamp?: number | null | undefined;
2205
+ last_whale_address?: string | null | undefined;
2206
+ sell_count?: number | null | undefined;
2207
+ smallest_trade?: number | null | undefined;
2208
+ total_buy_exact_sol_volume?: number | null | undefined;
2209
+ total_buy_volume?: number | null | undefined;
2210
+ total_sell_volume?: number | null | undefined;
2211
+ total_trades?: number | null | undefined;
2212
+ total_volume?: number | null | undefined;
2213
+ unique_traders?: number | null | undefined;
2214
+ whale_trade_count?: number | null | undefined;
2215
+ }, {
2216
+ average_trade_size?: number | null | undefined;
2217
+ buy_count?: number | null | undefined;
2218
+ largest_trade?: number | null | undefined;
2219
+ last_trade_price?: number | null | undefined;
2220
+ last_trade_timestamp?: number | null | undefined;
2221
+ last_whale_address?: string | null | undefined;
2222
+ sell_count?: number | null | undefined;
2223
+ smallest_trade?: number | null | undefined;
2224
+ total_buy_exact_sol_volume?: number | null | undefined;
2225
+ total_buy_volume?: number | null | undefined;
2226
+ total_sell_volume?: number | null | undefined;
2227
+ total_trades?: number | null | undefined;
2228
+ total_volume?: number | null | undefined;
2229
+ unique_traders?: number | null | undefined;
2230
+ whale_trade_count?: number | null | undefined;
2231
+ }>;
2232
+ bonding_curve_snapshot: z.ZodObject<{
2233
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
2234
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
2235
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
2236
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
2237
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
2238
+ complete: z.ZodOptional<z.ZodBoolean>;
2239
+ creator: z.ZodOptional<z.ZodString>;
2240
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ creator?: string | undefined;
2243
+ virtual_token_reserves?: number | undefined;
2244
+ virtual_sol_reserves?: number | undefined;
2245
+ real_token_reserves?: number | undefined;
2246
+ real_sol_reserves?: number | undefined;
2247
+ token_total_supply?: number | undefined;
2248
+ complete?: boolean | undefined;
2249
+ is_mayhem_mode?: boolean | undefined;
2250
+ }, {
2251
+ creator?: string | undefined;
2252
+ virtual_token_reserves?: number | undefined;
2253
+ virtual_sol_reserves?: number | undefined;
2254
+ real_token_reserves?: number | undefined;
2255
+ real_sol_reserves?: number | undefined;
2256
+ token_total_supply?: number | undefined;
2257
+ complete?: boolean | undefined;
2258
+ is_mayhem_mode?: boolean | undefined;
2259
+ }>;
2260
+ }, "strip", z.ZodTypeAny, {
2261
+ events: {
2262
+ buys?: {
2263
+ timestamp: number;
2264
+ data: {
2265
+ mint?: string | undefined;
2266
+ bonding_curve?: string | undefined;
2267
+ associated_bonding_curve?: string | undefined;
2268
+ global?: string | undefined;
2269
+ user?: string | undefined;
2270
+ system_program?: string | undefined;
2271
+ token_program?: string | undefined;
2272
+ event_authority?: string | undefined;
2273
+ program?: string | undefined;
2274
+ fee_recipient?: string | undefined;
2275
+ associated_user?: string | undefined;
2276
+ creator_vault?: string | undefined;
2277
+ global_volume_accumulator?: string | undefined;
2278
+ user_volume_accumulator?: string | undefined;
2279
+ fee_config?: string | undefined;
2280
+ fee_program?: string | undefined;
2281
+ amount?: number | undefined;
2282
+ max_sol_cost?: number | undefined;
2283
+ track_volume?: Record<string, any> | undefined;
2284
+ };
2285
+ slot?: number | undefined;
2286
+ signature?: string | undefined;
2287
+ }[] | null | undefined;
2288
+ buys_exact_sol?: any[] | null | undefined;
2289
+ create?: {
2290
+ symbol?: string | undefined;
2291
+ mint?: string | undefined;
2292
+ mint_authority?: string | undefined;
2293
+ bonding_curve?: string | undefined;
2294
+ associated_bonding_curve?: string | undefined;
2295
+ global?: string | undefined;
2296
+ mpl_token_metadata?: string | undefined;
2297
+ metadata?: string | undefined;
2298
+ user?: string | undefined;
2299
+ system_program?: string | undefined;
2300
+ token_program?: string | undefined;
2301
+ associated_token_program?: string | undefined;
2302
+ rent?: string | undefined;
2303
+ event_authority?: string | undefined;
2304
+ program?: string | undefined;
2305
+ name?: string | undefined;
2306
+ uri?: string | undefined;
2307
+ creator?: string | undefined;
2308
+ } | null | undefined;
2309
+ create_v2?: Record<string, any> | null | undefined;
2310
+ sells?: {
2311
+ timestamp: number;
2312
+ data: {
2313
+ mint?: string | undefined;
2314
+ bonding_curve?: string | undefined;
2315
+ associated_bonding_curve?: string | undefined;
2316
+ global?: string | undefined;
2317
+ user?: string | undefined;
2318
+ system_program?: string | undefined;
2319
+ token_program?: string | undefined;
2320
+ event_authority?: string | undefined;
2321
+ program?: string | undefined;
2322
+ fee_recipient?: string | undefined;
2323
+ associated_user?: string | undefined;
2324
+ creator_vault?: string | undefined;
2325
+ fee_config?: string | undefined;
2326
+ fee_program?: string | undefined;
2327
+ amount?: number | undefined;
2328
+ min_sol_output?: number | undefined;
2329
+ };
2330
+ slot?: number | undefined;
2331
+ signature?: string | undefined;
2332
+ }[] | null | undefined;
2333
+ };
2334
+ id: {
2335
+ mint?: string | null | undefined;
2336
+ bonding_curve?: string | null | undefined;
2337
+ };
2338
+ info: {
2339
+ symbol?: string | null | undefined;
2340
+ name?: string | null | undefined;
2341
+ uri?: string | null | undefined;
2342
+ is_complete?: boolean | null | undefined;
2343
+ };
2344
+ reserves: {
2345
+ virtual_token_reserves?: number | null | undefined;
2346
+ virtual_sol_reserves?: number | null | undefined;
2347
+ real_token_reserves?: number | null | undefined;
2348
+ real_sol_reserves?: number | null | undefined;
2349
+ token_total_supply?: number | null | undefined;
2350
+ current_price_sol?: number | null | undefined;
2351
+ market_cap_sol?: number | null | undefined;
2352
+ };
2353
+ trading: {
2354
+ average_trade_size?: number | null | undefined;
2355
+ buy_count?: number | null | undefined;
2356
+ largest_trade?: number | null | undefined;
2357
+ last_trade_price?: number | null | undefined;
2358
+ last_trade_timestamp?: number | null | undefined;
2359
+ last_whale_address?: string | null | undefined;
2360
+ sell_count?: number | null | undefined;
2361
+ smallest_trade?: number | null | undefined;
2362
+ total_buy_exact_sol_volume?: number | null | undefined;
2363
+ total_buy_volume?: number | null | undefined;
2364
+ total_sell_volume?: number | null | undefined;
2365
+ total_trades?: number | null | undefined;
2366
+ total_volume?: number | null | undefined;
2367
+ unique_traders?: number | null | undefined;
2368
+ whale_trade_count?: number | null | undefined;
2369
+ };
2370
+ bonding_curve_snapshot: {
2371
+ creator?: string | undefined;
2372
+ virtual_token_reserves?: number | undefined;
2373
+ virtual_sol_reserves?: number | undefined;
2374
+ real_token_reserves?: number | undefined;
2375
+ real_sol_reserves?: number | undefined;
2376
+ token_total_supply?: number | undefined;
2377
+ complete?: boolean | undefined;
2378
+ is_mayhem_mode?: boolean | undefined;
2379
+ };
2380
+ }, {
2381
+ events: {
2382
+ buys?: {
2383
+ timestamp: number;
2384
+ data: {
2385
+ mint?: string | undefined;
2386
+ bonding_curve?: string | undefined;
2387
+ associated_bonding_curve?: string | undefined;
2388
+ global?: string | undefined;
2389
+ user?: string | undefined;
2390
+ system_program?: string | undefined;
2391
+ token_program?: string | undefined;
2392
+ event_authority?: string | undefined;
2393
+ program?: string | undefined;
2394
+ fee_recipient?: string | undefined;
2395
+ associated_user?: string | undefined;
2396
+ creator_vault?: string | undefined;
2397
+ global_volume_accumulator?: string | undefined;
2398
+ user_volume_accumulator?: string | undefined;
2399
+ fee_config?: string | undefined;
2400
+ fee_program?: string | undefined;
2401
+ amount?: number | undefined;
2402
+ max_sol_cost?: number | undefined;
2403
+ track_volume?: Record<string, any> | undefined;
2404
+ };
2405
+ slot?: number | undefined;
2406
+ signature?: string | undefined;
2407
+ }[] | null | undefined;
2408
+ buys_exact_sol?: any[] | null | undefined;
2409
+ create?: {
2410
+ symbol?: string | undefined;
2411
+ mint?: string | undefined;
2412
+ mint_authority?: string | undefined;
2413
+ bonding_curve?: string | undefined;
2414
+ associated_bonding_curve?: string | undefined;
2415
+ global?: string | undefined;
2416
+ mpl_token_metadata?: string | undefined;
2417
+ metadata?: string | undefined;
2418
+ user?: string | undefined;
2419
+ system_program?: string | undefined;
2420
+ token_program?: string | undefined;
2421
+ associated_token_program?: string | undefined;
2422
+ rent?: string | undefined;
2423
+ event_authority?: string | undefined;
2424
+ program?: string | undefined;
2425
+ name?: string | undefined;
2426
+ uri?: string | undefined;
2427
+ creator?: string | undefined;
2428
+ } | null | undefined;
2429
+ create_v2?: Record<string, any> | null | undefined;
2430
+ sells?: {
2431
+ timestamp: number;
2432
+ data: {
2433
+ mint?: string | undefined;
2434
+ bonding_curve?: string | undefined;
2435
+ associated_bonding_curve?: string | undefined;
2436
+ global?: string | undefined;
2437
+ user?: string | undefined;
2438
+ system_program?: string | undefined;
2439
+ token_program?: string | undefined;
2440
+ event_authority?: string | undefined;
2441
+ program?: string | undefined;
2442
+ fee_recipient?: string | undefined;
2443
+ associated_user?: string | undefined;
2444
+ creator_vault?: string | undefined;
2445
+ fee_config?: string | undefined;
2446
+ fee_program?: string | undefined;
2447
+ amount?: number | undefined;
2448
+ min_sol_output?: number | undefined;
2449
+ };
2450
+ slot?: number | undefined;
2451
+ signature?: string | undefined;
2452
+ }[] | null | undefined;
2453
+ };
2454
+ id: {
2455
+ mint?: string | null | undefined;
2456
+ bonding_curve?: string | null | undefined;
2457
+ };
2458
+ info: {
2459
+ symbol?: string | null | undefined;
2460
+ name?: string | null | undefined;
2461
+ uri?: string | null | undefined;
2462
+ is_complete?: boolean | null | undefined;
2463
+ };
2464
+ reserves: {
2465
+ virtual_token_reserves?: number | null | undefined;
2466
+ virtual_sol_reserves?: number | null | undefined;
2467
+ real_token_reserves?: number | null | undefined;
2468
+ real_sol_reserves?: number | null | undefined;
2469
+ token_total_supply?: number | null | undefined;
2470
+ current_price_sol?: number | null | undefined;
2471
+ market_cap_sol?: number | null | undefined;
2472
+ };
2473
+ trading: {
2474
+ average_trade_size?: number | null | undefined;
2475
+ buy_count?: number | null | undefined;
2476
+ largest_trade?: number | null | undefined;
2477
+ last_trade_price?: number | null | undefined;
2478
+ last_trade_timestamp?: number | null | undefined;
2479
+ last_whale_address?: string | null | undefined;
2480
+ sell_count?: number | null | undefined;
2481
+ smallest_trade?: number | null | undefined;
2482
+ total_buy_exact_sol_volume?: number | null | undefined;
2483
+ total_buy_volume?: number | null | undefined;
2484
+ total_sell_volume?: number | null | undefined;
2485
+ total_trades?: number | null | undefined;
2486
+ total_volume?: number | null | undefined;
2487
+ unique_traders?: number | null | undefined;
2488
+ whale_trade_count?: number | null | undefined;
2489
+ };
2490
+ bonding_curve_snapshot: {
2491
+ creator?: string | undefined;
2492
+ virtual_token_reserves?: number | undefined;
2493
+ virtual_sol_reserves?: number | undefined;
2494
+ real_token_reserves?: number | undefined;
2495
+ real_sol_reserves?: number | undefined;
2496
+ token_total_supply?: number | undefined;
2497
+ complete?: boolean | undefined;
2498
+ is_mayhem_mode?: boolean | undefined;
2499
+ };
2500
+ }>;
150
2501
  /** View definition with embedded entity type */
151
2502
  interface ViewDef<T, TMode extends 'state' | 'list'> {
152
2503
  readonly mode: TMode;
@@ -154,9 +2505,9 @@ interface ViewDef<T, TMode extends 'state' | 'list'> {
154
2505
  /** Phantom field for type inference - not present at runtime */
155
2506
  readonly _entity?: T;
156
2507
  }
157
- /** Stack definition for PumpfunToken */
158
- declare const PUMPFUNTOKEN_STACK: {
159
- readonly name: "pumpfun-token";
2508
+ /** Stack definition for PumpfunStream with 1 entities */
2509
+ declare const PUMPFUN_STREAM_STACK: {
2510
+ readonly name: "pumpfun-stream";
160
2511
  readonly url: "wss://pumpfun.stack.usehyperstack.com";
161
2512
  readonly views: {
162
2513
  readonly PumpfunToken: {
@@ -164,8 +2515,2393 @@ declare const PUMPFUNTOKEN_STACK: {
164
2515
  readonly list: ViewDef<PumpfunToken, "list">;
165
2516
  };
166
2517
  };
2518
+ readonly schemas: {
2519
+ readonly BondingCurve: z.ZodObject<{
2520
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
2521
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
2522
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
2523
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
2524
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
2525
+ complete: z.ZodOptional<z.ZodBoolean>;
2526
+ creator: z.ZodOptional<z.ZodString>;
2527
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
2528
+ }, "strip", z.ZodTypeAny, {
2529
+ creator?: string | undefined;
2530
+ virtual_token_reserves?: number | undefined;
2531
+ virtual_sol_reserves?: number | undefined;
2532
+ real_token_reserves?: number | undefined;
2533
+ real_sol_reserves?: number | undefined;
2534
+ token_total_supply?: number | undefined;
2535
+ complete?: boolean | undefined;
2536
+ is_mayhem_mode?: boolean | undefined;
2537
+ }, {
2538
+ creator?: string | undefined;
2539
+ virtual_token_reserves?: number | undefined;
2540
+ virtual_sol_reserves?: number | undefined;
2541
+ real_token_reserves?: number | undefined;
2542
+ real_sol_reserves?: number | undefined;
2543
+ token_total_supply?: number | undefined;
2544
+ complete?: boolean | undefined;
2545
+ is_mayhem_mode?: boolean | undefined;
2546
+ }>;
2547
+ readonly Buy: z.ZodObject<{
2548
+ global: z.ZodOptional<z.ZodString>;
2549
+ fee_recipient: z.ZodOptional<z.ZodString>;
2550
+ mint: z.ZodOptional<z.ZodString>;
2551
+ bonding_curve: z.ZodOptional<z.ZodString>;
2552
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
2553
+ associated_user: z.ZodOptional<z.ZodString>;
2554
+ user: z.ZodOptional<z.ZodString>;
2555
+ system_program: z.ZodOptional<z.ZodString>;
2556
+ token_program: z.ZodOptional<z.ZodString>;
2557
+ creator_vault: z.ZodOptional<z.ZodString>;
2558
+ event_authority: z.ZodOptional<z.ZodString>;
2559
+ program: z.ZodOptional<z.ZodString>;
2560
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
2561
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
2562
+ fee_config: z.ZodOptional<z.ZodString>;
2563
+ fee_program: z.ZodOptional<z.ZodString>;
2564
+ amount: z.ZodOptional<z.ZodNumber>;
2565
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
2566
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2567
+ }, "strip", z.ZodTypeAny, {
2568
+ mint?: string | undefined;
2569
+ bonding_curve?: string | undefined;
2570
+ associated_bonding_curve?: string | undefined;
2571
+ global?: string | undefined;
2572
+ user?: string | undefined;
2573
+ system_program?: string | undefined;
2574
+ token_program?: string | undefined;
2575
+ event_authority?: string | undefined;
2576
+ program?: string | undefined;
2577
+ fee_recipient?: string | undefined;
2578
+ associated_user?: string | undefined;
2579
+ creator_vault?: string | undefined;
2580
+ global_volume_accumulator?: string | undefined;
2581
+ user_volume_accumulator?: string | undefined;
2582
+ fee_config?: string | undefined;
2583
+ fee_program?: string | undefined;
2584
+ amount?: number | undefined;
2585
+ max_sol_cost?: number | undefined;
2586
+ track_volume?: Record<string, any> | undefined;
2587
+ }, {
2588
+ mint?: string | undefined;
2589
+ bonding_curve?: string | undefined;
2590
+ associated_bonding_curve?: string | undefined;
2591
+ global?: string | undefined;
2592
+ user?: string | undefined;
2593
+ system_program?: string | undefined;
2594
+ token_program?: string | undefined;
2595
+ event_authority?: string | undefined;
2596
+ program?: string | undefined;
2597
+ fee_recipient?: string | undefined;
2598
+ associated_user?: string | undefined;
2599
+ creator_vault?: string | undefined;
2600
+ global_volume_accumulator?: string | undefined;
2601
+ user_volume_accumulator?: string | undefined;
2602
+ fee_config?: string | undefined;
2603
+ fee_program?: string | undefined;
2604
+ amount?: number | undefined;
2605
+ max_sol_cost?: number | undefined;
2606
+ track_volume?: Record<string, any> | undefined;
2607
+ }>;
2608
+ readonly BuysEvent: z.ZodObject<{
2609
+ amount: z.ZodNumber;
2610
+ max_sol_cost: z.ZodNumber;
2611
+ }, "strip", z.ZodTypeAny, {
2612
+ amount: number;
2613
+ max_sol_cost: number;
2614
+ }, {
2615
+ amount: number;
2616
+ max_sol_cost: number;
2617
+ }>;
2618
+ readonly BuysExactSolEvent: z.ZodObject<{
2619
+ spendable_sol_in: z.ZodNumber;
2620
+ min_tokens_out: z.ZodNumber;
2621
+ }, "strip", z.ZodTypeAny, {
2622
+ spendable_sol_in: number;
2623
+ min_tokens_out: number;
2624
+ }, {
2625
+ spendable_sol_in: number;
2626
+ min_tokens_out: number;
2627
+ }>;
2628
+ readonly ConfigStatus: z.ZodEnum<["Paused", "Active"]>;
2629
+ readonly CreateEvent: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2630
+ readonly Create: z.ZodObject<{
2631
+ mint: z.ZodOptional<z.ZodString>;
2632
+ mint_authority: z.ZodOptional<z.ZodString>;
2633
+ bonding_curve: z.ZodOptional<z.ZodString>;
2634
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
2635
+ global: z.ZodOptional<z.ZodString>;
2636
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
2637
+ metadata: z.ZodOptional<z.ZodString>;
2638
+ user: z.ZodOptional<z.ZodString>;
2639
+ system_program: z.ZodOptional<z.ZodString>;
2640
+ token_program: z.ZodOptional<z.ZodString>;
2641
+ associated_token_program: z.ZodOptional<z.ZodString>;
2642
+ rent: z.ZodOptional<z.ZodString>;
2643
+ event_authority: z.ZodOptional<z.ZodString>;
2644
+ program: z.ZodOptional<z.ZodString>;
2645
+ name: z.ZodOptional<z.ZodString>;
2646
+ symbol: z.ZodOptional<z.ZodString>;
2647
+ uri: z.ZodOptional<z.ZodString>;
2648
+ creator: z.ZodOptional<z.ZodString>;
2649
+ }, "strip", z.ZodTypeAny, {
2650
+ symbol?: string | undefined;
2651
+ mint?: string | undefined;
2652
+ mint_authority?: string | undefined;
2653
+ bonding_curve?: string | undefined;
2654
+ associated_bonding_curve?: string | undefined;
2655
+ global?: string | undefined;
2656
+ mpl_token_metadata?: string | undefined;
2657
+ metadata?: string | undefined;
2658
+ user?: string | undefined;
2659
+ system_program?: string | undefined;
2660
+ token_program?: string | undefined;
2661
+ associated_token_program?: string | undefined;
2662
+ rent?: string | undefined;
2663
+ event_authority?: string | undefined;
2664
+ program?: string | undefined;
2665
+ name?: string | undefined;
2666
+ uri?: string | undefined;
2667
+ creator?: string | undefined;
2668
+ }, {
2669
+ symbol?: string | undefined;
2670
+ mint?: string | undefined;
2671
+ mint_authority?: string | undefined;
2672
+ bonding_curve?: string | undefined;
2673
+ associated_bonding_curve?: string | undefined;
2674
+ global?: string | undefined;
2675
+ mpl_token_metadata?: string | undefined;
2676
+ metadata?: string | undefined;
2677
+ user?: string | undefined;
2678
+ system_program?: string | undefined;
2679
+ token_program?: string | undefined;
2680
+ associated_token_program?: string | undefined;
2681
+ rent?: string | undefined;
2682
+ event_authority?: string | undefined;
2683
+ program?: string | undefined;
2684
+ name?: string | undefined;
2685
+ uri?: string | undefined;
2686
+ creator?: string | undefined;
2687
+ }>;
2688
+ readonly CreateV2Event: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2689
+ readonly EventWrapper: <T extends z.ZodTypeAny>(data: T) => z.ZodObject<{
2690
+ timestamp: z.ZodNumber;
2691
+ data: T;
2692
+ slot: z.ZodOptional<z.ZodNumber>;
2693
+ signature: z.ZodOptional<z.ZodString>;
2694
+ }, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
2695
+ timestamp: z.ZodNumber;
2696
+ data: T;
2697
+ slot: z.ZodOptional<z.ZodNumber>;
2698
+ signature: z.ZodOptional<z.ZodString>;
2699
+ }>, any> extends infer T_1 ? { [k in keyof T_1]: T_1[k]; } : never, z.baseObjectInputType<{
2700
+ timestamp: z.ZodNumber;
2701
+ data: T;
2702
+ slot: z.ZodOptional<z.ZodNumber>;
2703
+ signature: z.ZodOptional<z.ZodString>;
2704
+ }> extends infer T_2 ? { [k_1 in keyof T_2]: T_2[k_1]; } : never>;
2705
+ readonly PumpfunTokenCompleted: z.ZodObject<{
2706
+ events: z.ZodObject<{
2707
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2708
+ timestamp: z.ZodNumber;
2709
+ data: z.ZodObject<{
2710
+ global: z.ZodOptional<z.ZodString>;
2711
+ fee_recipient: z.ZodOptional<z.ZodString>;
2712
+ mint: z.ZodOptional<z.ZodString>;
2713
+ bonding_curve: z.ZodOptional<z.ZodString>;
2714
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
2715
+ associated_user: z.ZodOptional<z.ZodString>;
2716
+ user: z.ZodOptional<z.ZodString>;
2717
+ system_program: z.ZodOptional<z.ZodString>;
2718
+ token_program: z.ZodOptional<z.ZodString>;
2719
+ creator_vault: z.ZodOptional<z.ZodString>;
2720
+ event_authority: z.ZodOptional<z.ZodString>;
2721
+ program: z.ZodOptional<z.ZodString>;
2722
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
2723
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
2724
+ fee_config: z.ZodOptional<z.ZodString>;
2725
+ fee_program: z.ZodOptional<z.ZodString>;
2726
+ amount: z.ZodOptional<z.ZodNumber>;
2727
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
2728
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2729
+ }, "strip", z.ZodTypeAny, {
2730
+ mint?: string | undefined;
2731
+ bonding_curve?: string | undefined;
2732
+ associated_bonding_curve?: string | undefined;
2733
+ global?: string | undefined;
2734
+ user?: string | undefined;
2735
+ system_program?: string | undefined;
2736
+ token_program?: string | undefined;
2737
+ event_authority?: string | undefined;
2738
+ program?: string | undefined;
2739
+ fee_recipient?: string | undefined;
2740
+ associated_user?: string | undefined;
2741
+ creator_vault?: string | undefined;
2742
+ global_volume_accumulator?: string | undefined;
2743
+ user_volume_accumulator?: string | undefined;
2744
+ fee_config?: string | undefined;
2745
+ fee_program?: string | undefined;
2746
+ amount?: number | undefined;
2747
+ max_sol_cost?: number | undefined;
2748
+ track_volume?: Record<string, any> | undefined;
2749
+ }, {
2750
+ mint?: string | undefined;
2751
+ bonding_curve?: string | undefined;
2752
+ associated_bonding_curve?: string | undefined;
2753
+ global?: string | undefined;
2754
+ user?: string | undefined;
2755
+ system_program?: string | undefined;
2756
+ token_program?: string | undefined;
2757
+ event_authority?: string | undefined;
2758
+ program?: string | undefined;
2759
+ fee_recipient?: string | undefined;
2760
+ associated_user?: string | undefined;
2761
+ creator_vault?: string | undefined;
2762
+ global_volume_accumulator?: string | undefined;
2763
+ user_volume_accumulator?: string | undefined;
2764
+ fee_config?: string | undefined;
2765
+ fee_program?: string | undefined;
2766
+ amount?: number | undefined;
2767
+ max_sol_cost?: number | undefined;
2768
+ track_volume?: Record<string, any> | undefined;
2769
+ }>;
2770
+ slot: z.ZodOptional<z.ZodNumber>;
2771
+ signature: z.ZodOptional<z.ZodString>;
2772
+ }, "strip", z.ZodTypeAny, {
2773
+ timestamp: number;
2774
+ data: {
2775
+ mint?: string | undefined;
2776
+ bonding_curve?: string | undefined;
2777
+ associated_bonding_curve?: string | undefined;
2778
+ global?: string | undefined;
2779
+ user?: string | undefined;
2780
+ system_program?: string | undefined;
2781
+ token_program?: string | undefined;
2782
+ event_authority?: string | undefined;
2783
+ program?: string | undefined;
2784
+ fee_recipient?: string | undefined;
2785
+ associated_user?: string | undefined;
2786
+ creator_vault?: string | undefined;
2787
+ global_volume_accumulator?: string | undefined;
2788
+ user_volume_accumulator?: string | undefined;
2789
+ fee_config?: string | undefined;
2790
+ fee_program?: string | undefined;
2791
+ amount?: number | undefined;
2792
+ max_sol_cost?: number | undefined;
2793
+ track_volume?: Record<string, any> | undefined;
2794
+ };
2795
+ slot?: number | undefined;
2796
+ signature?: string | undefined;
2797
+ }, {
2798
+ timestamp: number;
2799
+ data: {
2800
+ mint?: string | undefined;
2801
+ bonding_curve?: string | undefined;
2802
+ associated_bonding_curve?: string | undefined;
2803
+ global?: string | undefined;
2804
+ user?: string | undefined;
2805
+ system_program?: string | undefined;
2806
+ token_program?: string | undefined;
2807
+ event_authority?: string | undefined;
2808
+ program?: string | undefined;
2809
+ fee_recipient?: string | undefined;
2810
+ associated_user?: string | undefined;
2811
+ creator_vault?: string | undefined;
2812
+ global_volume_accumulator?: string | undefined;
2813
+ user_volume_accumulator?: string | undefined;
2814
+ fee_config?: string | undefined;
2815
+ fee_program?: string | undefined;
2816
+ amount?: number | undefined;
2817
+ max_sol_cost?: number | undefined;
2818
+ track_volume?: Record<string, any> | undefined;
2819
+ };
2820
+ slot?: number | undefined;
2821
+ signature?: string | undefined;
2822
+ }>, "many">>>;
2823
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
2824
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2825
+ mint: z.ZodOptional<z.ZodString>;
2826
+ mint_authority: z.ZodOptional<z.ZodString>;
2827
+ bonding_curve: z.ZodOptional<z.ZodString>;
2828
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
2829
+ global: z.ZodOptional<z.ZodString>;
2830
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
2831
+ metadata: z.ZodOptional<z.ZodString>;
2832
+ user: z.ZodOptional<z.ZodString>;
2833
+ system_program: z.ZodOptional<z.ZodString>;
2834
+ token_program: z.ZodOptional<z.ZodString>;
2835
+ associated_token_program: z.ZodOptional<z.ZodString>;
2836
+ rent: z.ZodOptional<z.ZodString>;
2837
+ event_authority: z.ZodOptional<z.ZodString>;
2838
+ program: z.ZodOptional<z.ZodString>;
2839
+ name: z.ZodOptional<z.ZodString>;
2840
+ symbol: z.ZodOptional<z.ZodString>;
2841
+ uri: z.ZodOptional<z.ZodString>;
2842
+ creator: z.ZodOptional<z.ZodString>;
2843
+ }, "strip", z.ZodTypeAny, {
2844
+ symbol?: string | undefined;
2845
+ mint?: string | undefined;
2846
+ mint_authority?: string | undefined;
2847
+ bonding_curve?: string | undefined;
2848
+ associated_bonding_curve?: string | undefined;
2849
+ global?: string | undefined;
2850
+ mpl_token_metadata?: string | undefined;
2851
+ metadata?: string | undefined;
2852
+ user?: string | undefined;
2853
+ system_program?: string | undefined;
2854
+ token_program?: string | undefined;
2855
+ associated_token_program?: string | undefined;
2856
+ rent?: string | undefined;
2857
+ event_authority?: string | undefined;
2858
+ program?: string | undefined;
2859
+ name?: string | undefined;
2860
+ uri?: string | undefined;
2861
+ creator?: string | undefined;
2862
+ }, {
2863
+ symbol?: string | undefined;
2864
+ mint?: string | undefined;
2865
+ mint_authority?: string | undefined;
2866
+ bonding_curve?: string | undefined;
2867
+ associated_bonding_curve?: string | undefined;
2868
+ global?: string | undefined;
2869
+ mpl_token_metadata?: string | undefined;
2870
+ metadata?: string | undefined;
2871
+ user?: string | undefined;
2872
+ system_program?: string | undefined;
2873
+ token_program?: string | undefined;
2874
+ associated_token_program?: string | undefined;
2875
+ rent?: string | undefined;
2876
+ event_authority?: string | undefined;
2877
+ program?: string | undefined;
2878
+ name?: string | undefined;
2879
+ uri?: string | undefined;
2880
+ creator?: string | undefined;
2881
+ }>>>;
2882
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
2883
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2884
+ timestamp: z.ZodNumber;
2885
+ data: z.ZodObject<{
2886
+ global: z.ZodOptional<z.ZodString>;
2887
+ fee_recipient: z.ZodOptional<z.ZodString>;
2888
+ mint: z.ZodOptional<z.ZodString>;
2889
+ bonding_curve: z.ZodOptional<z.ZodString>;
2890
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
2891
+ associated_user: z.ZodOptional<z.ZodString>;
2892
+ user: z.ZodOptional<z.ZodString>;
2893
+ system_program: z.ZodOptional<z.ZodString>;
2894
+ creator_vault: z.ZodOptional<z.ZodString>;
2895
+ token_program: z.ZodOptional<z.ZodString>;
2896
+ event_authority: z.ZodOptional<z.ZodString>;
2897
+ program: z.ZodOptional<z.ZodString>;
2898
+ fee_config: z.ZodOptional<z.ZodString>;
2899
+ fee_program: z.ZodOptional<z.ZodString>;
2900
+ amount: z.ZodOptional<z.ZodNumber>;
2901
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
2902
+ }, "strip", z.ZodTypeAny, {
2903
+ mint?: string | undefined;
2904
+ bonding_curve?: string | undefined;
2905
+ associated_bonding_curve?: string | undefined;
2906
+ global?: string | undefined;
2907
+ user?: string | undefined;
2908
+ system_program?: string | undefined;
2909
+ token_program?: string | undefined;
2910
+ event_authority?: string | undefined;
2911
+ program?: string | undefined;
2912
+ fee_recipient?: string | undefined;
2913
+ associated_user?: string | undefined;
2914
+ creator_vault?: string | undefined;
2915
+ fee_config?: string | undefined;
2916
+ fee_program?: string | undefined;
2917
+ amount?: number | undefined;
2918
+ min_sol_output?: number | undefined;
2919
+ }, {
2920
+ mint?: string | undefined;
2921
+ bonding_curve?: string | undefined;
2922
+ associated_bonding_curve?: string | undefined;
2923
+ global?: string | undefined;
2924
+ user?: string | undefined;
2925
+ system_program?: string | undefined;
2926
+ token_program?: string | undefined;
2927
+ event_authority?: string | undefined;
2928
+ program?: string | undefined;
2929
+ fee_recipient?: string | undefined;
2930
+ associated_user?: string | undefined;
2931
+ creator_vault?: string | undefined;
2932
+ fee_config?: string | undefined;
2933
+ fee_program?: string | undefined;
2934
+ amount?: number | undefined;
2935
+ min_sol_output?: number | undefined;
2936
+ }>;
2937
+ slot: z.ZodOptional<z.ZodNumber>;
2938
+ signature: z.ZodOptional<z.ZodString>;
2939
+ }, "strip", z.ZodTypeAny, {
2940
+ timestamp: number;
2941
+ data: {
2942
+ mint?: string | undefined;
2943
+ bonding_curve?: string | undefined;
2944
+ associated_bonding_curve?: string | undefined;
2945
+ global?: string | undefined;
2946
+ user?: string | undefined;
2947
+ system_program?: string | undefined;
2948
+ token_program?: string | undefined;
2949
+ event_authority?: string | undefined;
2950
+ program?: string | undefined;
2951
+ fee_recipient?: string | undefined;
2952
+ associated_user?: string | undefined;
2953
+ creator_vault?: string | undefined;
2954
+ fee_config?: string | undefined;
2955
+ fee_program?: string | undefined;
2956
+ amount?: number | undefined;
2957
+ min_sol_output?: number | undefined;
2958
+ };
2959
+ slot?: number | undefined;
2960
+ signature?: string | undefined;
2961
+ }, {
2962
+ timestamp: number;
2963
+ data: {
2964
+ mint?: string | undefined;
2965
+ bonding_curve?: string | undefined;
2966
+ associated_bonding_curve?: string | undefined;
2967
+ global?: string | undefined;
2968
+ user?: string | undefined;
2969
+ system_program?: string | undefined;
2970
+ token_program?: string | undefined;
2971
+ event_authority?: string | undefined;
2972
+ program?: string | undefined;
2973
+ fee_recipient?: string | undefined;
2974
+ associated_user?: string | undefined;
2975
+ creator_vault?: string | undefined;
2976
+ fee_config?: string | undefined;
2977
+ fee_program?: string | undefined;
2978
+ amount?: number | undefined;
2979
+ min_sol_output?: number | undefined;
2980
+ };
2981
+ slot?: number | undefined;
2982
+ signature?: string | undefined;
2983
+ }>, "many">>>;
2984
+ }, "strip", z.ZodTypeAny, {
2985
+ buys?: {
2986
+ timestamp: number;
2987
+ data: {
2988
+ mint?: string | undefined;
2989
+ bonding_curve?: string | undefined;
2990
+ associated_bonding_curve?: string | undefined;
2991
+ global?: string | undefined;
2992
+ user?: string | undefined;
2993
+ system_program?: string | undefined;
2994
+ token_program?: string | undefined;
2995
+ event_authority?: string | undefined;
2996
+ program?: string | undefined;
2997
+ fee_recipient?: string | undefined;
2998
+ associated_user?: string | undefined;
2999
+ creator_vault?: string | undefined;
3000
+ global_volume_accumulator?: string | undefined;
3001
+ user_volume_accumulator?: string | undefined;
3002
+ fee_config?: string | undefined;
3003
+ fee_program?: string | undefined;
3004
+ amount?: number | undefined;
3005
+ max_sol_cost?: number | undefined;
3006
+ track_volume?: Record<string, any> | undefined;
3007
+ };
3008
+ slot?: number | undefined;
3009
+ signature?: string | undefined;
3010
+ }[] | null | undefined;
3011
+ buys_exact_sol?: any[] | null | undefined;
3012
+ create?: {
3013
+ symbol?: string | undefined;
3014
+ mint?: string | undefined;
3015
+ mint_authority?: string | undefined;
3016
+ bonding_curve?: string | undefined;
3017
+ associated_bonding_curve?: string | undefined;
3018
+ global?: string | undefined;
3019
+ mpl_token_metadata?: string | undefined;
3020
+ metadata?: string | undefined;
3021
+ user?: string | undefined;
3022
+ system_program?: string | undefined;
3023
+ token_program?: string | undefined;
3024
+ associated_token_program?: string | undefined;
3025
+ rent?: string | undefined;
3026
+ event_authority?: string | undefined;
3027
+ program?: string | undefined;
3028
+ name?: string | undefined;
3029
+ uri?: string | undefined;
3030
+ creator?: string | undefined;
3031
+ } | null | undefined;
3032
+ create_v2?: Record<string, any> | null | undefined;
3033
+ sells?: {
3034
+ timestamp: number;
3035
+ data: {
3036
+ mint?: string | undefined;
3037
+ bonding_curve?: string | undefined;
3038
+ associated_bonding_curve?: string | undefined;
3039
+ global?: string | undefined;
3040
+ user?: string | undefined;
3041
+ system_program?: string | undefined;
3042
+ token_program?: string | undefined;
3043
+ event_authority?: string | undefined;
3044
+ program?: string | undefined;
3045
+ fee_recipient?: string | undefined;
3046
+ associated_user?: string | undefined;
3047
+ creator_vault?: string | undefined;
3048
+ fee_config?: string | undefined;
3049
+ fee_program?: string | undefined;
3050
+ amount?: number | undefined;
3051
+ min_sol_output?: number | undefined;
3052
+ };
3053
+ slot?: number | undefined;
3054
+ signature?: string | undefined;
3055
+ }[] | null | undefined;
3056
+ }, {
3057
+ buys?: {
3058
+ timestamp: number;
3059
+ data: {
3060
+ mint?: string | undefined;
3061
+ bonding_curve?: string | undefined;
3062
+ associated_bonding_curve?: string | undefined;
3063
+ global?: string | undefined;
3064
+ user?: string | undefined;
3065
+ system_program?: string | undefined;
3066
+ token_program?: string | undefined;
3067
+ event_authority?: string | undefined;
3068
+ program?: string | undefined;
3069
+ fee_recipient?: string | undefined;
3070
+ associated_user?: string | undefined;
3071
+ creator_vault?: string | undefined;
3072
+ global_volume_accumulator?: string | undefined;
3073
+ user_volume_accumulator?: string | undefined;
3074
+ fee_config?: string | undefined;
3075
+ fee_program?: string | undefined;
3076
+ amount?: number | undefined;
3077
+ max_sol_cost?: number | undefined;
3078
+ track_volume?: Record<string, any> | undefined;
3079
+ };
3080
+ slot?: number | undefined;
3081
+ signature?: string | undefined;
3082
+ }[] | null | undefined;
3083
+ buys_exact_sol?: any[] | null | undefined;
3084
+ create?: {
3085
+ symbol?: string | undefined;
3086
+ mint?: string | undefined;
3087
+ mint_authority?: string | undefined;
3088
+ bonding_curve?: string | undefined;
3089
+ associated_bonding_curve?: string | undefined;
3090
+ global?: string | undefined;
3091
+ mpl_token_metadata?: string | undefined;
3092
+ metadata?: string | undefined;
3093
+ user?: string | undefined;
3094
+ system_program?: string | undefined;
3095
+ token_program?: string | undefined;
3096
+ associated_token_program?: string | undefined;
3097
+ rent?: string | undefined;
3098
+ event_authority?: string | undefined;
3099
+ program?: string | undefined;
3100
+ name?: string | undefined;
3101
+ uri?: string | undefined;
3102
+ creator?: string | undefined;
3103
+ } | null | undefined;
3104
+ create_v2?: Record<string, any> | null | undefined;
3105
+ sells?: {
3106
+ timestamp: number;
3107
+ data: {
3108
+ mint?: string | undefined;
3109
+ bonding_curve?: string | undefined;
3110
+ associated_bonding_curve?: string | undefined;
3111
+ global?: string | undefined;
3112
+ user?: string | undefined;
3113
+ system_program?: string | undefined;
3114
+ token_program?: string | undefined;
3115
+ event_authority?: string | undefined;
3116
+ program?: string | undefined;
3117
+ fee_recipient?: string | undefined;
3118
+ associated_user?: string | undefined;
3119
+ creator_vault?: string | undefined;
3120
+ fee_config?: string | undefined;
3121
+ fee_program?: string | undefined;
3122
+ amount?: number | undefined;
3123
+ min_sol_output?: number | undefined;
3124
+ };
3125
+ slot?: number | undefined;
3126
+ signature?: string | undefined;
3127
+ }[] | null | undefined;
3128
+ }>;
3129
+ id: z.ZodObject<{
3130
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3131
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3132
+ }, "strip", z.ZodTypeAny, {
3133
+ mint?: string | null | undefined;
3134
+ bonding_curve?: string | null | undefined;
3135
+ }, {
3136
+ mint?: string | null | undefined;
3137
+ bonding_curve?: string | null | undefined;
3138
+ }>;
3139
+ info: z.ZodObject<{
3140
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3141
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3142
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3143
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3144
+ }, "strip", z.ZodTypeAny, {
3145
+ symbol?: string | null | undefined;
3146
+ name?: string | null | undefined;
3147
+ uri?: string | null | undefined;
3148
+ is_complete?: boolean | null | undefined;
3149
+ }, {
3150
+ symbol?: string | null | undefined;
3151
+ name?: string | null | undefined;
3152
+ uri?: string | null | undefined;
3153
+ is_complete?: boolean | null | undefined;
3154
+ }>;
3155
+ reserves: z.ZodObject<{
3156
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3157
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3158
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3159
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3160
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3161
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3162
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3163
+ }, "strip", z.ZodTypeAny, {
3164
+ virtual_token_reserves?: number | null | undefined;
3165
+ virtual_sol_reserves?: number | null | undefined;
3166
+ real_token_reserves?: number | null | undefined;
3167
+ real_sol_reserves?: number | null | undefined;
3168
+ token_total_supply?: number | null | undefined;
3169
+ current_price_sol?: number | null | undefined;
3170
+ market_cap_sol?: number | null | undefined;
3171
+ }, {
3172
+ virtual_token_reserves?: number | null | undefined;
3173
+ virtual_sol_reserves?: number | null | undefined;
3174
+ real_token_reserves?: number | null | undefined;
3175
+ real_sol_reserves?: number | null | undefined;
3176
+ token_total_supply?: number | null | undefined;
3177
+ current_price_sol?: number | null | undefined;
3178
+ market_cap_sol?: number | null | undefined;
3179
+ }>;
3180
+ trading: z.ZodObject<{
3181
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3182
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3183
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3184
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3185
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3186
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3187
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3188
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3189
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3190
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3191
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3192
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3193
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3194
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3195
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3196
+ }, "strip", z.ZodTypeAny, {
3197
+ average_trade_size?: number | null | undefined;
3198
+ buy_count?: number | null | undefined;
3199
+ largest_trade?: number | null | undefined;
3200
+ last_trade_price?: number | null | undefined;
3201
+ last_trade_timestamp?: number | null | undefined;
3202
+ last_whale_address?: string | null | undefined;
3203
+ sell_count?: number | null | undefined;
3204
+ smallest_trade?: number | null | undefined;
3205
+ total_buy_exact_sol_volume?: number | null | undefined;
3206
+ total_buy_volume?: number | null | undefined;
3207
+ total_sell_volume?: number | null | undefined;
3208
+ total_trades?: number | null | undefined;
3209
+ total_volume?: number | null | undefined;
3210
+ unique_traders?: number | null | undefined;
3211
+ whale_trade_count?: number | null | undefined;
3212
+ }, {
3213
+ average_trade_size?: number | null | undefined;
3214
+ buy_count?: number | null | undefined;
3215
+ largest_trade?: number | null | undefined;
3216
+ last_trade_price?: number | null | undefined;
3217
+ last_trade_timestamp?: number | null | undefined;
3218
+ last_whale_address?: string | null | undefined;
3219
+ sell_count?: number | null | undefined;
3220
+ smallest_trade?: number | null | undefined;
3221
+ total_buy_exact_sol_volume?: number | null | undefined;
3222
+ total_buy_volume?: number | null | undefined;
3223
+ total_sell_volume?: number | null | undefined;
3224
+ total_trades?: number | null | undefined;
3225
+ total_volume?: number | null | undefined;
3226
+ unique_traders?: number | null | undefined;
3227
+ whale_trade_count?: number | null | undefined;
3228
+ }>;
3229
+ bonding_curve_snapshot: z.ZodObject<{
3230
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
3231
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
3232
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
3233
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
3234
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
3235
+ complete: z.ZodOptional<z.ZodBoolean>;
3236
+ creator: z.ZodOptional<z.ZodString>;
3237
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
3238
+ }, "strip", z.ZodTypeAny, {
3239
+ creator?: string | undefined;
3240
+ virtual_token_reserves?: number | undefined;
3241
+ virtual_sol_reserves?: number | undefined;
3242
+ real_token_reserves?: number | undefined;
3243
+ real_sol_reserves?: number | undefined;
3244
+ token_total_supply?: number | undefined;
3245
+ complete?: boolean | undefined;
3246
+ is_mayhem_mode?: boolean | undefined;
3247
+ }, {
3248
+ creator?: string | undefined;
3249
+ virtual_token_reserves?: number | undefined;
3250
+ virtual_sol_reserves?: number | undefined;
3251
+ real_token_reserves?: number | undefined;
3252
+ real_sol_reserves?: number | undefined;
3253
+ token_total_supply?: number | undefined;
3254
+ complete?: boolean | undefined;
3255
+ is_mayhem_mode?: boolean | undefined;
3256
+ }>;
3257
+ }, "strip", z.ZodTypeAny, {
3258
+ events: {
3259
+ buys?: {
3260
+ timestamp: number;
3261
+ data: {
3262
+ mint?: string | undefined;
3263
+ bonding_curve?: string | undefined;
3264
+ associated_bonding_curve?: string | undefined;
3265
+ global?: string | undefined;
3266
+ user?: string | undefined;
3267
+ system_program?: string | undefined;
3268
+ token_program?: string | undefined;
3269
+ event_authority?: string | undefined;
3270
+ program?: string | undefined;
3271
+ fee_recipient?: string | undefined;
3272
+ associated_user?: string | undefined;
3273
+ creator_vault?: string | undefined;
3274
+ global_volume_accumulator?: string | undefined;
3275
+ user_volume_accumulator?: string | undefined;
3276
+ fee_config?: string | undefined;
3277
+ fee_program?: string | undefined;
3278
+ amount?: number | undefined;
3279
+ max_sol_cost?: number | undefined;
3280
+ track_volume?: Record<string, any> | undefined;
3281
+ };
3282
+ slot?: number | undefined;
3283
+ signature?: string | undefined;
3284
+ }[] | null | undefined;
3285
+ buys_exact_sol?: any[] | null | undefined;
3286
+ create?: {
3287
+ symbol?: string | undefined;
3288
+ mint?: string | undefined;
3289
+ mint_authority?: string | undefined;
3290
+ bonding_curve?: string | undefined;
3291
+ associated_bonding_curve?: string | undefined;
3292
+ global?: string | undefined;
3293
+ mpl_token_metadata?: string | undefined;
3294
+ metadata?: string | undefined;
3295
+ user?: string | undefined;
3296
+ system_program?: string | undefined;
3297
+ token_program?: string | undefined;
3298
+ associated_token_program?: string | undefined;
3299
+ rent?: string | undefined;
3300
+ event_authority?: string | undefined;
3301
+ program?: string | undefined;
3302
+ name?: string | undefined;
3303
+ uri?: string | undefined;
3304
+ creator?: string | undefined;
3305
+ } | null | undefined;
3306
+ create_v2?: Record<string, any> | null | undefined;
3307
+ sells?: {
3308
+ timestamp: number;
3309
+ data: {
3310
+ mint?: string | undefined;
3311
+ bonding_curve?: string | undefined;
3312
+ associated_bonding_curve?: string | undefined;
3313
+ global?: string | undefined;
3314
+ user?: string | undefined;
3315
+ system_program?: string | undefined;
3316
+ token_program?: string | undefined;
3317
+ event_authority?: string | undefined;
3318
+ program?: string | undefined;
3319
+ fee_recipient?: string | undefined;
3320
+ associated_user?: string | undefined;
3321
+ creator_vault?: string | undefined;
3322
+ fee_config?: string | undefined;
3323
+ fee_program?: string | undefined;
3324
+ amount?: number | undefined;
3325
+ min_sol_output?: number | undefined;
3326
+ };
3327
+ slot?: number | undefined;
3328
+ signature?: string | undefined;
3329
+ }[] | null | undefined;
3330
+ };
3331
+ id: {
3332
+ mint?: string | null | undefined;
3333
+ bonding_curve?: string | null | undefined;
3334
+ };
3335
+ info: {
3336
+ symbol?: string | null | undefined;
3337
+ name?: string | null | undefined;
3338
+ uri?: string | null | undefined;
3339
+ is_complete?: boolean | null | undefined;
3340
+ };
3341
+ reserves: {
3342
+ virtual_token_reserves?: number | null | undefined;
3343
+ virtual_sol_reserves?: number | null | undefined;
3344
+ real_token_reserves?: number | null | undefined;
3345
+ real_sol_reserves?: number | null | undefined;
3346
+ token_total_supply?: number | null | undefined;
3347
+ current_price_sol?: number | null | undefined;
3348
+ market_cap_sol?: number | null | undefined;
3349
+ };
3350
+ trading: {
3351
+ average_trade_size?: number | null | undefined;
3352
+ buy_count?: number | null | undefined;
3353
+ largest_trade?: number | null | undefined;
3354
+ last_trade_price?: number | null | undefined;
3355
+ last_trade_timestamp?: number | null | undefined;
3356
+ last_whale_address?: string | null | undefined;
3357
+ sell_count?: number | null | undefined;
3358
+ smallest_trade?: number | null | undefined;
3359
+ total_buy_exact_sol_volume?: number | null | undefined;
3360
+ total_buy_volume?: number | null | undefined;
3361
+ total_sell_volume?: number | null | undefined;
3362
+ total_trades?: number | null | undefined;
3363
+ total_volume?: number | null | undefined;
3364
+ unique_traders?: number | null | undefined;
3365
+ whale_trade_count?: number | null | undefined;
3366
+ };
3367
+ bonding_curve_snapshot: {
3368
+ creator?: string | undefined;
3369
+ virtual_token_reserves?: number | undefined;
3370
+ virtual_sol_reserves?: number | undefined;
3371
+ real_token_reserves?: number | undefined;
3372
+ real_sol_reserves?: number | undefined;
3373
+ token_total_supply?: number | undefined;
3374
+ complete?: boolean | undefined;
3375
+ is_mayhem_mode?: boolean | undefined;
3376
+ };
3377
+ }, {
3378
+ events: {
3379
+ buys?: {
3380
+ timestamp: number;
3381
+ data: {
3382
+ mint?: string | undefined;
3383
+ bonding_curve?: string | undefined;
3384
+ associated_bonding_curve?: string | undefined;
3385
+ global?: string | undefined;
3386
+ user?: string | undefined;
3387
+ system_program?: string | undefined;
3388
+ token_program?: string | undefined;
3389
+ event_authority?: string | undefined;
3390
+ program?: string | undefined;
3391
+ fee_recipient?: string | undefined;
3392
+ associated_user?: string | undefined;
3393
+ creator_vault?: string | undefined;
3394
+ global_volume_accumulator?: string | undefined;
3395
+ user_volume_accumulator?: string | undefined;
3396
+ fee_config?: string | undefined;
3397
+ fee_program?: string | undefined;
3398
+ amount?: number | undefined;
3399
+ max_sol_cost?: number | undefined;
3400
+ track_volume?: Record<string, any> | undefined;
3401
+ };
3402
+ slot?: number | undefined;
3403
+ signature?: string | undefined;
3404
+ }[] | null | undefined;
3405
+ buys_exact_sol?: any[] | null | undefined;
3406
+ create?: {
3407
+ symbol?: string | undefined;
3408
+ mint?: string | undefined;
3409
+ mint_authority?: string | undefined;
3410
+ bonding_curve?: string | undefined;
3411
+ associated_bonding_curve?: string | undefined;
3412
+ global?: string | undefined;
3413
+ mpl_token_metadata?: string | undefined;
3414
+ metadata?: string | undefined;
3415
+ user?: string | undefined;
3416
+ system_program?: string | undefined;
3417
+ token_program?: string | undefined;
3418
+ associated_token_program?: string | undefined;
3419
+ rent?: string | undefined;
3420
+ event_authority?: string | undefined;
3421
+ program?: string | undefined;
3422
+ name?: string | undefined;
3423
+ uri?: string | undefined;
3424
+ creator?: string | undefined;
3425
+ } | null | undefined;
3426
+ create_v2?: Record<string, any> | null | undefined;
3427
+ sells?: {
3428
+ timestamp: number;
3429
+ data: {
3430
+ mint?: string | undefined;
3431
+ bonding_curve?: string | undefined;
3432
+ associated_bonding_curve?: string | undefined;
3433
+ global?: string | undefined;
3434
+ user?: string | undefined;
3435
+ system_program?: string | undefined;
3436
+ token_program?: string | undefined;
3437
+ event_authority?: string | undefined;
3438
+ program?: string | undefined;
3439
+ fee_recipient?: string | undefined;
3440
+ associated_user?: string | undefined;
3441
+ creator_vault?: string | undefined;
3442
+ fee_config?: string | undefined;
3443
+ fee_program?: string | undefined;
3444
+ amount?: number | undefined;
3445
+ min_sol_output?: number | undefined;
3446
+ };
3447
+ slot?: number | undefined;
3448
+ signature?: string | undefined;
3449
+ }[] | null | undefined;
3450
+ };
3451
+ id: {
3452
+ mint?: string | null | undefined;
3453
+ bonding_curve?: string | null | undefined;
3454
+ };
3455
+ info: {
3456
+ symbol?: string | null | undefined;
3457
+ name?: string | null | undefined;
3458
+ uri?: string | null | undefined;
3459
+ is_complete?: boolean | null | undefined;
3460
+ };
3461
+ reserves: {
3462
+ virtual_token_reserves?: number | null | undefined;
3463
+ virtual_sol_reserves?: number | null | undefined;
3464
+ real_token_reserves?: number | null | undefined;
3465
+ real_sol_reserves?: number | null | undefined;
3466
+ token_total_supply?: number | null | undefined;
3467
+ current_price_sol?: number | null | undefined;
3468
+ market_cap_sol?: number | null | undefined;
3469
+ };
3470
+ trading: {
3471
+ average_trade_size?: number | null | undefined;
3472
+ buy_count?: number | null | undefined;
3473
+ largest_trade?: number | null | undefined;
3474
+ last_trade_price?: number | null | undefined;
3475
+ last_trade_timestamp?: number | null | undefined;
3476
+ last_whale_address?: string | null | undefined;
3477
+ sell_count?: number | null | undefined;
3478
+ smallest_trade?: number | null | undefined;
3479
+ total_buy_exact_sol_volume?: number | null | undefined;
3480
+ total_buy_volume?: number | null | undefined;
3481
+ total_sell_volume?: number | null | undefined;
3482
+ total_trades?: number | null | undefined;
3483
+ total_volume?: number | null | undefined;
3484
+ unique_traders?: number | null | undefined;
3485
+ whale_trade_count?: number | null | undefined;
3486
+ };
3487
+ bonding_curve_snapshot: {
3488
+ creator?: string | undefined;
3489
+ virtual_token_reserves?: number | undefined;
3490
+ virtual_sol_reserves?: number | undefined;
3491
+ real_token_reserves?: number | undefined;
3492
+ real_sol_reserves?: number | undefined;
3493
+ token_total_supply?: number | undefined;
3494
+ complete?: boolean | undefined;
3495
+ is_mayhem_mode?: boolean | undefined;
3496
+ };
3497
+ }>;
3498
+ readonly PumpfunTokenEvents: z.ZodObject<{
3499
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3500
+ timestamp: z.ZodNumber;
3501
+ data: z.ZodObject<{
3502
+ global: z.ZodOptional<z.ZodString>;
3503
+ fee_recipient: z.ZodOptional<z.ZodString>;
3504
+ mint: z.ZodOptional<z.ZodString>;
3505
+ bonding_curve: z.ZodOptional<z.ZodString>;
3506
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
3507
+ associated_user: z.ZodOptional<z.ZodString>;
3508
+ user: z.ZodOptional<z.ZodString>;
3509
+ system_program: z.ZodOptional<z.ZodString>;
3510
+ token_program: z.ZodOptional<z.ZodString>;
3511
+ creator_vault: z.ZodOptional<z.ZodString>;
3512
+ event_authority: z.ZodOptional<z.ZodString>;
3513
+ program: z.ZodOptional<z.ZodString>;
3514
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
3515
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
3516
+ fee_config: z.ZodOptional<z.ZodString>;
3517
+ fee_program: z.ZodOptional<z.ZodString>;
3518
+ amount: z.ZodOptional<z.ZodNumber>;
3519
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
3520
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3521
+ }, "strip", z.ZodTypeAny, {
3522
+ mint?: string | undefined;
3523
+ bonding_curve?: string | undefined;
3524
+ associated_bonding_curve?: string | undefined;
3525
+ global?: string | undefined;
3526
+ user?: string | undefined;
3527
+ system_program?: string | undefined;
3528
+ token_program?: string | undefined;
3529
+ event_authority?: string | undefined;
3530
+ program?: string | undefined;
3531
+ fee_recipient?: string | undefined;
3532
+ associated_user?: string | undefined;
3533
+ creator_vault?: string | undefined;
3534
+ global_volume_accumulator?: string | undefined;
3535
+ user_volume_accumulator?: string | undefined;
3536
+ fee_config?: string | undefined;
3537
+ fee_program?: string | undefined;
3538
+ amount?: number | undefined;
3539
+ max_sol_cost?: number | undefined;
3540
+ track_volume?: Record<string, any> | undefined;
3541
+ }, {
3542
+ mint?: string | undefined;
3543
+ bonding_curve?: string | undefined;
3544
+ associated_bonding_curve?: string | undefined;
3545
+ global?: string | undefined;
3546
+ user?: string | undefined;
3547
+ system_program?: string | undefined;
3548
+ token_program?: string | undefined;
3549
+ event_authority?: string | undefined;
3550
+ program?: string | undefined;
3551
+ fee_recipient?: string | undefined;
3552
+ associated_user?: string | undefined;
3553
+ creator_vault?: string | undefined;
3554
+ global_volume_accumulator?: string | undefined;
3555
+ user_volume_accumulator?: string | undefined;
3556
+ fee_config?: string | undefined;
3557
+ fee_program?: string | undefined;
3558
+ amount?: number | undefined;
3559
+ max_sol_cost?: number | undefined;
3560
+ track_volume?: Record<string, any> | undefined;
3561
+ }>;
3562
+ slot: z.ZodOptional<z.ZodNumber>;
3563
+ signature: z.ZodOptional<z.ZodString>;
3564
+ }, "strip", z.ZodTypeAny, {
3565
+ timestamp: number;
3566
+ data: {
3567
+ mint?: string | undefined;
3568
+ bonding_curve?: string | undefined;
3569
+ associated_bonding_curve?: string | undefined;
3570
+ global?: string | undefined;
3571
+ user?: string | undefined;
3572
+ system_program?: string | undefined;
3573
+ token_program?: string | undefined;
3574
+ event_authority?: string | undefined;
3575
+ program?: string | undefined;
3576
+ fee_recipient?: string | undefined;
3577
+ associated_user?: string | undefined;
3578
+ creator_vault?: string | undefined;
3579
+ global_volume_accumulator?: string | undefined;
3580
+ user_volume_accumulator?: string | undefined;
3581
+ fee_config?: string | undefined;
3582
+ fee_program?: string | undefined;
3583
+ amount?: number | undefined;
3584
+ max_sol_cost?: number | undefined;
3585
+ track_volume?: Record<string, any> | undefined;
3586
+ };
3587
+ slot?: number | undefined;
3588
+ signature?: string | undefined;
3589
+ }, {
3590
+ timestamp: number;
3591
+ data: {
3592
+ mint?: string | undefined;
3593
+ bonding_curve?: string | undefined;
3594
+ associated_bonding_curve?: string | undefined;
3595
+ global?: string | undefined;
3596
+ user?: string | undefined;
3597
+ system_program?: string | undefined;
3598
+ token_program?: string | undefined;
3599
+ event_authority?: string | undefined;
3600
+ program?: string | undefined;
3601
+ fee_recipient?: string | undefined;
3602
+ associated_user?: string | undefined;
3603
+ creator_vault?: string | undefined;
3604
+ global_volume_accumulator?: string | undefined;
3605
+ user_volume_accumulator?: string | undefined;
3606
+ fee_config?: string | undefined;
3607
+ fee_program?: string | undefined;
3608
+ amount?: number | undefined;
3609
+ max_sol_cost?: number | undefined;
3610
+ track_volume?: Record<string, any> | undefined;
3611
+ };
3612
+ slot?: number | undefined;
3613
+ signature?: string | undefined;
3614
+ }>, "many">>>;
3615
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
3616
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3617
+ mint: z.ZodOptional<z.ZodString>;
3618
+ mint_authority: z.ZodOptional<z.ZodString>;
3619
+ bonding_curve: z.ZodOptional<z.ZodString>;
3620
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
3621
+ global: z.ZodOptional<z.ZodString>;
3622
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
3623
+ metadata: z.ZodOptional<z.ZodString>;
3624
+ user: z.ZodOptional<z.ZodString>;
3625
+ system_program: z.ZodOptional<z.ZodString>;
3626
+ token_program: z.ZodOptional<z.ZodString>;
3627
+ associated_token_program: z.ZodOptional<z.ZodString>;
3628
+ rent: z.ZodOptional<z.ZodString>;
3629
+ event_authority: z.ZodOptional<z.ZodString>;
3630
+ program: z.ZodOptional<z.ZodString>;
3631
+ name: z.ZodOptional<z.ZodString>;
3632
+ symbol: z.ZodOptional<z.ZodString>;
3633
+ uri: z.ZodOptional<z.ZodString>;
3634
+ creator: z.ZodOptional<z.ZodString>;
3635
+ }, "strip", z.ZodTypeAny, {
3636
+ symbol?: string | undefined;
3637
+ mint?: string | undefined;
3638
+ mint_authority?: string | undefined;
3639
+ bonding_curve?: string | undefined;
3640
+ associated_bonding_curve?: string | undefined;
3641
+ global?: string | undefined;
3642
+ mpl_token_metadata?: string | undefined;
3643
+ metadata?: string | undefined;
3644
+ user?: string | undefined;
3645
+ system_program?: string | undefined;
3646
+ token_program?: string | undefined;
3647
+ associated_token_program?: string | undefined;
3648
+ rent?: string | undefined;
3649
+ event_authority?: string | undefined;
3650
+ program?: string | undefined;
3651
+ name?: string | undefined;
3652
+ uri?: string | undefined;
3653
+ creator?: string | undefined;
3654
+ }, {
3655
+ symbol?: string | undefined;
3656
+ mint?: string | undefined;
3657
+ mint_authority?: string | undefined;
3658
+ bonding_curve?: string | undefined;
3659
+ associated_bonding_curve?: string | undefined;
3660
+ global?: string | undefined;
3661
+ mpl_token_metadata?: string | undefined;
3662
+ metadata?: string | undefined;
3663
+ user?: string | undefined;
3664
+ system_program?: string | undefined;
3665
+ token_program?: string | undefined;
3666
+ associated_token_program?: string | undefined;
3667
+ rent?: string | undefined;
3668
+ event_authority?: string | undefined;
3669
+ program?: string | undefined;
3670
+ name?: string | undefined;
3671
+ uri?: string | undefined;
3672
+ creator?: string | undefined;
3673
+ }>>>;
3674
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
3675
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3676
+ timestamp: z.ZodNumber;
3677
+ data: z.ZodObject<{
3678
+ global: z.ZodOptional<z.ZodString>;
3679
+ fee_recipient: z.ZodOptional<z.ZodString>;
3680
+ mint: z.ZodOptional<z.ZodString>;
3681
+ bonding_curve: z.ZodOptional<z.ZodString>;
3682
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
3683
+ associated_user: z.ZodOptional<z.ZodString>;
3684
+ user: z.ZodOptional<z.ZodString>;
3685
+ system_program: z.ZodOptional<z.ZodString>;
3686
+ creator_vault: z.ZodOptional<z.ZodString>;
3687
+ token_program: z.ZodOptional<z.ZodString>;
3688
+ event_authority: z.ZodOptional<z.ZodString>;
3689
+ program: z.ZodOptional<z.ZodString>;
3690
+ fee_config: z.ZodOptional<z.ZodString>;
3691
+ fee_program: z.ZodOptional<z.ZodString>;
3692
+ amount: z.ZodOptional<z.ZodNumber>;
3693
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
3694
+ }, "strip", z.ZodTypeAny, {
3695
+ mint?: string | undefined;
3696
+ bonding_curve?: string | undefined;
3697
+ associated_bonding_curve?: string | undefined;
3698
+ global?: string | undefined;
3699
+ user?: string | undefined;
3700
+ system_program?: string | undefined;
3701
+ token_program?: string | undefined;
3702
+ event_authority?: string | undefined;
3703
+ program?: string | undefined;
3704
+ fee_recipient?: string | undefined;
3705
+ associated_user?: string | undefined;
3706
+ creator_vault?: string | undefined;
3707
+ fee_config?: string | undefined;
3708
+ fee_program?: string | undefined;
3709
+ amount?: number | undefined;
3710
+ min_sol_output?: number | undefined;
3711
+ }, {
3712
+ mint?: string | undefined;
3713
+ bonding_curve?: string | undefined;
3714
+ associated_bonding_curve?: string | undefined;
3715
+ global?: string | undefined;
3716
+ user?: string | undefined;
3717
+ system_program?: string | undefined;
3718
+ token_program?: string | undefined;
3719
+ event_authority?: string | undefined;
3720
+ program?: string | undefined;
3721
+ fee_recipient?: string | undefined;
3722
+ associated_user?: string | undefined;
3723
+ creator_vault?: string | undefined;
3724
+ fee_config?: string | undefined;
3725
+ fee_program?: string | undefined;
3726
+ amount?: number | undefined;
3727
+ min_sol_output?: number | undefined;
3728
+ }>;
3729
+ slot: z.ZodOptional<z.ZodNumber>;
3730
+ signature: z.ZodOptional<z.ZodString>;
3731
+ }, "strip", z.ZodTypeAny, {
3732
+ timestamp: number;
3733
+ data: {
3734
+ mint?: string | undefined;
3735
+ bonding_curve?: string | undefined;
3736
+ associated_bonding_curve?: string | undefined;
3737
+ global?: string | undefined;
3738
+ user?: string | undefined;
3739
+ system_program?: string | undefined;
3740
+ token_program?: string | undefined;
3741
+ event_authority?: string | undefined;
3742
+ program?: string | undefined;
3743
+ fee_recipient?: string | undefined;
3744
+ associated_user?: string | undefined;
3745
+ creator_vault?: string | undefined;
3746
+ fee_config?: string | undefined;
3747
+ fee_program?: string | undefined;
3748
+ amount?: number | undefined;
3749
+ min_sol_output?: number | undefined;
3750
+ };
3751
+ slot?: number | undefined;
3752
+ signature?: string | undefined;
3753
+ }, {
3754
+ timestamp: number;
3755
+ data: {
3756
+ mint?: string | undefined;
3757
+ bonding_curve?: string | undefined;
3758
+ associated_bonding_curve?: string | undefined;
3759
+ global?: string | undefined;
3760
+ user?: string | undefined;
3761
+ system_program?: string | undefined;
3762
+ token_program?: string | undefined;
3763
+ event_authority?: string | undefined;
3764
+ program?: string | undefined;
3765
+ fee_recipient?: string | undefined;
3766
+ associated_user?: string | undefined;
3767
+ creator_vault?: string | undefined;
3768
+ fee_config?: string | undefined;
3769
+ fee_program?: string | undefined;
3770
+ amount?: number | undefined;
3771
+ min_sol_output?: number | undefined;
3772
+ };
3773
+ slot?: number | undefined;
3774
+ signature?: string | undefined;
3775
+ }>, "many">>>;
3776
+ }, "strip", z.ZodTypeAny, {
3777
+ buys?: {
3778
+ timestamp: number;
3779
+ data: {
3780
+ mint?: string | undefined;
3781
+ bonding_curve?: string | undefined;
3782
+ associated_bonding_curve?: string | undefined;
3783
+ global?: string | undefined;
3784
+ user?: string | undefined;
3785
+ system_program?: string | undefined;
3786
+ token_program?: string | undefined;
3787
+ event_authority?: string | undefined;
3788
+ program?: string | undefined;
3789
+ fee_recipient?: string | undefined;
3790
+ associated_user?: string | undefined;
3791
+ creator_vault?: string | undefined;
3792
+ global_volume_accumulator?: string | undefined;
3793
+ user_volume_accumulator?: string | undefined;
3794
+ fee_config?: string | undefined;
3795
+ fee_program?: string | undefined;
3796
+ amount?: number | undefined;
3797
+ max_sol_cost?: number | undefined;
3798
+ track_volume?: Record<string, any> | undefined;
3799
+ };
3800
+ slot?: number | undefined;
3801
+ signature?: string | undefined;
3802
+ }[] | null | undefined;
3803
+ buys_exact_sol?: any[] | null | undefined;
3804
+ create?: {
3805
+ symbol?: string | undefined;
3806
+ mint?: string | undefined;
3807
+ mint_authority?: string | undefined;
3808
+ bonding_curve?: string | undefined;
3809
+ associated_bonding_curve?: string | undefined;
3810
+ global?: string | undefined;
3811
+ mpl_token_metadata?: string | undefined;
3812
+ metadata?: string | undefined;
3813
+ user?: string | undefined;
3814
+ system_program?: string | undefined;
3815
+ token_program?: string | undefined;
3816
+ associated_token_program?: string | undefined;
3817
+ rent?: string | undefined;
3818
+ event_authority?: string | undefined;
3819
+ program?: string | undefined;
3820
+ name?: string | undefined;
3821
+ uri?: string | undefined;
3822
+ creator?: string | undefined;
3823
+ } | null | undefined;
3824
+ create_v2?: Record<string, any> | null | undefined;
3825
+ sells?: {
3826
+ timestamp: number;
3827
+ data: {
3828
+ mint?: string | undefined;
3829
+ bonding_curve?: string | undefined;
3830
+ associated_bonding_curve?: string | undefined;
3831
+ global?: string | undefined;
3832
+ user?: string | undefined;
3833
+ system_program?: string | undefined;
3834
+ token_program?: string | undefined;
3835
+ event_authority?: string | undefined;
3836
+ program?: string | undefined;
3837
+ fee_recipient?: string | undefined;
3838
+ associated_user?: string | undefined;
3839
+ creator_vault?: string | undefined;
3840
+ fee_config?: string | undefined;
3841
+ fee_program?: string | undefined;
3842
+ amount?: number | undefined;
3843
+ min_sol_output?: number | undefined;
3844
+ };
3845
+ slot?: number | undefined;
3846
+ signature?: string | undefined;
3847
+ }[] | null | undefined;
3848
+ }, {
3849
+ buys?: {
3850
+ timestamp: number;
3851
+ data: {
3852
+ mint?: string | undefined;
3853
+ bonding_curve?: string | undefined;
3854
+ associated_bonding_curve?: string | undefined;
3855
+ global?: string | undefined;
3856
+ user?: string | undefined;
3857
+ system_program?: string | undefined;
3858
+ token_program?: string | undefined;
3859
+ event_authority?: string | undefined;
3860
+ program?: string | undefined;
3861
+ fee_recipient?: string | undefined;
3862
+ associated_user?: string | undefined;
3863
+ creator_vault?: string | undefined;
3864
+ global_volume_accumulator?: string | undefined;
3865
+ user_volume_accumulator?: string | undefined;
3866
+ fee_config?: string | undefined;
3867
+ fee_program?: string | undefined;
3868
+ amount?: number | undefined;
3869
+ max_sol_cost?: number | undefined;
3870
+ track_volume?: Record<string, any> | undefined;
3871
+ };
3872
+ slot?: number | undefined;
3873
+ signature?: string | undefined;
3874
+ }[] | null | undefined;
3875
+ buys_exact_sol?: any[] | null | undefined;
3876
+ create?: {
3877
+ symbol?: string | undefined;
3878
+ mint?: string | undefined;
3879
+ mint_authority?: string | undefined;
3880
+ bonding_curve?: string | undefined;
3881
+ associated_bonding_curve?: string | undefined;
3882
+ global?: string | undefined;
3883
+ mpl_token_metadata?: string | undefined;
3884
+ metadata?: string | undefined;
3885
+ user?: string | undefined;
3886
+ system_program?: string | undefined;
3887
+ token_program?: string | undefined;
3888
+ associated_token_program?: string | undefined;
3889
+ rent?: string | undefined;
3890
+ event_authority?: string | undefined;
3891
+ program?: string | undefined;
3892
+ name?: string | undefined;
3893
+ uri?: string | undefined;
3894
+ creator?: string | undefined;
3895
+ } | null | undefined;
3896
+ create_v2?: Record<string, any> | null | undefined;
3897
+ sells?: {
3898
+ timestamp: number;
3899
+ data: {
3900
+ mint?: string | undefined;
3901
+ bonding_curve?: string | undefined;
3902
+ associated_bonding_curve?: string | undefined;
3903
+ global?: string | undefined;
3904
+ user?: string | undefined;
3905
+ system_program?: string | undefined;
3906
+ token_program?: string | undefined;
3907
+ event_authority?: string | undefined;
3908
+ program?: string | undefined;
3909
+ fee_recipient?: string | undefined;
3910
+ associated_user?: string | undefined;
3911
+ creator_vault?: string | undefined;
3912
+ fee_config?: string | undefined;
3913
+ fee_program?: string | undefined;
3914
+ amount?: number | undefined;
3915
+ min_sol_output?: number | undefined;
3916
+ };
3917
+ slot?: number | undefined;
3918
+ signature?: string | undefined;
3919
+ }[] | null | undefined;
3920
+ }>;
3921
+ readonly PumpfunTokenId: z.ZodObject<{
3922
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3923
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3924
+ }, "strip", z.ZodTypeAny, {
3925
+ mint?: string | null | undefined;
3926
+ bonding_curve?: string | null | undefined;
3927
+ }, {
3928
+ mint?: string | null | undefined;
3929
+ bonding_curve?: string | null | undefined;
3930
+ }>;
3931
+ readonly PumpfunTokenInfo: z.ZodObject<{
3932
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3933
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3934
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3935
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3936
+ }, "strip", z.ZodTypeAny, {
3937
+ symbol?: string | null | undefined;
3938
+ name?: string | null | undefined;
3939
+ uri?: string | null | undefined;
3940
+ is_complete?: boolean | null | undefined;
3941
+ }, {
3942
+ symbol?: string | null | undefined;
3943
+ name?: string | null | undefined;
3944
+ uri?: string | null | undefined;
3945
+ is_complete?: boolean | null | undefined;
3946
+ }>;
3947
+ readonly PumpfunTokenReserves: z.ZodObject<{
3948
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3949
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3950
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3951
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3952
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3953
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3954
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3955
+ }, "strip", z.ZodTypeAny, {
3956
+ virtual_token_reserves?: number | null | undefined;
3957
+ virtual_sol_reserves?: number | null | undefined;
3958
+ real_token_reserves?: number | null | undefined;
3959
+ real_sol_reserves?: number | null | undefined;
3960
+ token_total_supply?: number | null | undefined;
3961
+ current_price_sol?: number | null | undefined;
3962
+ market_cap_sol?: number | null | undefined;
3963
+ }, {
3964
+ virtual_token_reserves?: number | null | undefined;
3965
+ virtual_sol_reserves?: number | null | undefined;
3966
+ real_token_reserves?: number | null | undefined;
3967
+ real_sol_reserves?: number | null | undefined;
3968
+ token_total_supply?: number | null | undefined;
3969
+ current_price_sol?: number | null | undefined;
3970
+ market_cap_sol?: number | null | undefined;
3971
+ }>;
3972
+ readonly PumpfunToken: z.ZodObject<{
3973
+ events: z.ZodOptional<z.ZodObject<{
3974
+ buys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3975
+ timestamp: z.ZodNumber;
3976
+ data: z.ZodObject<{
3977
+ global: z.ZodOptional<z.ZodString>;
3978
+ fee_recipient: z.ZodOptional<z.ZodString>;
3979
+ mint: z.ZodOptional<z.ZodString>;
3980
+ bonding_curve: z.ZodOptional<z.ZodString>;
3981
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
3982
+ associated_user: z.ZodOptional<z.ZodString>;
3983
+ user: z.ZodOptional<z.ZodString>;
3984
+ system_program: z.ZodOptional<z.ZodString>;
3985
+ token_program: z.ZodOptional<z.ZodString>;
3986
+ creator_vault: z.ZodOptional<z.ZodString>;
3987
+ event_authority: z.ZodOptional<z.ZodString>;
3988
+ program: z.ZodOptional<z.ZodString>;
3989
+ global_volume_accumulator: z.ZodOptional<z.ZodString>;
3990
+ user_volume_accumulator: z.ZodOptional<z.ZodString>;
3991
+ fee_config: z.ZodOptional<z.ZodString>;
3992
+ fee_program: z.ZodOptional<z.ZodString>;
3993
+ amount: z.ZodOptional<z.ZodNumber>;
3994
+ max_sol_cost: z.ZodOptional<z.ZodNumber>;
3995
+ track_volume: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3996
+ }, "strip", z.ZodTypeAny, {
3997
+ mint?: string | undefined;
3998
+ bonding_curve?: string | undefined;
3999
+ associated_bonding_curve?: string | undefined;
4000
+ global?: string | undefined;
4001
+ user?: string | undefined;
4002
+ system_program?: string | undefined;
4003
+ token_program?: string | undefined;
4004
+ event_authority?: string | undefined;
4005
+ program?: string | undefined;
4006
+ fee_recipient?: string | undefined;
4007
+ associated_user?: string | undefined;
4008
+ creator_vault?: string | undefined;
4009
+ global_volume_accumulator?: string | undefined;
4010
+ user_volume_accumulator?: string | undefined;
4011
+ fee_config?: string | undefined;
4012
+ fee_program?: string | undefined;
4013
+ amount?: number | undefined;
4014
+ max_sol_cost?: number | undefined;
4015
+ track_volume?: Record<string, any> | undefined;
4016
+ }, {
4017
+ mint?: string | undefined;
4018
+ bonding_curve?: string | undefined;
4019
+ associated_bonding_curve?: string | undefined;
4020
+ global?: string | undefined;
4021
+ user?: string | undefined;
4022
+ system_program?: string | undefined;
4023
+ token_program?: string | undefined;
4024
+ event_authority?: string | undefined;
4025
+ program?: string | undefined;
4026
+ fee_recipient?: string | undefined;
4027
+ associated_user?: string | undefined;
4028
+ creator_vault?: string | undefined;
4029
+ global_volume_accumulator?: string | undefined;
4030
+ user_volume_accumulator?: string | undefined;
4031
+ fee_config?: string | undefined;
4032
+ fee_program?: string | undefined;
4033
+ amount?: number | undefined;
4034
+ max_sol_cost?: number | undefined;
4035
+ track_volume?: Record<string, any> | undefined;
4036
+ }>;
4037
+ slot: z.ZodOptional<z.ZodNumber>;
4038
+ signature: z.ZodOptional<z.ZodString>;
4039
+ }, "strip", z.ZodTypeAny, {
4040
+ timestamp: number;
4041
+ data: {
4042
+ mint?: string | undefined;
4043
+ bonding_curve?: string | undefined;
4044
+ associated_bonding_curve?: string | undefined;
4045
+ global?: string | undefined;
4046
+ user?: string | undefined;
4047
+ system_program?: string | undefined;
4048
+ token_program?: string | undefined;
4049
+ event_authority?: string | undefined;
4050
+ program?: string | undefined;
4051
+ fee_recipient?: string | undefined;
4052
+ associated_user?: string | undefined;
4053
+ creator_vault?: string | undefined;
4054
+ global_volume_accumulator?: string | undefined;
4055
+ user_volume_accumulator?: string | undefined;
4056
+ fee_config?: string | undefined;
4057
+ fee_program?: string | undefined;
4058
+ amount?: number | undefined;
4059
+ max_sol_cost?: number | undefined;
4060
+ track_volume?: Record<string, any> | undefined;
4061
+ };
4062
+ slot?: number | undefined;
4063
+ signature?: string | undefined;
4064
+ }, {
4065
+ timestamp: number;
4066
+ data: {
4067
+ mint?: string | undefined;
4068
+ bonding_curve?: string | undefined;
4069
+ associated_bonding_curve?: string | undefined;
4070
+ global?: string | undefined;
4071
+ user?: string | undefined;
4072
+ system_program?: string | undefined;
4073
+ token_program?: string | undefined;
4074
+ event_authority?: string | undefined;
4075
+ program?: string | undefined;
4076
+ fee_recipient?: string | undefined;
4077
+ associated_user?: string | undefined;
4078
+ creator_vault?: string | undefined;
4079
+ global_volume_accumulator?: string | undefined;
4080
+ user_volume_accumulator?: string | undefined;
4081
+ fee_config?: string | undefined;
4082
+ fee_program?: string | undefined;
4083
+ amount?: number | undefined;
4084
+ max_sol_cost?: number | undefined;
4085
+ track_volume?: Record<string, any> | undefined;
4086
+ };
4087
+ slot?: number | undefined;
4088
+ signature?: string | undefined;
4089
+ }>, "many">>>;
4090
+ buys_exact_sol: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
4091
+ create: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4092
+ mint: z.ZodOptional<z.ZodString>;
4093
+ mint_authority: z.ZodOptional<z.ZodString>;
4094
+ bonding_curve: z.ZodOptional<z.ZodString>;
4095
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
4096
+ global: z.ZodOptional<z.ZodString>;
4097
+ mpl_token_metadata: z.ZodOptional<z.ZodString>;
4098
+ metadata: z.ZodOptional<z.ZodString>;
4099
+ user: z.ZodOptional<z.ZodString>;
4100
+ system_program: z.ZodOptional<z.ZodString>;
4101
+ token_program: z.ZodOptional<z.ZodString>;
4102
+ associated_token_program: z.ZodOptional<z.ZodString>;
4103
+ rent: z.ZodOptional<z.ZodString>;
4104
+ event_authority: z.ZodOptional<z.ZodString>;
4105
+ program: z.ZodOptional<z.ZodString>;
4106
+ name: z.ZodOptional<z.ZodString>;
4107
+ symbol: z.ZodOptional<z.ZodString>;
4108
+ uri: z.ZodOptional<z.ZodString>;
4109
+ creator: z.ZodOptional<z.ZodString>;
4110
+ }, "strip", z.ZodTypeAny, {
4111
+ symbol?: string | undefined;
4112
+ mint?: string | undefined;
4113
+ mint_authority?: string | undefined;
4114
+ bonding_curve?: string | undefined;
4115
+ associated_bonding_curve?: string | undefined;
4116
+ global?: string | undefined;
4117
+ mpl_token_metadata?: string | undefined;
4118
+ metadata?: string | undefined;
4119
+ user?: string | undefined;
4120
+ system_program?: string | undefined;
4121
+ token_program?: string | undefined;
4122
+ associated_token_program?: string | undefined;
4123
+ rent?: string | undefined;
4124
+ event_authority?: string | undefined;
4125
+ program?: string | undefined;
4126
+ name?: string | undefined;
4127
+ uri?: string | undefined;
4128
+ creator?: string | undefined;
4129
+ }, {
4130
+ symbol?: string | undefined;
4131
+ mint?: string | undefined;
4132
+ mint_authority?: string | undefined;
4133
+ bonding_curve?: string | undefined;
4134
+ associated_bonding_curve?: string | undefined;
4135
+ global?: string | undefined;
4136
+ mpl_token_metadata?: string | undefined;
4137
+ metadata?: string | undefined;
4138
+ user?: string | undefined;
4139
+ system_program?: string | undefined;
4140
+ token_program?: string | undefined;
4141
+ associated_token_program?: string | undefined;
4142
+ rent?: string | undefined;
4143
+ event_authority?: string | undefined;
4144
+ program?: string | undefined;
4145
+ name?: string | undefined;
4146
+ uri?: string | undefined;
4147
+ creator?: string | undefined;
4148
+ }>>>;
4149
+ create_v2: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
4150
+ sells: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4151
+ timestamp: z.ZodNumber;
4152
+ data: z.ZodObject<{
4153
+ global: z.ZodOptional<z.ZodString>;
4154
+ fee_recipient: z.ZodOptional<z.ZodString>;
4155
+ mint: z.ZodOptional<z.ZodString>;
4156
+ bonding_curve: z.ZodOptional<z.ZodString>;
4157
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
4158
+ associated_user: z.ZodOptional<z.ZodString>;
4159
+ user: z.ZodOptional<z.ZodString>;
4160
+ system_program: z.ZodOptional<z.ZodString>;
4161
+ creator_vault: z.ZodOptional<z.ZodString>;
4162
+ token_program: z.ZodOptional<z.ZodString>;
4163
+ event_authority: z.ZodOptional<z.ZodString>;
4164
+ program: z.ZodOptional<z.ZodString>;
4165
+ fee_config: z.ZodOptional<z.ZodString>;
4166
+ fee_program: z.ZodOptional<z.ZodString>;
4167
+ amount: z.ZodOptional<z.ZodNumber>;
4168
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
4169
+ }, "strip", z.ZodTypeAny, {
4170
+ mint?: string | undefined;
4171
+ bonding_curve?: string | undefined;
4172
+ associated_bonding_curve?: string | undefined;
4173
+ global?: string | undefined;
4174
+ user?: string | undefined;
4175
+ system_program?: string | undefined;
4176
+ token_program?: string | undefined;
4177
+ event_authority?: string | undefined;
4178
+ program?: string | undefined;
4179
+ fee_recipient?: string | undefined;
4180
+ associated_user?: string | undefined;
4181
+ creator_vault?: string | undefined;
4182
+ fee_config?: string | undefined;
4183
+ fee_program?: string | undefined;
4184
+ amount?: number | undefined;
4185
+ min_sol_output?: number | undefined;
4186
+ }, {
4187
+ mint?: string | undefined;
4188
+ bonding_curve?: string | undefined;
4189
+ associated_bonding_curve?: string | undefined;
4190
+ global?: string | undefined;
4191
+ user?: string | undefined;
4192
+ system_program?: string | undefined;
4193
+ token_program?: string | undefined;
4194
+ event_authority?: string | undefined;
4195
+ program?: string | undefined;
4196
+ fee_recipient?: string | undefined;
4197
+ associated_user?: string | undefined;
4198
+ creator_vault?: string | undefined;
4199
+ fee_config?: string | undefined;
4200
+ fee_program?: string | undefined;
4201
+ amount?: number | undefined;
4202
+ min_sol_output?: number | undefined;
4203
+ }>;
4204
+ slot: z.ZodOptional<z.ZodNumber>;
4205
+ signature: z.ZodOptional<z.ZodString>;
4206
+ }, "strip", z.ZodTypeAny, {
4207
+ timestamp: number;
4208
+ data: {
4209
+ mint?: string | undefined;
4210
+ bonding_curve?: string | undefined;
4211
+ associated_bonding_curve?: string | undefined;
4212
+ global?: string | undefined;
4213
+ user?: string | undefined;
4214
+ system_program?: string | undefined;
4215
+ token_program?: string | undefined;
4216
+ event_authority?: string | undefined;
4217
+ program?: string | undefined;
4218
+ fee_recipient?: string | undefined;
4219
+ associated_user?: string | undefined;
4220
+ creator_vault?: string | undefined;
4221
+ fee_config?: string | undefined;
4222
+ fee_program?: string | undefined;
4223
+ amount?: number | undefined;
4224
+ min_sol_output?: number | undefined;
4225
+ };
4226
+ slot?: number | undefined;
4227
+ signature?: string | undefined;
4228
+ }, {
4229
+ timestamp: number;
4230
+ data: {
4231
+ mint?: string | undefined;
4232
+ bonding_curve?: string | undefined;
4233
+ associated_bonding_curve?: string | undefined;
4234
+ global?: string | undefined;
4235
+ user?: string | undefined;
4236
+ system_program?: string | undefined;
4237
+ token_program?: string | undefined;
4238
+ event_authority?: string | undefined;
4239
+ program?: string | undefined;
4240
+ fee_recipient?: string | undefined;
4241
+ associated_user?: string | undefined;
4242
+ creator_vault?: string | undefined;
4243
+ fee_config?: string | undefined;
4244
+ fee_program?: string | undefined;
4245
+ amount?: number | undefined;
4246
+ min_sol_output?: number | undefined;
4247
+ };
4248
+ slot?: number | undefined;
4249
+ signature?: string | undefined;
4250
+ }>, "many">>>;
4251
+ }, "strip", z.ZodTypeAny, {
4252
+ buys?: {
4253
+ timestamp: number;
4254
+ data: {
4255
+ mint?: string | undefined;
4256
+ bonding_curve?: string | undefined;
4257
+ associated_bonding_curve?: string | undefined;
4258
+ global?: string | undefined;
4259
+ user?: string | undefined;
4260
+ system_program?: string | undefined;
4261
+ token_program?: string | undefined;
4262
+ event_authority?: string | undefined;
4263
+ program?: string | undefined;
4264
+ fee_recipient?: string | undefined;
4265
+ associated_user?: string | undefined;
4266
+ creator_vault?: string | undefined;
4267
+ global_volume_accumulator?: string | undefined;
4268
+ user_volume_accumulator?: string | undefined;
4269
+ fee_config?: string | undefined;
4270
+ fee_program?: string | undefined;
4271
+ amount?: number | undefined;
4272
+ max_sol_cost?: number | undefined;
4273
+ track_volume?: Record<string, any> | undefined;
4274
+ };
4275
+ slot?: number | undefined;
4276
+ signature?: string | undefined;
4277
+ }[] | null | undefined;
4278
+ buys_exact_sol?: any[] | null | undefined;
4279
+ create?: {
4280
+ symbol?: string | undefined;
4281
+ mint?: string | undefined;
4282
+ mint_authority?: string | undefined;
4283
+ bonding_curve?: string | undefined;
4284
+ associated_bonding_curve?: string | undefined;
4285
+ global?: string | undefined;
4286
+ mpl_token_metadata?: string | undefined;
4287
+ metadata?: string | undefined;
4288
+ user?: string | undefined;
4289
+ system_program?: string | undefined;
4290
+ token_program?: string | undefined;
4291
+ associated_token_program?: string | undefined;
4292
+ rent?: string | undefined;
4293
+ event_authority?: string | undefined;
4294
+ program?: string | undefined;
4295
+ name?: string | undefined;
4296
+ uri?: string | undefined;
4297
+ creator?: string | undefined;
4298
+ } | null | undefined;
4299
+ create_v2?: Record<string, any> | null | undefined;
4300
+ sells?: {
4301
+ timestamp: number;
4302
+ data: {
4303
+ mint?: string | undefined;
4304
+ bonding_curve?: string | undefined;
4305
+ associated_bonding_curve?: string | undefined;
4306
+ global?: string | undefined;
4307
+ user?: string | undefined;
4308
+ system_program?: string | undefined;
4309
+ token_program?: string | undefined;
4310
+ event_authority?: string | undefined;
4311
+ program?: string | undefined;
4312
+ fee_recipient?: string | undefined;
4313
+ associated_user?: string | undefined;
4314
+ creator_vault?: string | undefined;
4315
+ fee_config?: string | undefined;
4316
+ fee_program?: string | undefined;
4317
+ amount?: number | undefined;
4318
+ min_sol_output?: number | undefined;
4319
+ };
4320
+ slot?: number | undefined;
4321
+ signature?: string | undefined;
4322
+ }[] | null | undefined;
4323
+ }, {
4324
+ buys?: {
4325
+ timestamp: number;
4326
+ data: {
4327
+ mint?: string | undefined;
4328
+ bonding_curve?: string | undefined;
4329
+ associated_bonding_curve?: string | undefined;
4330
+ global?: string | undefined;
4331
+ user?: string | undefined;
4332
+ system_program?: string | undefined;
4333
+ token_program?: string | undefined;
4334
+ event_authority?: string | undefined;
4335
+ program?: string | undefined;
4336
+ fee_recipient?: string | undefined;
4337
+ associated_user?: string | undefined;
4338
+ creator_vault?: string | undefined;
4339
+ global_volume_accumulator?: string | undefined;
4340
+ user_volume_accumulator?: string | undefined;
4341
+ fee_config?: string | undefined;
4342
+ fee_program?: string | undefined;
4343
+ amount?: number | undefined;
4344
+ max_sol_cost?: number | undefined;
4345
+ track_volume?: Record<string, any> | undefined;
4346
+ };
4347
+ slot?: number | undefined;
4348
+ signature?: string | undefined;
4349
+ }[] | null | undefined;
4350
+ buys_exact_sol?: any[] | null | undefined;
4351
+ create?: {
4352
+ symbol?: string | undefined;
4353
+ mint?: string | undefined;
4354
+ mint_authority?: string | undefined;
4355
+ bonding_curve?: string | undefined;
4356
+ associated_bonding_curve?: string | undefined;
4357
+ global?: string | undefined;
4358
+ mpl_token_metadata?: string | undefined;
4359
+ metadata?: string | undefined;
4360
+ user?: string | undefined;
4361
+ system_program?: string | undefined;
4362
+ token_program?: string | undefined;
4363
+ associated_token_program?: string | undefined;
4364
+ rent?: string | undefined;
4365
+ event_authority?: string | undefined;
4366
+ program?: string | undefined;
4367
+ name?: string | undefined;
4368
+ uri?: string | undefined;
4369
+ creator?: string | undefined;
4370
+ } | null | undefined;
4371
+ create_v2?: Record<string, any> | null | undefined;
4372
+ sells?: {
4373
+ timestamp: number;
4374
+ data: {
4375
+ mint?: string | undefined;
4376
+ bonding_curve?: string | undefined;
4377
+ associated_bonding_curve?: string | undefined;
4378
+ global?: string | undefined;
4379
+ user?: string | undefined;
4380
+ system_program?: string | undefined;
4381
+ token_program?: string | undefined;
4382
+ event_authority?: string | undefined;
4383
+ program?: string | undefined;
4384
+ fee_recipient?: string | undefined;
4385
+ associated_user?: string | undefined;
4386
+ creator_vault?: string | undefined;
4387
+ fee_config?: string | undefined;
4388
+ fee_program?: string | undefined;
4389
+ amount?: number | undefined;
4390
+ min_sol_output?: number | undefined;
4391
+ };
4392
+ slot?: number | undefined;
4393
+ signature?: string | undefined;
4394
+ }[] | null | undefined;
4395
+ }>>;
4396
+ id: z.ZodOptional<z.ZodObject<{
4397
+ bonding_curve: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4398
+ mint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4399
+ }, "strip", z.ZodTypeAny, {
4400
+ mint?: string | null | undefined;
4401
+ bonding_curve?: string | null | undefined;
4402
+ }, {
4403
+ mint?: string | null | undefined;
4404
+ bonding_curve?: string | null | undefined;
4405
+ }>>;
4406
+ info: z.ZodOptional<z.ZodObject<{
4407
+ is_complete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4408
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4409
+ symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4410
+ uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4411
+ }, "strip", z.ZodTypeAny, {
4412
+ symbol?: string | null | undefined;
4413
+ name?: string | null | undefined;
4414
+ uri?: string | null | undefined;
4415
+ is_complete?: boolean | null | undefined;
4416
+ }, {
4417
+ symbol?: string | null | undefined;
4418
+ name?: string | null | undefined;
4419
+ uri?: string | null | undefined;
4420
+ is_complete?: boolean | null | undefined;
4421
+ }>>;
4422
+ reserves: z.ZodOptional<z.ZodObject<{
4423
+ current_price_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4424
+ market_cap_sol: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4425
+ real_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4426
+ real_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4427
+ token_total_supply: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4428
+ virtual_sol_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4429
+ virtual_token_reserves: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4430
+ }, "strip", z.ZodTypeAny, {
4431
+ virtual_token_reserves?: number | null | undefined;
4432
+ virtual_sol_reserves?: number | null | undefined;
4433
+ real_token_reserves?: number | null | undefined;
4434
+ real_sol_reserves?: number | null | undefined;
4435
+ token_total_supply?: number | null | undefined;
4436
+ current_price_sol?: number | null | undefined;
4437
+ market_cap_sol?: number | null | undefined;
4438
+ }, {
4439
+ virtual_token_reserves?: number | null | undefined;
4440
+ virtual_sol_reserves?: number | null | undefined;
4441
+ real_token_reserves?: number | null | undefined;
4442
+ real_sol_reserves?: number | null | undefined;
4443
+ token_total_supply?: number | null | undefined;
4444
+ current_price_sol?: number | null | undefined;
4445
+ market_cap_sol?: number | null | undefined;
4446
+ }>>;
4447
+ trading: z.ZodOptional<z.ZodObject<{
4448
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4449
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4450
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4451
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4452
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4453
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4454
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4455
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4456
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4457
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4458
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4459
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4460
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4461
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4462
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4463
+ }, "strip", z.ZodTypeAny, {
4464
+ average_trade_size?: number | null | undefined;
4465
+ buy_count?: number | null | undefined;
4466
+ largest_trade?: number | null | undefined;
4467
+ last_trade_price?: number | null | undefined;
4468
+ last_trade_timestamp?: number | null | undefined;
4469
+ last_whale_address?: string | null | undefined;
4470
+ sell_count?: number | null | undefined;
4471
+ smallest_trade?: number | null | undefined;
4472
+ total_buy_exact_sol_volume?: number | null | undefined;
4473
+ total_buy_volume?: number | null | undefined;
4474
+ total_sell_volume?: number | null | undefined;
4475
+ total_trades?: number | null | undefined;
4476
+ total_volume?: number | null | undefined;
4477
+ unique_traders?: number | null | undefined;
4478
+ whale_trade_count?: number | null | undefined;
4479
+ }, {
4480
+ average_trade_size?: number | null | undefined;
4481
+ buy_count?: number | null | undefined;
4482
+ largest_trade?: number | null | undefined;
4483
+ last_trade_price?: number | null | undefined;
4484
+ last_trade_timestamp?: number | null | undefined;
4485
+ last_whale_address?: string | null | undefined;
4486
+ sell_count?: number | null | undefined;
4487
+ smallest_trade?: number | null | undefined;
4488
+ total_buy_exact_sol_volume?: number | null | undefined;
4489
+ total_buy_volume?: number | null | undefined;
4490
+ total_sell_volume?: number | null | undefined;
4491
+ total_trades?: number | null | undefined;
4492
+ total_volume?: number | null | undefined;
4493
+ unique_traders?: number | null | undefined;
4494
+ whale_trade_count?: number | null | undefined;
4495
+ }>>;
4496
+ bonding_curve_snapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4497
+ virtual_token_reserves: z.ZodOptional<z.ZodNumber>;
4498
+ virtual_sol_reserves: z.ZodOptional<z.ZodNumber>;
4499
+ real_token_reserves: z.ZodOptional<z.ZodNumber>;
4500
+ real_sol_reserves: z.ZodOptional<z.ZodNumber>;
4501
+ token_total_supply: z.ZodOptional<z.ZodNumber>;
4502
+ complete: z.ZodOptional<z.ZodBoolean>;
4503
+ creator: z.ZodOptional<z.ZodString>;
4504
+ is_mayhem_mode: z.ZodOptional<z.ZodBoolean>;
4505
+ }, "strip", z.ZodTypeAny, {
4506
+ creator?: string | undefined;
4507
+ virtual_token_reserves?: number | undefined;
4508
+ virtual_sol_reserves?: number | undefined;
4509
+ real_token_reserves?: number | undefined;
4510
+ real_sol_reserves?: number | undefined;
4511
+ token_total_supply?: number | undefined;
4512
+ complete?: boolean | undefined;
4513
+ is_mayhem_mode?: boolean | undefined;
4514
+ }, {
4515
+ creator?: string | undefined;
4516
+ virtual_token_reserves?: number | undefined;
4517
+ virtual_sol_reserves?: number | undefined;
4518
+ real_token_reserves?: number | undefined;
4519
+ real_sol_reserves?: number | undefined;
4520
+ token_total_supply?: number | undefined;
4521
+ complete?: boolean | undefined;
4522
+ is_mayhem_mode?: boolean | undefined;
4523
+ }>>>;
4524
+ }, "strip", z.ZodTypeAny, {
4525
+ events?: {
4526
+ buys?: {
4527
+ timestamp: number;
4528
+ data: {
4529
+ mint?: string | undefined;
4530
+ bonding_curve?: string | undefined;
4531
+ associated_bonding_curve?: string | undefined;
4532
+ global?: string | undefined;
4533
+ user?: string | undefined;
4534
+ system_program?: string | undefined;
4535
+ token_program?: string | undefined;
4536
+ event_authority?: string | undefined;
4537
+ program?: string | undefined;
4538
+ fee_recipient?: string | undefined;
4539
+ associated_user?: string | undefined;
4540
+ creator_vault?: string | undefined;
4541
+ global_volume_accumulator?: string | undefined;
4542
+ user_volume_accumulator?: string | undefined;
4543
+ fee_config?: string | undefined;
4544
+ fee_program?: string | undefined;
4545
+ amount?: number | undefined;
4546
+ max_sol_cost?: number | undefined;
4547
+ track_volume?: Record<string, any> | undefined;
4548
+ };
4549
+ slot?: number | undefined;
4550
+ signature?: string | undefined;
4551
+ }[] | null | undefined;
4552
+ buys_exact_sol?: any[] | null | undefined;
4553
+ create?: {
4554
+ symbol?: string | undefined;
4555
+ mint?: string | undefined;
4556
+ mint_authority?: string | undefined;
4557
+ bonding_curve?: string | undefined;
4558
+ associated_bonding_curve?: string | undefined;
4559
+ global?: string | undefined;
4560
+ mpl_token_metadata?: string | undefined;
4561
+ metadata?: string | undefined;
4562
+ user?: string | undefined;
4563
+ system_program?: string | undefined;
4564
+ token_program?: string | undefined;
4565
+ associated_token_program?: string | undefined;
4566
+ rent?: string | undefined;
4567
+ event_authority?: string | undefined;
4568
+ program?: string | undefined;
4569
+ name?: string | undefined;
4570
+ uri?: string | undefined;
4571
+ creator?: string | undefined;
4572
+ } | null | undefined;
4573
+ create_v2?: Record<string, any> | null | undefined;
4574
+ sells?: {
4575
+ timestamp: number;
4576
+ data: {
4577
+ mint?: string | undefined;
4578
+ bonding_curve?: string | undefined;
4579
+ associated_bonding_curve?: string | undefined;
4580
+ global?: string | undefined;
4581
+ user?: string | undefined;
4582
+ system_program?: string | undefined;
4583
+ token_program?: string | undefined;
4584
+ event_authority?: string | undefined;
4585
+ program?: string | undefined;
4586
+ fee_recipient?: string | undefined;
4587
+ associated_user?: string | undefined;
4588
+ creator_vault?: string | undefined;
4589
+ fee_config?: string | undefined;
4590
+ fee_program?: string | undefined;
4591
+ amount?: number | undefined;
4592
+ min_sol_output?: number | undefined;
4593
+ };
4594
+ slot?: number | undefined;
4595
+ signature?: string | undefined;
4596
+ }[] | null | undefined;
4597
+ } | undefined;
4598
+ id?: {
4599
+ mint?: string | null | undefined;
4600
+ bonding_curve?: string | null | undefined;
4601
+ } | undefined;
4602
+ info?: {
4603
+ symbol?: string | null | undefined;
4604
+ name?: string | null | undefined;
4605
+ uri?: string | null | undefined;
4606
+ is_complete?: boolean | null | undefined;
4607
+ } | undefined;
4608
+ reserves?: {
4609
+ virtual_token_reserves?: number | null | undefined;
4610
+ virtual_sol_reserves?: number | null | undefined;
4611
+ real_token_reserves?: number | null | undefined;
4612
+ real_sol_reserves?: number | null | undefined;
4613
+ token_total_supply?: number | null | undefined;
4614
+ current_price_sol?: number | null | undefined;
4615
+ market_cap_sol?: number | null | undefined;
4616
+ } | undefined;
4617
+ trading?: {
4618
+ average_trade_size?: number | null | undefined;
4619
+ buy_count?: number | null | undefined;
4620
+ largest_trade?: number | null | undefined;
4621
+ last_trade_price?: number | null | undefined;
4622
+ last_trade_timestamp?: number | null | undefined;
4623
+ last_whale_address?: string | null | undefined;
4624
+ sell_count?: number | null | undefined;
4625
+ smallest_trade?: number | null | undefined;
4626
+ total_buy_exact_sol_volume?: number | null | undefined;
4627
+ total_buy_volume?: number | null | undefined;
4628
+ total_sell_volume?: number | null | undefined;
4629
+ total_trades?: number | null | undefined;
4630
+ total_volume?: number | null | undefined;
4631
+ unique_traders?: number | null | undefined;
4632
+ whale_trade_count?: number | null | undefined;
4633
+ } | undefined;
4634
+ bonding_curve_snapshot?: {
4635
+ creator?: string | undefined;
4636
+ virtual_token_reserves?: number | undefined;
4637
+ virtual_sol_reserves?: number | undefined;
4638
+ real_token_reserves?: number | undefined;
4639
+ real_sol_reserves?: number | undefined;
4640
+ token_total_supply?: number | undefined;
4641
+ complete?: boolean | undefined;
4642
+ is_mayhem_mode?: boolean | undefined;
4643
+ } | null | undefined;
4644
+ }, {
4645
+ events?: {
4646
+ buys?: {
4647
+ timestamp: number;
4648
+ data: {
4649
+ mint?: string | undefined;
4650
+ bonding_curve?: string | undefined;
4651
+ associated_bonding_curve?: string | undefined;
4652
+ global?: string | undefined;
4653
+ user?: string | undefined;
4654
+ system_program?: string | undefined;
4655
+ token_program?: string | undefined;
4656
+ event_authority?: string | undefined;
4657
+ program?: string | undefined;
4658
+ fee_recipient?: string | undefined;
4659
+ associated_user?: string | undefined;
4660
+ creator_vault?: string | undefined;
4661
+ global_volume_accumulator?: string | undefined;
4662
+ user_volume_accumulator?: string | undefined;
4663
+ fee_config?: string | undefined;
4664
+ fee_program?: string | undefined;
4665
+ amount?: number | undefined;
4666
+ max_sol_cost?: number | undefined;
4667
+ track_volume?: Record<string, any> | undefined;
4668
+ };
4669
+ slot?: number | undefined;
4670
+ signature?: string | undefined;
4671
+ }[] | null | undefined;
4672
+ buys_exact_sol?: any[] | null | undefined;
4673
+ create?: {
4674
+ symbol?: string | undefined;
4675
+ mint?: string | undefined;
4676
+ mint_authority?: string | undefined;
4677
+ bonding_curve?: string | undefined;
4678
+ associated_bonding_curve?: string | undefined;
4679
+ global?: string | undefined;
4680
+ mpl_token_metadata?: string | undefined;
4681
+ metadata?: string | undefined;
4682
+ user?: string | undefined;
4683
+ system_program?: string | undefined;
4684
+ token_program?: string | undefined;
4685
+ associated_token_program?: string | undefined;
4686
+ rent?: string | undefined;
4687
+ event_authority?: string | undefined;
4688
+ program?: string | undefined;
4689
+ name?: string | undefined;
4690
+ uri?: string | undefined;
4691
+ creator?: string | undefined;
4692
+ } | null | undefined;
4693
+ create_v2?: Record<string, any> | null | undefined;
4694
+ sells?: {
4695
+ timestamp: number;
4696
+ data: {
4697
+ mint?: string | undefined;
4698
+ bonding_curve?: string | undefined;
4699
+ associated_bonding_curve?: string | undefined;
4700
+ global?: string | undefined;
4701
+ user?: string | undefined;
4702
+ system_program?: string | undefined;
4703
+ token_program?: string | undefined;
4704
+ event_authority?: string | undefined;
4705
+ program?: string | undefined;
4706
+ fee_recipient?: string | undefined;
4707
+ associated_user?: string | undefined;
4708
+ creator_vault?: string | undefined;
4709
+ fee_config?: string | undefined;
4710
+ fee_program?: string | undefined;
4711
+ amount?: number | undefined;
4712
+ min_sol_output?: number | undefined;
4713
+ };
4714
+ slot?: number | undefined;
4715
+ signature?: string | undefined;
4716
+ }[] | null | undefined;
4717
+ } | undefined;
4718
+ id?: {
4719
+ mint?: string | null | undefined;
4720
+ bonding_curve?: string | null | undefined;
4721
+ } | undefined;
4722
+ info?: {
4723
+ symbol?: string | null | undefined;
4724
+ name?: string | null | undefined;
4725
+ uri?: string | null | undefined;
4726
+ is_complete?: boolean | null | undefined;
4727
+ } | undefined;
4728
+ reserves?: {
4729
+ virtual_token_reserves?: number | null | undefined;
4730
+ virtual_sol_reserves?: number | null | undefined;
4731
+ real_token_reserves?: number | null | undefined;
4732
+ real_sol_reserves?: number | null | undefined;
4733
+ token_total_supply?: number | null | undefined;
4734
+ current_price_sol?: number | null | undefined;
4735
+ market_cap_sol?: number | null | undefined;
4736
+ } | undefined;
4737
+ trading?: {
4738
+ average_trade_size?: number | null | undefined;
4739
+ buy_count?: number | null | undefined;
4740
+ largest_trade?: number | null | undefined;
4741
+ last_trade_price?: number | null | undefined;
4742
+ last_trade_timestamp?: number | null | undefined;
4743
+ last_whale_address?: string | null | undefined;
4744
+ sell_count?: number | null | undefined;
4745
+ smallest_trade?: number | null | undefined;
4746
+ total_buy_exact_sol_volume?: number | null | undefined;
4747
+ total_buy_volume?: number | null | undefined;
4748
+ total_sell_volume?: number | null | undefined;
4749
+ total_trades?: number | null | undefined;
4750
+ total_volume?: number | null | undefined;
4751
+ unique_traders?: number | null | undefined;
4752
+ whale_trade_count?: number | null | undefined;
4753
+ } | undefined;
4754
+ bonding_curve_snapshot?: {
4755
+ creator?: string | undefined;
4756
+ virtual_token_reserves?: number | undefined;
4757
+ virtual_sol_reserves?: number | undefined;
4758
+ real_token_reserves?: number | undefined;
4759
+ real_sol_reserves?: number | undefined;
4760
+ token_total_supply?: number | undefined;
4761
+ complete?: boolean | undefined;
4762
+ is_mayhem_mode?: boolean | undefined;
4763
+ } | null | undefined;
4764
+ }>;
4765
+ readonly PumpfunTokenTrading: z.ZodObject<{
4766
+ average_trade_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4767
+ buy_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4768
+ largest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4769
+ last_trade_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4770
+ last_trade_timestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4771
+ last_whale_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4772
+ sell_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4773
+ smallest_trade: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4774
+ total_buy_exact_sol_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4775
+ total_buy_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4776
+ total_sell_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4777
+ total_trades: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4778
+ total_volume: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4779
+ unique_traders: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4780
+ whale_trade_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4781
+ }, "strip", z.ZodTypeAny, {
4782
+ average_trade_size?: number | null | undefined;
4783
+ buy_count?: number | null | undefined;
4784
+ largest_trade?: number | null | undefined;
4785
+ last_trade_price?: number | null | undefined;
4786
+ last_trade_timestamp?: number | null | undefined;
4787
+ last_whale_address?: string | null | undefined;
4788
+ sell_count?: number | null | undefined;
4789
+ smallest_trade?: number | null | undefined;
4790
+ total_buy_exact_sol_volume?: number | null | undefined;
4791
+ total_buy_volume?: number | null | undefined;
4792
+ total_sell_volume?: number | null | undefined;
4793
+ total_trades?: number | null | undefined;
4794
+ total_volume?: number | null | undefined;
4795
+ unique_traders?: number | null | undefined;
4796
+ whale_trade_count?: number | null | undefined;
4797
+ }, {
4798
+ average_trade_size?: number | null | undefined;
4799
+ buy_count?: number | null | undefined;
4800
+ largest_trade?: number | null | undefined;
4801
+ last_trade_price?: number | null | undefined;
4802
+ last_trade_timestamp?: number | null | undefined;
4803
+ last_whale_address?: string | null | undefined;
4804
+ sell_count?: number | null | undefined;
4805
+ smallest_trade?: number | null | undefined;
4806
+ total_buy_exact_sol_volume?: number | null | undefined;
4807
+ total_buy_volume?: number | null | undefined;
4808
+ total_sell_volume?: number | null | undefined;
4809
+ total_trades?: number | null | undefined;
4810
+ total_volume?: number | null | undefined;
4811
+ unique_traders?: number | null | undefined;
4812
+ whale_trade_count?: number | null | undefined;
4813
+ }>;
4814
+ readonly Sell: z.ZodObject<{
4815
+ global: z.ZodOptional<z.ZodString>;
4816
+ fee_recipient: z.ZodOptional<z.ZodString>;
4817
+ mint: z.ZodOptional<z.ZodString>;
4818
+ bonding_curve: z.ZodOptional<z.ZodString>;
4819
+ associated_bonding_curve: z.ZodOptional<z.ZodString>;
4820
+ associated_user: z.ZodOptional<z.ZodString>;
4821
+ user: z.ZodOptional<z.ZodString>;
4822
+ system_program: z.ZodOptional<z.ZodString>;
4823
+ creator_vault: z.ZodOptional<z.ZodString>;
4824
+ token_program: z.ZodOptional<z.ZodString>;
4825
+ event_authority: z.ZodOptional<z.ZodString>;
4826
+ program: z.ZodOptional<z.ZodString>;
4827
+ fee_config: z.ZodOptional<z.ZodString>;
4828
+ fee_program: z.ZodOptional<z.ZodString>;
4829
+ amount: z.ZodOptional<z.ZodNumber>;
4830
+ min_sol_output: z.ZodOptional<z.ZodNumber>;
4831
+ }, "strip", z.ZodTypeAny, {
4832
+ mint?: string | undefined;
4833
+ bonding_curve?: string | undefined;
4834
+ associated_bonding_curve?: string | undefined;
4835
+ global?: string | undefined;
4836
+ user?: string | undefined;
4837
+ system_program?: string | undefined;
4838
+ token_program?: string | undefined;
4839
+ event_authority?: string | undefined;
4840
+ program?: string | undefined;
4841
+ fee_recipient?: string | undefined;
4842
+ associated_user?: string | undefined;
4843
+ creator_vault?: string | undefined;
4844
+ fee_config?: string | undefined;
4845
+ fee_program?: string | undefined;
4846
+ amount?: number | undefined;
4847
+ min_sol_output?: number | undefined;
4848
+ }, {
4849
+ mint?: string | undefined;
4850
+ bonding_curve?: string | undefined;
4851
+ associated_bonding_curve?: string | undefined;
4852
+ global?: string | undefined;
4853
+ user?: string | undefined;
4854
+ system_program?: string | undefined;
4855
+ token_program?: string | undefined;
4856
+ event_authority?: string | undefined;
4857
+ program?: string | undefined;
4858
+ fee_recipient?: string | undefined;
4859
+ associated_user?: string | undefined;
4860
+ creator_vault?: string | undefined;
4861
+ fee_config?: string | undefined;
4862
+ fee_program?: string | undefined;
4863
+ amount?: number | undefined;
4864
+ min_sol_output?: number | undefined;
4865
+ }>;
4866
+ readonly SellsEvent: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
4867
+ };
4868
+ readonly pdas: {
4869
+ readonly pump: {
4870
+ readonly amm_global_config: hyperstack_typescript.PdaFactory;
4871
+ readonly associated_bonding_curve: hyperstack_typescript.PdaFactory;
4872
+ readonly bonding_curve: hyperstack_typescript.PdaFactory;
4873
+ readonly creator_vault: hyperstack_typescript.PdaFactory;
4874
+ readonly event_authority: hyperstack_typescript.PdaFactory;
4875
+ readonly fee_config: hyperstack_typescript.PdaFactory;
4876
+ readonly global: hyperstack_typescript.PdaFactory;
4877
+ readonly global_incentive_token_account: hyperstack_typescript.PdaFactory;
4878
+ readonly global_params: hyperstack_typescript.PdaFactory;
4879
+ readonly global_volume_accumulator: hyperstack_typescript.PdaFactory;
4880
+ readonly lp_mint: hyperstack_typescript.PdaFactory;
4881
+ readonly mayhem_state: hyperstack_typescript.PdaFactory;
4882
+ readonly mayhem_token_vault: hyperstack_typescript.PdaFactory;
4883
+ readonly metadata: hyperstack_typescript.PdaFactory;
4884
+ readonly mint_authority: hyperstack_typescript.PdaFactory;
4885
+ readonly pool: hyperstack_typescript.PdaFactory;
4886
+ readonly pool_authority: hyperstack_typescript.PdaFactory;
4887
+ readonly pool_authority_mint_account: hyperstack_typescript.PdaFactory;
4888
+ readonly pool_authority_wsol_account: hyperstack_typescript.PdaFactory;
4889
+ readonly pool_base_token_account: hyperstack_typescript.PdaFactory;
4890
+ readonly pool_quote_token_account: hyperstack_typescript.PdaFactory;
4891
+ readonly program_signer: hyperstack_typescript.PdaFactory;
4892
+ readonly pump_amm_event_authority: hyperstack_typescript.PdaFactory;
4893
+ readonly sharing_config: hyperstack_typescript.PdaFactory;
4894
+ readonly sol_vault: hyperstack_typescript.PdaFactory;
4895
+ readonly sol_vault_authority: hyperstack_typescript.PdaFactory;
4896
+ readonly user_ata: hyperstack_typescript.PdaFactory;
4897
+ readonly user_pool_token_account: hyperstack_typescript.PdaFactory;
4898
+ readonly user_volume_accumulator: hyperstack_typescript.PdaFactory;
4899
+ };
4900
+ };
167
4901
  };
168
4902
  /** Type alias for the stack */
169
- type PumpfunTokenStack = typeof PUMPFUNTOKEN_STACK;
4903
+ type PumpfunStreamStack = typeof PUMPFUN_STREAM_STACK;
4904
+ /** Entity types in this stack */
4905
+ type PumpfunStreamEntity = PumpfunToken;
170
4906
 
171
- export { type BondingCurve, type Buy, type BuysEvent, type BuysExactSolEvent, type ConfigStatus, type Create, type CreateEvent, type CreateV2Event, type EventWrapper, PUMPFUNTOKEN_STACK, type PumpfunToken, type PumpfunTokenEvents, type PumpfunTokenId, type PumpfunTokenInfo, type PumpfunTokenReserves, type PumpfunTokenStack, type PumpfunTokenTrading, type Sell, type SellsEvent, type ViewDef, PUMPFUNTOKEN_STACK as default };
4907
+ export { type BondingCurve, BondingCurveSchema, type Buy, BuySchema, type BuysEvent, BuysEventSchema, type BuysExactSolEvent, BuysExactSolEventSchema, type ConfigStatus, ConfigStatusSchema, type Create, type CreateEvent, CreateEventSchema, CreateSchema, type CreateV2Event, CreateV2EventSchema, type EventWrapper, EventWrapperSchema, PUMPFUN_STREAM_STACK, type PumpfunStreamEntity, type PumpfunStreamStack, type PumpfunToken, PumpfunTokenCompletedSchema, type PumpfunTokenEvents, PumpfunTokenEventsSchema, type PumpfunTokenId, PumpfunTokenIdSchema, type PumpfunTokenInfo, PumpfunTokenInfoSchema, type PumpfunTokenReserves, PumpfunTokenReservesSchema, PumpfunTokenSchema, type PumpfunTokenTrading, PumpfunTokenTradingSchema, type Sell, SellSchema, type SellsEvent, SellsEventSchema, type ViewDef, PUMPFUN_STREAM_STACK as default };