@pearldigital/p3-abis 3.2.0 → 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.
- package/package.json +1 -1
- package/src/IP3AgenticRegistryManager.d.ts +69 -0
- package/src/IP3AgenticRegistryManager.js +69 -0
- package/src/IP3AttestationManager.d.ts +62 -0
- package/src/IP3AttestationManager.js +62 -0
- package/src/IP3EquityVault.d.ts +95 -0
- package/src/IP3EquityVault.js +95 -0
- package/src/IP3ModularCompliance.d.ts +54 -0
- package/src/IP3ModularCompliance.js +54 -0
- package/src/IP3RWAVault.d.ts +152 -1
- package/src/IP3RWAVault.js +152 -1
- package/src/IP3ReputationRegistry.d.ts +42 -0
- package/src/IP3ReputationRegistry.js +42 -0
- package/src/IP3StablecoinSwap.d.ts +53 -0
- package/src/IP3StablecoinSwap.js +53 -0
- package/src/IP3TreasuryManager.d.ts +138 -8
- package/src/IP3TreasuryManager.js +138 -8
package/package.json
CHANGED
|
@@ -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",
|
|
@@ -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",
|
|
@@ -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",
|
package/src/IP3EquityVault.d.ts
CHANGED
|
@@ -411,6 +411,16 @@ export declare const abi: [
|
|
|
411
411
|
"name": "nacreAmount_",
|
|
412
412
|
"type": "uint256",
|
|
413
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"
|
|
414
424
|
}
|
|
415
425
|
],
|
|
416
426
|
"outputs": [
|
|
@@ -611,6 +621,16 @@ export declare const abi: [
|
|
|
611
621
|
"name": "assetAmount_",
|
|
612
622
|
"type": "uint256",
|
|
613
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"
|
|
614
634
|
}
|
|
615
635
|
],
|
|
616
636
|
"outputs": [
|
|
@@ -1155,6 +1175,22 @@ export declare const abi: [
|
|
|
1155
1175
|
}
|
|
1156
1176
|
]
|
|
1157
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
|
+
},
|
|
1158
1194
|
{
|
|
1159
1195
|
"type": "error",
|
|
1160
1196
|
"name": "P3EquityVaultDecimalMismatch",
|
|
@@ -1283,6 +1319,22 @@ export declare const abi: [
|
|
|
1283
1319
|
"name": "P3EquityVaultInflowsPaused",
|
|
1284
1320
|
"inputs": []
|
|
1285
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
|
+
},
|
|
1286
1338
|
{
|
|
1287
1339
|
"type": "error",
|
|
1288
1340
|
"name": "P3EquityVaultInsufficientInventory",
|
|
@@ -1363,6 +1415,33 @@ export declare const abi: [
|
|
|
1363
1415
|
}
|
|
1364
1416
|
]
|
|
1365
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
|
+
},
|
|
1366
1445
|
{
|
|
1367
1446
|
"type": "error",
|
|
1368
1447
|
"name": "P3EquityVaultNoRegistryScheduled",
|
|
@@ -1405,6 +1484,22 @@ export declare const abi: [
|
|
|
1405
1484
|
}
|
|
1406
1485
|
]
|
|
1407
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
|
+
},
|
|
1408
1503
|
{
|
|
1409
1504
|
"type": "error",
|
|
1410
1505
|
"name": "P3EquityVaultSwapPairNotSupported",
|