@pearldigital/p3-abis 3.0.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.
Files changed (57) hide show
  1. package/LICENSE +17 -0
  2. package/README.md +50 -0
  3. package/package.json +37 -0
  4. package/src/IAbstractFeeModule.d.ts +252 -0
  5. package/src/IAbstractFeeModule.js +252 -0
  6. package/src/IAbstractTimelockUpgrade.d.ts +169 -0
  7. package/src/IAbstractTimelockUpgrade.js +169 -0
  8. package/src/IAbstractTreasuryManagerRestricted.d.ts +15 -0
  9. package/src/IAbstractTreasuryManagerRestricted.js +15 -0
  10. package/src/IAbstractTreasuryRestricted.d.ts +15 -0
  11. package/src/IAbstractTreasuryRestricted.js +15 -0
  12. package/src/IP3AgentLimitComplianceModule.d.ts +761 -0
  13. package/src/IP3AgentLimitComplianceModule.js +761 -0
  14. package/src/IP3AgenticRegistryManager.d.ts +2074 -0
  15. package/src/IP3AgenticRegistryManager.js +2074 -0
  16. package/src/IP3AttestationManager.d.ts +1347 -0
  17. package/src/IP3AttestationManager.js +1347 -0
  18. package/src/IP3BasicToken.d.ts +951 -0
  19. package/src/IP3BasicToken.js +951 -0
  20. package/src/IP3ComplianceFactory.d.ts +591 -0
  21. package/src/IP3ComplianceFactory.js +591 -0
  22. package/src/IP3ComplianceModule.d.ts +609 -0
  23. package/src/IP3ComplianceModule.js +609 -0
  24. package/src/IP3DepositToken.d.ts +1104 -0
  25. package/src/IP3DepositToken.js +1104 -0
  26. package/src/IP3DigitalSecurityToken.d.ts +1197 -0
  27. package/src/IP3DigitalSecurityToken.js +1197 -0
  28. package/src/IP3EIP3009.d.ts +586 -0
  29. package/src/IP3EIP3009.js +586 -0
  30. package/src/IP3ERC20ConverterManager.d.ts +867 -0
  31. package/src/IP3ERC20ConverterManager.js +867 -0
  32. package/src/IP3ERC8004Connector.d.ts +955 -0
  33. package/src/IP3ERC8004Connector.js +955 -0
  34. package/src/IP3FXSwap.d.ts +779 -0
  35. package/src/IP3FXSwap.js +779 -0
  36. package/src/IP3ModularCompliance.d.ts +771 -0
  37. package/src/IP3ModularCompliance.js +771 -0
  38. package/src/IP3ReputationComplianceModule.d.ts +691 -0
  39. package/src/IP3ReputationComplianceModule.js +691 -0
  40. package/src/IP3StablecoinSwap.d.ts +1082 -0
  41. package/src/IP3StablecoinSwap.js +1082 -0
  42. package/src/IP3StablecoinToken.d.ts +1127 -0
  43. package/src/IP3StablecoinToken.js +1127 -0
  44. package/src/IP3TokensFactory.d.ts +431 -0
  45. package/src/IP3TokensFactory.js +431 -0
  46. package/src/IP3TransferManager.d.ts +1234 -0
  47. package/src/IP3TransferManager.js +1234 -0
  48. package/src/IP3TreasuryManager.d.ts +1652 -0
  49. package/src/IP3TreasuryManager.js +1652 -0
  50. package/src/IP3YieldBearingStablecoinToken.d.ts +1163 -0
  51. package/src/IP3YieldBearingStablecoinToken.js +1163 -0
  52. package/src/IRecoveryVelocityComplianceModule.d.ts +1032 -0
  53. package/src/IRecoveryVelocityComplianceModule.js +1032 -0
  54. package/src/ISolvencyComplianceModule.d.ts +653 -0
  55. package/src/ISolvencyComplianceModule.js +653 -0
  56. package/src/index.d.ts +27 -0
  57. package/src/index.js +27 -0
@@ -0,0 +1,169 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export declare const abi: [
3
+ {
4
+ "type": "function",
5
+ "name": "cancelUpgrade",
6
+ "inputs": [],
7
+ "outputs": [],
8
+ "stateMutability": "nonpayable"
9
+ },
10
+ {
11
+ "type": "function",
12
+ "name": "scheduleUpgrade",
13
+ "inputs": [
14
+ {
15
+ "name": "newImplementation_",
16
+ "type": "address",
17
+ "internalType": "address"
18
+ }
19
+ ],
20
+ "outputs": [],
21
+ "stateMutability": "nonpayable"
22
+ },
23
+ {
24
+ "type": "function",
25
+ "name": "scheduledImplementation",
26
+ "inputs": [],
27
+ "outputs": [
28
+ {
29
+ "name": "",
30
+ "type": "address",
31
+ "internalType": "address"
32
+ }
33
+ ],
34
+ "stateMutability": "view"
35
+ },
36
+ {
37
+ "type": "function",
38
+ "name": "setUpgradeDelay",
39
+ "inputs": [
40
+ {
41
+ "name": "newDelay_",
42
+ "type": "uint256",
43
+ "internalType": "uint256"
44
+ }
45
+ ],
46
+ "outputs": [],
47
+ "stateMutability": "nonpayable"
48
+ },
49
+ {
50
+ "type": "function",
51
+ "name": "upgradeDelay",
52
+ "inputs": [],
53
+ "outputs": [
54
+ {
55
+ "name": "",
56
+ "type": "uint256",
57
+ "internalType": "uint256"
58
+ }
59
+ ],
60
+ "stateMutability": "view"
61
+ },
62
+ {
63
+ "type": "function",
64
+ "name": "upgradeReadyAt",
65
+ "inputs": [],
66
+ "outputs": [
67
+ {
68
+ "name": "",
69
+ "type": "uint256",
70
+ "internalType": "uint256"
71
+ }
72
+ ],
73
+ "stateMutability": "view"
74
+ },
75
+ {
76
+ "type": "event",
77
+ "name": "UpgradeCancelled",
78
+ "inputs": [
79
+ {
80
+ "name": "cancelledImplementation",
81
+ "type": "address",
82
+ "indexed": true,
83
+ "internalType": "address"
84
+ }
85
+ ],
86
+ "anonymous": false
87
+ },
88
+ {
89
+ "type": "event",
90
+ "name": "UpgradeDelayUpdated",
91
+ "inputs": [
92
+ {
93
+ "name": "newDelay",
94
+ "type": "uint256",
95
+ "indexed": false,
96
+ "internalType": "uint256"
97
+ }
98
+ ],
99
+ "anonymous": false
100
+ },
101
+ {
102
+ "type": "event",
103
+ "name": "UpgradeScheduled",
104
+ "inputs": [
105
+ {
106
+ "name": "newImplementation",
107
+ "type": "address",
108
+ "indexed": true,
109
+ "internalType": "address"
110
+ },
111
+ {
112
+ "name": "readyAt",
113
+ "type": "uint256",
114
+ "indexed": false,
115
+ "internalType": "uint256"
116
+ }
117
+ ],
118
+ "anonymous": false
119
+ },
120
+ {
121
+ "type": "error",
122
+ "name": "UpgradeDelayTooShort",
123
+ "inputs": [
124
+ {
125
+ "name": "provided",
126
+ "type": "uint256",
127
+ "internalType": "uint256"
128
+ },
129
+ {
130
+ "name": "minimum",
131
+ "type": "uint256",
132
+ "internalType": "uint256"
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "type": "error",
138
+ "name": "UpgradeNotScheduled",
139
+ "inputs": [
140
+ {
141
+ "name": "scheduled",
142
+ "type": "address",
143
+ "internalType": "address"
144
+ },
145
+ {
146
+ "name": "provided",
147
+ "type": "address",
148
+ "internalType": "address"
149
+ }
150
+ ]
151
+ },
152
+ {
153
+ "type": "error",
154
+ "name": "UpgradeTimelockNotElapsed",
155
+ "inputs": [
156
+ {
157
+ "name": "readyAt",
158
+ "type": "uint256",
159
+ "internalType": "uint256"
160
+ },
161
+ {
162
+ "name": "currentTime",
163
+ "type": "uint256",
164
+ "internalType": "uint256"
165
+ }
166
+ ]
167
+ }
168
+ ] as const;
169
+ export default abi;
@@ -0,0 +1,169 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "function",
5
+ "name": "cancelUpgrade",
6
+ "inputs": [],
7
+ "outputs": [],
8
+ "stateMutability": "nonpayable"
9
+ },
10
+ {
11
+ "type": "function",
12
+ "name": "scheduleUpgrade",
13
+ "inputs": [
14
+ {
15
+ "name": "newImplementation_",
16
+ "type": "address",
17
+ "internalType": "address"
18
+ }
19
+ ],
20
+ "outputs": [],
21
+ "stateMutability": "nonpayable"
22
+ },
23
+ {
24
+ "type": "function",
25
+ "name": "scheduledImplementation",
26
+ "inputs": [],
27
+ "outputs": [
28
+ {
29
+ "name": "",
30
+ "type": "address",
31
+ "internalType": "address"
32
+ }
33
+ ],
34
+ "stateMutability": "view"
35
+ },
36
+ {
37
+ "type": "function",
38
+ "name": "setUpgradeDelay",
39
+ "inputs": [
40
+ {
41
+ "name": "newDelay_",
42
+ "type": "uint256",
43
+ "internalType": "uint256"
44
+ }
45
+ ],
46
+ "outputs": [],
47
+ "stateMutability": "nonpayable"
48
+ },
49
+ {
50
+ "type": "function",
51
+ "name": "upgradeDelay",
52
+ "inputs": [],
53
+ "outputs": [
54
+ {
55
+ "name": "",
56
+ "type": "uint256",
57
+ "internalType": "uint256"
58
+ }
59
+ ],
60
+ "stateMutability": "view"
61
+ },
62
+ {
63
+ "type": "function",
64
+ "name": "upgradeReadyAt",
65
+ "inputs": [],
66
+ "outputs": [
67
+ {
68
+ "name": "",
69
+ "type": "uint256",
70
+ "internalType": "uint256"
71
+ }
72
+ ],
73
+ "stateMutability": "view"
74
+ },
75
+ {
76
+ "type": "event",
77
+ "name": "UpgradeCancelled",
78
+ "inputs": [
79
+ {
80
+ "name": "cancelledImplementation",
81
+ "type": "address",
82
+ "indexed": true,
83
+ "internalType": "address"
84
+ }
85
+ ],
86
+ "anonymous": false
87
+ },
88
+ {
89
+ "type": "event",
90
+ "name": "UpgradeDelayUpdated",
91
+ "inputs": [
92
+ {
93
+ "name": "newDelay",
94
+ "type": "uint256",
95
+ "indexed": false,
96
+ "internalType": "uint256"
97
+ }
98
+ ],
99
+ "anonymous": false
100
+ },
101
+ {
102
+ "type": "event",
103
+ "name": "UpgradeScheduled",
104
+ "inputs": [
105
+ {
106
+ "name": "newImplementation",
107
+ "type": "address",
108
+ "indexed": true,
109
+ "internalType": "address"
110
+ },
111
+ {
112
+ "name": "readyAt",
113
+ "type": "uint256",
114
+ "indexed": false,
115
+ "internalType": "uint256"
116
+ }
117
+ ],
118
+ "anonymous": false
119
+ },
120
+ {
121
+ "type": "error",
122
+ "name": "UpgradeDelayTooShort",
123
+ "inputs": [
124
+ {
125
+ "name": "provided",
126
+ "type": "uint256",
127
+ "internalType": "uint256"
128
+ },
129
+ {
130
+ "name": "minimum",
131
+ "type": "uint256",
132
+ "internalType": "uint256"
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "type": "error",
138
+ "name": "UpgradeNotScheduled",
139
+ "inputs": [
140
+ {
141
+ "name": "scheduled",
142
+ "type": "address",
143
+ "internalType": "address"
144
+ },
145
+ {
146
+ "name": "provided",
147
+ "type": "address",
148
+ "internalType": "address"
149
+ }
150
+ ]
151
+ },
152
+ {
153
+ "type": "error",
154
+ "name": "UpgradeTimelockNotElapsed",
155
+ "inputs": [
156
+ {
157
+ "name": "readyAt",
158
+ "type": "uint256",
159
+ "internalType": "uint256"
160
+ },
161
+ {
162
+ "name": "currentTime",
163
+ "type": "uint256",
164
+ "internalType": "uint256"
165
+ }
166
+ ]
167
+ }
168
+ ];
169
+ export default abi;
@@ -0,0 +1,15 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export declare const abi: [
3
+ {
4
+ "type": "error",
5
+ "name": "P3NotTreasuryManager",
6
+ "inputs": [
7
+ {
8
+ "name": "caller",
9
+ "type": "address",
10
+ "internalType": "address"
11
+ }
12
+ ]
13
+ }
14
+ ] as const;
15
+ export default abi;
@@ -0,0 +1,15 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "error",
5
+ "name": "P3NotTreasuryManager",
6
+ "inputs": [
7
+ {
8
+ "name": "caller",
9
+ "type": "address",
10
+ "internalType": "address"
11
+ }
12
+ ]
13
+ }
14
+ ];
15
+ export default abi;
@@ -0,0 +1,15 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export declare const abi: [
3
+ {
4
+ "type": "error",
5
+ "name": "P3NotProtocolTreasury",
6
+ "inputs": [
7
+ {
8
+ "name": "caller",
9
+ "type": "address",
10
+ "internalType": "address"
11
+ }
12
+ ]
13
+ }
14
+ ] as const;
15
+ export default abi;
@@ -0,0 +1,15 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "error",
5
+ "name": "P3NotProtocolTreasury",
6
+ "inputs": [
7
+ {
8
+ "name": "caller",
9
+ "type": "address",
10
+ "internalType": "address"
11
+ }
12
+ ]
13
+ }
14
+ ];
15
+ export default abi;