@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,653 @@
|
|
|
1
|
+
// Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
|
|
2
|
+
export const abi = [
|
|
3
|
+
{
|
|
4
|
+
"type": "function",
|
|
5
|
+
"name": "agenticRegistry",
|
|
6
|
+
"inputs": [],
|
|
7
|
+
"outputs": [
|
|
8
|
+
{
|
|
9
|
+
"name": "",
|
|
10
|
+
"type": "address",
|
|
11
|
+
"internalType": "contract IP3AgenticRegistryManager"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "view"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "function",
|
|
18
|
+
"name": "bindCompliance",
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"name": "_compliance",
|
|
22
|
+
"type": "address",
|
|
23
|
+
"internalType": "address"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"outputs": [],
|
|
27
|
+
"stateMutability": "nonpayable"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "function",
|
|
31
|
+
"name": "canComplianceBind",
|
|
32
|
+
"inputs": [
|
|
33
|
+
{
|
|
34
|
+
"name": "_compliance",
|
|
35
|
+
"type": "address",
|
|
36
|
+
"internalType": "address"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"outputs": [
|
|
40
|
+
{
|
|
41
|
+
"name": "",
|
|
42
|
+
"type": "bool",
|
|
43
|
+
"internalType": "bool"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"stateMutability": "view"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"type": "function",
|
|
50
|
+
"name": "complianceFactory",
|
|
51
|
+
"inputs": [],
|
|
52
|
+
"outputs": [
|
|
53
|
+
{
|
|
54
|
+
"name": "",
|
|
55
|
+
"type": "address",
|
|
56
|
+
"internalType": "contract IP3ComplianceFactory"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"stateMutability": "view"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": "function",
|
|
63
|
+
"name": "hasClaim",
|
|
64
|
+
"inputs": [
|
|
65
|
+
{
|
|
66
|
+
"name": "userAddress_",
|
|
67
|
+
"type": "address",
|
|
68
|
+
"internalType": "address"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "userType_",
|
|
72
|
+
"type": "uint8",
|
|
73
|
+
"internalType": "enum IP3AgenticRegistryManager.P3PermissionedUser"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"outputs": [
|
|
77
|
+
{
|
|
78
|
+
"name": "",
|
|
79
|
+
"type": "bool",
|
|
80
|
+
"internalType": "bool"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"stateMutability": "view"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"type": "function",
|
|
87
|
+
"name": "isActiveAgent",
|
|
88
|
+
"inputs": [
|
|
89
|
+
{
|
|
90
|
+
"name": "walletAddress_",
|
|
91
|
+
"type": "address",
|
|
92
|
+
"internalType": "address"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"outputs": [
|
|
96
|
+
{
|
|
97
|
+
"name": "",
|
|
98
|
+
"type": "bool",
|
|
99
|
+
"internalType": "bool"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"stateMutability": "view"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"type": "function",
|
|
106
|
+
"name": "isCalculatingAgent",
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"name": "walletAddress_",
|
|
110
|
+
"type": "address",
|
|
111
|
+
"internalType": "address"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"outputs": [
|
|
115
|
+
{
|
|
116
|
+
"name": "",
|
|
117
|
+
"type": "bool",
|
|
118
|
+
"internalType": "bool"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"stateMutability": "view"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "function",
|
|
125
|
+
"name": "isComplianceBound",
|
|
126
|
+
"inputs": [
|
|
127
|
+
{
|
|
128
|
+
"name": "_compliance",
|
|
129
|
+
"type": "address",
|
|
130
|
+
"internalType": "address"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"outputs": [
|
|
134
|
+
{
|
|
135
|
+
"name": "",
|
|
136
|
+
"type": "bool",
|
|
137
|
+
"internalType": "bool"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"stateMutability": "view"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"type": "function",
|
|
144
|
+
"name": "isCustodian",
|
|
145
|
+
"inputs": [
|
|
146
|
+
{
|
|
147
|
+
"name": "walletAddress_",
|
|
148
|
+
"type": "address",
|
|
149
|
+
"internalType": "address"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"outputs": [
|
|
153
|
+
{
|
|
154
|
+
"name": "",
|
|
155
|
+
"type": "bool",
|
|
156
|
+
"internalType": "bool"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"stateMutability": "view"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"type": "function",
|
|
163
|
+
"name": "isDistributor",
|
|
164
|
+
"inputs": [
|
|
165
|
+
{
|
|
166
|
+
"name": "walletAddress_",
|
|
167
|
+
"type": "address",
|
|
168
|
+
"internalType": "address"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"outputs": [
|
|
172
|
+
{
|
|
173
|
+
"name": "",
|
|
174
|
+
"type": "bool",
|
|
175
|
+
"internalType": "bool"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"stateMutability": "view"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"type": "function",
|
|
182
|
+
"name": "isFundAccountant",
|
|
183
|
+
"inputs": [
|
|
184
|
+
{
|
|
185
|
+
"name": "walletAddress_",
|
|
186
|
+
"type": "address",
|
|
187
|
+
"internalType": "address"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"outputs": [
|
|
191
|
+
{
|
|
192
|
+
"name": "",
|
|
193
|
+
"type": "bool",
|
|
194
|
+
"internalType": "bool"
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"stateMutability": "view"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"type": "function",
|
|
201
|
+
"name": "isInvestor",
|
|
202
|
+
"inputs": [
|
|
203
|
+
{
|
|
204
|
+
"name": "walletAddress_",
|
|
205
|
+
"type": "address",
|
|
206
|
+
"internalType": "address"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"outputs": [
|
|
210
|
+
{
|
|
211
|
+
"name": "",
|
|
212
|
+
"type": "bool",
|
|
213
|
+
"internalType": "bool"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"stateMutability": "view"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"type": "function",
|
|
220
|
+
"name": "isManager",
|
|
221
|
+
"inputs": [
|
|
222
|
+
{
|
|
223
|
+
"name": "walletAddress_",
|
|
224
|
+
"type": "address",
|
|
225
|
+
"internalType": "address"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"outputs": [
|
|
229
|
+
{
|
|
230
|
+
"name": "",
|
|
231
|
+
"type": "bool",
|
|
232
|
+
"internalType": "bool"
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"stateMutability": "view"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"type": "function",
|
|
239
|
+
"name": "isPlugAndPlay",
|
|
240
|
+
"inputs": [],
|
|
241
|
+
"outputs": [
|
|
242
|
+
{
|
|
243
|
+
"name": "",
|
|
244
|
+
"type": "bool",
|
|
245
|
+
"internalType": "bool"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"stateMutability": "pure"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "function",
|
|
252
|
+
"name": "isTransferAgent",
|
|
253
|
+
"inputs": [
|
|
254
|
+
{
|
|
255
|
+
"name": "walletAddress_",
|
|
256
|
+
"type": "address",
|
|
257
|
+
"internalType": "address"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"outputs": [
|
|
261
|
+
{
|
|
262
|
+
"name": "",
|
|
263
|
+
"type": "bool",
|
|
264
|
+
"internalType": "bool"
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"stateMutability": "view"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"type": "function",
|
|
271
|
+
"name": "isTreasury",
|
|
272
|
+
"inputs": [
|
|
273
|
+
{
|
|
274
|
+
"name": "walletAddress_",
|
|
275
|
+
"type": "address",
|
|
276
|
+
"internalType": "address"
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"outputs": [
|
|
280
|
+
{
|
|
281
|
+
"name": "",
|
|
282
|
+
"type": "bool",
|
|
283
|
+
"internalType": "bool"
|
|
284
|
+
}
|
|
285
|
+
],
|
|
286
|
+
"stateMutability": "view"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"type": "function",
|
|
290
|
+
"name": "isUser",
|
|
291
|
+
"inputs": [
|
|
292
|
+
{
|
|
293
|
+
"name": "walletAddress_",
|
|
294
|
+
"type": "address",
|
|
295
|
+
"internalType": "address"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"outputs": [
|
|
299
|
+
{
|
|
300
|
+
"name": "",
|
|
301
|
+
"type": "bool",
|
|
302
|
+
"internalType": "bool"
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
"stateMutability": "view"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "function",
|
|
309
|
+
"name": "moduleBurnAction",
|
|
310
|
+
"inputs": [
|
|
311
|
+
{
|
|
312
|
+
"name": "_from",
|
|
313
|
+
"type": "address",
|
|
314
|
+
"internalType": "address"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "_value",
|
|
318
|
+
"type": "uint256",
|
|
319
|
+
"internalType": "uint256"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"outputs": [],
|
|
323
|
+
"stateMutability": "nonpayable"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"type": "function",
|
|
327
|
+
"name": "moduleCheck",
|
|
328
|
+
"inputs": [
|
|
329
|
+
{
|
|
330
|
+
"name": "_from",
|
|
331
|
+
"type": "address",
|
|
332
|
+
"internalType": "address"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "_to",
|
|
336
|
+
"type": "address",
|
|
337
|
+
"internalType": "address"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "_value",
|
|
341
|
+
"type": "uint256",
|
|
342
|
+
"internalType": "uint256"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "_compliance",
|
|
346
|
+
"type": "address",
|
|
347
|
+
"internalType": "address"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"outputs": [
|
|
351
|
+
{
|
|
352
|
+
"name": "",
|
|
353
|
+
"type": "bool",
|
|
354
|
+
"internalType": "bool"
|
|
355
|
+
}
|
|
356
|
+
],
|
|
357
|
+
"stateMutability": "view"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "function",
|
|
361
|
+
"name": "moduleMintAction",
|
|
362
|
+
"inputs": [
|
|
363
|
+
{
|
|
364
|
+
"name": "_to",
|
|
365
|
+
"type": "address",
|
|
366
|
+
"internalType": "address"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "_value",
|
|
370
|
+
"type": "uint256",
|
|
371
|
+
"internalType": "uint256"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"outputs": [],
|
|
375
|
+
"stateMutability": "nonpayable"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"type": "function",
|
|
379
|
+
"name": "moduleTransferAction",
|
|
380
|
+
"inputs": [
|
|
381
|
+
{
|
|
382
|
+
"name": "_from",
|
|
383
|
+
"type": "address",
|
|
384
|
+
"internalType": "address"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"name": "_to",
|
|
388
|
+
"type": "address",
|
|
389
|
+
"internalType": "address"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "_value",
|
|
393
|
+
"type": "uint256",
|
|
394
|
+
"internalType": "uint256"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"outputs": [],
|
|
398
|
+
"stateMutability": "nonpayable"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"type": "function",
|
|
402
|
+
"name": "name",
|
|
403
|
+
"inputs": [],
|
|
404
|
+
"outputs": [
|
|
405
|
+
{
|
|
406
|
+
"name": "_name",
|
|
407
|
+
"type": "string",
|
|
408
|
+
"internalType": "string"
|
|
409
|
+
}
|
|
410
|
+
],
|
|
411
|
+
"stateMutability": "pure"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"type": "function",
|
|
415
|
+
"name": "setAgenticRegistry",
|
|
416
|
+
"inputs": [
|
|
417
|
+
{
|
|
418
|
+
"name": "p3AgenticRegistry_",
|
|
419
|
+
"type": "address",
|
|
420
|
+
"internalType": "address"
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"outputs": [],
|
|
424
|
+
"stateMutability": "nonpayable"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"type": "function",
|
|
428
|
+
"name": "setComplianceFactory",
|
|
429
|
+
"inputs": [
|
|
430
|
+
{
|
|
431
|
+
"name": "newComplianceFactory_",
|
|
432
|
+
"type": "address",
|
|
433
|
+
"internalType": "address"
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
"outputs": [],
|
|
437
|
+
"stateMutability": "nonpayable"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"type": "function",
|
|
441
|
+
"name": "setTreasuryManager",
|
|
442
|
+
"inputs": [
|
|
443
|
+
{
|
|
444
|
+
"name": "treasuryManager_",
|
|
445
|
+
"type": "address",
|
|
446
|
+
"internalType": "address"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"outputs": [],
|
|
450
|
+
"stateMutability": "nonpayable"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"type": "function",
|
|
454
|
+
"name": "treasuryManager",
|
|
455
|
+
"inputs": [],
|
|
456
|
+
"outputs": [
|
|
457
|
+
{
|
|
458
|
+
"name": "",
|
|
459
|
+
"type": "address",
|
|
460
|
+
"internalType": "contract IP3TreasuryManager"
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
"stateMutability": "view"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"type": "function",
|
|
467
|
+
"name": "unbindCompliance",
|
|
468
|
+
"inputs": [
|
|
469
|
+
{
|
|
470
|
+
"name": "_compliance",
|
|
471
|
+
"type": "address",
|
|
472
|
+
"internalType": "address"
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"outputs": [],
|
|
476
|
+
"stateMutability": "nonpayable"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"type": "event",
|
|
480
|
+
"name": "AgenticRegistryUpdated",
|
|
481
|
+
"inputs": [
|
|
482
|
+
{
|
|
483
|
+
"name": "oldRegistry",
|
|
484
|
+
"type": "address",
|
|
485
|
+
"indexed": false,
|
|
486
|
+
"internalType": "address"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "newRegistry",
|
|
490
|
+
"type": "address",
|
|
491
|
+
"indexed": false,
|
|
492
|
+
"internalType": "address"
|
|
493
|
+
}
|
|
494
|
+
],
|
|
495
|
+
"anonymous": false
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"type": "event",
|
|
499
|
+
"name": "ComplianceBound",
|
|
500
|
+
"inputs": [
|
|
501
|
+
{
|
|
502
|
+
"name": "_compliance",
|
|
503
|
+
"type": "address",
|
|
504
|
+
"indexed": true,
|
|
505
|
+
"internalType": "address"
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
"anonymous": false
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"type": "event",
|
|
512
|
+
"name": "ComplianceFactoryUpdated",
|
|
513
|
+
"inputs": [
|
|
514
|
+
{
|
|
515
|
+
"name": "oldFactory",
|
|
516
|
+
"type": "address",
|
|
517
|
+
"indexed": false,
|
|
518
|
+
"internalType": "address"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "newFactory",
|
|
522
|
+
"type": "address",
|
|
523
|
+
"indexed": false,
|
|
524
|
+
"internalType": "address"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"anonymous": false
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"type": "event",
|
|
531
|
+
"name": "ComplianceUnbound",
|
|
532
|
+
"inputs": [
|
|
533
|
+
{
|
|
534
|
+
"name": "_compliance",
|
|
535
|
+
"type": "address",
|
|
536
|
+
"indexed": true,
|
|
537
|
+
"internalType": "address"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"anonymous": false
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "event",
|
|
544
|
+
"name": "P3TokenTransferred",
|
|
545
|
+
"inputs": [
|
|
546
|
+
{
|
|
547
|
+
"name": "tokenType",
|
|
548
|
+
"type": "uint8",
|
|
549
|
+
"indexed": false,
|
|
550
|
+
"internalType": "enum IP3BasicToken.P3TokenTypes"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "tokenAddr",
|
|
554
|
+
"type": "address",
|
|
555
|
+
"indexed": true,
|
|
556
|
+
"internalType": "address"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "from",
|
|
560
|
+
"type": "address",
|
|
561
|
+
"indexed": false,
|
|
562
|
+
"internalType": "address"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"name": "to",
|
|
566
|
+
"type": "address",
|
|
567
|
+
"indexed": false,
|
|
568
|
+
"internalType": "address"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"name": "amount",
|
|
572
|
+
"type": "uint256",
|
|
573
|
+
"indexed": false,
|
|
574
|
+
"internalType": "uint256"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"anonymous": false
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"type": "event",
|
|
581
|
+
"name": "TreasuryManagerUpdated",
|
|
582
|
+
"inputs": [
|
|
583
|
+
{
|
|
584
|
+
"name": "newTreasuryManager",
|
|
585
|
+
"type": "address",
|
|
586
|
+
"indexed": false,
|
|
587
|
+
"internalType": "address"
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"anonymous": false
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"type": "error",
|
|
594
|
+
"name": "P3ComplianceModuleComplianceIsAlreadyBound",
|
|
595
|
+
"inputs": [
|
|
596
|
+
{
|
|
597
|
+
"name": "compliance",
|
|
598
|
+
"type": "address",
|
|
599
|
+
"internalType": "address"
|
|
600
|
+
}
|
|
601
|
+
]
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"type": "error",
|
|
605
|
+
"name": "P3ComplianceModuleInvalidCompliance",
|
|
606
|
+
"inputs": [
|
|
607
|
+
{
|
|
608
|
+
"name": "compliance",
|
|
609
|
+
"type": "address",
|
|
610
|
+
"internalType": "address"
|
|
611
|
+
}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"type": "error",
|
|
616
|
+
"name": "P3ComplianceModuleNotABoundCompliance",
|
|
617
|
+
"inputs": [
|
|
618
|
+
{
|
|
619
|
+
"name": "compliance",
|
|
620
|
+
"type": "address",
|
|
621
|
+
"internalType": "address"
|
|
622
|
+
}
|
|
623
|
+
]
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"type": "error",
|
|
627
|
+
"name": "P3ComplianceModuleNotAnApprovedCompliance",
|
|
628
|
+
"inputs": [
|
|
629
|
+
{
|
|
630
|
+
"name": "compliance",
|
|
631
|
+
"type": "address",
|
|
632
|
+
"internalType": "address"
|
|
633
|
+
}
|
|
634
|
+
]
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"type": "error",
|
|
638
|
+
"name": "P3IsZeroAddress",
|
|
639
|
+
"inputs": [
|
|
640
|
+
{
|
|
641
|
+
"name": "",
|
|
642
|
+
"type": "string",
|
|
643
|
+
"internalType": "string"
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"type": "error",
|
|
649
|
+
"name": "SolvencyComplianceModuleZeroTreasuryManager",
|
|
650
|
+
"inputs": []
|
|
651
|
+
}
|
|
652
|
+
];
|
|
653
|
+
export default abi;
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
|
|
2
|
+
export { abi as IAbstractFeeModule, abi as AbstractFeeModuleABI } from "./IAbstractFeeModule.js";
|
|
3
|
+
export { abi as IAbstractTimelockUpgrade, abi as AbstractTimelockUpgradeABI } from "./IAbstractTimelockUpgrade.js";
|
|
4
|
+
export { abi as IAbstractTreasuryManagerRestricted, abi as AbstractTreasuryManagerRestrictedABI } from "./IAbstractTreasuryManagerRestricted.js";
|
|
5
|
+
export { abi as IAbstractTreasuryRestricted, abi as AbstractTreasuryRestrictedABI } from "./IAbstractTreasuryRestricted.js";
|
|
6
|
+
export { abi as IP3AgentLimitComplianceModule, abi as P3AgentLimitComplianceModuleABI } from "./IP3AgentLimitComplianceModule.js";
|
|
7
|
+
export { abi as IP3AgenticRegistryManager, abi as P3AgenticRegistryManagerABI } from "./IP3AgenticRegistryManager.js";
|
|
8
|
+
export { abi as IP3AttestationManager, abi as P3AttestationManagerABI } from "./IP3AttestationManager.js";
|
|
9
|
+
export { abi as IP3BasicToken, abi as P3BasicTokenABI } from "./IP3BasicToken.js";
|
|
10
|
+
export { abi as IP3ComplianceFactory, abi as P3ComplianceFactoryABI } from "./IP3ComplianceFactory.js";
|
|
11
|
+
export { abi as IP3ComplianceModule, abi as P3ComplianceModuleABI } from "./IP3ComplianceModule.js";
|
|
12
|
+
export { abi as IP3DepositToken, abi as P3DepositTokenABI } from "./IP3DepositToken.js";
|
|
13
|
+
export { abi as IP3DigitalSecurityToken, abi as P3DigitalSecurityTokenABI } from "./IP3DigitalSecurityToken.js";
|
|
14
|
+
export { abi as IP3EIP3009, abi as P3EIP3009ABI } from "./IP3EIP3009.js";
|
|
15
|
+
export { abi as IP3ERC20ConverterManager, abi as P3ERC20ConverterManagerABI } from "./IP3ERC20ConverterManager.js";
|
|
16
|
+
export { abi as IP3ERC8004Connector, abi as P3ERC8004ConnectorABI } from "./IP3ERC8004Connector.js";
|
|
17
|
+
export { abi as IP3FXSwap, abi as P3FXSwapABI } from "./IP3FXSwap.js";
|
|
18
|
+
export { abi as IP3ModularCompliance, abi as P3ModularComplianceABI } from "./IP3ModularCompliance.js";
|
|
19
|
+
export { abi as IP3ReputationComplianceModule, abi as P3ReputationComplianceModuleABI } from "./IP3ReputationComplianceModule.js";
|
|
20
|
+
export { abi as IP3StablecoinSwap, abi as P3StablecoinSwapABI } from "./IP3StablecoinSwap.js";
|
|
21
|
+
export { abi as IP3StablecoinToken, abi as P3StablecoinTokenABI } from "./IP3StablecoinToken.js";
|
|
22
|
+
export { abi as IP3TokensFactory, abi as P3TokensFactoryABI } from "./IP3TokensFactory.js";
|
|
23
|
+
export { abi as IP3TransferManager, abi as P3TransferManagerABI } from "./IP3TransferManager.js";
|
|
24
|
+
export { abi as IP3TreasuryManager, abi as P3TreasuryManagerABI } from "./IP3TreasuryManager.js";
|
|
25
|
+
export { abi as IP3YieldBearingStablecoinToken, abi as P3YieldBearingStablecoinTokenABI } from "./IP3YieldBearingStablecoinToken.js";
|
|
26
|
+
export { abi as IRecoveryVelocityComplianceModule, abi as RecoveryVelocityComplianceModuleABI } from "./IRecoveryVelocityComplianceModule.js";
|
|
27
|
+
export { abi as ISolvencyComplianceModule, abi as SolvencyComplianceModuleABI } from "./ISolvencyComplianceModule.js";
|
package/src/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
|
|
2
|
+
export { abi as IAbstractFeeModule, abi as AbstractFeeModuleABI } from "./IAbstractFeeModule.js";
|
|
3
|
+
export { abi as IAbstractTimelockUpgrade, abi as AbstractTimelockUpgradeABI } from "./IAbstractTimelockUpgrade.js";
|
|
4
|
+
export { abi as IAbstractTreasuryManagerRestricted, abi as AbstractTreasuryManagerRestrictedABI } from "./IAbstractTreasuryManagerRestricted.js";
|
|
5
|
+
export { abi as IAbstractTreasuryRestricted, abi as AbstractTreasuryRestrictedABI } from "./IAbstractTreasuryRestricted.js";
|
|
6
|
+
export { abi as IP3AgentLimitComplianceModule, abi as P3AgentLimitComplianceModuleABI } from "./IP3AgentLimitComplianceModule.js";
|
|
7
|
+
export { abi as IP3AgenticRegistryManager, abi as P3AgenticRegistryManagerABI } from "./IP3AgenticRegistryManager.js";
|
|
8
|
+
export { abi as IP3AttestationManager, abi as P3AttestationManagerABI } from "./IP3AttestationManager.js";
|
|
9
|
+
export { abi as IP3BasicToken, abi as P3BasicTokenABI } from "./IP3BasicToken.js";
|
|
10
|
+
export { abi as IP3ComplianceFactory, abi as P3ComplianceFactoryABI } from "./IP3ComplianceFactory.js";
|
|
11
|
+
export { abi as IP3ComplianceModule, abi as P3ComplianceModuleABI } from "./IP3ComplianceModule.js";
|
|
12
|
+
export { abi as IP3DepositToken, abi as P3DepositTokenABI } from "./IP3DepositToken.js";
|
|
13
|
+
export { abi as IP3DigitalSecurityToken, abi as P3DigitalSecurityTokenABI } from "./IP3DigitalSecurityToken.js";
|
|
14
|
+
export { abi as IP3EIP3009, abi as P3EIP3009ABI } from "./IP3EIP3009.js";
|
|
15
|
+
export { abi as IP3ERC20ConverterManager, abi as P3ERC20ConverterManagerABI } from "./IP3ERC20ConverterManager.js";
|
|
16
|
+
export { abi as IP3ERC8004Connector, abi as P3ERC8004ConnectorABI } from "./IP3ERC8004Connector.js";
|
|
17
|
+
export { abi as IP3FXSwap, abi as P3FXSwapABI } from "./IP3FXSwap.js";
|
|
18
|
+
export { abi as IP3ModularCompliance, abi as P3ModularComplianceABI } from "./IP3ModularCompliance.js";
|
|
19
|
+
export { abi as IP3ReputationComplianceModule, abi as P3ReputationComplianceModuleABI } from "./IP3ReputationComplianceModule.js";
|
|
20
|
+
export { abi as IP3StablecoinSwap, abi as P3StablecoinSwapABI } from "./IP3StablecoinSwap.js";
|
|
21
|
+
export { abi as IP3StablecoinToken, abi as P3StablecoinTokenABI } from "./IP3StablecoinToken.js";
|
|
22
|
+
export { abi as IP3TokensFactory, abi as P3TokensFactoryABI } from "./IP3TokensFactory.js";
|
|
23
|
+
export { abi as IP3TransferManager, abi as P3TransferManagerABI } from "./IP3TransferManager.js";
|
|
24
|
+
export { abi as IP3TreasuryManager, abi as P3TreasuryManagerABI } from "./IP3TreasuryManager.js";
|
|
25
|
+
export { abi as IP3YieldBearingStablecoinToken, abi as P3YieldBearingStablecoinTokenABI } from "./IP3YieldBearingStablecoinToken.js";
|
|
26
|
+
export { abi as IRecoveryVelocityComplianceModule, abi as RecoveryVelocityComplianceModuleABI } from "./IRecoveryVelocityComplianceModule.js";
|
|
27
|
+
export { abi as ISolvencyComplianceModule, abi as SolvencyComplianceModuleABI } from "./ISolvencyComplianceModule.js";
|