@pearldigital/p3-abis 3.0.1 → 3.2.3

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 (44) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +10 -2
  3. package/src/IAbstractFeeModule.d.ts +1 -1
  4. package/src/IAbstractTimelockUpgrade.d.ts +1 -1
  5. package/src/IAbstractTreasuryManagerRestricted.d.ts +1 -1
  6. package/src/IAbstractTreasuryRestricted.d.ts +1 -1
  7. package/src/IEquityTransferModule.d.ts +721 -0
  8. package/src/IEquityTransferModule.js +721 -0
  9. package/src/IP3AgentLimitComplianceModule.d.ts +1 -1
  10. package/src/IP3AgenticRegistryManager.d.ts +70 -1
  11. package/src/IP3AgenticRegistryManager.js +69 -0
  12. package/src/IP3AttestationManager.d.ts +63 -1
  13. package/src/IP3AttestationManager.js +62 -0
  14. package/src/IP3BasicToken.d.ts +1 -1
  15. package/src/IP3ComplianceFactory.d.ts +1 -1
  16. package/src/IP3ComplianceModule.d.ts +1 -1
  17. package/src/IP3DepositToken.d.ts +1 -1
  18. package/src/IP3DigitalSecurityToken.d.ts +1 -1
  19. package/src/IP3EIP3009.d.ts +1 -1
  20. package/src/IP3ERC20ConverterManager.d.ts +1 -1
  21. package/src/IP3ERC8004Connector.d.ts +1 -1
  22. package/src/IP3EquityVault.d.ts +1568 -0
  23. package/src/IP3EquityVault.js +1568 -0
  24. package/src/IP3FXSwap.d.ts +1 -1
  25. package/src/IP3ModularCompliance.d.ts +55 -1
  26. package/src/IP3ModularCompliance.js +54 -0
  27. package/src/IP3RWAVault.d.ts +1333 -0
  28. package/src/IP3RWAVault.js +1333 -0
  29. package/src/IP3ReputationComplianceModule.d.ts +40 -1
  30. package/src/IP3ReputationComplianceModule.js +39 -0
  31. package/src/IP3ReputationRegistry.d.ts +342 -0
  32. package/src/IP3ReputationRegistry.js +342 -0
  33. package/src/IP3StablecoinSwap.d.ts +54 -1
  34. package/src/IP3StablecoinSwap.js +53 -0
  35. package/src/IP3StablecoinToken.d.ts +1 -1
  36. package/src/IP3TokensFactory.d.ts +1 -1
  37. package/src/IP3TransferManager.d.ts +1 -1
  38. package/src/IP3TreasuryManager.d.ts +311 -6
  39. package/src/IP3TreasuryManager.js +310 -5
  40. package/src/IP3YieldBearingStablecoinToken.d.ts +1 -1
  41. package/src/IRecoveryVelocityComplianceModule.d.ts +1 -1
  42. package/src/ISolvencyComplianceModule.d.ts +1 -1
  43. package/src/index.d.ts +4 -0
  44. package/src/index.js +4 -0
@@ -0,0 +1,1568 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export declare 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": "cancelAgenticRegistry",
19
+ "inputs": [],
20
+ "outputs": [],
21
+ "stateMutability": "nonpayable"
22
+ },
23
+ {
24
+ "type": "function",
25
+ "name": "claimDividend",
26
+ "inputs": [
27
+ {
28
+ "name": "dividendId_",
29
+ "type": "uint256",
30
+ "internalType": "uint256"
31
+ }
32
+ ],
33
+ "outputs": [
34
+ {
35
+ "name": "amount",
36
+ "type": "uint256",
37
+ "internalType": "uint256"
38
+ }
39
+ ],
40
+ "stateMutability": "nonpayable"
41
+ },
42
+ {
43
+ "type": "function",
44
+ "name": "declareDividend",
45
+ "inputs": [
46
+ {
47
+ "name": "expiresAt_",
48
+ "type": "uint256",
49
+ "internalType": "uint256"
50
+ }
51
+ ],
52
+ "outputs": [
53
+ {
54
+ "name": "dividendId",
55
+ "type": "uint256",
56
+ "internalType": "uint256"
57
+ }
58
+ ],
59
+ "stateMutability": "nonpayable"
60
+ },
61
+ {
62
+ "type": "function",
63
+ "name": "dividendReserveWallet",
64
+ "inputs": [],
65
+ "outputs": [
66
+ {
67
+ "name": "",
68
+ "type": "address",
69
+ "internalType": "address"
70
+ }
71
+ ],
72
+ "stateMutability": "view"
73
+ },
74
+ {
75
+ "type": "function",
76
+ "name": "dividendSweepSink",
77
+ "inputs": [],
78
+ "outputs": [
79
+ {
80
+ "name": "",
81
+ "type": "address",
82
+ "internalType": "address"
83
+ }
84
+ ],
85
+ "stateMutability": "view"
86
+ },
87
+ {
88
+ "type": "function",
89
+ "name": "executeAgenticRegistry",
90
+ "inputs": [],
91
+ "outputs": [],
92
+ "stateMutability": "nonpayable"
93
+ },
94
+ {
95
+ "type": "function",
96
+ "name": "finalizeDividend",
97
+ "inputs": [
98
+ {
99
+ "name": "dividendId_",
100
+ "type": "uint256",
101
+ "internalType": "uint256"
102
+ }
103
+ ],
104
+ "outputs": [],
105
+ "stateMutability": "nonpayable"
106
+ },
107
+ {
108
+ "type": "function",
109
+ "name": "getDividend",
110
+ "inputs": [
111
+ {
112
+ "name": "dividendId_",
113
+ "type": "uint256",
114
+ "internalType": "uint256"
115
+ }
116
+ ],
117
+ "outputs": [
118
+ {
119
+ "name": "",
120
+ "type": "tuple",
121
+ "internalType": "struct IP3EquityVault.DividendRecord",
122
+ "components": [
123
+ {
124
+ "name": "totalEntitlement",
125
+ "type": "uint256",
126
+ "internalType": "uint256"
127
+ },
128
+ {
129
+ "name": "totalClaimed",
130
+ "type": "uint256",
131
+ "internalType": "uint256"
132
+ },
133
+ {
134
+ "name": "expiresAt",
135
+ "type": "uint256",
136
+ "internalType": "uint256"
137
+ },
138
+ {
139
+ "name": "finalized",
140
+ "type": "bool",
141
+ "internalType": "bool"
142
+ },
143
+ {
144
+ "name": "reserveWallet",
145
+ "type": "address",
146
+ "internalType": "address"
147
+ }
148
+ ]
149
+ }
150
+ ],
151
+ "stateMutability": "view"
152
+ },
153
+ {
154
+ "type": "function",
155
+ "name": "getDividendEntitlement",
156
+ "inputs": [
157
+ {
158
+ "name": "dividendId_",
159
+ "type": "uint256",
160
+ "internalType": "uint256"
161
+ },
162
+ {
163
+ "name": "holder_",
164
+ "type": "address",
165
+ "internalType": "address"
166
+ }
167
+ ],
168
+ "outputs": [
169
+ {
170
+ "name": "",
171
+ "type": "uint256",
172
+ "internalType": "uint256"
173
+ }
174
+ ],
175
+ "stateMutability": "view"
176
+ },
177
+ {
178
+ "type": "function",
179
+ "name": "inflowsPaused",
180
+ "inputs": [],
181
+ "outputs": [
182
+ {
183
+ "name": "",
184
+ "type": "bool",
185
+ "internalType": "bool"
186
+ }
187
+ ],
188
+ "stateMutability": "view"
189
+ },
190
+ {
191
+ "type": "function",
192
+ "name": "isAssetAccepted",
193
+ "inputs": [
194
+ {
195
+ "name": "asset_",
196
+ "type": "address",
197
+ "internalType": "address"
198
+ }
199
+ ],
200
+ "outputs": [
201
+ {
202
+ "name": "",
203
+ "type": "bool",
204
+ "internalType": "bool"
205
+ }
206
+ ],
207
+ "stateMutability": "view"
208
+ },
209
+ {
210
+ "type": "function",
211
+ "name": "isDividendClaimed",
212
+ "inputs": [
213
+ {
214
+ "name": "dividendId_",
215
+ "type": "uint256",
216
+ "internalType": "uint256"
217
+ },
218
+ {
219
+ "name": "holder_",
220
+ "type": "address",
221
+ "internalType": "address"
222
+ }
223
+ ],
224
+ "outputs": [
225
+ {
226
+ "name": "",
227
+ "type": "bool",
228
+ "internalType": "bool"
229
+ }
230
+ ],
231
+ "stateMutability": "view"
232
+ },
233
+ {
234
+ "type": "function",
235
+ "name": "issuanceDate",
236
+ "inputs": [
237
+ {
238
+ "name": "investor",
239
+ "type": "address",
240
+ "internalType": "address"
241
+ }
242
+ ],
243
+ "outputs": [
244
+ {
245
+ "name": "",
246
+ "type": "uint256",
247
+ "internalType": "uint256"
248
+ }
249
+ ],
250
+ "stateMutability": "view"
251
+ },
252
+ {
253
+ "type": "function",
254
+ "name": "minSubscription",
255
+ "inputs": [],
256
+ "outputs": [
257
+ {
258
+ "name": "",
259
+ "type": "uint256",
260
+ "internalType": "uint256"
261
+ }
262
+ ],
263
+ "stateMutability": "view"
264
+ },
265
+ {
266
+ "type": "function",
267
+ "name": "nacreToken",
268
+ "inputs": [],
269
+ "outputs": [
270
+ {
271
+ "name": "",
272
+ "type": "address",
273
+ "internalType": "address"
274
+ }
275
+ ],
276
+ "stateMutability": "view"
277
+ },
278
+ {
279
+ "type": "function",
280
+ "name": "navRate",
281
+ "inputs": [],
282
+ "outputs": [
283
+ {
284
+ "name": "",
285
+ "type": "uint256",
286
+ "internalType": "uint256"
287
+ }
288
+ ],
289
+ "stateMutability": "view"
290
+ },
291
+ {
292
+ "type": "function",
293
+ "name": "nextDividendId",
294
+ "inputs": [],
295
+ "outputs": [
296
+ {
297
+ "name": "",
298
+ "type": "uint256",
299
+ "internalType": "uint256"
300
+ }
301
+ ],
302
+ "stateMutability": "view"
303
+ },
304
+ {
305
+ "type": "function",
306
+ "name": "outflowsPaused",
307
+ "inputs": [],
308
+ "outputs": [
309
+ {
310
+ "name": "",
311
+ "type": "bool",
312
+ "internalType": "bool"
313
+ }
314
+ ],
315
+ "stateMutability": "view"
316
+ },
317
+ {
318
+ "type": "function",
319
+ "name": "pauseInflows",
320
+ "inputs": [],
321
+ "outputs": [],
322
+ "stateMutability": "nonpayable"
323
+ },
324
+ {
325
+ "type": "function",
326
+ "name": "pauseOutflows",
327
+ "inputs": [],
328
+ "outputs": [],
329
+ "stateMutability": "nonpayable"
330
+ },
331
+ {
332
+ "type": "function",
333
+ "name": "prlusd",
334
+ "inputs": [],
335
+ "outputs": [
336
+ {
337
+ "name": "",
338
+ "type": "address",
339
+ "internalType": "address"
340
+ }
341
+ ],
342
+ "stateMutability": "view"
343
+ },
344
+ {
345
+ "type": "function",
346
+ "name": "quoteRedeem",
347
+ "inputs": [
348
+ {
349
+ "name": "nacreAmount_",
350
+ "type": "uint256",
351
+ "internalType": "uint256"
352
+ }
353
+ ],
354
+ "outputs": [
355
+ {
356
+ "name": "prlusdOut",
357
+ "type": "uint256",
358
+ "internalType": "uint256"
359
+ }
360
+ ],
361
+ "stateMutability": "view"
362
+ },
363
+ {
364
+ "type": "function",
365
+ "name": "quoteSubscribe",
366
+ "inputs": [
367
+ {
368
+ "name": "asset_",
369
+ "type": "address",
370
+ "internalType": "address"
371
+ },
372
+ {
373
+ "name": "assetAmount_",
374
+ "type": "uint256",
375
+ "internalType": "uint256"
376
+ }
377
+ ],
378
+ "outputs": [
379
+ {
380
+ "name": "nacreOut",
381
+ "type": "uint256",
382
+ "internalType": "uint256"
383
+ }
384
+ ],
385
+ "stateMutability": "view"
386
+ },
387
+ {
388
+ "type": "function",
389
+ "name": "quoteSubscribe",
390
+ "inputs": [
391
+ {
392
+ "name": "prlusdAmount_",
393
+ "type": "uint256",
394
+ "internalType": "uint256"
395
+ }
396
+ ],
397
+ "outputs": [
398
+ {
399
+ "name": "nacreOut",
400
+ "type": "uint256",
401
+ "internalType": "uint256"
402
+ }
403
+ ],
404
+ "stateMutability": "view"
405
+ },
406
+ {
407
+ "type": "function",
408
+ "name": "redeem",
409
+ "inputs": [
410
+ {
411
+ "name": "nacreAmount_",
412
+ "type": "uint256",
413
+ "internalType": "uint256"
414
+ },
415
+ {
416
+ "name": "minPrlusdOut_",
417
+ "type": "uint256",
418
+ "internalType": "uint256"
419
+ },
420
+ {
421
+ "name": "deadline_",
422
+ "type": "uint256",
423
+ "internalType": "uint256"
424
+ }
425
+ ],
426
+ "outputs": [
427
+ {
428
+ "name": "prlusdOut",
429
+ "type": "uint256",
430
+ "internalType": "uint256"
431
+ }
432
+ ],
433
+ "stateMutability": "nonpayable"
434
+ },
435
+ {
436
+ "type": "function",
437
+ "name": "scheduleAgenticRegistry",
438
+ "inputs": [
439
+ {
440
+ "name": "agenticRegistry_",
441
+ "type": "address",
442
+ "internalType": "address"
443
+ }
444
+ ],
445
+ "outputs": [],
446
+ "stateMutability": "nonpayable"
447
+ },
448
+ {
449
+ "type": "function",
450
+ "name": "scheduledAgenticRegistry",
451
+ "inputs": [],
452
+ "outputs": [
453
+ {
454
+ "name": "scheduled",
455
+ "type": "address",
456
+ "internalType": "address"
457
+ },
458
+ {
459
+ "name": "readyAt",
460
+ "type": "uint256",
461
+ "internalType": "uint256"
462
+ }
463
+ ],
464
+ "stateMutability": "view"
465
+ },
466
+ {
467
+ "type": "function",
468
+ "name": "setAssetAccepted",
469
+ "inputs": [
470
+ {
471
+ "name": "asset_",
472
+ "type": "address",
473
+ "internalType": "address"
474
+ },
475
+ {
476
+ "name": "accepted_",
477
+ "type": "bool",
478
+ "internalType": "bool"
479
+ }
480
+ ],
481
+ "outputs": [],
482
+ "stateMutability": "nonpayable"
483
+ },
484
+ {
485
+ "type": "function",
486
+ "name": "setDividendEntitlements",
487
+ "inputs": [
488
+ {
489
+ "name": "dividendId_",
490
+ "type": "uint256",
491
+ "internalType": "uint256"
492
+ },
493
+ {
494
+ "name": "holders_",
495
+ "type": "address[]",
496
+ "internalType": "address[]"
497
+ },
498
+ {
499
+ "name": "amounts_",
500
+ "type": "uint256[]",
501
+ "internalType": "uint256[]"
502
+ }
503
+ ],
504
+ "outputs": [],
505
+ "stateMutability": "nonpayable"
506
+ },
507
+ {
508
+ "type": "function",
509
+ "name": "setDividendReserveWallet",
510
+ "inputs": [
511
+ {
512
+ "name": "newDividendReserveWallet_",
513
+ "type": "address",
514
+ "internalType": "address"
515
+ }
516
+ ],
517
+ "outputs": [],
518
+ "stateMutability": "nonpayable"
519
+ },
520
+ {
521
+ "type": "function",
522
+ "name": "setDividendSweepSink",
523
+ "inputs": [
524
+ {
525
+ "name": "sink_",
526
+ "type": "address",
527
+ "internalType": "address"
528
+ }
529
+ ],
530
+ "outputs": [],
531
+ "stateMutability": "nonpayable"
532
+ },
533
+ {
534
+ "type": "function",
535
+ "name": "setMinSubscription",
536
+ "inputs": [
537
+ {
538
+ "name": "newMinSubscription_",
539
+ "type": "uint256",
540
+ "internalType": "uint256"
541
+ }
542
+ ],
543
+ "outputs": [],
544
+ "stateMutability": "nonpayable"
545
+ },
546
+ {
547
+ "type": "function",
548
+ "name": "setNavRate",
549
+ "inputs": [
550
+ {
551
+ "name": "newNavRate_",
552
+ "type": "uint256",
553
+ "internalType": "uint256"
554
+ }
555
+ ],
556
+ "outputs": [],
557
+ "stateMutability": "nonpayable"
558
+ },
559
+ {
560
+ "type": "function",
561
+ "name": "setPrlusd",
562
+ "inputs": [
563
+ {
564
+ "name": "prlusd_",
565
+ "type": "address",
566
+ "internalType": "address"
567
+ }
568
+ ],
569
+ "outputs": [],
570
+ "stateMutability": "nonpayable"
571
+ },
572
+ {
573
+ "type": "function",
574
+ "name": "setStablecoinSwap",
575
+ "inputs": [
576
+ {
577
+ "name": "stablecoinSwap_",
578
+ "type": "address",
579
+ "internalType": "address"
580
+ }
581
+ ],
582
+ "outputs": [],
583
+ "stateMutability": "nonpayable"
584
+ },
585
+ {
586
+ "type": "function",
587
+ "name": "setVaultWallet",
588
+ "inputs": [
589
+ {
590
+ "name": "newVaultWallet_",
591
+ "type": "address",
592
+ "internalType": "address"
593
+ }
594
+ ],
595
+ "outputs": [],
596
+ "stateMutability": "nonpayable"
597
+ },
598
+ {
599
+ "type": "function",
600
+ "name": "stablecoinSwap",
601
+ "inputs": [],
602
+ "outputs": [
603
+ {
604
+ "name": "",
605
+ "type": "address",
606
+ "internalType": "contract IP3StablecoinSwap"
607
+ }
608
+ ],
609
+ "stateMutability": "view"
610
+ },
611
+ {
612
+ "type": "function",
613
+ "name": "subscribe",
614
+ "inputs": [
615
+ {
616
+ "name": "asset_",
617
+ "type": "address",
618
+ "internalType": "address"
619
+ },
620
+ {
621
+ "name": "assetAmount_",
622
+ "type": "uint256",
623
+ "internalType": "uint256"
624
+ },
625
+ {
626
+ "name": "minNacreOut_",
627
+ "type": "uint256",
628
+ "internalType": "uint256"
629
+ },
630
+ {
631
+ "name": "deadline_",
632
+ "type": "uint256",
633
+ "internalType": "uint256"
634
+ }
635
+ ],
636
+ "outputs": [
637
+ {
638
+ "name": "nacreOut",
639
+ "type": "uint256",
640
+ "internalType": "uint256"
641
+ }
642
+ ],
643
+ "stateMutability": "nonpayable"
644
+ },
645
+ {
646
+ "type": "function",
647
+ "name": "sweepUnclaimedDividend",
648
+ "inputs": [
649
+ {
650
+ "name": "dividendId_",
651
+ "type": "uint256",
652
+ "internalType": "uint256"
653
+ },
654
+ {
655
+ "name": "to_",
656
+ "type": "address",
657
+ "internalType": "address"
658
+ }
659
+ ],
660
+ "outputs": [],
661
+ "stateMutability": "nonpayable"
662
+ },
663
+ {
664
+ "type": "function",
665
+ "name": "unpauseInflows",
666
+ "inputs": [],
667
+ "outputs": [],
668
+ "stateMutability": "nonpayable"
669
+ },
670
+ {
671
+ "type": "function",
672
+ "name": "unpauseOutflows",
673
+ "inputs": [],
674
+ "outputs": [],
675
+ "stateMutability": "nonpayable"
676
+ },
677
+ {
678
+ "type": "function",
679
+ "name": "vaultInventoryBalance",
680
+ "inputs": [],
681
+ "outputs": [
682
+ {
683
+ "name": "",
684
+ "type": "uint256",
685
+ "internalType": "uint256"
686
+ }
687
+ ],
688
+ "stateMutability": "view"
689
+ },
690
+ {
691
+ "type": "function",
692
+ "name": "vaultPrlusdReserveBalance",
693
+ "inputs": [],
694
+ "outputs": [
695
+ {
696
+ "name": "",
697
+ "type": "uint256",
698
+ "internalType": "uint256"
699
+ }
700
+ ],
701
+ "stateMutability": "view"
702
+ },
703
+ {
704
+ "type": "function",
705
+ "name": "vaultWallet",
706
+ "inputs": [],
707
+ "outputs": [
708
+ {
709
+ "name": "",
710
+ "type": "address",
711
+ "internalType": "address"
712
+ }
713
+ ],
714
+ "stateMutability": "view"
715
+ },
716
+ {
717
+ "type": "event",
718
+ "name": "AgenticRegistryScheduleCancelled",
719
+ "inputs": [
720
+ {
721
+ "name": "cancelledAddress",
722
+ "type": "address",
723
+ "indexed": true,
724
+ "internalType": "address"
725
+ }
726
+ ],
727
+ "anonymous": false
728
+ },
729
+ {
730
+ "type": "event",
731
+ "name": "AgenticRegistryScheduled",
732
+ "inputs": [
733
+ {
734
+ "name": "newAddress",
735
+ "type": "address",
736
+ "indexed": true,
737
+ "internalType": "address"
738
+ },
739
+ {
740
+ "name": "readyAt",
741
+ "type": "uint256",
742
+ "indexed": false,
743
+ "internalType": "uint256"
744
+ }
745
+ ],
746
+ "anonymous": false
747
+ },
748
+ {
749
+ "type": "event",
750
+ "name": "AgenticRegistryUpdated",
751
+ "inputs": [
752
+ {
753
+ "name": "oldAddress",
754
+ "type": "address",
755
+ "indexed": false,
756
+ "internalType": "address"
757
+ },
758
+ {
759
+ "name": "newAddress",
760
+ "type": "address",
761
+ "indexed": false,
762
+ "internalType": "address"
763
+ }
764
+ ],
765
+ "anonymous": false
766
+ },
767
+ {
768
+ "type": "event",
769
+ "name": "AssetAcceptanceUpdated",
770
+ "inputs": [
771
+ {
772
+ "name": "asset",
773
+ "type": "address",
774
+ "indexed": true,
775
+ "internalType": "address"
776
+ },
777
+ {
778
+ "name": "accepted",
779
+ "type": "bool",
780
+ "indexed": false,
781
+ "internalType": "bool"
782
+ }
783
+ ],
784
+ "anonymous": false
785
+ },
786
+ {
787
+ "type": "event",
788
+ "name": "DividendClaimed",
789
+ "inputs": [
790
+ {
791
+ "name": "dividendId",
792
+ "type": "uint256",
793
+ "indexed": true,
794
+ "internalType": "uint256"
795
+ },
796
+ {
797
+ "name": "holder",
798
+ "type": "address",
799
+ "indexed": true,
800
+ "internalType": "address"
801
+ },
802
+ {
803
+ "name": "amount",
804
+ "type": "uint256",
805
+ "indexed": false,
806
+ "internalType": "uint256"
807
+ }
808
+ ],
809
+ "anonymous": false
810
+ },
811
+ {
812
+ "type": "event",
813
+ "name": "DividendDeclared",
814
+ "inputs": [
815
+ {
816
+ "name": "dividendId",
817
+ "type": "uint256",
818
+ "indexed": true,
819
+ "internalType": "uint256"
820
+ },
821
+ {
822
+ "name": "expiresAt",
823
+ "type": "uint256",
824
+ "indexed": false,
825
+ "internalType": "uint256"
826
+ }
827
+ ],
828
+ "anonymous": false
829
+ },
830
+ {
831
+ "type": "event",
832
+ "name": "DividendEntitlementsSet",
833
+ "inputs": [
834
+ {
835
+ "name": "dividendId",
836
+ "type": "uint256",
837
+ "indexed": true,
838
+ "internalType": "uint256"
839
+ },
840
+ {
841
+ "name": "count",
842
+ "type": "uint256",
843
+ "indexed": false,
844
+ "internalType": "uint256"
845
+ }
846
+ ],
847
+ "anonymous": false
848
+ },
849
+ {
850
+ "type": "event",
851
+ "name": "DividendFinalized",
852
+ "inputs": [
853
+ {
854
+ "name": "dividendId",
855
+ "type": "uint256",
856
+ "indexed": true,
857
+ "internalType": "uint256"
858
+ },
859
+ {
860
+ "name": "totalEntitlement",
861
+ "type": "uint256",
862
+ "indexed": false,
863
+ "internalType": "uint256"
864
+ }
865
+ ],
866
+ "anonymous": false
867
+ },
868
+ {
869
+ "type": "event",
870
+ "name": "DividendReserveWalletUpdated",
871
+ "inputs": [
872
+ {
873
+ "name": "oldWallet",
874
+ "type": "address",
875
+ "indexed": false,
876
+ "internalType": "address"
877
+ },
878
+ {
879
+ "name": "newWallet",
880
+ "type": "address",
881
+ "indexed": false,
882
+ "internalType": "address"
883
+ }
884
+ ],
885
+ "anonymous": false
886
+ },
887
+ {
888
+ "type": "event",
889
+ "name": "DividendSweepSinkUpdated",
890
+ "inputs": [
891
+ {
892
+ "name": "oldSink",
893
+ "type": "address",
894
+ "indexed": true,
895
+ "internalType": "address"
896
+ },
897
+ {
898
+ "name": "newSink",
899
+ "type": "address",
900
+ "indexed": true,
901
+ "internalType": "address"
902
+ }
903
+ ],
904
+ "anonymous": false
905
+ },
906
+ {
907
+ "type": "event",
908
+ "name": "DividendSwept",
909
+ "inputs": [
910
+ {
911
+ "name": "dividendId",
912
+ "type": "uint256",
913
+ "indexed": true,
914
+ "internalType": "uint256"
915
+ },
916
+ {
917
+ "name": "unclaimedAmount",
918
+ "type": "uint256",
919
+ "indexed": false,
920
+ "internalType": "uint256"
921
+ },
922
+ {
923
+ "name": "to",
924
+ "type": "address",
925
+ "indexed": false,
926
+ "internalType": "address"
927
+ }
928
+ ],
929
+ "anonymous": false
930
+ },
931
+ {
932
+ "type": "event",
933
+ "name": "InflowsPaused",
934
+ "inputs": [
935
+ {
936
+ "name": "by",
937
+ "type": "address",
938
+ "indexed": false,
939
+ "internalType": "address"
940
+ }
941
+ ],
942
+ "anonymous": false
943
+ },
944
+ {
945
+ "type": "event",
946
+ "name": "InflowsUnpaused",
947
+ "inputs": [
948
+ {
949
+ "name": "by",
950
+ "type": "address",
951
+ "indexed": false,
952
+ "internalType": "address"
953
+ }
954
+ ],
955
+ "anonymous": false
956
+ },
957
+ {
958
+ "type": "event",
959
+ "name": "MinSubscriptionUpdated",
960
+ "inputs": [
961
+ {
962
+ "name": "oldMinimum",
963
+ "type": "uint256",
964
+ "indexed": false,
965
+ "internalType": "uint256"
966
+ },
967
+ {
968
+ "name": "newMinimum",
969
+ "type": "uint256",
970
+ "indexed": false,
971
+ "internalType": "uint256"
972
+ }
973
+ ],
974
+ "anonymous": false
975
+ },
976
+ {
977
+ "type": "event",
978
+ "name": "NavRateUpdated",
979
+ "inputs": [
980
+ {
981
+ "name": "oldRate",
982
+ "type": "uint256",
983
+ "indexed": false,
984
+ "internalType": "uint256"
985
+ },
986
+ {
987
+ "name": "newRate",
988
+ "type": "uint256",
989
+ "indexed": false,
990
+ "internalType": "uint256"
991
+ }
992
+ ],
993
+ "anonymous": false
994
+ },
995
+ {
996
+ "type": "event",
997
+ "name": "OutflowsPaused",
998
+ "inputs": [
999
+ {
1000
+ "name": "by",
1001
+ "type": "address",
1002
+ "indexed": false,
1003
+ "internalType": "address"
1004
+ }
1005
+ ],
1006
+ "anonymous": false
1007
+ },
1008
+ {
1009
+ "type": "event",
1010
+ "name": "OutflowsUnpaused",
1011
+ "inputs": [
1012
+ {
1013
+ "name": "by",
1014
+ "type": "address",
1015
+ "indexed": false,
1016
+ "internalType": "address"
1017
+ }
1018
+ ],
1019
+ "anonymous": false
1020
+ },
1021
+ {
1022
+ "type": "event",
1023
+ "name": "PrlusdUpdated",
1024
+ "inputs": [
1025
+ {
1026
+ "name": "oldAddress",
1027
+ "type": "address",
1028
+ "indexed": false,
1029
+ "internalType": "address"
1030
+ },
1031
+ {
1032
+ "name": "newAddress",
1033
+ "type": "address",
1034
+ "indexed": false,
1035
+ "internalType": "address"
1036
+ }
1037
+ ],
1038
+ "anonymous": false
1039
+ },
1040
+ {
1041
+ "type": "event",
1042
+ "name": "Redeemed",
1043
+ "inputs": [
1044
+ {
1045
+ "name": "investor",
1046
+ "type": "address",
1047
+ "indexed": true,
1048
+ "internalType": "address"
1049
+ },
1050
+ {
1051
+ "name": "nacreIn",
1052
+ "type": "uint256",
1053
+ "indexed": false,
1054
+ "internalType": "uint256"
1055
+ },
1056
+ {
1057
+ "name": "prlusdOut",
1058
+ "type": "uint256",
1059
+ "indexed": false,
1060
+ "internalType": "uint256"
1061
+ },
1062
+ {
1063
+ "name": "navRate",
1064
+ "type": "uint256",
1065
+ "indexed": false,
1066
+ "internalType": "uint256"
1067
+ }
1068
+ ],
1069
+ "anonymous": false
1070
+ },
1071
+ {
1072
+ "type": "event",
1073
+ "name": "StablecoinSwapUpdated",
1074
+ "inputs": [
1075
+ {
1076
+ "name": "oldAddress",
1077
+ "type": "address",
1078
+ "indexed": false,
1079
+ "internalType": "address"
1080
+ },
1081
+ {
1082
+ "name": "newAddress",
1083
+ "type": "address",
1084
+ "indexed": false,
1085
+ "internalType": "address"
1086
+ }
1087
+ ],
1088
+ "anonymous": false
1089
+ },
1090
+ {
1091
+ "type": "event",
1092
+ "name": "Subscribed",
1093
+ "inputs": [
1094
+ {
1095
+ "name": "investor",
1096
+ "type": "address",
1097
+ "indexed": true,
1098
+ "internalType": "address"
1099
+ },
1100
+ {
1101
+ "name": "asset",
1102
+ "type": "address",
1103
+ "indexed": true,
1104
+ "internalType": "address"
1105
+ },
1106
+ {
1107
+ "name": "assetAmountIn",
1108
+ "type": "uint256",
1109
+ "indexed": false,
1110
+ "internalType": "uint256"
1111
+ },
1112
+ {
1113
+ "name": "nacreOut",
1114
+ "type": "uint256",
1115
+ "indexed": false,
1116
+ "internalType": "uint256"
1117
+ },
1118
+ {
1119
+ "name": "navRate",
1120
+ "type": "uint256",
1121
+ "indexed": false,
1122
+ "internalType": "uint256"
1123
+ }
1124
+ ],
1125
+ "anonymous": false
1126
+ },
1127
+ {
1128
+ "type": "event",
1129
+ "name": "VaultWalletUpdated",
1130
+ "inputs": [
1131
+ {
1132
+ "name": "oldWallet",
1133
+ "type": "address",
1134
+ "indexed": false,
1135
+ "internalType": "address"
1136
+ },
1137
+ {
1138
+ "name": "newWallet",
1139
+ "type": "address",
1140
+ "indexed": false,
1141
+ "internalType": "address"
1142
+ }
1143
+ ],
1144
+ "anonymous": false
1145
+ },
1146
+ {
1147
+ "type": "error",
1148
+ "name": "P3EquityVaultArrayLengthMismatch",
1149
+ "inputs": []
1150
+ },
1151
+ {
1152
+ "type": "error",
1153
+ "name": "P3EquityVaultAssetNotAccepted",
1154
+ "inputs": [
1155
+ {
1156
+ "name": "asset",
1157
+ "type": "address",
1158
+ "internalType": "address"
1159
+ }
1160
+ ]
1161
+ },
1162
+ {
1163
+ "type": "error",
1164
+ "name": "P3EquityVaultBelowMinSubscription",
1165
+ "inputs": [
1166
+ {
1167
+ "name": "provided",
1168
+ "type": "uint256",
1169
+ "internalType": "uint256"
1170
+ },
1171
+ {
1172
+ "name": "minimum",
1173
+ "type": "uint256",
1174
+ "internalType": "uint256"
1175
+ }
1176
+ ]
1177
+ },
1178
+ {
1179
+ "type": "error",
1180
+ "name": "P3EquityVaultDeadlineExpired",
1181
+ "inputs": [
1182
+ {
1183
+ "name": "deadline",
1184
+ "type": "uint256",
1185
+ "internalType": "uint256"
1186
+ },
1187
+ {
1188
+ "name": "currentTime",
1189
+ "type": "uint256",
1190
+ "internalType": "uint256"
1191
+ }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "type": "error",
1196
+ "name": "P3EquityVaultDecimalMismatch",
1197
+ "inputs": [
1198
+ {
1199
+ "name": "nacreToken",
1200
+ "type": "address",
1201
+ "internalType": "address"
1202
+ },
1203
+ {
1204
+ "name": "nacreDecimals",
1205
+ "type": "uint8",
1206
+ "internalType": "uint8"
1207
+ },
1208
+ {
1209
+ "name": "prlusd",
1210
+ "type": "address",
1211
+ "internalType": "address"
1212
+ },
1213
+ {
1214
+ "name": "prlusdDecimals",
1215
+ "type": "uint8",
1216
+ "internalType": "uint8"
1217
+ }
1218
+ ]
1219
+ },
1220
+ {
1221
+ "type": "error",
1222
+ "name": "P3EquityVaultDividendAlreadyClaimed",
1223
+ "inputs": [
1224
+ {
1225
+ "name": "dividendId",
1226
+ "type": "uint256",
1227
+ "internalType": "uint256"
1228
+ },
1229
+ {
1230
+ "name": "holder",
1231
+ "type": "address",
1232
+ "internalType": "address"
1233
+ }
1234
+ ]
1235
+ },
1236
+ {
1237
+ "type": "error",
1238
+ "name": "P3EquityVaultDividendAlreadyFinalized",
1239
+ "inputs": [
1240
+ {
1241
+ "name": "dividendId",
1242
+ "type": "uint256",
1243
+ "internalType": "uint256"
1244
+ }
1245
+ ]
1246
+ },
1247
+ {
1248
+ "type": "error",
1249
+ "name": "P3EquityVaultDividendExpired",
1250
+ "inputs": [
1251
+ {
1252
+ "name": "dividendId",
1253
+ "type": "uint256",
1254
+ "internalType": "uint256"
1255
+ },
1256
+ {
1257
+ "name": "expiresAt",
1258
+ "type": "uint256",
1259
+ "internalType": "uint256"
1260
+ }
1261
+ ]
1262
+ },
1263
+ {
1264
+ "type": "error",
1265
+ "name": "P3EquityVaultDividendNoEntitlement",
1266
+ "inputs": [
1267
+ {
1268
+ "name": "dividendId",
1269
+ "type": "uint256",
1270
+ "internalType": "uint256"
1271
+ },
1272
+ {
1273
+ "name": "holder",
1274
+ "type": "address",
1275
+ "internalType": "address"
1276
+ }
1277
+ ]
1278
+ },
1279
+ {
1280
+ "type": "error",
1281
+ "name": "P3EquityVaultDividendNotExpired",
1282
+ "inputs": [
1283
+ {
1284
+ "name": "dividendId",
1285
+ "type": "uint256",
1286
+ "internalType": "uint256"
1287
+ },
1288
+ {
1289
+ "name": "expiresAt",
1290
+ "type": "uint256",
1291
+ "internalType": "uint256"
1292
+ }
1293
+ ]
1294
+ },
1295
+ {
1296
+ "type": "error",
1297
+ "name": "P3EquityVaultDividendNotFinalized",
1298
+ "inputs": [
1299
+ {
1300
+ "name": "dividendId",
1301
+ "type": "uint256",
1302
+ "internalType": "uint256"
1303
+ }
1304
+ ]
1305
+ },
1306
+ {
1307
+ "type": "error",
1308
+ "name": "P3EquityVaultDividendNotFound",
1309
+ "inputs": [
1310
+ {
1311
+ "name": "dividendId",
1312
+ "type": "uint256",
1313
+ "internalType": "uint256"
1314
+ }
1315
+ ]
1316
+ },
1317
+ {
1318
+ "type": "error",
1319
+ "name": "P3EquityVaultInflowsPaused",
1320
+ "inputs": []
1321
+ },
1322
+ {
1323
+ "type": "error",
1324
+ "name": "P3EquityVaultInsufficientDividendReserve",
1325
+ "inputs": [
1326
+ {
1327
+ "name": "totalEntitlement",
1328
+ "type": "uint256",
1329
+ "internalType": "uint256"
1330
+ },
1331
+ {
1332
+ "name": "reserveBalance",
1333
+ "type": "uint256",
1334
+ "internalType": "uint256"
1335
+ }
1336
+ ]
1337
+ },
1338
+ {
1339
+ "type": "error",
1340
+ "name": "P3EquityVaultInsufficientInventory",
1341
+ "inputs": [
1342
+ {
1343
+ "name": "requested",
1344
+ "type": "uint256",
1345
+ "internalType": "uint256"
1346
+ },
1347
+ {
1348
+ "name": "available",
1349
+ "type": "uint256",
1350
+ "internalType": "uint256"
1351
+ }
1352
+ ]
1353
+ },
1354
+ {
1355
+ "type": "error",
1356
+ "name": "P3EquityVaultInsufficientReserve",
1357
+ "inputs": [
1358
+ {
1359
+ "name": "requested",
1360
+ "type": "uint256",
1361
+ "internalType": "uint256"
1362
+ },
1363
+ {
1364
+ "name": "available",
1365
+ "type": "uint256",
1366
+ "internalType": "uint256"
1367
+ }
1368
+ ]
1369
+ },
1370
+ {
1371
+ "type": "error",
1372
+ "name": "P3EquityVaultInvalidExpiresAt",
1373
+ "inputs": [
1374
+ {
1375
+ "name": "provided",
1376
+ "type": "uint256",
1377
+ "internalType": "uint256"
1378
+ },
1379
+ {
1380
+ "name": "minimumRequired",
1381
+ "type": "uint256",
1382
+ "internalType": "uint256"
1383
+ }
1384
+ ]
1385
+ },
1386
+ {
1387
+ "type": "error",
1388
+ "name": "P3EquityVaultNavRateAboveMaximum",
1389
+ "inputs": [
1390
+ {
1391
+ "name": "attempted",
1392
+ "type": "uint256",
1393
+ "internalType": "uint256"
1394
+ },
1395
+ {
1396
+ "name": "maximum",
1397
+ "type": "uint256",
1398
+ "internalType": "uint256"
1399
+ }
1400
+ ]
1401
+ },
1402
+ {
1403
+ "type": "error",
1404
+ "name": "P3EquityVaultNavRateBelowMinimum",
1405
+ "inputs": [
1406
+ {
1407
+ "name": "attempted",
1408
+ "type": "uint256",
1409
+ "internalType": "uint256"
1410
+ },
1411
+ {
1412
+ "name": "minimum",
1413
+ "type": "uint256",
1414
+ "internalType": "uint256"
1415
+ }
1416
+ ]
1417
+ },
1418
+ {
1419
+ "type": "error",
1420
+ "name": "P3EquityVaultNavRateMoveExceedsMax",
1421
+ "inputs": [
1422
+ {
1423
+ "name": "moveBps",
1424
+ "type": "uint256",
1425
+ "internalType": "uint256"
1426
+ },
1427
+ {
1428
+ "name": "maxBps",
1429
+ "type": "uint256",
1430
+ "internalType": "uint256"
1431
+ }
1432
+ ]
1433
+ },
1434
+ {
1435
+ "type": "error",
1436
+ "name": "P3EquityVaultNavRateUpdateTooFrequent",
1437
+ "inputs": [
1438
+ {
1439
+ "name": "nextAllowedAt",
1440
+ "type": "uint256",
1441
+ "internalType": "uint256"
1442
+ }
1443
+ ]
1444
+ },
1445
+ {
1446
+ "type": "error",
1447
+ "name": "P3EquityVaultNoRegistryScheduled",
1448
+ "inputs": []
1449
+ },
1450
+ {
1451
+ "type": "error",
1452
+ "name": "P3EquityVaultOutflowsPaused",
1453
+ "inputs": []
1454
+ },
1455
+ {
1456
+ "type": "error",
1457
+ "name": "P3EquityVaultRedemptionLocked",
1458
+ "inputs": [
1459
+ {
1460
+ "name": "investor",
1461
+ "type": "address",
1462
+ "internalType": "address"
1463
+ },
1464
+ {
1465
+ "name": "unlocksAt",
1466
+ "type": "uint256",
1467
+ "internalType": "uint256"
1468
+ }
1469
+ ]
1470
+ },
1471
+ {
1472
+ "type": "error",
1473
+ "name": "P3EquityVaultRegistryTimelockNotElapsed",
1474
+ "inputs": [
1475
+ {
1476
+ "name": "readyAt",
1477
+ "type": "uint256",
1478
+ "internalType": "uint256"
1479
+ },
1480
+ {
1481
+ "name": "currentTime",
1482
+ "type": "uint256",
1483
+ "internalType": "uint256"
1484
+ }
1485
+ ]
1486
+ },
1487
+ {
1488
+ "type": "error",
1489
+ "name": "P3EquityVaultSlippageLimitExceeded",
1490
+ "inputs": [
1491
+ {
1492
+ "name": "amountOut",
1493
+ "type": "uint256",
1494
+ "internalType": "uint256"
1495
+ },
1496
+ {
1497
+ "name": "minAmountOut",
1498
+ "type": "uint256",
1499
+ "internalType": "uint256"
1500
+ }
1501
+ ]
1502
+ },
1503
+ {
1504
+ "type": "error",
1505
+ "name": "P3EquityVaultSwapPairNotSupported",
1506
+ "inputs": [
1507
+ {
1508
+ "name": "asset",
1509
+ "type": "address",
1510
+ "internalType": "address"
1511
+ },
1512
+ {
1513
+ "name": "prlusd",
1514
+ "type": "address",
1515
+ "internalType": "address"
1516
+ }
1517
+ ]
1518
+ },
1519
+ {
1520
+ "type": "error",
1521
+ "name": "P3EquityVaultSwapYieldedZero",
1522
+ "inputs": []
1523
+ },
1524
+ {
1525
+ "type": "error",
1526
+ "name": "P3EquityVaultSweepSinkMismatch",
1527
+ "inputs": [
1528
+ {
1529
+ "name": "provided",
1530
+ "type": "address",
1531
+ "internalType": "address"
1532
+ },
1533
+ {
1534
+ "name": "requiredSink",
1535
+ "type": "address",
1536
+ "internalType": "address"
1537
+ }
1538
+ ]
1539
+ },
1540
+ {
1541
+ "type": "error",
1542
+ "name": "P3EquityVaultUnauthorizedInvestor",
1543
+ "inputs": [
1544
+ {
1545
+ "name": "investor",
1546
+ "type": "address",
1547
+ "internalType": "address"
1548
+ }
1549
+ ]
1550
+ },
1551
+ {
1552
+ "type": "error",
1553
+ "name": "P3EquityVaultZeroAddress",
1554
+ "inputs": [
1555
+ {
1556
+ "name": "parameter",
1557
+ "type": "string",
1558
+ "internalType": "string"
1559
+ }
1560
+ ]
1561
+ },
1562
+ {
1563
+ "type": "error",
1564
+ "name": "P3EquityVaultZeroAmount",
1565
+ "inputs": []
1566
+ }
1567
+ ];
1568
+ export default abi;