@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.
- 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 +70 -1
- package/src/IP3AgenticRegistryManager.js +69 -0
- package/src/IP3AttestationManager.d.ts +63 -1
- package/src/IP3AttestationManager.js +62 -0
- 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 +1568 -0
- package/src/IP3EquityVault.js +1568 -0
- package/src/IP3FXSwap.d.ts +1 -1
- package/src/IP3ModularCompliance.d.ts +55 -1
- package/src/IP3ModularCompliance.js +54 -0
- package/src/IP3RWAVault.d.ts +1333 -0
- package/src/IP3RWAVault.js +1333 -0
- package/src/IP3ReputationComplianceModule.d.ts +40 -1
- package/src/IP3ReputationComplianceModule.js +39 -0
- package/src/IP3ReputationRegistry.d.ts +342 -0
- package/src/IP3ReputationRegistry.js +342 -0
- package/src/IP3StablecoinSwap.d.ts +54 -1
- package/src/IP3StablecoinSwap.js +53 -0
- 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 +311 -6
- package/src/IP3TreasuryManager.js +310 -5
- 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/src/IP3FXSwap.d.ts
CHANGED
|
@@ -282,6 +282,19 @@ export declare const abi: [
|
|
|
282
282
|
"outputs": [],
|
|
283
283
|
"stateMutability": "nonpayable"
|
|
284
284
|
},
|
|
285
|
+
{
|
|
286
|
+
"type": "function",
|
|
287
|
+
"name": "setComplianceFactory",
|
|
288
|
+
"inputs": [
|
|
289
|
+
{
|
|
290
|
+
"name": "factory_",
|
|
291
|
+
"type": "address",
|
|
292
|
+
"internalType": "address"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"outputs": [],
|
|
296
|
+
"stateMutability": "nonpayable"
|
|
297
|
+
},
|
|
285
298
|
{
|
|
286
299
|
"type": "function",
|
|
287
300
|
"name": "setModuleCallDelay",
|
|
@@ -344,6 +357,25 @@ export declare const abi: [
|
|
|
344
357
|
"outputs": [],
|
|
345
358
|
"stateMutability": "nonpayable"
|
|
346
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"type": "event",
|
|
362
|
+
"name": "ComplianceFactoryUpdated",
|
|
363
|
+
"inputs": [
|
|
364
|
+
{
|
|
365
|
+
"name": "oldFactory",
|
|
366
|
+
"type": "address",
|
|
367
|
+
"indexed": true,
|
|
368
|
+
"internalType": "address"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "newFactory",
|
|
372
|
+
"type": "address",
|
|
373
|
+
"indexed": true,
|
|
374
|
+
"internalType": "address"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"anonymous": false
|
|
378
|
+
},
|
|
347
379
|
{
|
|
348
380
|
"type": "event",
|
|
349
381
|
"name": "MaxModulesCountUpdated",
|
|
@@ -708,6 +740,17 @@ export declare const abi: [
|
|
|
708
740
|
}
|
|
709
741
|
]
|
|
710
742
|
},
|
|
743
|
+
{
|
|
744
|
+
"type": "error",
|
|
745
|
+
"name": "P3ModuleNotAllowedByFactory",
|
|
746
|
+
"inputs": [
|
|
747
|
+
{
|
|
748
|
+
"name": "module",
|
|
749
|
+
"type": "address",
|
|
750
|
+
"internalType": "address"
|
|
751
|
+
}
|
|
752
|
+
]
|
|
753
|
+
},
|
|
711
754
|
{
|
|
712
755
|
"type": "error",
|
|
713
756
|
"name": "P3ModuleRemovalNotScheduled",
|
|
@@ -751,6 +794,17 @@ export declare const abi: [
|
|
|
751
794
|
}
|
|
752
795
|
]
|
|
753
796
|
},
|
|
797
|
+
{
|
|
798
|
+
"type": "error",
|
|
799
|
+
"name": "P3RebindModuleIncoherent",
|
|
800
|
+
"inputs": [
|
|
801
|
+
{
|
|
802
|
+
"name": "module",
|
|
803
|
+
"type": "address",
|
|
804
|
+
"internalType": "address"
|
|
805
|
+
}
|
|
806
|
+
]
|
|
807
|
+
},
|
|
754
808
|
{
|
|
755
809
|
"type": "error",
|
|
756
810
|
"name": "P3RebindNoTokenBound",
|
|
@@ -767,5 +821,5 @@ export declare const abi: [
|
|
|
767
821
|
}
|
|
768
822
|
]
|
|
769
823
|
}
|
|
770
|
-
]
|
|
824
|
+
];
|
|
771
825
|
export default abi;
|
|
@@ -282,6 +282,19 @@ export const abi = [
|
|
|
282
282
|
"outputs": [],
|
|
283
283
|
"stateMutability": "nonpayable"
|
|
284
284
|
},
|
|
285
|
+
{
|
|
286
|
+
"type": "function",
|
|
287
|
+
"name": "setComplianceFactory",
|
|
288
|
+
"inputs": [
|
|
289
|
+
{
|
|
290
|
+
"name": "factory_",
|
|
291
|
+
"type": "address",
|
|
292
|
+
"internalType": "address"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"outputs": [],
|
|
296
|
+
"stateMutability": "nonpayable"
|
|
297
|
+
},
|
|
285
298
|
{
|
|
286
299
|
"type": "function",
|
|
287
300
|
"name": "setModuleCallDelay",
|
|
@@ -344,6 +357,25 @@ export const abi = [
|
|
|
344
357
|
"outputs": [],
|
|
345
358
|
"stateMutability": "nonpayable"
|
|
346
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"type": "event",
|
|
362
|
+
"name": "ComplianceFactoryUpdated",
|
|
363
|
+
"inputs": [
|
|
364
|
+
{
|
|
365
|
+
"name": "oldFactory",
|
|
366
|
+
"type": "address",
|
|
367
|
+
"indexed": true,
|
|
368
|
+
"internalType": "address"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "newFactory",
|
|
372
|
+
"type": "address",
|
|
373
|
+
"indexed": true,
|
|
374
|
+
"internalType": "address"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"anonymous": false
|
|
378
|
+
},
|
|
347
379
|
{
|
|
348
380
|
"type": "event",
|
|
349
381
|
"name": "MaxModulesCountUpdated",
|
|
@@ -708,6 +740,17 @@ export const abi = [
|
|
|
708
740
|
}
|
|
709
741
|
]
|
|
710
742
|
},
|
|
743
|
+
{
|
|
744
|
+
"type": "error",
|
|
745
|
+
"name": "P3ModuleNotAllowedByFactory",
|
|
746
|
+
"inputs": [
|
|
747
|
+
{
|
|
748
|
+
"name": "module",
|
|
749
|
+
"type": "address",
|
|
750
|
+
"internalType": "address"
|
|
751
|
+
}
|
|
752
|
+
]
|
|
753
|
+
},
|
|
711
754
|
{
|
|
712
755
|
"type": "error",
|
|
713
756
|
"name": "P3ModuleRemovalNotScheduled",
|
|
@@ -751,6 +794,17 @@ export const abi = [
|
|
|
751
794
|
}
|
|
752
795
|
]
|
|
753
796
|
},
|
|
797
|
+
{
|
|
798
|
+
"type": "error",
|
|
799
|
+
"name": "P3RebindModuleIncoherent",
|
|
800
|
+
"inputs": [
|
|
801
|
+
{
|
|
802
|
+
"name": "module",
|
|
803
|
+
"type": "address",
|
|
804
|
+
"internalType": "address"
|
|
805
|
+
}
|
|
806
|
+
]
|
|
807
|
+
},
|
|
754
808
|
{
|
|
755
809
|
"type": "error",
|
|
756
810
|
"name": "P3RebindNoTokenBound",
|