@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,950 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [
5
+ {
6
+ "name": "factory_",
7
+ "type": "address",
8
+ "internalType": "contract ParabolicLaunchFactory"
9
+ },
10
+ {
11
+ "name": "memo_",
12
+ "type": "address",
13
+ "internalType": "contract IArcMemo"
14
+ },
15
+ {
16
+ "name": "usdc_",
17
+ "type": "address",
18
+ "internalType": "contract IERC20"
19
+ }
20
+ ],
21
+ "stateMutability": "nonpayable"
22
+ },
23
+ {
24
+ "type": "receive",
25
+ "stateMutability": "payable"
26
+ },
27
+ {
28
+ "type": "function",
29
+ "name": "ACTION_BUY",
30
+ "inputs": [],
31
+ "outputs": [
32
+ {
33
+ "name": "",
34
+ "type": "uint8",
35
+ "internalType": "uint8"
36
+ }
37
+ ],
38
+ "stateMutability": "view"
39
+ },
40
+ {
41
+ "type": "function",
42
+ "name": "ACTION_LAUNCH",
43
+ "inputs": [],
44
+ "outputs": [
45
+ {
46
+ "name": "",
47
+ "type": "uint8",
48
+ "internalType": "uint8"
49
+ }
50
+ ],
51
+ "stateMutability": "view"
52
+ },
53
+ {
54
+ "type": "function",
55
+ "name": "ACTION_POST",
56
+ "inputs": [],
57
+ "outputs": [
58
+ {
59
+ "name": "",
60
+ "type": "uint8",
61
+ "internalType": "uint8"
62
+ }
63
+ ],
64
+ "stateMutability": "view"
65
+ },
66
+ {
67
+ "type": "function",
68
+ "name": "ACTION_SELL",
69
+ "inputs": [],
70
+ "outputs": [
71
+ {
72
+ "name": "",
73
+ "type": "uint8",
74
+ "internalType": "uint8"
75
+ }
76
+ ],
77
+ "stateMutability": "view"
78
+ },
79
+ {
80
+ "type": "function",
81
+ "name": "MAX_NOTE_LENGTH",
82
+ "inputs": [],
83
+ "outputs": [
84
+ {
85
+ "name": "",
86
+ "type": "uint256",
87
+ "internalType": "uint256"
88
+ }
89
+ ],
90
+ "stateMutability": "view"
91
+ },
92
+ {
93
+ "type": "function",
94
+ "name": "MEMO_VERSION",
95
+ "inputs": [],
96
+ "outputs": [
97
+ {
98
+ "name": "",
99
+ "type": "uint8",
100
+ "internalType": "uint8"
101
+ }
102
+ ],
103
+ "stateMutability": "view"
104
+ },
105
+ {
106
+ "type": "function",
107
+ "name": "buy",
108
+ "inputs": [
109
+ {
110
+ "name": "curve",
111
+ "type": "address",
112
+ "internalType": "contract ParabolicBondingCurve"
113
+ },
114
+ {
115
+ "name": "quoteIn",
116
+ "type": "uint256",
117
+ "internalType": "uint256"
118
+ },
119
+ {
120
+ "name": "minTokensOut",
121
+ "type": "uint256",
122
+ "internalType": "uint256"
123
+ },
124
+ {
125
+ "name": "recipient",
126
+ "type": "address",
127
+ "internalType": "address"
128
+ }
129
+ ],
130
+ "outputs": [
131
+ {
132
+ "name": "tokensOut",
133
+ "type": "uint256",
134
+ "internalType": "uint256"
135
+ }
136
+ ],
137
+ "stateMutability": "payable"
138
+ },
139
+ {
140
+ "type": "function",
141
+ "name": "buyWithToken",
142
+ "inputs": [
143
+ {
144
+ "name": "curve",
145
+ "type": "address",
146
+ "internalType": "contract ParabolicBondingCurve"
147
+ },
148
+ {
149
+ "name": "quoteIn",
150
+ "type": "uint256",
151
+ "internalType": "uint256"
152
+ },
153
+ {
154
+ "name": "minTokensOut",
155
+ "type": "uint256",
156
+ "internalType": "uint256"
157
+ },
158
+ {
159
+ "name": "recipient",
160
+ "type": "address",
161
+ "internalType": "address"
162
+ }
163
+ ],
164
+ "outputs": [
165
+ {
166
+ "name": "tokensOut",
167
+ "type": "uint256",
168
+ "internalType": "uint256"
169
+ }
170
+ ],
171
+ "stateMutability": "nonpayable"
172
+ },
173
+ {
174
+ "type": "function",
175
+ "name": "decodeMemo",
176
+ "inputs": [
177
+ {
178
+ "name": "data",
179
+ "type": "bytes",
180
+ "internalType": "bytes"
181
+ }
182
+ ],
183
+ "outputs": [
184
+ {
185
+ "name": "version",
186
+ "type": "uint8",
187
+ "internalType": "uint8"
188
+ },
189
+ {
190
+ "name": "action",
191
+ "type": "uint8",
192
+ "internalType": "uint8"
193
+ },
194
+ {
195
+ "name": "referral",
196
+ "type": "bytes8",
197
+ "internalType": "bytes8"
198
+ },
199
+ {
200
+ "name": "note",
201
+ "type": "string",
202
+ "internalType": "string"
203
+ }
204
+ ],
205
+ "stateMutability": "pure"
206
+ },
207
+ {
208
+ "type": "function",
209
+ "name": "encodeMemo",
210
+ "inputs": [
211
+ {
212
+ "name": "action",
213
+ "type": "uint8",
214
+ "internalType": "uint8"
215
+ },
216
+ {
217
+ "name": "referral",
218
+ "type": "bytes8",
219
+ "internalType": "bytes8"
220
+ },
221
+ {
222
+ "name": "note",
223
+ "type": "string",
224
+ "internalType": "string"
225
+ }
226
+ ],
227
+ "outputs": [
228
+ {
229
+ "name": "",
230
+ "type": "bytes",
231
+ "internalType": "bytes"
232
+ }
233
+ ],
234
+ "stateMutability": "pure"
235
+ },
236
+ {
237
+ "type": "function",
238
+ "name": "factory",
239
+ "inputs": [],
240
+ "outputs": [
241
+ {
242
+ "name": "",
243
+ "type": "address",
244
+ "internalType": "contract ParabolicLaunchFactory"
245
+ }
246
+ ],
247
+ "stateMutability": "view"
248
+ },
249
+ {
250
+ "type": "function",
251
+ "name": "launch",
252
+ "inputs": [
253
+ {
254
+ "name": "params",
255
+ "type": "tuple",
256
+ "internalType": "struct ParabolicLaunchFactory.TokenParams",
257
+ "components": [
258
+ {
259
+ "name": "name",
260
+ "type": "string",
261
+ "internalType": "string"
262
+ },
263
+ {
264
+ "name": "symbol",
265
+ "type": "string",
266
+ "internalType": "string"
267
+ },
268
+ {
269
+ "name": "logo",
270
+ "type": "string",
271
+ "internalType": "string"
272
+ },
273
+ {
274
+ "name": "description",
275
+ "type": "string",
276
+ "internalType": "string"
277
+ },
278
+ {
279
+ "name": "socials",
280
+ "type": "tuple",
281
+ "internalType": "struct ParabolicLauncherToken.Socials",
282
+ "components": [
283
+ {
284
+ "name": "twitter",
285
+ "type": "string",
286
+ "internalType": "string"
287
+ },
288
+ {
289
+ "name": "telegram",
290
+ "type": "string",
291
+ "internalType": "string"
292
+ },
293
+ {
294
+ "name": "discord",
295
+ "type": "string",
296
+ "internalType": "string"
297
+ },
298
+ {
299
+ "name": "website",
300
+ "type": "string",
301
+ "internalType": "string"
302
+ },
303
+ {
304
+ "name": "farcaster",
305
+ "type": "string",
306
+ "internalType": "string"
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "name": "creatorFeeRecipient",
312
+ "type": "address",
313
+ "internalType": "address"
314
+ },
315
+ {
316
+ "name": "creatorTaxBps",
317
+ "type": "uint16",
318
+ "internalType": "uint16"
319
+ },
320
+ {
321
+ "name": "buybackEnabled",
322
+ "type": "bool",
323
+ "internalType": "bool"
324
+ },
325
+ {
326
+ "name": "expectedEconomics",
327
+ "type": "bytes32",
328
+ "internalType": "bytes32"
329
+ },
330
+ {
331
+ "name": "salt",
332
+ "type": "bytes32",
333
+ "internalType": "bytes32"
334
+ }
335
+ ]
336
+ },
337
+ {
338
+ "name": "launchConfigId",
339
+ "type": "uint256",
340
+ "internalType": "uint256"
341
+ },
342
+ {
343
+ "name": "pairToken",
344
+ "type": "address",
345
+ "internalType": "address"
346
+ }
347
+ ],
348
+ "outputs": [
349
+ {
350
+ "name": "token",
351
+ "type": "address",
352
+ "internalType": "address"
353
+ },
354
+ {
355
+ "name": "curve",
356
+ "type": "address",
357
+ "internalType": "address"
358
+ }
359
+ ],
360
+ "stateMutability": "payable"
361
+ },
362
+ {
363
+ "type": "function",
364
+ "name": "launchAndBuy",
365
+ "inputs": [
366
+ {
367
+ "name": "params",
368
+ "type": "tuple",
369
+ "internalType": "struct ParabolicLaunchFactory.TokenParams",
370
+ "components": [
371
+ {
372
+ "name": "name",
373
+ "type": "string",
374
+ "internalType": "string"
375
+ },
376
+ {
377
+ "name": "symbol",
378
+ "type": "string",
379
+ "internalType": "string"
380
+ },
381
+ {
382
+ "name": "logo",
383
+ "type": "string",
384
+ "internalType": "string"
385
+ },
386
+ {
387
+ "name": "description",
388
+ "type": "string",
389
+ "internalType": "string"
390
+ },
391
+ {
392
+ "name": "socials",
393
+ "type": "tuple",
394
+ "internalType": "struct ParabolicLauncherToken.Socials",
395
+ "components": [
396
+ {
397
+ "name": "twitter",
398
+ "type": "string",
399
+ "internalType": "string"
400
+ },
401
+ {
402
+ "name": "telegram",
403
+ "type": "string",
404
+ "internalType": "string"
405
+ },
406
+ {
407
+ "name": "discord",
408
+ "type": "string",
409
+ "internalType": "string"
410
+ },
411
+ {
412
+ "name": "website",
413
+ "type": "string",
414
+ "internalType": "string"
415
+ },
416
+ {
417
+ "name": "farcaster",
418
+ "type": "string",
419
+ "internalType": "string"
420
+ }
421
+ ]
422
+ },
423
+ {
424
+ "name": "creatorFeeRecipient",
425
+ "type": "address",
426
+ "internalType": "address"
427
+ },
428
+ {
429
+ "name": "creatorTaxBps",
430
+ "type": "uint16",
431
+ "internalType": "uint16"
432
+ },
433
+ {
434
+ "name": "buybackEnabled",
435
+ "type": "bool",
436
+ "internalType": "bool"
437
+ },
438
+ {
439
+ "name": "expectedEconomics",
440
+ "type": "bytes32",
441
+ "internalType": "bytes32"
442
+ },
443
+ {
444
+ "name": "salt",
445
+ "type": "bytes32",
446
+ "internalType": "bytes32"
447
+ }
448
+ ]
449
+ },
450
+ {
451
+ "name": "launchConfigId",
452
+ "type": "uint256",
453
+ "internalType": "uint256"
454
+ },
455
+ {
456
+ "name": "pairToken",
457
+ "type": "address",
458
+ "internalType": "address"
459
+ },
460
+ {
461
+ "name": "buyQuoteIn",
462
+ "type": "uint256",
463
+ "internalType": "uint256"
464
+ },
465
+ {
466
+ "name": "minTokensOut",
467
+ "type": "uint256",
468
+ "internalType": "uint256"
469
+ }
470
+ ],
471
+ "outputs": [
472
+ {
473
+ "name": "token",
474
+ "type": "address",
475
+ "internalType": "address"
476
+ },
477
+ {
478
+ "name": "curve",
479
+ "type": "address",
480
+ "internalType": "address"
481
+ },
482
+ {
483
+ "name": "tokensOut",
484
+ "type": "uint256",
485
+ "internalType": "uint256"
486
+ }
487
+ ],
488
+ "stateMutability": "payable"
489
+ },
490
+ {
491
+ "type": "function",
492
+ "name": "launchAndBuyWithToken",
493
+ "inputs": [
494
+ {
495
+ "name": "params",
496
+ "type": "tuple",
497
+ "internalType": "struct ParabolicLaunchFactory.TokenParams",
498
+ "components": [
499
+ {
500
+ "name": "name",
501
+ "type": "string",
502
+ "internalType": "string"
503
+ },
504
+ {
505
+ "name": "symbol",
506
+ "type": "string",
507
+ "internalType": "string"
508
+ },
509
+ {
510
+ "name": "logo",
511
+ "type": "string",
512
+ "internalType": "string"
513
+ },
514
+ {
515
+ "name": "description",
516
+ "type": "string",
517
+ "internalType": "string"
518
+ },
519
+ {
520
+ "name": "socials",
521
+ "type": "tuple",
522
+ "internalType": "struct ParabolicLauncherToken.Socials",
523
+ "components": [
524
+ {
525
+ "name": "twitter",
526
+ "type": "string",
527
+ "internalType": "string"
528
+ },
529
+ {
530
+ "name": "telegram",
531
+ "type": "string",
532
+ "internalType": "string"
533
+ },
534
+ {
535
+ "name": "discord",
536
+ "type": "string",
537
+ "internalType": "string"
538
+ },
539
+ {
540
+ "name": "website",
541
+ "type": "string",
542
+ "internalType": "string"
543
+ },
544
+ {
545
+ "name": "farcaster",
546
+ "type": "string",
547
+ "internalType": "string"
548
+ }
549
+ ]
550
+ },
551
+ {
552
+ "name": "creatorFeeRecipient",
553
+ "type": "address",
554
+ "internalType": "address"
555
+ },
556
+ {
557
+ "name": "creatorTaxBps",
558
+ "type": "uint16",
559
+ "internalType": "uint16"
560
+ },
561
+ {
562
+ "name": "buybackEnabled",
563
+ "type": "bool",
564
+ "internalType": "bool"
565
+ },
566
+ {
567
+ "name": "expectedEconomics",
568
+ "type": "bytes32",
569
+ "internalType": "bytes32"
570
+ },
571
+ {
572
+ "name": "salt",
573
+ "type": "bytes32",
574
+ "internalType": "bytes32"
575
+ }
576
+ ]
577
+ },
578
+ {
579
+ "name": "launchConfigId",
580
+ "type": "uint256",
581
+ "internalType": "uint256"
582
+ },
583
+ {
584
+ "name": "pairToken",
585
+ "type": "address",
586
+ "internalType": "address"
587
+ },
588
+ {
589
+ "name": "buyQuoteIn",
590
+ "type": "uint256",
591
+ "internalType": "uint256"
592
+ },
593
+ {
594
+ "name": "minTokensOut",
595
+ "type": "uint256",
596
+ "internalType": "uint256"
597
+ }
598
+ ],
599
+ "outputs": [
600
+ {
601
+ "name": "token",
602
+ "type": "address",
603
+ "internalType": "address"
604
+ },
605
+ {
606
+ "name": "curve",
607
+ "type": "address",
608
+ "internalType": "address"
609
+ },
610
+ {
611
+ "name": "tokensOut",
612
+ "type": "uint256",
613
+ "internalType": "uint256"
614
+ }
615
+ ],
616
+ "stateMutability": "payable"
617
+ },
618
+ {
619
+ "type": "function",
620
+ "name": "memo",
621
+ "inputs": [],
622
+ "outputs": [
623
+ {
624
+ "name": "",
625
+ "type": "address",
626
+ "internalType": "contract IArcMemo"
627
+ }
628
+ ],
629
+ "stateMutability": "view"
630
+ },
631
+ {
632
+ "type": "function",
633
+ "name": "memoId",
634
+ "inputs": [
635
+ {
636
+ "name": "action",
637
+ "type": "uint8",
638
+ "internalType": "uint8"
639
+ },
640
+ {
641
+ "name": "subject",
642
+ "type": "address",
643
+ "internalType": "address"
644
+ }
645
+ ],
646
+ "outputs": [
647
+ {
648
+ "name": "",
649
+ "type": "bytes32",
650
+ "internalType": "bytes32"
651
+ }
652
+ ],
653
+ "stateMutability": "pure"
654
+ },
655
+ {
656
+ "type": "function",
657
+ "name": "post",
658
+ "inputs": [
659
+ {
660
+ "name": "subject",
661
+ "type": "address",
662
+ "internalType": "address"
663
+ }
664
+ ],
665
+ "outputs": [],
666
+ "stateMutability": "nonpayable"
667
+ },
668
+ {
669
+ "type": "function",
670
+ "name": "sell",
671
+ "inputs": [
672
+ {
673
+ "name": "curve",
674
+ "type": "address",
675
+ "internalType": "contract ParabolicBondingCurve"
676
+ },
677
+ {
678
+ "name": "tokensIn",
679
+ "type": "uint256",
680
+ "internalType": "uint256"
681
+ },
682
+ {
683
+ "name": "minQuoteOut",
684
+ "type": "uint256",
685
+ "internalType": "uint256"
686
+ },
687
+ {
688
+ "name": "recipient",
689
+ "type": "address",
690
+ "internalType": "address"
691
+ }
692
+ ],
693
+ "outputs": [
694
+ {
695
+ "name": "quoteOut",
696
+ "type": "uint256",
697
+ "internalType": "uint256"
698
+ }
699
+ ],
700
+ "stateMutability": "nonpayable"
701
+ },
702
+ {
703
+ "type": "function",
704
+ "name": "usdc",
705
+ "inputs": [],
706
+ "outputs": [
707
+ {
708
+ "name": "",
709
+ "type": "address",
710
+ "internalType": "contract IERC20"
711
+ }
712
+ ],
713
+ "stateMutability": "view"
714
+ },
715
+ {
716
+ "type": "event",
717
+ "name": "Posted",
718
+ "inputs": [
719
+ {
720
+ "name": "user",
721
+ "type": "address",
722
+ "indexed": true,
723
+ "internalType": "address"
724
+ },
725
+ {
726
+ "name": "subject",
727
+ "type": "address",
728
+ "indexed": true,
729
+ "internalType": "address"
730
+ }
731
+ ],
732
+ "anonymous": false
733
+ },
734
+ {
735
+ "type": "event",
736
+ "name": "RoutedBuy",
737
+ "inputs": [
738
+ {
739
+ "name": "user",
740
+ "type": "address",
741
+ "indexed": true,
742
+ "internalType": "address"
743
+ },
744
+ {
745
+ "name": "curve",
746
+ "type": "address",
747
+ "indexed": true,
748
+ "internalType": "address"
749
+ },
750
+ {
751
+ "name": "recipient",
752
+ "type": "address",
753
+ "indexed": true,
754
+ "internalType": "address"
755
+ },
756
+ {
757
+ "name": "quoteSpent",
758
+ "type": "uint256",
759
+ "indexed": false,
760
+ "internalType": "uint256"
761
+ },
762
+ {
763
+ "name": "tokensOut",
764
+ "type": "uint256",
765
+ "indexed": false,
766
+ "internalType": "uint256"
767
+ },
768
+ {
769
+ "name": "refund",
770
+ "type": "uint256",
771
+ "indexed": false,
772
+ "internalType": "uint256"
773
+ }
774
+ ],
775
+ "anonymous": false
776
+ },
777
+ {
778
+ "type": "event",
779
+ "name": "RoutedLaunch",
780
+ "inputs": [
781
+ {
782
+ "name": "user",
783
+ "type": "address",
784
+ "indexed": true,
785
+ "internalType": "address"
786
+ },
787
+ {
788
+ "name": "token",
789
+ "type": "address",
790
+ "indexed": true,
791
+ "internalType": "address"
792
+ },
793
+ {
794
+ "name": "curve",
795
+ "type": "address",
796
+ "indexed": true,
797
+ "internalType": "address"
798
+ },
799
+ {
800
+ "name": "launchConfigId",
801
+ "type": "uint256",
802
+ "indexed": false,
803
+ "internalType": "uint256"
804
+ },
805
+ {
806
+ "name": "pairToken",
807
+ "type": "address",
808
+ "indexed": false,
809
+ "internalType": "address"
810
+ }
811
+ ],
812
+ "anonymous": false
813
+ },
814
+ {
815
+ "type": "event",
816
+ "name": "RoutedSell",
817
+ "inputs": [
818
+ {
819
+ "name": "user",
820
+ "type": "address",
821
+ "indexed": true,
822
+ "internalType": "address"
823
+ },
824
+ {
825
+ "name": "curve",
826
+ "type": "address",
827
+ "indexed": true,
828
+ "internalType": "address"
829
+ },
830
+ {
831
+ "name": "recipient",
832
+ "type": "address",
833
+ "indexed": true,
834
+ "internalType": "address"
835
+ },
836
+ {
837
+ "name": "tokensIn",
838
+ "type": "uint256",
839
+ "indexed": false,
840
+ "internalType": "uint256"
841
+ },
842
+ {
843
+ "name": "quoteOut",
844
+ "type": "uint256",
845
+ "indexed": false,
846
+ "internalType": "uint256"
847
+ }
848
+ ],
849
+ "anonymous": false
850
+ },
851
+ {
852
+ "type": "error",
853
+ "name": "FeeRecipientMustBeCreator",
854
+ "inputs": []
855
+ },
856
+ {
857
+ "type": "error",
858
+ "name": "InvalidMemo",
859
+ "inputs": []
860
+ },
861
+ {
862
+ "type": "error",
863
+ "name": "NativeQuote",
864
+ "inputs": []
865
+ },
866
+ {
867
+ "type": "error",
868
+ "name": "NotNativeQuote",
869
+ "inputs": []
870
+ },
871
+ {
872
+ "type": "error",
873
+ "name": "ReentrancyGuardReentrantCall",
874
+ "inputs": []
875
+ },
876
+ {
877
+ "type": "error",
878
+ "name": "RefundFailed",
879
+ "inputs": []
880
+ },
881
+ {
882
+ "type": "error",
883
+ "name": "SafeERC20FailedOperation",
884
+ "inputs": [
885
+ {
886
+ "name": "token",
887
+ "type": "address",
888
+ "internalType": "address"
889
+ }
890
+ ]
891
+ },
892
+ {
893
+ "type": "error",
894
+ "name": "SelfRecipient",
895
+ "inputs": []
896
+ },
897
+ {
898
+ "type": "error",
899
+ "name": "UnknownCurve",
900
+ "inputs": [
901
+ {
902
+ "name": "curve",
903
+ "type": "address",
904
+ "internalType": "address"
905
+ }
906
+ ]
907
+ },
908
+ {
909
+ "type": "error",
910
+ "name": "UsdcViewShortfall",
911
+ "inputs": [
912
+ {
913
+ "name": "expected",
914
+ "type": "uint256",
915
+ "internalType": "uint256"
916
+ },
917
+ {
918
+ "name": "received",
919
+ "type": "uint256",
920
+ "internalType": "uint256"
921
+ }
922
+ ]
923
+ },
924
+ {
925
+ "type": "error",
926
+ "name": "ValueMismatch",
927
+ "inputs": [
928
+ {
929
+ "name": "supplied",
930
+ "type": "uint256",
931
+ "internalType": "uint256"
932
+ },
933
+ {
934
+ "name": "expected",
935
+ "type": "uint256",
936
+ "internalType": "uint256"
937
+ }
938
+ ]
939
+ },
940
+ {
941
+ "type": "error",
942
+ "name": "ZeroAddress",
943
+ "inputs": []
944
+ },
945
+ {
946
+ "type": "error",
947
+ "name": "ZeroBuyAmount",
948
+ "inputs": []
949
+ }
950
+ ]