@pearldigital/p3-abis 3.0.0 → 3.2.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.
- package/LICENSE +1 -1
- package/package.json +10 -2
- package/src/IAbstractFeeModule.d.ts +1 -1
- package/src/IAbstractTimelockUpgrade.d.ts +1 -1
- package/src/IAbstractTreasuryManagerRestricted.d.ts +1 -1
- package/src/IAbstractTreasuryRestricted.d.ts +1 -1
- package/src/IEquityTransferModule.d.ts +721 -0
- package/src/IEquityTransferModule.js +721 -0
- package/src/IP3AgentLimitComplianceModule.d.ts +1 -1
- package/src/IP3AgenticRegistryManager.d.ts +1 -1
- package/src/IP3AttestationManager.d.ts +1 -1
- package/src/IP3BasicToken.d.ts +1 -1
- package/src/IP3ComplianceFactory.d.ts +1 -1
- package/src/IP3ComplianceModule.d.ts +1 -1
- package/src/IP3DepositToken.d.ts +1 -1
- package/src/IP3DigitalSecurityToken.d.ts +1 -1
- package/src/IP3EIP3009.d.ts +1 -1
- package/src/IP3ERC20ConverterManager.d.ts +1 -1
- package/src/IP3ERC8004Connector.d.ts +1 -1
- package/src/IP3EquityVault.d.ts +1473 -0
- package/src/IP3EquityVault.js +1473 -0
- package/src/IP3FXSwap.d.ts +1 -1
- package/src/IP3ModularCompliance.d.ts +1 -1
- package/src/IP3RWAVault.d.ts +1182 -0
- package/src/IP3RWAVault.js +1182 -0
- package/src/IP3ReputationComplianceModule.d.ts +40 -1
- package/src/IP3ReputationComplianceModule.js +39 -0
- package/src/IP3ReputationRegistry.d.ts +300 -0
- package/src/IP3ReputationRegistry.js +300 -0
- package/src/IP3StablecoinSwap.d.ts +1 -1
- package/src/IP3StablecoinToken.d.ts +1 -1
- package/src/IP3TokensFactory.d.ts +1 -1
- package/src/IP3TransferManager.d.ts +1 -1
- package/src/IP3TreasuryManager.d.ts +176 -1
- package/src/IP3TreasuryManager.js +175 -0
- package/src/IP3YieldBearingStablecoinToken.d.ts +1 -1
- package/src/IRecoveryVelocityComplianceModule.d.ts +1 -1
- package/src/ISolvencyComplianceModule.d.ts +1 -1
- package/src/index.d.ts +4 -0
- package/src/index.js +4 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright © 2026 Pearl Digital
|
|
3
|
+
Copyright © 2026 Pearl Digital Treasury Company B.S.C.(c)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of the Frictionless protocol smart contracts
|
|
6
6
|
(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pearldigital/p3-abis",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Generated ABI exports for Pearl Path Protocol (P3) smart contracts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"license": "SEE LICENSE IN LICENSE",
|
|
25
25
|
"author": "Pearl Digital Issuance Company B.S.C.(c)",
|
|
26
|
+
"keywords": [
|
|
27
|
+
"p3",
|
|
28
|
+
"pearl-path-protocol",
|
|
29
|
+
"abi",
|
|
30
|
+
"ethereum",
|
|
31
|
+
"smart-contracts",
|
|
32
|
+
"pearl-digital"
|
|
33
|
+
],
|
|
26
34
|
"repository": {
|
|
27
35
|
"type": "git",
|
|
28
36
|
"url": "git+https://gitlab.com/pearl-digital/pearl-path-protocol.git",
|
|
@@ -32,6 +40,6 @@
|
|
|
32
40
|
"access": "public"
|
|
33
41
|
},
|
|
34
42
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
43
|
+
"node": ">=22"
|
|
36
44
|
}
|
|
37
45
|
}
|