@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
@@ -477,6 +477,19 @@ export declare const abi: [
477
477
  ],
478
478
  "stateMutability": "view"
479
479
  },
480
+ {
481
+ "type": "function",
482
+ "name": "getIssuerRevocationEpoch",
483
+ "inputs": [],
484
+ "outputs": [
485
+ {
486
+ "name": "epoch",
487
+ "type": "uint256",
488
+ "internalType": "uint256"
489
+ }
490
+ ],
491
+ "stateMutability": "view"
492
+ },
480
493
  {
481
494
  "type": "function",
482
495
  "name": "getPrincipalAgentCount",
@@ -691,6 +704,25 @@ export declare const abi: [
691
704
  ],
692
705
  "stateMutability": "view"
693
706
  },
707
+ {
708
+ "type": "function",
709
+ "name": "isFrozenWallet",
710
+ "inputs": [
711
+ {
712
+ "name": "wallet_",
713
+ "type": "address",
714
+ "internalType": "address"
715
+ }
716
+ ],
717
+ "outputs": [
718
+ {
719
+ "name": "",
720
+ "type": "bool",
721
+ "internalType": "bool"
722
+ }
723
+ ],
724
+ "stateMutability": "view"
725
+ },
694
726
  {
695
727
  "type": "function",
696
728
  "name": "isPermissioned",
@@ -753,6 +785,25 @@ export declare const abi: [
753
785
  ],
754
786
  "stateMutability": "view"
755
787
  },
788
+ {
789
+ "type": "function",
790
+ "name": "isTrustedForwarder",
791
+ "inputs": [
792
+ {
793
+ "name": "forwarder_",
794
+ "type": "address",
795
+ "internalType": "address"
796
+ }
797
+ ],
798
+ "outputs": [
799
+ {
800
+ "name": "",
801
+ "type": "bool",
802
+ "internalType": "bool"
803
+ }
804
+ ],
805
+ "stateMutability": "view"
806
+ },
756
807
  {
757
808
  "type": "function",
758
809
  "name": "reactivateAgent",
@@ -899,6 +950,19 @@ export declare const abi: [
899
950
  ],
900
951
  "stateMutability": "nonpayable"
901
952
  },
953
+ {
954
+ "type": "function",
955
+ "name": "reinitializeForwarder",
956
+ "inputs": [
957
+ {
958
+ "name": "trustedForwarder_",
959
+ "type": "address",
960
+ "internalType": "address"
961
+ }
962
+ ],
963
+ "outputs": [],
964
+ "stateMutability": "nonpayable"
965
+ },
902
966
  {
903
967
  "type": "function",
904
968
  "name": "removeUser",
@@ -1771,6 +1835,11 @@ export declare const abi: [
1771
1835
  ],
1772
1836
  "anonymous": false
1773
1837
  },
1838
+ {
1839
+ "type": "error",
1840
+ "name": "P3AdminFunctionCannotBeRelayed",
1841
+ "inputs": []
1842
+ },
1774
1843
  {
1775
1844
  "type": "error",
1776
1845
  "name": "P3AgentCapabilityNotGranted",
@@ -2070,5 +2139,5 @@ export declare const abi: [
2070
2139
  }
2071
2140
  ]
2072
2141
  }
2073
- ] as const;
2142
+ ];
2074
2143
  export default abi;
@@ -477,6 +477,19 @@ export const abi = [
477
477
  ],
478
478
  "stateMutability": "view"
479
479
  },
480
+ {
481
+ "type": "function",
482
+ "name": "getIssuerRevocationEpoch",
483
+ "inputs": [],
484
+ "outputs": [
485
+ {
486
+ "name": "epoch",
487
+ "type": "uint256",
488
+ "internalType": "uint256"
489
+ }
490
+ ],
491
+ "stateMutability": "view"
492
+ },
480
493
  {
481
494
  "type": "function",
482
495
  "name": "getPrincipalAgentCount",
@@ -691,6 +704,25 @@ export const abi = [
691
704
  ],
692
705
  "stateMutability": "view"
693
706
  },
707
+ {
708
+ "type": "function",
709
+ "name": "isFrozenWallet",
710
+ "inputs": [
711
+ {
712
+ "name": "wallet_",
713
+ "type": "address",
714
+ "internalType": "address"
715
+ }
716
+ ],
717
+ "outputs": [
718
+ {
719
+ "name": "",
720
+ "type": "bool",
721
+ "internalType": "bool"
722
+ }
723
+ ],
724
+ "stateMutability": "view"
725
+ },
694
726
  {
695
727
  "type": "function",
696
728
  "name": "isPermissioned",
@@ -753,6 +785,25 @@ export const abi = [
753
785
  ],
754
786
  "stateMutability": "view"
755
787
  },
788
+ {
789
+ "type": "function",
790
+ "name": "isTrustedForwarder",
791
+ "inputs": [
792
+ {
793
+ "name": "forwarder_",
794
+ "type": "address",
795
+ "internalType": "address"
796
+ }
797
+ ],
798
+ "outputs": [
799
+ {
800
+ "name": "",
801
+ "type": "bool",
802
+ "internalType": "bool"
803
+ }
804
+ ],
805
+ "stateMutability": "view"
806
+ },
756
807
  {
757
808
  "type": "function",
758
809
  "name": "reactivateAgent",
@@ -899,6 +950,19 @@ export const abi = [
899
950
  ],
900
951
  "stateMutability": "nonpayable"
901
952
  },
953
+ {
954
+ "type": "function",
955
+ "name": "reinitializeForwarder",
956
+ "inputs": [
957
+ {
958
+ "name": "trustedForwarder_",
959
+ "type": "address",
960
+ "internalType": "address"
961
+ }
962
+ ],
963
+ "outputs": [],
964
+ "stateMutability": "nonpayable"
965
+ },
902
966
  {
903
967
  "type": "function",
904
968
  "name": "removeUser",
@@ -1771,6 +1835,11 @@ export const abi = [
1771
1835
  ],
1772
1836
  "anonymous": false
1773
1837
  },
1838
+ {
1839
+ "type": "error",
1840
+ "name": "P3AdminFunctionCannotBeRelayed",
1841
+ "inputs": []
1842
+ },
1774
1843
  {
1775
1844
  "type": "error",
1776
1845
  "name": "P3AgentCapabilityNotGranted",
@@ -94,6 +94,11 @@ export declare const abi: [
94
94
  "type": "uint256",
95
95
  "internalType": "uint256"
96
96
  },
97
+ {
98
+ "name": "navDecimals",
99
+ "type": "uint8",
100
+ "internalType": "uint8"
101
+ },
97
102
  {
98
103
  "name": "valuationDate",
99
104
  "type": "uint256",
@@ -508,6 +513,11 @@ export declare const abi: [
508
513
  "type": "uint256",
509
514
  "internalType": "uint256"
510
515
  },
516
+ {
517
+ "name": "navDecimals",
518
+ "type": "uint8",
519
+ "internalType": "uint8"
520
+ },
511
521
  {
512
522
  "name": "valuationDate",
513
523
  "type": "uint256",
@@ -603,6 +613,11 @@ export declare const abi: [
603
613
  "type": "uint256",
604
614
  "internalType": "uint256"
605
615
  },
616
+ {
617
+ "name": "navDecimals",
618
+ "type": "uint8",
619
+ "internalType": "uint8"
620
+ },
606
621
  {
607
622
  "name": "valuationDate",
608
623
  "type": "uint256",
@@ -667,6 +682,11 @@ export declare const abi: [
667
682
  "type": "uint256",
668
683
  "internalType": "uint256"
669
684
  },
685
+ {
686
+ "name": "navDecimals",
687
+ "type": "uint8",
688
+ "internalType": "uint8"
689
+ },
670
690
  {
671
691
  "name": "valuationDate",
672
692
  "type": "uint256",
@@ -1018,6 +1038,11 @@ export declare const abi: [
1018
1038
  "type": "uint256",
1019
1039
  "internalType": "uint256"
1020
1040
  },
1041
+ {
1042
+ "name": "navDecimals",
1043
+ "type": "uint8",
1044
+ "internalType": "uint8"
1045
+ },
1021
1046
  {
1022
1047
  "name": "valuationDate",
1023
1048
  "type": "uint256",
@@ -1116,6 +1141,22 @@ export declare const abi: [
1116
1141
  "name": "P3AttestationManagerInvalidMaxAge",
1117
1142
  "inputs": []
1118
1143
  },
1144
+ {
1145
+ "type": "error",
1146
+ "name": "P3AttestationManagerInvalidNavDecimals",
1147
+ "inputs": [
1148
+ {
1149
+ "name": "navDecimals",
1150
+ "type": "uint8",
1151
+ "internalType": "uint8"
1152
+ },
1153
+ {
1154
+ "name": "expected",
1155
+ "type": "uint8",
1156
+ "internalType": "uint8"
1157
+ }
1158
+ ]
1159
+ },
1119
1160
  {
1120
1161
  "type": "error",
1121
1162
  "name": "P3AttestationManagerInvalidReport",
@@ -1224,6 +1265,11 @@ export declare const abi: [
1224
1265
  "type": "uint256",
1225
1266
  "internalType": "uint256"
1226
1267
  },
1268
+ {
1269
+ "name": "navDecimals",
1270
+ "type": "uint8",
1271
+ "internalType": "uint8"
1272
+ },
1227
1273
  {
1228
1274
  "name": "valuationDate",
1229
1275
  "type": "uint256",
@@ -1296,6 +1342,22 @@ export declare const abi: [
1296
1342
  }
1297
1343
  ]
1298
1344
  },
1345
+ {
1346
+ "type": "error",
1347
+ "name": "P3AttestationManagerNavUnitsOverflow",
1348
+ "inputs": [
1349
+ {
1350
+ "name": "nav",
1351
+ "type": "uint256",
1352
+ "internalType": "uint256"
1353
+ },
1354
+ {
1355
+ "name": "units",
1356
+ "type": "uint256",
1357
+ "internalType": "uint256"
1358
+ }
1359
+ ]
1360
+ },
1299
1361
  {
1300
1362
  "type": "error",
1301
1363
  "name": "P3AttestationManagerPermissionsZeroAddress",
@@ -1343,5 +1405,5 @@ export declare const abi: [
1343
1405
  "name": "P3AttestationManagerZeroUnits",
1344
1406
  "inputs": []
1345
1407
  }
1346
- ] as const;
1408
+ ];
1347
1409
  export default abi;
@@ -94,6 +94,11 @@ export const abi = [
94
94
  "type": "uint256",
95
95
  "internalType": "uint256"
96
96
  },
97
+ {
98
+ "name": "navDecimals",
99
+ "type": "uint8",
100
+ "internalType": "uint8"
101
+ },
97
102
  {
98
103
  "name": "valuationDate",
99
104
  "type": "uint256",
@@ -508,6 +513,11 @@ export const abi = [
508
513
  "type": "uint256",
509
514
  "internalType": "uint256"
510
515
  },
516
+ {
517
+ "name": "navDecimals",
518
+ "type": "uint8",
519
+ "internalType": "uint8"
520
+ },
511
521
  {
512
522
  "name": "valuationDate",
513
523
  "type": "uint256",
@@ -603,6 +613,11 @@ export const abi = [
603
613
  "type": "uint256",
604
614
  "internalType": "uint256"
605
615
  },
616
+ {
617
+ "name": "navDecimals",
618
+ "type": "uint8",
619
+ "internalType": "uint8"
620
+ },
606
621
  {
607
622
  "name": "valuationDate",
608
623
  "type": "uint256",
@@ -667,6 +682,11 @@ export const abi = [
667
682
  "type": "uint256",
668
683
  "internalType": "uint256"
669
684
  },
685
+ {
686
+ "name": "navDecimals",
687
+ "type": "uint8",
688
+ "internalType": "uint8"
689
+ },
670
690
  {
671
691
  "name": "valuationDate",
672
692
  "type": "uint256",
@@ -1018,6 +1038,11 @@ export const abi = [
1018
1038
  "type": "uint256",
1019
1039
  "internalType": "uint256"
1020
1040
  },
1041
+ {
1042
+ "name": "navDecimals",
1043
+ "type": "uint8",
1044
+ "internalType": "uint8"
1045
+ },
1021
1046
  {
1022
1047
  "name": "valuationDate",
1023
1048
  "type": "uint256",
@@ -1116,6 +1141,22 @@ export const abi = [
1116
1141
  "name": "P3AttestationManagerInvalidMaxAge",
1117
1142
  "inputs": []
1118
1143
  },
1144
+ {
1145
+ "type": "error",
1146
+ "name": "P3AttestationManagerInvalidNavDecimals",
1147
+ "inputs": [
1148
+ {
1149
+ "name": "navDecimals",
1150
+ "type": "uint8",
1151
+ "internalType": "uint8"
1152
+ },
1153
+ {
1154
+ "name": "expected",
1155
+ "type": "uint8",
1156
+ "internalType": "uint8"
1157
+ }
1158
+ ]
1159
+ },
1119
1160
  {
1120
1161
  "type": "error",
1121
1162
  "name": "P3AttestationManagerInvalidReport",
@@ -1224,6 +1265,11 @@ export const abi = [
1224
1265
  "type": "uint256",
1225
1266
  "internalType": "uint256"
1226
1267
  },
1268
+ {
1269
+ "name": "navDecimals",
1270
+ "type": "uint8",
1271
+ "internalType": "uint8"
1272
+ },
1227
1273
  {
1228
1274
  "name": "valuationDate",
1229
1275
  "type": "uint256",
@@ -1296,6 +1342,22 @@ export const abi = [
1296
1342
  }
1297
1343
  ]
1298
1344
  },
1345
+ {
1346
+ "type": "error",
1347
+ "name": "P3AttestationManagerNavUnitsOverflow",
1348
+ "inputs": [
1349
+ {
1350
+ "name": "nav",
1351
+ "type": "uint256",
1352
+ "internalType": "uint256"
1353
+ },
1354
+ {
1355
+ "name": "units",
1356
+ "type": "uint256",
1357
+ "internalType": "uint256"
1358
+ }
1359
+ ]
1360
+ },
1299
1361
  {
1300
1362
  "type": "error",
1301
1363
  "name": "P3AttestationManagerPermissionsZeroAddress",
@@ -947,5 +947,5 @@ export declare const abi: [
947
947
  "name": "P3BasicTokenWalletFrozen",
948
948
  "inputs": []
949
949
  }
950
- ] as const;
950
+ ];
951
951
  export default abi;
@@ -587,5 +587,5 @@ export declare const abi: [
587
587
  }
588
588
  ]
589
589
  }
590
- ] as const;
590
+ ];
591
591
  export default abi;
@@ -605,5 +605,5 @@ export declare const abi: [
605
605
  }
606
606
  ]
607
607
  }
608
- ] as const;
608
+ ];
609
609
  export default abi;
@@ -1100,5 +1100,5 @@ export declare const abi: [
1100
1100
  "name": "P3DepositTokenUnableToUpdateInitData",
1101
1101
  "inputs": []
1102
1102
  }
1103
- ] as const;
1103
+ ];
1104
1104
  export default abi;
@@ -1193,5 +1193,5 @@ export declare const abi: [
1193
1193
  "name": "P3DigitalSecurityTokenZeroDecimals",
1194
1194
  "inputs": []
1195
1195
  }
1196
- ] as const;
1196
+ ];
1197
1197
  export default abi;
@@ -582,5 +582,5 @@ export declare const abi: [
582
582
  "name": "P3RelayerNotAuthorizedDistributor",
583
583
  "inputs": []
584
584
  }
585
- ] as const;
585
+ ];
586
586
  export default abi;
@@ -863,5 +863,5 @@ export declare const abi: [
863
863
  "name": "P3ERC20ConverterManagerZeroRecipient",
864
864
  "inputs": []
865
865
  }
866
- ] as const;
866
+ ];
867
867
  export default abi;
@@ -951,5 +951,5 @@ export declare const abi: [
951
951
  }
952
952
  ]
953
953
  }
954
- ] as const;
954
+ ];
955
955
  export default abi;