@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.
- package/LICENSE +17 -0
- package/README.md +50 -0
- package/package.json +37 -0
- package/src/IAbstractFeeModule.d.ts +252 -0
- package/src/IAbstractFeeModule.js +252 -0
- package/src/IAbstractTimelockUpgrade.d.ts +169 -0
- package/src/IAbstractTimelockUpgrade.js +169 -0
- package/src/IAbstractTreasuryManagerRestricted.d.ts +15 -0
- package/src/IAbstractTreasuryManagerRestricted.js +15 -0
- package/src/IAbstractTreasuryRestricted.d.ts +15 -0
- package/src/IAbstractTreasuryRestricted.js +15 -0
- package/src/IP3AgentLimitComplianceModule.d.ts +761 -0
- package/src/IP3AgentLimitComplianceModule.js +761 -0
- package/src/IP3AgenticRegistryManager.d.ts +2074 -0
- package/src/IP3AgenticRegistryManager.js +2074 -0
- package/src/IP3AttestationManager.d.ts +1347 -0
- package/src/IP3AttestationManager.js +1347 -0
- package/src/IP3BasicToken.d.ts +951 -0
- package/src/IP3BasicToken.js +951 -0
- package/src/IP3ComplianceFactory.d.ts +591 -0
- package/src/IP3ComplianceFactory.js +591 -0
- package/src/IP3ComplianceModule.d.ts +609 -0
- package/src/IP3ComplianceModule.js +609 -0
- package/src/IP3DepositToken.d.ts +1104 -0
- package/src/IP3DepositToken.js +1104 -0
- package/src/IP3DigitalSecurityToken.d.ts +1197 -0
- package/src/IP3DigitalSecurityToken.js +1197 -0
- package/src/IP3EIP3009.d.ts +586 -0
- package/src/IP3EIP3009.js +586 -0
- package/src/IP3ERC20ConverterManager.d.ts +867 -0
- package/src/IP3ERC20ConverterManager.js +867 -0
- package/src/IP3ERC8004Connector.d.ts +955 -0
- package/src/IP3ERC8004Connector.js +955 -0
- package/src/IP3FXSwap.d.ts +779 -0
- package/src/IP3FXSwap.js +779 -0
- package/src/IP3ModularCompliance.d.ts +771 -0
- package/src/IP3ModularCompliance.js +771 -0
- package/src/IP3ReputationComplianceModule.d.ts +691 -0
- package/src/IP3ReputationComplianceModule.js +691 -0
- package/src/IP3StablecoinSwap.d.ts +1082 -0
- package/src/IP3StablecoinSwap.js +1082 -0
- package/src/IP3StablecoinToken.d.ts +1127 -0
- package/src/IP3StablecoinToken.js +1127 -0
- package/src/IP3TokensFactory.d.ts +431 -0
- package/src/IP3TokensFactory.js +431 -0
- package/src/IP3TransferManager.d.ts +1234 -0
- package/src/IP3TransferManager.js +1234 -0
- package/src/IP3TreasuryManager.d.ts +1652 -0
- package/src/IP3TreasuryManager.js +1652 -0
- package/src/IP3YieldBearingStablecoinToken.d.ts +1163 -0
- package/src/IP3YieldBearingStablecoinToken.js +1163 -0
- package/src/IRecoveryVelocityComplianceModule.d.ts +1032 -0
- package/src/IRecoveryVelocityComplianceModule.js +1032 -0
- package/src/ISolvencyComplianceModule.d.ts +653 -0
- package/src/ISolvencyComplianceModule.js +653 -0
- package/src/index.d.ts +27 -0
- 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;
|