@pearldigital/p3-abis 3.0.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 (57) hide show
  1. package/LICENSE +17 -0
  2. package/README.md +50 -0
  3. package/package.json +37 -0
  4. package/src/IAbstractFeeModule.d.ts +252 -0
  5. package/src/IAbstractFeeModule.js +252 -0
  6. package/src/IAbstractTimelockUpgrade.d.ts +169 -0
  7. package/src/IAbstractTimelockUpgrade.js +169 -0
  8. package/src/IAbstractTreasuryManagerRestricted.d.ts +15 -0
  9. package/src/IAbstractTreasuryManagerRestricted.js +15 -0
  10. package/src/IAbstractTreasuryRestricted.d.ts +15 -0
  11. package/src/IAbstractTreasuryRestricted.js +15 -0
  12. package/src/IP3AgentLimitComplianceModule.d.ts +761 -0
  13. package/src/IP3AgentLimitComplianceModule.js +761 -0
  14. package/src/IP3AgenticRegistryManager.d.ts +2074 -0
  15. package/src/IP3AgenticRegistryManager.js +2074 -0
  16. package/src/IP3AttestationManager.d.ts +1347 -0
  17. package/src/IP3AttestationManager.js +1347 -0
  18. package/src/IP3BasicToken.d.ts +951 -0
  19. package/src/IP3BasicToken.js +951 -0
  20. package/src/IP3ComplianceFactory.d.ts +591 -0
  21. package/src/IP3ComplianceFactory.js +591 -0
  22. package/src/IP3ComplianceModule.d.ts +609 -0
  23. package/src/IP3ComplianceModule.js +609 -0
  24. package/src/IP3DepositToken.d.ts +1104 -0
  25. package/src/IP3DepositToken.js +1104 -0
  26. package/src/IP3DigitalSecurityToken.d.ts +1197 -0
  27. package/src/IP3DigitalSecurityToken.js +1197 -0
  28. package/src/IP3EIP3009.d.ts +586 -0
  29. package/src/IP3EIP3009.js +586 -0
  30. package/src/IP3ERC20ConverterManager.d.ts +867 -0
  31. package/src/IP3ERC20ConverterManager.js +867 -0
  32. package/src/IP3ERC8004Connector.d.ts +955 -0
  33. package/src/IP3ERC8004Connector.js +955 -0
  34. package/src/IP3FXSwap.d.ts +779 -0
  35. package/src/IP3FXSwap.js +779 -0
  36. package/src/IP3ModularCompliance.d.ts +771 -0
  37. package/src/IP3ModularCompliance.js +771 -0
  38. package/src/IP3ReputationComplianceModule.d.ts +691 -0
  39. package/src/IP3ReputationComplianceModule.js +691 -0
  40. package/src/IP3StablecoinSwap.d.ts +1082 -0
  41. package/src/IP3StablecoinSwap.js +1082 -0
  42. package/src/IP3StablecoinToken.d.ts +1127 -0
  43. package/src/IP3StablecoinToken.js +1127 -0
  44. package/src/IP3TokensFactory.d.ts +431 -0
  45. package/src/IP3TokensFactory.js +431 -0
  46. package/src/IP3TransferManager.d.ts +1234 -0
  47. package/src/IP3TransferManager.js +1234 -0
  48. package/src/IP3TreasuryManager.d.ts +1652 -0
  49. package/src/IP3TreasuryManager.js +1652 -0
  50. package/src/IP3YieldBearingStablecoinToken.d.ts +1163 -0
  51. package/src/IP3YieldBearingStablecoinToken.js +1163 -0
  52. package/src/IRecoveryVelocityComplianceModule.d.ts +1032 -0
  53. package/src/IRecoveryVelocityComplianceModule.js +1032 -0
  54. package/src/ISolvencyComplianceModule.d.ts +653 -0
  55. package/src/ISolvencyComplianceModule.js +653 -0
  56. package/src/index.d.ts +27 -0
  57. package/src/index.js +27 -0
@@ -0,0 +1,779 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "function",
5
+ "name": "agenticRegistry",
6
+ "inputs": [],
7
+ "outputs": [
8
+ {
9
+ "name": "",
10
+ "type": "address",
11
+ "internalType": "contract IP3AgenticRegistryManager"
12
+ }
13
+ ],
14
+ "stateMutability": "view"
15
+ },
16
+ {
17
+ "type": "function",
18
+ "name": "calculateFeeAmount",
19
+ "inputs": [
20
+ {
21
+ "name": "tokensAmount_",
22
+ "type": "uint256",
23
+ "internalType": "uint256"
24
+ },
25
+ {
26
+ "name": "feeInBps_",
27
+ "type": "uint256",
28
+ "internalType": "uint256"
29
+ }
30
+ ],
31
+ "outputs": [
32
+ {
33
+ "name": "feeAmount_",
34
+ "type": "uint256",
35
+ "internalType": "uint256"
36
+ }
37
+ ],
38
+ "stateMutability": "pure"
39
+ },
40
+ {
41
+ "type": "function",
42
+ "name": "fxDeskFeeAddr",
43
+ "inputs": [],
44
+ "outputs": [
45
+ {
46
+ "name": "",
47
+ "type": "address",
48
+ "internalType": "address"
49
+ }
50
+ ],
51
+ "stateMutability": "view"
52
+ },
53
+ {
54
+ "type": "function",
55
+ "name": "getFeeInBps",
56
+ "inputs": [
57
+ {
58
+ "name": "tokenFeeKey_",
59
+ "type": "bytes32",
60
+ "internalType": "bytes32"
61
+ }
62
+ ],
63
+ "outputs": [
64
+ {
65
+ "name": "",
66
+ "type": "uint256",
67
+ "internalType": "uint256"
68
+ }
69
+ ],
70
+ "stateMutability": "view"
71
+ },
72
+ {
73
+ "type": "function",
74
+ "name": "getFeeInfo",
75
+ "inputs": [
76
+ {
77
+ "name": "feeKey_",
78
+ "type": "bytes32",
79
+ "internalType": "bytes32"
80
+ }
81
+ ],
82
+ "outputs": [
83
+ {
84
+ "name": "",
85
+ "type": "tuple",
86
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
87
+ "components": [
88
+ {
89
+ "name": "feeInBps",
90
+ "type": "uint96",
91
+ "internalType": "uint96"
92
+ },
93
+ {
94
+ "name": "feeRecipientAddr",
95
+ "type": "address",
96
+ "internalType": "address"
97
+ }
98
+ ]
99
+ }
100
+ ],
101
+ "stateMutability": "view"
102
+ },
103
+ {
104
+ "type": "function",
105
+ "name": "getFeeRecipient",
106
+ "inputs": [
107
+ {
108
+ "name": "tokenFeeKey_",
109
+ "type": "bytes32",
110
+ "internalType": "bytes32"
111
+ }
112
+ ],
113
+ "outputs": [
114
+ {
115
+ "name": "",
116
+ "type": "address",
117
+ "internalType": "address"
118
+ }
119
+ ],
120
+ "stateMutability": "view"
121
+ },
122
+ {
123
+ "type": "function",
124
+ "name": "getFeeSplitConfig",
125
+ "inputs": [
126
+ {
127
+ "name": "feeKey_",
128
+ "type": "bytes32",
129
+ "internalType": "bytes32"
130
+ }
131
+ ],
132
+ "outputs": [
133
+ {
134
+ "name": "",
135
+ "type": "tuple",
136
+ "internalType": "struct IAbstractFeeModule.FeeSplitConfig",
137
+ "components": [
138
+ {
139
+ "name": "distributorShareBps",
140
+ "type": "uint96",
141
+ "internalType": "uint96"
142
+ },
143
+ {
144
+ "name": "distributorRecipient",
145
+ "type": "address",
146
+ "internalType": "address"
147
+ }
148
+ ]
149
+ }
150
+ ],
151
+ "stateMutability": "view"
152
+ },
153
+ {
154
+ "type": "function",
155
+ "name": "getMaxDistributorSplitBps",
156
+ "inputs": [],
157
+ "outputs": [
158
+ {
159
+ "name": "",
160
+ "type": "uint256",
161
+ "internalType": "uint256"
162
+ }
163
+ ],
164
+ "stateMutability": "view"
165
+ },
166
+ {
167
+ "type": "function",
168
+ "name": "getSellingTokensAmount",
169
+ "inputs": [
170
+ {
171
+ "name": "buyingTokensAmount_",
172
+ "type": "uint256",
173
+ "internalType": "uint256"
174
+ },
175
+ {
176
+ "name": "buyingTokenExchangeRate_",
177
+ "type": "uint256",
178
+ "internalType": "uint256"
179
+ }
180
+ ],
181
+ "outputs": [
182
+ {
183
+ "name": "",
184
+ "type": "uint256",
185
+ "internalType": "uint256"
186
+ }
187
+ ],
188
+ "stateMutability": "view"
189
+ },
190
+ {
191
+ "type": "function",
192
+ "name": "getSwapFeeKeys",
193
+ "inputs": [
194
+ {
195
+ "name": "token0_",
196
+ "type": "address",
197
+ "internalType": "address"
198
+ },
199
+ {
200
+ "name": "token1_",
201
+ "type": "address",
202
+ "internalType": "address"
203
+ }
204
+ ],
205
+ "outputs": [
206
+ {
207
+ "name": "",
208
+ "type": "bytes32",
209
+ "internalType": "bytes32"
210
+ },
211
+ {
212
+ "name": "",
213
+ "type": "bytes32",
214
+ "internalType": "bytes32"
215
+ }
216
+ ],
217
+ "stateMutability": "view"
218
+ },
219
+ {
220
+ "type": "function",
221
+ "name": "getSwapFeesInfo",
222
+ "inputs": [
223
+ {
224
+ "name": "token0_",
225
+ "type": "address",
226
+ "internalType": "address"
227
+ },
228
+ {
229
+ "name": "token1_",
230
+ "type": "address",
231
+ "internalType": "address"
232
+ }
233
+ ],
234
+ "outputs": [
235
+ {
236
+ "name": "",
237
+ "type": "tuple",
238
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
239
+ "components": [
240
+ {
241
+ "name": "feeInBps",
242
+ "type": "uint96",
243
+ "internalType": "uint96"
244
+ },
245
+ {
246
+ "name": "feeRecipientAddr",
247
+ "type": "address",
248
+ "internalType": "address"
249
+ }
250
+ ]
251
+ },
252
+ {
253
+ "name": "",
254
+ "type": "tuple",
255
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
256
+ "components": [
257
+ {
258
+ "name": "feeInBps",
259
+ "type": "uint96",
260
+ "internalType": "uint96"
261
+ },
262
+ {
263
+ "name": "feeRecipientAddr",
264
+ "type": "address",
265
+ "internalType": "address"
266
+ }
267
+ ]
268
+ }
269
+ ],
270
+ "stateMutability": "view"
271
+ },
272
+ {
273
+ "type": "function",
274
+ "name": "getTokenFeeKey",
275
+ "inputs": [
276
+ {
277
+ "name": "token0_",
278
+ "type": "address",
279
+ "internalType": "address"
280
+ },
281
+ {
282
+ "name": "token1_",
283
+ "type": "address",
284
+ "internalType": "address"
285
+ }
286
+ ],
287
+ "outputs": [
288
+ {
289
+ "name": "",
290
+ "type": "bytes32",
291
+ "internalType": "bytes32"
292
+ }
293
+ ],
294
+ "stateMutability": "view"
295
+ },
296
+ {
297
+ "type": "function",
298
+ "name": "setFXDeskFeeAddr",
299
+ "inputs": [
300
+ {
301
+ "name": "newFXDeskFeeAddr_",
302
+ "type": "address",
303
+ "internalType": "address"
304
+ }
305
+ ],
306
+ "outputs": [],
307
+ "stateMutability": "nonpayable"
308
+ },
309
+ {
310
+ "type": "function",
311
+ "name": "setFeeSplitConfig",
312
+ "inputs": [
313
+ {
314
+ "name": "feeKey_",
315
+ "type": "bytes32",
316
+ "internalType": "bytes32"
317
+ },
318
+ {
319
+ "name": "config_",
320
+ "type": "tuple",
321
+ "internalType": "struct IAbstractFeeModule.FeeSplitConfig",
322
+ "components": [
323
+ {
324
+ "name": "distributorShareBps",
325
+ "type": "uint96",
326
+ "internalType": "uint96"
327
+ },
328
+ {
329
+ "name": "distributorRecipient",
330
+ "type": "address",
331
+ "internalType": "address"
332
+ }
333
+ ]
334
+ }
335
+ ],
336
+ "outputs": [],
337
+ "stateMutability": "nonpayable"
338
+ },
339
+ {
340
+ "type": "function",
341
+ "name": "setMaxDistributorSplitBps",
342
+ "inputs": [
343
+ {
344
+ "name": "maxBps_",
345
+ "type": "uint256",
346
+ "internalType": "uint256"
347
+ }
348
+ ],
349
+ "outputs": [],
350
+ "stateMutability": "nonpayable"
351
+ },
352
+ {
353
+ "type": "function",
354
+ "name": "setSwapFees",
355
+ "inputs": [
356
+ {
357
+ "name": "token0FeeInfo_",
358
+ "type": "tuple",
359
+ "internalType": "struct IP3FXSwap.P3TokenFXFeeInfo",
360
+ "components": [
361
+ {
362
+ "name": "tokenAddr",
363
+ "type": "address",
364
+ "internalType": "address"
365
+ },
366
+ {
367
+ "name": "feeAbsoluteLimit",
368
+ "type": "uint256",
369
+ "internalType": "uint256"
370
+ },
371
+ {
372
+ "name": "feeInfo",
373
+ "type": "tuple",
374
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
375
+ "components": [
376
+ {
377
+ "name": "feeInBps",
378
+ "type": "uint96",
379
+ "internalType": "uint96"
380
+ },
381
+ {
382
+ "name": "feeRecipientAddr",
383
+ "type": "address",
384
+ "internalType": "address"
385
+ }
386
+ ]
387
+ }
388
+ ]
389
+ },
390
+ {
391
+ "name": "token1FeeInfo_",
392
+ "type": "tuple",
393
+ "internalType": "struct IP3FXSwap.P3TokenFXFeeInfo",
394
+ "components": [
395
+ {
396
+ "name": "tokenAddr",
397
+ "type": "address",
398
+ "internalType": "address"
399
+ },
400
+ {
401
+ "name": "feeAbsoluteLimit",
402
+ "type": "uint256",
403
+ "internalType": "uint256"
404
+ },
405
+ {
406
+ "name": "feeInfo",
407
+ "type": "tuple",
408
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
409
+ "components": [
410
+ {
411
+ "name": "feeInBps",
412
+ "type": "uint96",
413
+ "internalType": "uint96"
414
+ },
415
+ {
416
+ "name": "feeRecipientAddr",
417
+ "type": "address",
418
+ "internalType": "address"
419
+ }
420
+ ]
421
+ }
422
+ ]
423
+ }
424
+ ],
425
+ "outputs": [],
426
+ "stateMutability": "nonpayable"
427
+ },
428
+ {
429
+ "type": "function",
430
+ "name": "setTokenFee",
431
+ "inputs": [
432
+ {
433
+ "name": "tokenFeeKey_",
434
+ "type": "bytes32",
435
+ "internalType": "bytes32"
436
+ },
437
+ {
438
+ "name": "tokenFeeInfo_",
439
+ "type": "tuple",
440
+ "internalType": "struct IP3FXSwap.P3TokenFXFeeInfo",
441
+ "components": [
442
+ {
443
+ "name": "tokenAddr",
444
+ "type": "address",
445
+ "internalType": "address"
446
+ },
447
+ {
448
+ "name": "feeAbsoluteLimit",
449
+ "type": "uint256",
450
+ "internalType": "uint256"
451
+ },
452
+ {
453
+ "name": "feeInfo",
454
+ "type": "tuple",
455
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
456
+ "components": [
457
+ {
458
+ "name": "feeInBps",
459
+ "type": "uint96",
460
+ "internalType": "uint96"
461
+ },
462
+ {
463
+ "name": "feeRecipientAddr",
464
+ "type": "address",
465
+ "internalType": "address"
466
+ }
467
+ ]
468
+ }
469
+ ]
470
+ }
471
+ ],
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable"
474
+ },
475
+ {
476
+ "type": "function",
477
+ "name": "swapTokens",
478
+ "inputs": [
479
+ {
480
+ "name": "sellingTokenAddr_",
481
+ "type": "address",
482
+ "internalType": "address"
483
+ },
484
+ {
485
+ "name": "buyingTokenAddr_",
486
+ "type": "address",
487
+ "internalType": "address"
488
+ },
489
+ {
490
+ "name": "tokenSender_",
491
+ "type": "address",
492
+ "internalType": "address"
493
+ },
494
+ {
495
+ "name": "tokenRecipient_",
496
+ "type": "address",
497
+ "internalType": "address"
498
+ },
499
+ {
500
+ "name": "buyingTokensAmount_",
501
+ "type": "uint256",
502
+ "internalType": "uint256"
503
+ },
504
+ {
505
+ "name": "buyingTokenExchangeRate_",
506
+ "type": "uint256",
507
+ "internalType": "uint256"
508
+ }
509
+ ],
510
+ "outputs": [],
511
+ "stateMutability": "nonpayable"
512
+ },
513
+ {
514
+ "type": "function",
515
+ "name": "treasuryManager",
516
+ "inputs": [],
517
+ "outputs": [
518
+ {
519
+ "name": "",
520
+ "type": "address",
521
+ "internalType": "contract IP3TreasuryManager"
522
+ }
523
+ ],
524
+ "stateMutability": "view"
525
+ },
526
+ {
527
+ "type": "event",
528
+ "name": "P3DistributorFeeFallback",
529
+ "inputs": [
530
+ {
531
+ "name": "feeKey",
532
+ "type": "bytes32",
533
+ "indexed": true,
534
+ "internalType": "bytes32"
535
+ },
536
+ {
537
+ "name": "distributorAddr",
538
+ "type": "address",
539
+ "indexed": false,
540
+ "internalType": "address"
541
+ },
542
+ {
543
+ "name": "primaryRecipient",
544
+ "type": "address",
545
+ "indexed": false,
546
+ "internalType": "address"
547
+ },
548
+ {
549
+ "name": "amount",
550
+ "type": "uint256",
551
+ "indexed": false,
552
+ "internalType": "uint256"
553
+ }
554
+ ],
555
+ "anonymous": false
556
+ },
557
+ {
558
+ "type": "event",
559
+ "name": "P3FXTokensSwapped",
560
+ "inputs": [
561
+ {
562
+ "name": "sellingTokenAddr",
563
+ "type": "address",
564
+ "indexed": true,
565
+ "internalType": "address"
566
+ },
567
+ {
568
+ "name": "buyingTokenAddr",
569
+ "type": "address",
570
+ "indexed": true,
571
+ "internalType": "address"
572
+ },
573
+ {
574
+ "name": "tokenSender",
575
+ "type": "address",
576
+ "indexed": true,
577
+ "internalType": "address"
578
+ },
579
+ {
580
+ "name": "tokenRecipient",
581
+ "type": "address",
582
+ "indexed": false,
583
+ "internalType": "address"
584
+ },
585
+ {
586
+ "name": "sellingTokensAmount",
587
+ "type": "uint256",
588
+ "indexed": false,
589
+ "internalType": "uint256"
590
+ },
591
+ {
592
+ "name": "buyingTokensAmount",
593
+ "type": "uint256",
594
+ "indexed": false,
595
+ "internalType": "uint256"
596
+ },
597
+ {
598
+ "name": "buyingTokenExchangeRate",
599
+ "type": "uint256",
600
+ "indexed": false,
601
+ "internalType": "uint256"
602
+ }
603
+ ],
604
+ "anonymous": false
605
+ },
606
+ {
607
+ "type": "event",
608
+ "name": "P3FeeSet",
609
+ "inputs": [
610
+ {
611
+ "name": "feeKey",
612
+ "type": "bytes32",
613
+ "indexed": true,
614
+ "internalType": "bytes32"
615
+ },
616
+ {
617
+ "name": "feeInfo",
618
+ "type": "tuple",
619
+ "indexed": false,
620
+ "internalType": "struct IAbstractFeeModule.FeeInfo",
621
+ "components": [
622
+ {
623
+ "name": "feeInBps",
624
+ "type": "uint96",
625
+ "internalType": "uint96"
626
+ },
627
+ {
628
+ "name": "feeRecipientAddr",
629
+ "type": "address",
630
+ "internalType": "address"
631
+ }
632
+ ]
633
+ }
634
+ ],
635
+ "anonymous": false
636
+ },
637
+ {
638
+ "type": "event",
639
+ "name": "P3FeeSplitConfigured",
640
+ "inputs": [
641
+ {
642
+ "name": "feeKey",
643
+ "type": "bytes32",
644
+ "indexed": true,
645
+ "internalType": "bytes32"
646
+ },
647
+ {
648
+ "name": "config",
649
+ "type": "tuple",
650
+ "indexed": false,
651
+ "internalType": "struct IAbstractFeeModule.FeeSplitConfig",
652
+ "components": [
653
+ {
654
+ "name": "distributorShareBps",
655
+ "type": "uint96",
656
+ "internalType": "uint96"
657
+ },
658
+ {
659
+ "name": "distributorRecipient",
660
+ "type": "address",
661
+ "internalType": "address"
662
+ }
663
+ ]
664
+ }
665
+ ],
666
+ "anonymous": false
667
+ },
668
+ {
669
+ "type": "event",
670
+ "name": "P3MaxDistributorSplitUpdated",
671
+ "inputs": [
672
+ {
673
+ "name": "oldMaxBps",
674
+ "type": "uint256",
675
+ "indexed": false,
676
+ "internalType": "uint256"
677
+ },
678
+ {
679
+ "name": "newMaxBps",
680
+ "type": "uint256",
681
+ "indexed": false,
682
+ "internalType": "uint256"
683
+ }
684
+ ],
685
+ "anonymous": false
686
+ },
687
+ {
688
+ "type": "error",
689
+ "name": "AbstractFeeModuleDistributorSplitTooHigh",
690
+ "inputs": [
691
+ {
692
+ "name": "distributorShareBps",
693
+ "type": "uint256",
694
+ "internalType": "uint256"
695
+ },
696
+ {
697
+ "name": "maxBps",
698
+ "type": "uint256",
699
+ "internalType": "uint256"
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ "type": "error",
705
+ "name": "AbstractFeeModuleInvalidDistributorRecipient",
706
+ "inputs": [
707
+ {
708
+ "name": "distributorAddr",
709
+ "type": "address",
710
+ "internalType": "address"
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "type": "error",
716
+ "name": "AbstractFeeModuleInvalidFee",
717
+ "inputs": [
718
+ {
719
+ "name": "feeInBps",
720
+ "type": "uint256",
721
+ "internalType": "uint256"
722
+ }
723
+ ]
724
+ },
725
+ {
726
+ "type": "error",
727
+ "name": "AbstractFeeModuleInvalidFeeRecipient",
728
+ "inputs": []
729
+ },
730
+ {
731
+ "type": "error",
732
+ "name": "P3FXSwapInvalidFeeRecipientAddr",
733
+ "inputs": [
734
+ {
735
+ "name": "newFeeRecipient",
736
+ "type": "address",
737
+ "internalType": "address"
738
+ }
739
+ ]
740
+ },
741
+ {
742
+ "type": "error",
743
+ "name": "P3FXSwapInvalidTokenAddresses",
744
+ "inputs": [
745
+ {
746
+ "name": "token0",
747
+ "type": "address",
748
+ "internalType": "address"
749
+ },
750
+ {
751
+ "name": "token1",
752
+ "type": "address",
753
+ "internalType": "address"
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "type": "error",
759
+ "name": "P3FXSwapZeroAddress",
760
+ "inputs": [
761
+ {
762
+ "name": "paramName",
763
+ "type": "string",
764
+ "internalType": "string"
765
+ }
766
+ ]
767
+ },
768
+ {
769
+ "type": "error",
770
+ "name": "P3FXSwapZeroExchangeRate",
771
+ "inputs": []
772
+ },
773
+ {
774
+ "type": "error",
775
+ "name": "P3FXSwapZeroSellingAmount",
776
+ "inputs": []
777
+ }
778
+ ];
779
+ export default abi;