@parabolicfamily/mcp 0.1.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.
Files changed (55) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +195 -0
  3. package/abi/ParabolicBondingCurve.json +1223 -0
  4. package/abi/ParabolicLaunchFactory.json +2212 -0
  5. package/abi/ParabolicLauncherToken.json +577 -0
  6. package/abi/ParabolicMemoRouter.json +950 -0
  7. package/dist/abi.d.ts +17 -0
  8. package/dist/abi.js +37 -0
  9. package/dist/abi.js.map +1 -0
  10. package/dist/chain.d.ts +32 -0
  11. package/dist/chain.js +48 -0
  12. package/dist/chain.js.map +1 -0
  13. package/dist/coins.d.ts +52 -0
  14. package/dist/coins.js +75 -0
  15. package/dist/coins.js.map +1 -0
  16. package/dist/config.d.ts +55 -0
  17. package/dist/config.js +86 -0
  18. package/dist/config.js.map +1 -0
  19. package/dist/curve.d.ts +92 -0
  20. package/dist/curve.js +127 -0
  21. package/dist/curve.js.map +1 -0
  22. package/dist/docs.d.ts +3 -0
  23. package/dist/docs.js +63 -0
  24. package/dist/docs.js.map +1 -0
  25. package/dist/format.d.ts +19 -0
  26. package/dist/format.js +30 -0
  27. package/dist/format.js.map +1 -0
  28. package/dist/index.d.ts +2 -0
  29. package/dist/index.js +15 -0
  30. package/dist/index.js.map +1 -0
  31. package/dist/parabolic.d.ts +780 -0
  32. package/dist/parabolic.js +710 -0
  33. package/dist/parabolic.js.map +1 -0
  34. package/dist/server.d.ts +32 -0
  35. package/dist/server.js +149 -0
  36. package/dist/server.js.map +1 -0
  37. package/dist/subgraph.d.ts +85 -0
  38. package/dist/subgraph.js +43 -0
  39. package/dist/subgraph.js.map +1 -0
  40. package/dist/tx.d.ts +115 -0
  41. package/dist/tx.js +105 -0
  42. package/dist/tx.js.map +1 -0
  43. package/package.json +64 -0
  44. package/src/abi.ts +41 -0
  45. package/src/chain.ts +60 -0
  46. package/src/coins.ts +118 -0
  47. package/src/config.ts +123 -0
  48. package/src/curve.ts +171 -0
  49. package/src/docs.ts +63 -0
  50. package/src/format.ts +34 -0
  51. package/src/index.ts +14 -0
  52. package/src/parabolic.ts +753 -0
  53. package/src/server.ts +229 -0
  54. package/src/subgraph.ts +61 -0
  55. package/src/tx.ts +146 -0
@@ -0,0 +1,2212 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [
5
+ {
6
+ "name": "initialOwner",
7
+ "type": "address",
8
+ "internalType": "address"
9
+ },
10
+ {
11
+ "name": "poolManager_",
12
+ "type": "address",
13
+ "internalType": "contract IPoolManager"
14
+ },
15
+ {
16
+ "name": "positionManager_",
17
+ "type": "address",
18
+ "internalType": "contract IPositionManager"
19
+ },
20
+ {
21
+ "name": "permit2_",
22
+ "type": "address",
23
+ "internalType": "contract IAllowanceTransfer"
24
+ },
25
+ {
26
+ "name": "locker_",
27
+ "type": "address",
28
+ "internalType": "contract ParabolicLaunchLocker"
29
+ },
30
+ {
31
+ "name": "memeHook_",
32
+ "type": "address",
33
+ "internalType": "contract ParabolicHook"
34
+ },
35
+ {
36
+ "name": "feeEscrow_",
37
+ "type": "address",
38
+ "internalType": "contract IParabolicFeeEscrow"
39
+ },
40
+ {
41
+ "name": "buybackVault_",
42
+ "type": "address",
43
+ "internalType": "contract ParabolicBuybackVault"
44
+ },
45
+ {
46
+ "name": "initialLaunchFee",
47
+ "type": "uint256",
48
+ "internalType": "uint256"
49
+ }
50
+ ],
51
+ "stateMutability": "nonpayable"
52
+ },
53
+ {
54
+ "type": "receive",
55
+ "stateMutability": "payable"
56
+ },
57
+ {
58
+ "type": "function",
59
+ "name": "CREATOR_FEE_RECIPIENT_EXECUTION_WINDOW",
60
+ "inputs": [],
61
+ "outputs": [
62
+ {
63
+ "name": "",
64
+ "type": "uint256",
65
+ "internalType": "uint256"
66
+ }
67
+ ],
68
+ "stateMutability": "view"
69
+ },
70
+ {
71
+ "type": "function",
72
+ "name": "CREATOR_FEE_RECIPIENT_TIMELOCK",
73
+ "inputs": [],
74
+ "outputs": [
75
+ {
76
+ "name": "",
77
+ "type": "uint256",
78
+ "internalType": "uint256"
79
+ }
80
+ ],
81
+ "stateMutability": "view"
82
+ },
83
+ {
84
+ "type": "function",
85
+ "name": "GRADUATION_RESCUE_DELAY",
86
+ "inputs": [],
87
+ "outputs": [
88
+ {
89
+ "name": "",
90
+ "type": "uint256",
91
+ "internalType": "uint256"
92
+ }
93
+ ],
94
+ "stateMutability": "view"
95
+ },
96
+ {
97
+ "type": "function",
98
+ "name": "acceptOwnership",
99
+ "inputs": [],
100
+ "outputs": [],
101
+ "stateMutability": "nonpayable"
102
+ },
103
+ {
104
+ "type": "function",
105
+ "name": "addLaunchConfig",
106
+ "inputs": [
107
+ {
108
+ "name": "config",
109
+ "type": "tuple",
110
+ "internalType": "struct ParabolicLaunchFactory.LaunchConfig",
111
+ "components": [
112
+ {
113
+ "name": "supply",
114
+ "type": "uint256",
115
+ "internalType": "uint256"
116
+ },
117
+ {
118
+ "name": "curveFeeBps",
119
+ "type": "uint256",
120
+ "internalType": "uint256"
121
+ },
122
+ {
123
+ "name": "phantomQuote",
124
+ "type": "uint256",
125
+ "internalType": "uint256"
126
+ },
127
+ {
128
+ "name": "graduationThreshold",
129
+ "type": "uint256",
130
+ "internalType": "uint256"
131
+ },
132
+ {
133
+ "name": "poolFee",
134
+ "type": "uint24",
135
+ "internalType": "uint24"
136
+ },
137
+ {
138
+ "name": "tickSpacing",
139
+ "type": "int24",
140
+ "internalType": "int24"
141
+ },
142
+ {
143
+ "name": "enabled",
144
+ "type": "bool",
145
+ "internalType": "bool"
146
+ }
147
+ ]
148
+ }
149
+ ],
150
+ "outputs": [
151
+ {
152
+ "name": "id",
153
+ "type": "uint256",
154
+ "internalType": "uint256"
155
+ }
156
+ ],
157
+ "stateMutability": "nonpayable"
158
+ },
159
+ {
160
+ "type": "function",
161
+ "name": "approvedPairTokens",
162
+ "inputs": [
163
+ {
164
+ "name": "pairToken",
165
+ "type": "address",
166
+ "internalType": "address"
167
+ }
168
+ ],
169
+ "outputs": [
170
+ {
171
+ "name": "approved",
172
+ "type": "bool",
173
+ "internalType": "bool"
174
+ }
175
+ ],
176
+ "stateMutability": "view"
177
+ },
178
+ {
179
+ "type": "function",
180
+ "name": "buybackVault",
181
+ "inputs": [],
182
+ "outputs": [
183
+ {
184
+ "name": "",
185
+ "type": "address",
186
+ "internalType": "contract ParabolicBuybackVault"
187
+ }
188
+ ],
189
+ "stateMutability": "view"
190
+ },
191
+ {
192
+ "type": "function",
193
+ "name": "canLaunch",
194
+ "inputs": [
195
+ {
196
+ "name": "launcher",
197
+ "type": "address",
198
+ "internalType": "address"
199
+ }
200
+ ],
201
+ "outputs": [
202
+ {
203
+ "name": "",
204
+ "type": "bool",
205
+ "internalType": "bool"
206
+ }
207
+ ],
208
+ "stateMutability": "view"
209
+ },
210
+ {
211
+ "type": "function",
212
+ "name": "cancelCreatorFeeRecipientChange",
213
+ "inputs": [
214
+ {
215
+ "name": "token",
216
+ "type": "address",
217
+ "internalType": "address"
218
+ }
219
+ ],
220
+ "outputs": [],
221
+ "stateMutability": "nonpayable"
222
+ },
223
+ {
224
+ "type": "function",
225
+ "name": "createGraduatedPool",
226
+ "inputs": [
227
+ {
228
+ "name": "token",
229
+ "type": "address",
230
+ "internalType": "address"
231
+ }
232
+ ],
233
+ "outputs": [
234
+ {
235
+ "name": "positionId",
236
+ "type": "uint256",
237
+ "internalType": "uint256"
238
+ }
239
+ ],
240
+ "stateMutability": "nonpayable"
241
+ },
242
+ {
243
+ "type": "function",
244
+ "name": "executeCreatorFeeRecipientChange",
245
+ "inputs": [
246
+ {
247
+ "name": "token",
248
+ "type": "address",
249
+ "internalType": "address"
250
+ }
251
+ ],
252
+ "outputs": [],
253
+ "stateMutability": "nonpayable"
254
+ },
255
+ {
256
+ "type": "function",
257
+ "name": "feeEscrow",
258
+ "inputs": [],
259
+ "outputs": [
260
+ {
261
+ "name": "",
262
+ "type": "address",
263
+ "internalType": "contract IParabolicFeeEscrow"
264
+ }
265
+ ],
266
+ "stateMutability": "view"
267
+ },
268
+ {
269
+ "type": "function",
270
+ "name": "forceSweptGraduation",
271
+ "inputs": [
272
+ {
273
+ "name": "token",
274
+ "type": "address",
275
+ "internalType": "address"
276
+ }
277
+ ],
278
+ "outputs": [],
279
+ "stateMutability": "nonpayable"
280
+ },
281
+ {
282
+ "type": "function",
283
+ "name": "getLaunchConfig",
284
+ "inputs": [
285
+ {
286
+ "name": "id",
287
+ "type": "uint256",
288
+ "internalType": "uint256"
289
+ }
290
+ ],
291
+ "outputs": [
292
+ {
293
+ "name": "",
294
+ "type": "tuple",
295
+ "internalType": "struct ParabolicLaunchFactory.LaunchConfig",
296
+ "components": [
297
+ {
298
+ "name": "supply",
299
+ "type": "uint256",
300
+ "internalType": "uint256"
301
+ },
302
+ {
303
+ "name": "curveFeeBps",
304
+ "type": "uint256",
305
+ "internalType": "uint256"
306
+ },
307
+ {
308
+ "name": "phantomQuote",
309
+ "type": "uint256",
310
+ "internalType": "uint256"
311
+ },
312
+ {
313
+ "name": "graduationThreshold",
314
+ "type": "uint256",
315
+ "internalType": "uint256"
316
+ },
317
+ {
318
+ "name": "poolFee",
319
+ "type": "uint24",
320
+ "internalType": "uint24"
321
+ },
322
+ {
323
+ "name": "tickSpacing",
324
+ "type": "int24",
325
+ "internalType": "int24"
326
+ },
327
+ {
328
+ "name": "enabled",
329
+ "type": "bool",
330
+ "internalType": "bool"
331
+ }
332
+ ]
333
+ }
334
+ ],
335
+ "stateMutability": "view"
336
+ },
337
+ {
338
+ "type": "function",
339
+ "name": "getLaunchFeePolicy",
340
+ "inputs": [
341
+ {
342
+ "name": "token",
343
+ "type": "address",
344
+ "internalType": "address"
345
+ }
346
+ ],
347
+ "outputs": [
348
+ {
349
+ "name": "",
350
+ "type": "tuple",
351
+ "internalType": "struct FeePolicySnapshot",
352
+ "components": [
353
+ {
354
+ "name": "protocolFeeRecipient",
355
+ "type": "address",
356
+ "internalType": "address"
357
+ },
358
+ {
359
+ "name": "protocolFeeShareBps",
360
+ "type": "uint16",
361
+ "internalType": "uint16"
362
+ },
363
+ {
364
+ "name": "buybackBurnBps",
365
+ "type": "uint16",
366
+ "internalType": "uint16"
367
+ },
368
+ {
369
+ "name": "hookFeeBps",
370
+ "type": "uint16",
371
+ "internalType": "uint16"
372
+ },
373
+ {
374
+ "name": "maxInternalPriceImpactBps",
375
+ "type": "uint16",
376
+ "internalType": "uint16"
377
+ }
378
+ ]
379
+ }
380
+ ],
381
+ "stateMutability": "view"
382
+ },
383
+ {
384
+ "type": "function",
385
+ "name": "getLaunchedToken",
386
+ "inputs": [
387
+ {
388
+ "name": "token",
389
+ "type": "address",
390
+ "internalType": "address"
391
+ }
392
+ ],
393
+ "outputs": [
394
+ {
395
+ "name": "",
396
+ "type": "tuple",
397
+ "internalType": "struct IParabolicLaunchFactory.LaunchedToken",
398
+ "components": [
399
+ {
400
+ "name": "token",
401
+ "type": "address",
402
+ "internalType": "address"
403
+ },
404
+ {
405
+ "name": "curve",
406
+ "type": "address",
407
+ "internalType": "address"
408
+ },
409
+ {
410
+ "name": "deployer",
411
+ "type": "address",
412
+ "internalType": "address"
413
+ },
414
+ {
415
+ "name": "creatorFeeRecipient",
416
+ "type": "address",
417
+ "internalType": "address"
418
+ },
419
+ {
420
+ "name": "pairToken",
421
+ "type": "address",
422
+ "internalType": "address"
423
+ },
424
+ {
425
+ "name": "graduationThreshold",
426
+ "type": "uint256",
427
+ "internalType": "uint256"
428
+ },
429
+ {
430
+ "name": "poolFee",
431
+ "type": "uint24",
432
+ "internalType": "uint24"
433
+ },
434
+ {
435
+ "name": "tickSpacing",
436
+ "type": "int24",
437
+ "internalType": "int24"
438
+ },
439
+ {
440
+ "name": "creatorTaxBps",
441
+ "type": "uint16",
442
+ "internalType": "uint16"
443
+ },
444
+ {
445
+ "name": "buybackEnabled",
446
+ "type": "bool",
447
+ "internalType": "bool"
448
+ },
449
+ {
450
+ "name": "phase",
451
+ "type": "uint8",
452
+ "internalType": "enum GraduationPhase"
453
+ },
454
+ {
455
+ "name": "sweptQuote",
456
+ "type": "uint256",
457
+ "internalType": "uint256"
458
+ },
459
+ {
460
+ "name": "sweptTokens",
461
+ "type": "uint256",
462
+ "internalType": "uint256"
463
+ },
464
+ {
465
+ "name": "sweptAt",
466
+ "type": "uint256",
467
+ "internalType": "uint256"
468
+ },
469
+ {
470
+ "name": "exists",
471
+ "type": "bool",
472
+ "internalType": "bool"
473
+ }
474
+ ]
475
+ }
476
+ ],
477
+ "stateMutability": "view"
478
+ },
479
+ {
480
+ "type": "function",
481
+ "name": "graduate",
482
+ "inputs": [
483
+ {
484
+ "name": "token",
485
+ "type": "address",
486
+ "internalType": "address"
487
+ }
488
+ ],
489
+ "outputs": [],
490
+ "stateMutability": "nonpayable"
491
+ },
492
+ {
493
+ "type": "function",
494
+ "name": "graduationExecutor",
495
+ "inputs": [],
496
+ "outputs": [
497
+ {
498
+ "name": "",
499
+ "type": "address",
500
+ "internalType": "contract ParabolicGraduationExecutor"
501
+ }
502
+ ],
503
+ "stateMutability": "view"
504
+ },
505
+ {
506
+ "type": "function",
507
+ "name": "graduationGuard",
508
+ "inputs": [],
509
+ "outputs": [
510
+ {
511
+ "name": "",
512
+ "type": "address",
513
+ "internalType": "contract ParabolicGraduationGuard"
514
+ }
515
+ ],
516
+ "stateMutability": "view"
517
+ },
518
+ {
519
+ "type": "function",
520
+ "name": "launchConfigCount",
521
+ "inputs": [],
522
+ "outputs": [
523
+ {
524
+ "name": "",
525
+ "type": "uint256",
526
+ "internalType": "uint256"
527
+ }
528
+ ],
529
+ "stateMutability": "view"
530
+ },
531
+ {
532
+ "type": "function",
533
+ "name": "launchDeployer",
534
+ "inputs": [],
535
+ "outputs": [
536
+ {
537
+ "name": "",
538
+ "type": "address",
539
+ "internalType": "contract ParabolicLaunchDeployer"
540
+ }
541
+ ],
542
+ "stateMutability": "view"
543
+ },
544
+ {
545
+ "type": "function",
546
+ "name": "launchEnabled",
547
+ "inputs": [],
548
+ "outputs": [
549
+ {
550
+ "name": "",
551
+ "type": "bool",
552
+ "internalType": "bool"
553
+ }
554
+ ],
555
+ "stateMutability": "view"
556
+ },
557
+ {
558
+ "type": "function",
559
+ "name": "launchFee",
560
+ "inputs": [],
561
+ "outputs": [
562
+ {
563
+ "name": "",
564
+ "type": "uint256",
565
+ "internalType": "uint256"
566
+ }
567
+ ],
568
+ "stateMutability": "view"
569
+ },
570
+ {
571
+ "type": "function",
572
+ "name": "launchForwarder",
573
+ "inputs": [],
574
+ "outputs": [
575
+ {
576
+ "name": "",
577
+ "type": "address",
578
+ "internalType": "address"
579
+ }
580
+ ],
581
+ "stateMutability": "view"
582
+ },
583
+ {
584
+ "type": "function",
585
+ "name": "launchToken",
586
+ "inputs": [
587
+ {
588
+ "name": "params",
589
+ "type": "tuple",
590
+ "internalType": "struct ParabolicLaunchFactory.TokenParams",
591
+ "components": [
592
+ {
593
+ "name": "name",
594
+ "type": "string",
595
+ "internalType": "string"
596
+ },
597
+ {
598
+ "name": "symbol",
599
+ "type": "string",
600
+ "internalType": "string"
601
+ },
602
+ {
603
+ "name": "logo",
604
+ "type": "string",
605
+ "internalType": "string"
606
+ },
607
+ {
608
+ "name": "description",
609
+ "type": "string",
610
+ "internalType": "string"
611
+ },
612
+ {
613
+ "name": "socials",
614
+ "type": "tuple",
615
+ "internalType": "struct ParabolicLauncherToken.Socials",
616
+ "components": [
617
+ {
618
+ "name": "twitter",
619
+ "type": "string",
620
+ "internalType": "string"
621
+ },
622
+ {
623
+ "name": "telegram",
624
+ "type": "string",
625
+ "internalType": "string"
626
+ },
627
+ {
628
+ "name": "discord",
629
+ "type": "string",
630
+ "internalType": "string"
631
+ },
632
+ {
633
+ "name": "website",
634
+ "type": "string",
635
+ "internalType": "string"
636
+ },
637
+ {
638
+ "name": "farcaster",
639
+ "type": "string",
640
+ "internalType": "string"
641
+ }
642
+ ]
643
+ },
644
+ {
645
+ "name": "creatorFeeRecipient",
646
+ "type": "address",
647
+ "internalType": "address"
648
+ },
649
+ {
650
+ "name": "creatorTaxBps",
651
+ "type": "uint16",
652
+ "internalType": "uint16"
653
+ },
654
+ {
655
+ "name": "buybackEnabled",
656
+ "type": "bool",
657
+ "internalType": "bool"
658
+ },
659
+ {
660
+ "name": "expectedEconomics",
661
+ "type": "bytes32",
662
+ "internalType": "bytes32"
663
+ },
664
+ {
665
+ "name": "salt",
666
+ "type": "bytes32",
667
+ "internalType": "bytes32"
668
+ }
669
+ ]
670
+ },
671
+ {
672
+ "name": "launchConfigId",
673
+ "type": "uint256",
674
+ "internalType": "uint256"
675
+ },
676
+ {
677
+ "name": "pairToken",
678
+ "type": "address",
679
+ "internalType": "address"
680
+ }
681
+ ],
682
+ "outputs": [
683
+ {
684
+ "name": "token",
685
+ "type": "address",
686
+ "internalType": "address"
687
+ },
688
+ {
689
+ "name": "curve",
690
+ "type": "address",
691
+ "internalType": "address"
692
+ }
693
+ ],
694
+ "stateMutability": "payable"
695
+ },
696
+ {
697
+ "type": "function",
698
+ "name": "launchTokenFor",
699
+ "inputs": [
700
+ {
701
+ "name": "params",
702
+ "type": "tuple",
703
+ "internalType": "struct ParabolicLaunchFactory.TokenParams",
704
+ "components": [
705
+ {
706
+ "name": "name",
707
+ "type": "string",
708
+ "internalType": "string"
709
+ },
710
+ {
711
+ "name": "symbol",
712
+ "type": "string",
713
+ "internalType": "string"
714
+ },
715
+ {
716
+ "name": "logo",
717
+ "type": "string",
718
+ "internalType": "string"
719
+ },
720
+ {
721
+ "name": "description",
722
+ "type": "string",
723
+ "internalType": "string"
724
+ },
725
+ {
726
+ "name": "socials",
727
+ "type": "tuple",
728
+ "internalType": "struct ParabolicLauncherToken.Socials",
729
+ "components": [
730
+ {
731
+ "name": "twitter",
732
+ "type": "string",
733
+ "internalType": "string"
734
+ },
735
+ {
736
+ "name": "telegram",
737
+ "type": "string",
738
+ "internalType": "string"
739
+ },
740
+ {
741
+ "name": "discord",
742
+ "type": "string",
743
+ "internalType": "string"
744
+ },
745
+ {
746
+ "name": "website",
747
+ "type": "string",
748
+ "internalType": "string"
749
+ },
750
+ {
751
+ "name": "farcaster",
752
+ "type": "string",
753
+ "internalType": "string"
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "name": "creatorFeeRecipient",
759
+ "type": "address",
760
+ "internalType": "address"
761
+ },
762
+ {
763
+ "name": "creatorTaxBps",
764
+ "type": "uint16",
765
+ "internalType": "uint16"
766
+ },
767
+ {
768
+ "name": "buybackEnabled",
769
+ "type": "bool",
770
+ "internalType": "bool"
771
+ },
772
+ {
773
+ "name": "expectedEconomics",
774
+ "type": "bytes32",
775
+ "internalType": "bytes32"
776
+ },
777
+ {
778
+ "name": "salt",
779
+ "type": "bytes32",
780
+ "internalType": "bytes32"
781
+ }
782
+ ]
783
+ },
784
+ {
785
+ "name": "launchConfigId",
786
+ "type": "uint256",
787
+ "internalType": "uint256"
788
+ },
789
+ {
790
+ "name": "pairToken",
791
+ "type": "address",
792
+ "internalType": "address"
793
+ },
794
+ {
795
+ "name": "originalDeployer",
796
+ "type": "address",
797
+ "internalType": "address"
798
+ }
799
+ ],
800
+ "outputs": [
801
+ {
802
+ "name": "token",
803
+ "type": "address",
804
+ "internalType": "address"
805
+ },
806
+ {
807
+ "name": "curve",
808
+ "type": "address",
809
+ "internalType": "address"
810
+ }
811
+ ],
812
+ "stateMutability": "payable"
813
+ },
814
+ {
815
+ "type": "function",
816
+ "name": "locker",
817
+ "inputs": [],
818
+ "outputs": [
819
+ {
820
+ "name": "",
821
+ "type": "address",
822
+ "internalType": "contract ParabolicLaunchLocker"
823
+ }
824
+ ],
825
+ "stateMutability": "view"
826
+ },
827
+ {
828
+ "type": "function",
829
+ "name": "maxCreatorTaxBps",
830
+ "inputs": [],
831
+ "outputs": [
832
+ {
833
+ "name": "",
834
+ "type": "uint256",
835
+ "internalType": "uint256"
836
+ }
837
+ ],
838
+ "stateMutability": "view"
839
+ },
840
+ {
841
+ "type": "function",
842
+ "name": "memeHook",
843
+ "inputs": [],
844
+ "outputs": [
845
+ {
846
+ "name": "",
847
+ "type": "address",
848
+ "internalType": "contract ParabolicHook"
849
+ }
850
+ ],
851
+ "stateMutability": "view"
852
+ },
853
+ {
854
+ "type": "function",
855
+ "name": "owner",
856
+ "inputs": [],
857
+ "outputs": [
858
+ {
859
+ "name": "",
860
+ "type": "address",
861
+ "internalType": "address"
862
+ }
863
+ ],
864
+ "stateMutability": "view"
865
+ },
866
+ {
867
+ "type": "function",
868
+ "name": "pairTokenEconomics",
869
+ "inputs": [
870
+ {
871
+ "name": "pairToken",
872
+ "type": "address",
873
+ "internalType": "address"
874
+ }
875
+ ],
876
+ "outputs": [
877
+ {
878
+ "name": "phantomQuote",
879
+ "type": "uint256",
880
+ "internalType": "uint256"
881
+ },
882
+ {
883
+ "name": "graduationThreshold",
884
+ "type": "uint256",
885
+ "internalType": "uint256"
886
+ },
887
+ {
888
+ "name": "decimals",
889
+ "type": "uint8",
890
+ "internalType": "uint8"
891
+ }
892
+ ],
893
+ "stateMutability": "view"
894
+ },
895
+ {
896
+ "type": "function",
897
+ "name": "pendingCreatorFeeRecipient",
898
+ "inputs": [
899
+ {
900
+ "name": "token",
901
+ "type": "address",
902
+ "internalType": "address"
903
+ }
904
+ ],
905
+ "outputs": [
906
+ {
907
+ "name": "newRecipient",
908
+ "type": "address",
909
+ "internalType": "address"
910
+ },
911
+ {
912
+ "name": "effectiveAt",
913
+ "type": "uint256",
914
+ "internalType": "uint256"
915
+ },
916
+ {
917
+ "name": "expiresAt",
918
+ "type": "uint256",
919
+ "internalType": "uint256"
920
+ }
921
+ ],
922
+ "stateMutability": "view"
923
+ },
924
+ {
925
+ "type": "function",
926
+ "name": "pendingOwner",
927
+ "inputs": [],
928
+ "outputs": [
929
+ {
930
+ "name": "",
931
+ "type": "address",
932
+ "internalType": "address"
933
+ }
934
+ ],
935
+ "stateMutability": "view"
936
+ },
937
+ {
938
+ "type": "function",
939
+ "name": "permit2",
940
+ "inputs": [],
941
+ "outputs": [
942
+ {
943
+ "name": "",
944
+ "type": "address",
945
+ "internalType": "contract IAllowanceTransfer"
946
+ }
947
+ ],
948
+ "stateMutability": "view"
949
+ },
950
+ {
951
+ "type": "function",
952
+ "name": "poolManager",
953
+ "inputs": [],
954
+ "outputs": [
955
+ {
956
+ "name": "",
957
+ "type": "address",
958
+ "internalType": "contract IPoolManager"
959
+ }
960
+ ],
961
+ "stateMutability": "view"
962
+ },
963
+ {
964
+ "type": "function",
965
+ "name": "positionManager",
966
+ "inputs": [],
967
+ "outputs": [
968
+ {
969
+ "name": "",
970
+ "type": "address",
971
+ "internalType": "contract IPositionManager"
972
+ }
973
+ ],
974
+ "stateMutability": "view"
975
+ },
976
+ {
977
+ "type": "function",
978
+ "name": "previewLaunchEconomics",
979
+ "inputs": [
980
+ {
981
+ "name": "launchConfigId",
982
+ "type": "uint256",
983
+ "internalType": "uint256"
984
+ },
985
+ {
986
+ "name": "pairToken",
987
+ "type": "address",
988
+ "internalType": "address"
989
+ }
990
+ ],
991
+ "outputs": [
992
+ {
993
+ "name": "",
994
+ "type": "bytes32",
995
+ "internalType": "bytes32"
996
+ }
997
+ ],
998
+ "stateMutability": "view"
999
+ },
1000
+ {
1001
+ "type": "function",
1002
+ "name": "renounceOwnership",
1003
+ "inputs": [],
1004
+ "outputs": [],
1005
+ "stateMutability": "pure"
1006
+ },
1007
+ {
1008
+ "type": "function",
1009
+ "name": "rescueCurveFees",
1010
+ "inputs": [
1011
+ {
1012
+ "name": "token",
1013
+ "type": "address",
1014
+ "internalType": "address"
1015
+ }
1016
+ ],
1017
+ "outputs": [],
1018
+ "stateMutability": "nonpayable"
1019
+ },
1020
+ {
1021
+ "type": "function",
1022
+ "name": "rescueSweptGraduation",
1023
+ "inputs": [
1024
+ {
1025
+ "name": "token",
1026
+ "type": "address",
1027
+ "internalType": "address"
1028
+ },
1029
+ {
1030
+ "name": "recipient",
1031
+ "type": "address",
1032
+ "internalType": "address"
1033
+ }
1034
+ ],
1035
+ "outputs": [],
1036
+ "stateMutability": "nonpayable"
1037
+ },
1038
+ {
1039
+ "type": "function",
1040
+ "name": "setBuybackEnabled",
1041
+ "inputs": [
1042
+ {
1043
+ "name": "token",
1044
+ "type": "address",
1045
+ "internalType": "address"
1046
+ },
1047
+ {
1048
+ "name": "enabled",
1049
+ "type": "bool",
1050
+ "internalType": "bool"
1051
+ }
1052
+ ],
1053
+ "outputs": [],
1054
+ "stateMutability": "nonpayable"
1055
+ },
1056
+ {
1057
+ "type": "function",
1058
+ "name": "setCreatorFeeRecipient",
1059
+ "inputs": [
1060
+ {
1061
+ "name": "token",
1062
+ "type": "address",
1063
+ "internalType": "address"
1064
+ },
1065
+ {
1066
+ "name": "newRecipient",
1067
+ "type": "address",
1068
+ "internalType": "address"
1069
+ }
1070
+ ],
1071
+ "outputs": [],
1072
+ "stateMutability": "nonpayable"
1073
+ },
1074
+ {
1075
+ "type": "function",
1076
+ "name": "setGraduationExecutor",
1077
+ "inputs": [
1078
+ {
1079
+ "name": "executor",
1080
+ "type": "address",
1081
+ "internalType": "contract ParabolicGraduationExecutor"
1082
+ }
1083
+ ],
1084
+ "outputs": [],
1085
+ "stateMutability": "nonpayable"
1086
+ },
1087
+ {
1088
+ "type": "function",
1089
+ "name": "setLaunchDeployer",
1090
+ "inputs": [
1091
+ {
1092
+ "name": "deployer",
1093
+ "type": "address",
1094
+ "internalType": "contract ParabolicLaunchDeployer"
1095
+ }
1096
+ ],
1097
+ "outputs": [],
1098
+ "stateMutability": "nonpayable"
1099
+ },
1100
+ {
1101
+ "type": "function",
1102
+ "name": "setLaunchEnabled",
1103
+ "inputs": [
1104
+ {
1105
+ "name": "enabled",
1106
+ "type": "bool",
1107
+ "internalType": "bool"
1108
+ }
1109
+ ],
1110
+ "outputs": [],
1111
+ "stateMutability": "nonpayable"
1112
+ },
1113
+ {
1114
+ "type": "function",
1115
+ "name": "setLaunchFee",
1116
+ "inputs": [
1117
+ {
1118
+ "name": "newLaunchFee",
1119
+ "type": "uint256",
1120
+ "internalType": "uint256"
1121
+ }
1122
+ ],
1123
+ "outputs": [],
1124
+ "stateMutability": "nonpayable"
1125
+ },
1126
+ {
1127
+ "type": "function",
1128
+ "name": "setLaunchForwarder",
1129
+ "inputs": [
1130
+ {
1131
+ "name": "forwarder",
1132
+ "type": "address",
1133
+ "internalType": "address"
1134
+ }
1135
+ ],
1136
+ "outputs": [],
1137
+ "stateMutability": "nonpayable"
1138
+ },
1139
+ {
1140
+ "type": "function",
1141
+ "name": "setMaxCreatorTaxBps",
1142
+ "inputs": [
1143
+ {
1144
+ "name": "bps",
1145
+ "type": "uint256",
1146
+ "internalType": "uint256"
1147
+ }
1148
+ ],
1149
+ "outputs": [],
1150
+ "stateMutability": "nonpayable"
1151
+ },
1152
+ {
1153
+ "type": "function",
1154
+ "name": "setPairTokenApproved",
1155
+ "inputs": [
1156
+ {
1157
+ "name": "pairToken",
1158
+ "type": "address",
1159
+ "internalType": "address"
1160
+ },
1161
+ {
1162
+ "name": "approved",
1163
+ "type": "bool",
1164
+ "internalType": "bool"
1165
+ }
1166
+ ],
1167
+ "outputs": [],
1168
+ "stateMutability": "nonpayable"
1169
+ },
1170
+ {
1171
+ "type": "function",
1172
+ "name": "setPairTokenEconomics",
1173
+ "inputs": [
1174
+ {
1175
+ "name": "pairToken",
1176
+ "type": "address",
1177
+ "internalType": "address"
1178
+ },
1179
+ {
1180
+ "name": "phantomQuote",
1181
+ "type": "uint256",
1182
+ "internalType": "uint256"
1183
+ },
1184
+ {
1185
+ "name": "graduationThreshold",
1186
+ "type": "uint256",
1187
+ "internalType": "uint256"
1188
+ },
1189
+ {
1190
+ "name": "expectedDecimals",
1191
+ "type": "uint8",
1192
+ "internalType": "uint8"
1193
+ }
1194
+ ],
1195
+ "outputs": [],
1196
+ "stateMutability": "nonpayable"
1197
+ },
1198
+ {
1199
+ "type": "function",
1200
+ "name": "setSnipeTaxSeconds",
1201
+ "inputs": [
1202
+ {
1203
+ "name": "secondsWindow",
1204
+ "type": "uint256",
1205
+ "internalType": "uint256"
1206
+ }
1207
+ ],
1208
+ "outputs": [],
1209
+ "stateMutability": "nonpayable"
1210
+ },
1211
+ {
1212
+ "type": "function",
1213
+ "name": "setSnipeTaxStartBps",
1214
+ "inputs": [
1215
+ {
1216
+ "name": "bps",
1217
+ "type": "uint256",
1218
+ "internalType": "uint256"
1219
+ }
1220
+ ],
1221
+ "outputs": [],
1222
+ "stateMutability": "nonpayable"
1223
+ },
1224
+ {
1225
+ "type": "function",
1226
+ "name": "setWhitelistedLauncher",
1227
+ "inputs": [
1228
+ {
1229
+ "name": "launcher",
1230
+ "type": "address",
1231
+ "internalType": "address"
1232
+ },
1233
+ {
1234
+ "name": "enabled",
1235
+ "type": "bool",
1236
+ "internalType": "bool"
1237
+ }
1238
+ ],
1239
+ "outputs": [],
1240
+ "stateMutability": "nonpayable"
1241
+ },
1242
+ {
1243
+ "type": "function",
1244
+ "name": "snipeTaxSeconds",
1245
+ "inputs": [],
1246
+ "outputs": [
1247
+ {
1248
+ "name": "",
1249
+ "type": "uint256",
1250
+ "internalType": "uint256"
1251
+ }
1252
+ ],
1253
+ "stateMutability": "view"
1254
+ },
1255
+ {
1256
+ "type": "function",
1257
+ "name": "snipeTaxStartBps",
1258
+ "inputs": [],
1259
+ "outputs": [
1260
+ {
1261
+ "name": "",
1262
+ "type": "uint256",
1263
+ "internalType": "uint256"
1264
+ }
1265
+ ],
1266
+ "stateMutability": "view"
1267
+ },
1268
+ {
1269
+ "type": "function",
1270
+ "name": "transferCreatorFeeRecipient",
1271
+ "inputs": [
1272
+ {
1273
+ "name": "token",
1274
+ "type": "address",
1275
+ "internalType": "address"
1276
+ },
1277
+ {
1278
+ "name": "newRecipient",
1279
+ "type": "address",
1280
+ "internalType": "address"
1281
+ }
1282
+ ],
1283
+ "outputs": [],
1284
+ "stateMutability": "nonpayable"
1285
+ },
1286
+ {
1287
+ "type": "function",
1288
+ "name": "transferOwnership",
1289
+ "inputs": [
1290
+ {
1291
+ "name": "newOwner",
1292
+ "type": "address",
1293
+ "internalType": "address"
1294
+ }
1295
+ ],
1296
+ "outputs": [],
1297
+ "stateMutability": "nonpayable"
1298
+ },
1299
+ {
1300
+ "type": "function",
1301
+ "name": "updateLaunchConfig",
1302
+ "inputs": [
1303
+ {
1304
+ "name": "id",
1305
+ "type": "uint256",
1306
+ "internalType": "uint256"
1307
+ },
1308
+ {
1309
+ "name": "config",
1310
+ "type": "tuple",
1311
+ "internalType": "struct ParabolicLaunchFactory.LaunchConfig",
1312
+ "components": [
1313
+ {
1314
+ "name": "supply",
1315
+ "type": "uint256",
1316
+ "internalType": "uint256"
1317
+ },
1318
+ {
1319
+ "name": "curveFeeBps",
1320
+ "type": "uint256",
1321
+ "internalType": "uint256"
1322
+ },
1323
+ {
1324
+ "name": "phantomQuote",
1325
+ "type": "uint256",
1326
+ "internalType": "uint256"
1327
+ },
1328
+ {
1329
+ "name": "graduationThreshold",
1330
+ "type": "uint256",
1331
+ "internalType": "uint256"
1332
+ },
1333
+ {
1334
+ "name": "poolFee",
1335
+ "type": "uint24",
1336
+ "internalType": "uint24"
1337
+ },
1338
+ {
1339
+ "name": "tickSpacing",
1340
+ "type": "int24",
1341
+ "internalType": "int24"
1342
+ },
1343
+ {
1344
+ "name": "enabled",
1345
+ "type": "bool",
1346
+ "internalType": "bool"
1347
+ }
1348
+ ]
1349
+ }
1350
+ ],
1351
+ "outputs": [],
1352
+ "stateMutability": "nonpayable"
1353
+ },
1354
+ {
1355
+ "type": "function",
1356
+ "name": "whitelistedLaunchers",
1357
+ "inputs": [
1358
+ {
1359
+ "name": "launcher",
1360
+ "type": "address",
1361
+ "internalType": "address"
1362
+ }
1363
+ ],
1364
+ "outputs": [
1365
+ {
1366
+ "name": "enabled",
1367
+ "type": "bool",
1368
+ "internalType": "bool"
1369
+ }
1370
+ ],
1371
+ "stateMutability": "view"
1372
+ },
1373
+ {
1374
+ "type": "event",
1375
+ "name": "BuybackEnabledUpdated",
1376
+ "inputs": [
1377
+ {
1378
+ "name": "token",
1379
+ "type": "address",
1380
+ "indexed": true,
1381
+ "internalType": "address"
1382
+ },
1383
+ {
1384
+ "name": "enabled",
1385
+ "type": "bool",
1386
+ "indexed": false,
1387
+ "internalType": "bool"
1388
+ },
1389
+ {
1390
+ "name": "controller",
1391
+ "type": "address",
1392
+ "indexed": true,
1393
+ "internalType": "address"
1394
+ }
1395
+ ],
1396
+ "anonymous": false
1397
+ },
1398
+ {
1399
+ "type": "event",
1400
+ "name": "CreatorFeeRecipientChangeCancelled",
1401
+ "inputs": [
1402
+ {
1403
+ "name": "token",
1404
+ "type": "address",
1405
+ "indexed": true,
1406
+ "internalType": "address"
1407
+ },
1408
+ {
1409
+ "name": "proposedRecipient",
1410
+ "type": "address",
1411
+ "indexed": true,
1412
+ "internalType": "address"
1413
+ }
1414
+ ],
1415
+ "anonymous": false
1416
+ },
1417
+ {
1418
+ "type": "event",
1419
+ "name": "CreatorFeeRecipientChangeProposed",
1420
+ "inputs": [
1421
+ {
1422
+ "name": "token",
1423
+ "type": "address",
1424
+ "indexed": true,
1425
+ "internalType": "address"
1426
+ },
1427
+ {
1428
+ "name": "currentRecipient",
1429
+ "type": "address",
1430
+ "indexed": true,
1431
+ "internalType": "address"
1432
+ },
1433
+ {
1434
+ "name": "proposedRecipient",
1435
+ "type": "address",
1436
+ "indexed": true,
1437
+ "internalType": "address"
1438
+ },
1439
+ {
1440
+ "name": "effectiveAt",
1441
+ "type": "uint256",
1442
+ "indexed": false,
1443
+ "internalType": "uint256"
1444
+ },
1445
+ {
1446
+ "name": "expiresAt",
1447
+ "type": "uint256",
1448
+ "indexed": false,
1449
+ "internalType": "uint256"
1450
+ }
1451
+ ],
1452
+ "anonymous": false
1453
+ },
1454
+ {
1455
+ "type": "event",
1456
+ "name": "CreatorFeeRecipientUpdated",
1457
+ "inputs": [
1458
+ {
1459
+ "name": "token",
1460
+ "type": "address",
1461
+ "indexed": true,
1462
+ "internalType": "address"
1463
+ },
1464
+ {
1465
+ "name": "previousRecipient",
1466
+ "type": "address",
1467
+ "indexed": true,
1468
+ "internalType": "address"
1469
+ },
1470
+ {
1471
+ "name": "newRecipient",
1472
+ "type": "address",
1473
+ "indexed": true,
1474
+ "internalType": "address"
1475
+ }
1476
+ ],
1477
+ "anonymous": false
1478
+ },
1479
+ {
1480
+ "type": "event",
1481
+ "name": "GraduationExecutorSet",
1482
+ "inputs": [
1483
+ {
1484
+ "name": "executor",
1485
+ "type": "address",
1486
+ "indexed": false,
1487
+ "internalType": "address"
1488
+ }
1489
+ ],
1490
+ "anonymous": false
1491
+ },
1492
+ {
1493
+ "type": "event",
1494
+ "name": "GraduationTokensPermanentlyLocked",
1495
+ "inputs": [
1496
+ {
1497
+ "name": "token",
1498
+ "type": "address",
1499
+ "indexed": true,
1500
+ "internalType": "address"
1501
+ },
1502
+ {
1503
+ "name": "amount",
1504
+ "type": "uint256",
1505
+ "indexed": false,
1506
+ "internalType": "uint256"
1507
+ }
1508
+ ],
1509
+ "anonymous": false
1510
+ },
1511
+ {
1512
+ "type": "event",
1513
+ "name": "LaunchConfigAdded",
1514
+ "inputs": [
1515
+ {
1516
+ "name": "id",
1517
+ "type": "uint256",
1518
+ "indexed": true,
1519
+ "internalType": "uint256"
1520
+ }
1521
+ ],
1522
+ "anonymous": false
1523
+ },
1524
+ {
1525
+ "type": "event",
1526
+ "name": "LaunchConfigUpdated",
1527
+ "inputs": [
1528
+ {
1529
+ "name": "id",
1530
+ "type": "uint256",
1531
+ "indexed": true,
1532
+ "internalType": "uint256"
1533
+ }
1534
+ ],
1535
+ "anonymous": false
1536
+ },
1537
+ {
1538
+ "type": "event",
1539
+ "name": "LaunchDeployerSet",
1540
+ "inputs": [
1541
+ {
1542
+ "name": "deployer",
1543
+ "type": "address",
1544
+ "indexed": false,
1545
+ "internalType": "address"
1546
+ }
1547
+ ],
1548
+ "anonymous": false
1549
+ },
1550
+ {
1551
+ "type": "event",
1552
+ "name": "LaunchEnabledUpdated",
1553
+ "inputs": [
1554
+ {
1555
+ "name": "enabled",
1556
+ "type": "bool",
1557
+ "indexed": false,
1558
+ "internalType": "bool"
1559
+ }
1560
+ ],
1561
+ "anonymous": false
1562
+ },
1563
+ {
1564
+ "type": "event",
1565
+ "name": "LaunchFeeUpdated",
1566
+ "inputs": [
1567
+ {
1568
+ "name": "launchFee",
1569
+ "type": "uint256",
1570
+ "indexed": false,
1571
+ "internalType": "uint256"
1572
+ }
1573
+ ],
1574
+ "anonymous": false
1575
+ },
1576
+ {
1577
+ "type": "event",
1578
+ "name": "LaunchForceSwept",
1579
+ "inputs": [
1580
+ {
1581
+ "name": "token",
1582
+ "type": "address",
1583
+ "indexed": true,
1584
+ "internalType": "address"
1585
+ }
1586
+ ],
1587
+ "anonymous": false
1588
+ },
1589
+ {
1590
+ "type": "event",
1591
+ "name": "LaunchForwarderSet",
1592
+ "inputs": [
1593
+ {
1594
+ "name": "forwarder",
1595
+ "type": "address",
1596
+ "indexed": false,
1597
+ "internalType": "address"
1598
+ }
1599
+ ],
1600
+ "anonymous": false
1601
+ },
1602
+ {
1603
+ "type": "event",
1604
+ "name": "LaunchGraduationRescued",
1605
+ "inputs": [
1606
+ {
1607
+ "name": "token",
1608
+ "type": "address",
1609
+ "indexed": true,
1610
+ "internalType": "address"
1611
+ },
1612
+ {
1613
+ "name": "recipient",
1614
+ "type": "address",
1615
+ "indexed": true,
1616
+ "internalType": "address"
1617
+ },
1618
+ {
1619
+ "name": "quoteAmount",
1620
+ "type": "uint256",
1621
+ "indexed": false,
1622
+ "internalType": "uint256"
1623
+ },
1624
+ {
1625
+ "name": "tokenAmount",
1626
+ "type": "uint256",
1627
+ "indexed": false,
1628
+ "internalType": "uint256"
1629
+ }
1630
+ ],
1631
+ "anonymous": false
1632
+ },
1633
+ {
1634
+ "type": "event",
1635
+ "name": "LaunchSwept",
1636
+ "inputs": [
1637
+ {
1638
+ "name": "token",
1639
+ "type": "address",
1640
+ "indexed": true,
1641
+ "internalType": "address"
1642
+ },
1643
+ {
1644
+ "name": "quoteOut",
1645
+ "type": "uint256",
1646
+ "indexed": false,
1647
+ "internalType": "uint256"
1648
+ },
1649
+ {
1650
+ "name": "tokenOut",
1651
+ "type": "uint256",
1652
+ "indexed": false,
1653
+ "internalType": "uint256"
1654
+ }
1655
+ ],
1656
+ "anonymous": false
1657
+ },
1658
+ {
1659
+ "type": "event",
1660
+ "name": "MaxCreatorTaxUpdated",
1661
+ "inputs": [
1662
+ {
1663
+ "name": "bps",
1664
+ "type": "uint256",
1665
+ "indexed": false,
1666
+ "internalType": "uint256"
1667
+ }
1668
+ ],
1669
+ "anonymous": false
1670
+ },
1671
+ {
1672
+ "type": "event",
1673
+ "name": "OwnershipTransferStarted",
1674
+ "inputs": [
1675
+ {
1676
+ "name": "previousOwner",
1677
+ "type": "address",
1678
+ "indexed": true,
1679
+ "internalType": "address"
1680
+ },
1681
+ {
1682
+ "name": "newOwner",
1683
+ "type": "address",
1684
+ "indexed": true,
1685
+ "internalType": "address"
1686
+ }
1687
+ ],
1688
+ "anonymous": false
1689
+ },
1690
+ {
1691
+ "type": "event",
1692
+ "name": "OwnershipTransferred",
1693
+ "inputs": [
1694
+ {
1695
+ "name": "previousOwner",
1696
+ "type": "address",
1697
+ "indexed": true,
1698
+ "internalType": "address"
1699
+ },
1700
+ {
1701
+ "name": "newOwner",
1702
+ "type": "address",
1703
+ "indexed": true,
1704
+ "internalType": "address"
1705
+ }
1706
+ ],
1707
+ "anonymous": false
1708
+ },
1709
+ {
1710
+ "type": "event",
1711
+ "name": "PairTokenApprovalUpdated",
1712
+ "inputs": [
1713
+ {
1714
+ "name": "pairToken",
1715
+ "type": "address",
1716
+ "indexed": true,
1717
+ "internalType": "address"
1718
+ },
1719
+ {
1720
+ "name": "approved",
1721
+ "type": "bool",
1722
+ "indexed": false,
1723
+ "internalType": "bool"
1724
+ }
1725
+ ],
1726
+ "anonymous": false
1727
+ },
1728
+ {
1729
+ "type": "event",
1730
+ "name": "PairTokenEconomicsUpdated",
1731
+ "inputs": [
1732
+ {
1733
+ "name": "pairToken",
1734
+ "type": "address",
1735
+ "indexed": true,
1736
+ "internalType": "address"
1737
+ },
1738
+ {
1739
+ "name": "phantomQuote",
1740
+ "type": "uint256",
1741
+ "indexed": false,
1742
+ "internalType": "uint256"
1743
+ },
1744
+ {
1745
+ "name": "graduationThreshold",
1746
+ "type": "uint256",
1747
+ "indexed": false,
1748
+ "internalType": "uint256"
1749
+ },
1750
+ {
1751
+ "name": "decimals",
1752
+ "type": "uint8",
1753
+ "indexed": false,
1754
+ "internalType": "uint8"
1755
+ }
1756
+ ],
1757
+ "anonymous": false
1758
+ },
1759
+ {
1760
+ "type": "event",
1761
+ "name": "PoolGraduated",
1762
+ "inputs": [
1763
+ {
1764
+ "name": "token",
1765
+ "type": "address",
1766
+ "indexed": true,
1767
+ "internalType": "address"
1768
+ },
1769
+ {
1770
+ "name": "positionId",
1771
+ "type": "uint256",
1772
+ "indexed": false,
1773
+ "internalType": "uint256"
1774
+ },
1775
+ {
1776
+ "name": "tokenAmount",
1777
+ "type": "uint256",
1778
+ "indexed": false,
1779
+ "internalType": "uint256"
1780
+ },
1781
+ {
1782
+ "name": "pairTokenAmount",
1783
+ "type": "uint256",
1784
+ "indexed": false,
1785
+ "internalType": "uint256"
1786
+ }
1787
+ ],
1788
+ "anonymous": false
1789
+ },
1790
+ {
1791
+ "type": "event",
1792
+ "name": "SnipeTaxSecondsUpdated",
1793
+ "inputs": [
1794
+ {
1795
+ "name": "secondsWindow",
1796
+ "type": "uint256",
1797
+ "indexed": false,
1798
+ "internalType": "uint256"
1799
+ }
1800
+ ],
1801
+ "anonymous": false
1802
+ },
1803
+ {
1804
+ "type": "event",
1805
+ "name": "SnipeTaxStartBpsUpdated",
1806
+ "inputs": [
1807
+ {
1808
+ "name": "bps",
1809
+ "type": "uint256",
1810
+ "indexed": false,
1811
+ "internalType": "uint256"
1812
+ }
1813
+ ],
1814
+ "anonymous": false
1815
+ },
1816
+ {
1817
+ "type": "event",
1818
+ "name": "TokenLaunched",
1819
+ "inputs": [
1820
+ {
1821
+ "name": "token",
1822
+ "type": "address",
1823
+ "indexed": true,
1824
+ "internalType": "address"
1825
+ },
1826
+ {
1827
+ "name": "curve",
1828
+ "type": "address",
1829
+ "indexed": true,
1830
+ "internalType": "address"
1831
+ },
1832
+ {
1833
+ "name": "deployer",
1834
+ "type": "address",
1835
+ "indexed": true,
1836
+ "internalType": "address"
1837
+ },
1838
+ {
1839
+ "name": "pairToken",
1840
+ "type": "address",
1841
+ "indexed": false,
1842
+ "internalType": "address"
1843
+ },
1844
+ {
1845
+ "name": "launchConfigId",
1846
+ "type": "uint256",
1847
+ "indexed": false,
1848
+ "internalType": "uint256"
1849
+ },
1850
+ {
1851
+ "name": "graduationThreshold",
1852
+ "type": "uint256",
1853
+ "indexed": false,
1854
+ "internalType": "uint256"
1855
+ }
1856
+ ],
1857
+ "anonymous": false
1858
+ },
1859
+ {
1860
+ "type": "event",
1861
+ "name": "WhitelistedLauncherUpdated",
1862
+ "inputs": [
1863
+ {
1864
+ "name": "launcher",
1865
+ "type": "address",
1866
+ "indexed": true,
1867
+ "internalType": "address"
1868
+ },
1869
+ {
1870
+ "name": "enabled",
1871
+ "type": "bool",
1872
+ "indexed": false,
1873
+ "internalType": "bool"
1874
+ }
1875
+ ],
1876
+ "anonymous": false
1877
+ },
1878
+ {
1879
+ "type": "error",
1880
+ "name": "AlreadySet",
1881
+ "inputs": []
1882
+ },
1883
+ {
1884
+ "type": "error",
1885
+ "name": "CombinedFeeTooHigh",
1886
+ "inputs": []
1887
+ },
1888
+ {
1889
+ "type": "error",
1890
+ "name": "CoreLpFeeMustBeZero",
1891
+ "inputs": []
1892
+ },
1893
+ {
1894
+ "type": "error",
1895
+ "name": "CreatorTaxTooHigh",
1896
+ "inputs": []
1897
+ },
1898
+ {
1899
+ "type": "error",
1900
+ "name": "CurveFeeTooHigh",
1901
+ "inputs": []
1902
+ },
1903
+ {
1904
+ "type": "error",
1905
+ "name": "CurveNotQuotable",
1906
+ "inputs": []
1907
+ },
1908
+ {
1909
+ "type": "error",
1910
+ "name": "FeeTransferFailed",
1911
+ "inputs": []
1912
+ },
1913
+ {
1914
+ "type": "error",
1915
+ "name": "GraduationExecutorNotSet",
1916
+ "inputs": []
1917
+ },
1918
+ {
1919
+ "type": "error",
1920
+ "name": "GraduationRescueTooEarly",
1921
+ "inputs": [
1922
+ {
1923
+ "name": "availableAt",
1924
+ "type": "uint256",
1925
+ "internalType": "uint256"
1926
+ }
1927
+ ]
1928
+ },
1929
+ {
1930
+ "type": "error",
1931
+ "name": "GraduationSeedNotViable",
1932
+ "inputs": []
1933
+ },
1934
+ {
1935
+ "type": "error",
1936
+ "name": "GraduationStillViable",
1937
+ "inputs": []
1938
+ },
1939
+ {
1940
+ "type": "error",
1941
+ "name": "InexactTransfer",
1942
+ "inputs": [
1943
+ {
1944
+ "name": "token",
1945
+ "type": "address",
1946
+ "internalType": "address"
1947
+ },
1948
+ {
1949
+ "name": "expected",
1950
+ "type": "uint256",
1951
+ "internalType": "uint256"
1952
+ },
1953
+ {
1954
+ "name": "received",
1955
+ "type": "uint256",
1956
+ "internalType": "uint256"
1957
+ }
1958
+ ]
1959
+ },
1960
+ {
1961
+ "type": "error",
1962
+ "name": "InvalidBasisPoints",
1963
+ "inputs": []
1964
+ },
1965
+ {
1966
+ "type": "error",
1967
+ "name": "InvalidGraduationThreshold",
1968
+ "inputs": []
1969
+ },
1970
+ {
1971
+ "type": "error",
1972
+ "name": "InvalidLaunchConfigId",
1973
+ "inputs": []
1974
+ },
1975
+ {
1976
+ "type": "error",
1977
+ "name": "InvalidPhantomQuote",
1978
+ "inputs": []
1979
+ },
1980
+ {
1981
+ "type": "error",
1982
+ "name": "InvalidSnipeTaxWindow",
1983
+ "inputs": []
1984
+ },
1985
+ {
1986
+ "type": "error",
1987
+ "name": "InvalidTickSpacing",
1988
+ "inputs": []
1989
+ },
1990
+ {
1991
+ "type": "error",
1992
+ "name": "InvalidTokenParams",
1993
+ "inputs": []
1994
+ },
1995
+ {
1996
+ "type": "error",
1997
+ "name": "LaunchConfigDisabled",
1998
+ "inputs": []
1999
+ },
2000
+ {
2001
+ "type": "error",
2002
+ "name": "LaunchDependenciesNotWired",
2003
+ "inputs": []
2004
+ },
2005
+ {
2006
+ "type": "error",
2007
+ "name": "LaunchDeployerNotSet",
2008
+ "inputs": []
2009
+ },
2010
+ {
2011
+ "type": "error",
2012
+ "name": "LaunchEconomicsMismatch",
2013
+ "inputs": [
2014
+ {
2015
+ "name": "expected",
2016
+ "type": "bytes32",
2017
+ "internalType": "bytes32"
2018
+ },
2019
+ {
2020
+ "name": "actual",
2021
+ "type": "bytes32",
2022
+ "internalType": "bytes32"
2023
+ }
2024
+ ]
2025
+ },
2026
+ {
2027
+ "type": "error",
2028
+ "name": "LaunchFeeNotPaid",
2029
+ "inputs": []
2030
+ },
2031
+ {
2032
+ "type": "error",
2033
+ "name": "LaunchFeeTooHigh",
2034
+ "inputs": []
2035
+ },
2036
+ {
2037
+ "type": "error",
2038
+ "name": "NoPendingChange",
2039
+ "inputs": []
2040
+ },
2041
+ {
2042
+ "type": "error",
2043
+ "name": "NotBuybackController",
2044
+ "inputs": []
2045
+ },
2046
+ {
2047
+ "type": "error",
2048
+ "name": "NotCreatorFeeRecipient",
2049
+ "inputs": []
2050
+ },
2051
+ {
2052
+ "type": "error",
2053
+ "name": "NotLaunchForwarder",
2054
+ "inputs": []
2055
+ },
2056
+ {
2057
+ "type": "error",
2058
+ "name": "NotReadyToGraduate",
2059
+ "inputs": []
2060
+ },
2061
+ {
2062
+ "type": "error",
2063
+ "name": "NotWhitelisted",
2064
+ "inputs": []
2065
+ },
2066
+ {
2067
+ "type": "error",
2068
+ "name": "NothingToGraduate",
2069
+ "inputs": []
2070
+ },
2071
+ {
2072
+ "type": "error",
2073
+ "name": "OwnableInvalidOwner",
2074
+ "inputs": [
2075
+ {
2076
+ "name": "owner",
2077
+ "type": "address",
2078
+ "internalType": "address"
2079
+ }
2080
+ ]
2081
+ },
2082
+ {
2083
+ "type": "error",
2084
+ "name": "OwnableUnauthorizedAccount",
2085
+ "inputs": [
2086
+ {
2087
+ "name": "account",
2088
+ "type": "address",
2089
+ "internalType": "address"
2090
+ }
2091
+ ]
2092
+ },
2093
+ {
2094
+ "type": "error",
2095
+ "name": "OwnershipCannotBeRenounced",
2096
+ "inputs": []
2097
+ },
2098
+ {
2099
+ "type": "error",
2100
+ "name": "PairTokenDecimalsMismatch",
2101
+ "inputs": [
2102
+ {
2103
+ "name": "expected",
2104
+ "type": "uint8",
2105
+ "internalType": "uint8"
2106
+ },
2107
+ {
2108
+ "name": "actual",
2109
+ "type": "uint8",
2110
+ "internalType": "uint8"
2111
+ }
2112
+ ]
2113
+ },
2114
+ {
2115
+ "type": "error",
2116
+ "name": "PairTokenDecimalsUnavailable",
2117
+ "inputs": []
2118
+ },
2119
+ {
2120
+ "type": "error",
2121
+ "name": "PairTokenEconomicsInvalid",
2122
+ "inputs": []
2123
+ },
2124
+ {
2125
+ "type": "error",
2126
+ "name": "PairTokenNotApproved",
2127
+ "inputs": []
2128
+ },
2129
+ {
2130
+ "type": "error",
2131
+ "name": "PairTokenValidationFailed",
2132
+ "inputs": []
2133
+ },
2134
+ {
2135
+ "type": "error",
2136
+ "name": "ReentrancyGuardReentrantCall",
2137
+ "inputs": []
2138
+ },
2139
+ {
2140
+ "type": "error",
2141
+ "name": "SafeERC20FailedOperation",
2142
+ "inputs": [
2143
+ {
2144
+ "name": "token",
2145
+ "type": "address",
2146
+ "internalType": "address"
2147
+ }
2148
+ ]
2149
+ },
2150
+ {
2151
+ "type": "error",
2152
+ "name": "SqrtPriceOutOfBounds",
2153
+ "inputs": []
2154
+ },
2155
+ {
2156
+ "type": "error",
2157
+ "name": "SupplyTooHigh",
2158
+ "inputs": []
2159
+ },
2160
+ {
2161
+ "type": "error",
2162
+ "name": "SupplyTooLow",
2163
+ "inputs": []
2164
+ },
2165
+ {
2166
+ "type": "error",
2167
+ "name": "TimelockExpired",
2168
+ "inputs": [
2169
+ {
2170
+ "name": "expiresAt",
2171
+ "type": "uint256",
2172
+ "internalType": "uint256"
2173
+ }
2174
+ ]
2175
+ },
2176
+ {
2177
+ "type": "error",
2178
+ "name": "TimelockNotElapsed",
2179
+ "inputs": [
2180
+ {
2181
+ "name": "effectiveAt",
2182
+ "type": "uint256",
2183
+ "internalType": "uint256"
2184
+ }
2185
+ ]
2186
+ },
2187
+ {
2188
+ "type": "error",
2189
+ "name": "TokenNotFound",
2190
+ "inputs": []
2191
+ },
2192
+ {
2193
+ "type": "error",
2194
+ "name": "UnsupportedPrice",
2195
+ "inputs": []
2196
+ },
2197
+ {
2198
+ "type": "error",
2199
+ "name": "WrongGraduationPhase",
2200
+ "inputs": []
2201
+ },
2202
+ {
2203
+ "type": "error",
2204
+ "name": "ZeroAddress",
2205
+ "inputs": []
2206
+ },
2207
+ {
2208
+ "type": "error",
2209
+ "name": "ZeroAmount",
2210
+ "inputs": []
2211
+ }
2212
+ ]