@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,1347 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "function",
5
+ "name": "confirmAttestation",
6
+ "inputs": [
7
+ {
8
+ "name": "attestationData_",
9
+ "type": "tuple",
10
+ "internalType": "struct IP3AttestationManager.AttestationData",
11
+ "components": [
12
+ {
13
+ "name": "walletAddr",
14
+ "type": "address",
15
+ "internalType": "address"
16
+ },
17
+ {
18
+ "name": "iban",
19
+ "type": "string",
20
+ "internalType": "string"
21
+ },
22
+ {
23
+ "name": "currency",
24
+ "type": "string",
25
+ "internalType": "string"
26
+ },
27
+ {
28
+ "name": "reportStart",
29
+ "type": "uint256",
30
+ "internalType": "uint256"
31
+ },
32
+ {
33
+ "name": "reportEnd",
34
+ "type": "uint256",
35
+ "internalType": "uint256"
36
+ },
37
+ {
38
+ "name": "balance",
39
+ "type": "uint256",
40
+ "internalType": "uint256"
41
+ },
42
+ {
43
+ "name": "lastTxHash",
44
+ "type": "string",
45
+ "internalType": "string"
46
+ }
47
+ ]
48
+ },
49
+ {
50
+ "name": "sig_",
51
+ "type": "bytes",
52
+ "internalType": "bytes"
53
+ }
54
+ ],
55
+ "outputs": [],
56
+ "stateMutability": "nonpayable"
57
+ },
58
+ {
59
+ "type": "function",
60
+ "name": "confirmReserveAttestation",
61
+ "inputs": [
62
+ {
63
+ "name": "attestationData_",
64
+ "type": "tuple",
65
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
66
+ "components": [
67
+ {
68
+ "name": "walletAddr",
69
+ "type": "address",
70
+ "internalType": "address"
71
+ },
72
+ {
73
+ "name": "isin",
74
+ "type": "string",
75
+ "internalType": "string"
76
+ },
77
+ {
78
+ "name": "currency",
79
+ "type": "string",
80
+ "internalType": "string"
81
+ },
82
+ {
83
+ "name": "assetType",
84
+ "type": "uint8",
85
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
86
+ },
87
+ {
88
+ "name": "nav",
89
+ "type": "uint256",
90
+ "internalType": "uint256"
91
+ },
92
+ {
93
+ "name": "units",
94
+ "type": "uint256",
95
+ "internalType": "uint256"
96
+ },
97
+ {
98
+ "name": "valuationDate",
99
+ "type": "uint256",
100
+ "internalType": "uint256"
101
+ },
102
+ {
103
+ "name": "reportStart",
104
+ "type": "uint256",
105
+ "internalType": "uint256"
106
+ },
107
+ {
108
+ "name": "reportEnd",
109
+ "type": "uint256",
110
+ "internalType": "uint256"
111
+ },
112
+ {
113
+ "name": "lastTxHash",
114
+ "type": "string",
115
+ "internalType": "string"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "name": "sig_",
121
+ "type": "bytes",
122
+ "internalType": "bytes"
123
+ }
124
+ ],
125
+ "outputs": [],
126
+ "stateMutability": "nonpayable"
127
+ },
128
+ {
129
+ "type": "function",
130
+ "name": "getAccountAttestationDataKeys",
131
+ "inputs": [
132
+ {
133
+ "name": "walletAddr_",
134
+ "type": "address",
135
+ "internalType": "address"
136
+ },
137
+ {
138
+ "name": "iban_",
139
+ "type": "string",
140
+ "internalType": "string"
141
+ },
142
+ {
143
+ "name": "currency_",
144
+ "type": "string",
145
+ "internalType": "string"
146
+ }
147
+ ],
148
+ "outputs": [
149
+ {
150
+ "name": "",
151
+ "type": "bytes32[]",
152
+ "internalType": "bytes32[]"
153
+ }
154
+ ],
155
+ "stateMutability": "view"
156
+ },
157
+ {
158
+ "type": "function",
159
+ "name": "getAccountAttestationKey",
160
+ "inputs": [
161
+ {
162
+ "name": "walletAddr_",
163
+ "type": "address",
164
+ "internalType": "address"
165
+ },
166
+ {
167
+ "name": "currency_",
168
+ "type": "string",
169
+ "internalType": "string"
170
+ },
171
+ {
172
+ "name": "iban_",
173
+ "type": "string",
174
+ "internalType": "string"
175
+ }
176
+ ],
177
+ "outputs": [
178
+ {
179
+ "name": "",
180
+ "type": "bytes32",
181
+ "internalType": "bytes32"
182
+ }
183
+ ],
184
+ "stateMutability": "pure"
185
+ },
186
+ {
187
+ "type": "function",
188
+ "name": "getAccountLastAttestationData",
189
+ "inputs": [
190
+ {
191
+ "name": "walletAddr_",
192
+ "type": "address",
193
+ "internalType": "address"
194
+ },
195
+ {
196
+ "name": "iban_",
197
+ "type": "string",
198
+ "internalType": "string"
199
+ },
200
+ {
201
+ "name": "currency_",
202
+ "type": "string",
203
+ "internalType": "string"
204
+ }
205
+ ],
206
+ "outputs": [
207
+ {
208
+ "name": "",
209
+ "type": "tuple",
210
+ "internalType": "struct IP3AttestationManager.AttestationData",
211
+ "components": [
212
+ {
213
+ "name": "walletAddr",
214
+ "type": "address",
215
+ "internalType": "address"
216
+ },
217
+ {
218
+ "name": "iban",
219
+ "type": "string",
220
+ "internalType": "string"
221
+ },
222
+ {
223
+ "name": "currency",
224
+ "type": "string",
225
+ "internalType": "string"
226
+ },
227
+ {
228
+ "name": "reportStart",
229
+ "type": "uint256",
230
+ "internalType": "uint256"
231
+ },
232
+ {
233
+ "name": "reportEnd",
234
+ "type": "uint256",
235
+ "internalType": "uint256"
236
+ },
237
+ {
238
+ "name": "balance",
239
+ "type": "uint256",
240
+ "internalType": "uint256"
241
+ },
242
+ {
243
+ "name": "lastTxHash",
244
+ "type": "string",
245
+ "internalType": "string"
246
+ }
247
+ ]
248
+ }
249
+ ],
250
+ "stateMutability": "view"
251
+ },
252
+ {
253
+ "type": "function",
254
+ "name": "getAccountLastAttestationDataKey",
255
+ "inputs": [
256
+ {
257
+ "name": "walletAddr_",
258
+ "type": "address",
259
+ "internalType": "address"
260
+ },
261
+ {
262
+ "name": "iban_",
263
+ "type": "string",
264
+ "internalType": "string"
265
+ },
266
+ {
267
+ "name": "currency_",
268
+ "type": "string",
269
+ "internalType": "string"
270
+ }
271
+ ],
272
+ "outputs": [
273
+ {
274
+ "name": "",
275
+ "type": "bytes32",
276
+ "internalType": "bytes32"
277
+ }
278
+ ],
279
+ "stateMutability": "view"
280
+ },
281
+ {
282
+ "type": "function",
283
+ "name": "getAttestationData",
284
+ "inputs": [
285
+ {
286
+ "name": "attestationDataKey_",
287
+ "type": "bytes32",
288
+ "internalType": "bytes32"
289
+ }
290
+ ],
291
+ "outputs": [
292
+ {
293
+ "name": "",
294
+ "type": "tuple",
295
+ "internalType": "struct IP3AttestationManager.AttestationData",
296
+ "components": [
297
+ {
298
+ "name": "walletAddr",
299
+ "type": "address",
300
+ "internalType": "address"
301
+ },
302
+ {
303
+ "name": "iban",
304
+ "type": "string",
305
+ "internalType": "string"
306
+ },
307
+ {
308
+ "name": "currency",
309
+ "type": "string",
310
+ "internalType": "string"
311
+ },
312
+ {
313
+ "name": "reportStart",
314
+ "type": "uint256",
315
+ "internalType": "uint256"
316
+ },
317
+ {
318
+ "name": "reportEnd",
319
+ "type": "uint256",
320
+ "internalType": "uint256"
321
+ },
322
+ {
323
+ "name": "balance",
324
+ "type": "uint256",
325
+ "internalType": "uint256"
326
+ },
327
+ {
328
+ "name": "lastTxHash",
329
+ "type": "string",
330
+ "internalType": "string"
331
+ }
332
+ ]
333
+ }
334
+ ],
335
+ "stateMutability": "view"
336
+ },
337
+ {
338
+ "type": "function",
339
+ "name": "getAttestationDataHash",
340
+ "inputs": [
341
+ {
342
+ "name": "attestationData_",
343
+ "type": "tuple",
344
+ "internalType": "struct IP3AttestationManager.AttestationData",
345
+ "components": [
346
+ {
347
+ "name": "walletAddr",
348
+ "type": "address",
349
+ "internalType": "address"
350
+ },
351
+ {
352
+ "name": "iban",
353
+ "type": "string",
354
+ "internalType": "string"
355
+ },
356
+ {
357
+ "name": "currency",
358
+ "type": "string",
359
+ "internalType": "string"
360
+ },
361
+ {
362
+ "name": "reportStart",
363
+ "type": "uint256",
364
+ "internalType": "uint256"
365
+ },
366
+ {
367
+ "name": "reportEnd",
368
+ "type": "uint256",
369
+ "internalType": "uint256"
370
+ },
371
+ {
372
+ "name": "balance",
373
+ "type": "uint256",
374
+ "internalType": "uint256"
375
+ },
376
+ {
377
+ "name": "lastTxHash",
378
+ "type": "string",
379
+ "internalType": "string"
380
+ }
381
+ ]
382
+ }
383
+ ],
384
+ "outputs": [
385
+ {
386
+ "name": "",
387
+ "type": "bytes32",
388
+ "internalType": "bytes32"
389
+ }
390
+ ],
391
+ "stateMutability": "view"
392
+ },
393
+ {
394
+ "type": "function",
395
+ "name": "getLatestAttestedValueByWallet",
396
+ "inputs": [
397
+ {
398
+ "name": "walletAddr_",
399
+ "type": "address",
400
+ "internalType": "address"
401
+ }
402
+ ],
403
+ "outputs": [
404
+ {
405
+ "name": "",
406
+ "type": "uint256",
407
+ "internalType": "uint256"
408
+ }
409
+ ],
410
+ "stateMutability": "view"
411
+ },
412
+ {
413
+ "type": "function",
414
+ "name": "getReserveAccountAttestationDataKeys",
415
+ "inputs": [
416
+ {
417
+ "name": "isin_",
418
+ "type": "string",
419
+ "internalType": "string"
420
+ },
421
+ {
422
+ "name": "assetType_",
423
+ "type": "uint8",
424
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
425
+ }
426
+ ],
427
+ "outputs": [
428
+ {
429
+ "name": "",
430
+ "type": "bytes32[]",
431
+ "internalType": "bytes32[]"
432
+ }
433
+ ],
434
+ "stateMutability": "view"
435
+ },
436
+ {
437
+ "type": "function",
438
+ "name": "getReserveAccountAttestationKey",
439
+ "inputs": [
440
+ {
441
+ "name": "assetType_",
442
+ "type": "uint8",
443
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
444
+ },
445
+ {
446
+ "name": "isin_",
447
+ "type": "string",
448
+ "internalType": "string"
449
+ }
450
+ ],
451
+ "outputs": [
452
+ {
453
+ "name": "",
454
+ "type": "bytes32",
455
+ "internalType": "bytes32"
456
+ }
457
+ ],
458
+ "stateMutability": "pure"
459
+ },
460
+ {
461
+ "type": "function",
462
+ "name": "getReserveAccountLastAttestationData",
463
+ "inputs": [
464
+ {
465
+ "name": "isin_",
466
+ "type": "string",
467
+ "internalType": "string"
468
+ },
469
+ {
470
+ "name": "assetType_",
471
+ "type": "uint8",
472
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
473
+ }
474
+ ],
475
+ "outputs": [
476
+ {
477
+ "name": "",
478
+ "type": "tuple",
479
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
480
+ "components": [
481
+ {
482
+ "name": "walletAddr",
483
+ "type": "address",
484
+ "internalType": "address"
485
+ },
486
+ {
487
+ "name": "isin",
488
+ "type": "string",
489
+ "internalType": "string"
490
+ },
491
+ {
492
+ "name": "currency",
493
+ "type": "string",
494
+ "internalType": "string"
495
+ },
496
+ {
497
+ "name": "assetType",
498
+ "type": "uint8",
499
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
500
+ },
501
+ {
502
+ "name": "nav",
503
+ "type": "uint256",
504
+ "internalType": "uint256"
505
+ },
506
+ {
507
+ "name": "units",
508
+ "type": "uint256",
509
+ "internalType": "uint256"
510
+ },
511
+ {
512
+ "name": "valuationDate",
513
+ "type": "uint256",
514
+ "internalType": "uint256"
515
+ },
516
+ {
517
+ "name": "reportStart",
518
+ "type": "uint256",
519
+ "internalType": "uint256"
520
+ },
521
+ {
522
+ "name": "reportEnd",
523
+ "type": "uint256",
524
+ "internalType": "uint256"
525
+ },
526
+ {
527
+ "name": "lastTxHash",
528
+ "type": "string",
529
+ "internalType": "string"
530
+ }
531
+ ]
532
+ }
533
+ ],
534
+ "stateMutability": "view"
535
+ },
536
+ {
537
+ "type": "function",
538
+ "name": "getReserveAccountLastAttestationDataKey",
539
+ "inputs": [
540
+ {
541
+ "name": "isin_",
542
+ "type": "string",
543
+ "internalType": "string"
544
+ },
545
+ {
546
+ "name": "assetType_",
547
+ "type": "uint8",
548
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
549
+ }
550
+ ],
551
+ "outputs": [
552
+ {
553
+ "name": "",
554
+ "type": "bytes32",
555
+ "internalType": "bytes32"
556
+ }
557
+ ],
558
+ "stateMutability": "view"
559
+ },
560
+ {
561
+ "type": "function",
562
+ "name": "getReserveAttestationData",
563
+ "inputs": [
564
+ {
565
+ "name": "attestationDataKey_",
566
+ "type": "bytes32",
567
+ "internalType": "bytes32"
568
+ }
569
+ ],
570
+ "outputs": [
571
+ {
572
+ "name": "",
573
+ "type": "tuple",
574
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
575
+ "components": [
576
+ {
577
+ "name": "walletAddr",
578
+ "type": "address",
579
+ "internalType": "address"
580
+ },
581
+ {
582
+ "name": "isin",
583
+ "type": "string",
584
+ "internalType": "string"
585
+ },
586
+ {
587
+ "name": "currency",
588
+ "type": "string",
589
+ "internalType": "string"
590
+ },
591
+ {
592
+ "name": "assetType",
593
+ "type": "uint8",
594
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
595
+ },
596
+ {
597
+ "name": "nav",
598
+ "type": "uint256",
599
+ "internalType": "uint256"
600
+ },
601
+ {
602
+ "name": "units",
603
+ "type": "uint256",
604
+ "internalType": "uint256"
605
+ },
606
+ {
607
+ "name": "valuationDate",
608
+ "type": "uint256",
609
+ "internalType": "uint256"
610
+ },
611
+ {
612
+ "name": "reportStart",
613
+ "type": "uint256",
614
+ "internalType": "uint256"
615
+ },
616
+ {
617
+ "name": "reportEnd",
618
+ "type": "uint256",
619
+ "internalType": "uint256"
620
+ },
621
+ {
622
+ "name": "lastTxHash",
623
+ "type": "string",
624
+ "internalType": "string"
625
+ }
626
+ ]
627
+ }
628
+ ],
629
+ "stateMutability": "view"
630
+ },
631
+ {
632
+ "type": "function",
633
+ "name": "getReserveAttestationDataHash",
634
+ "inputs": [
635
+ {
636
+ "name": "attestationData_",
637
+ "type": "tuple",
638
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
639
+ "components": [
640
+ {
641
+ "name": "walletAddr",
642
+ "type": "address",
643
+ "internalType": "address"
644
+ },
645
+ {
646
+ "name": "isin",
647
+ "type": "string",
648
+ "internalType": "string"
649
+ },
650
+ {
651
+ "name": "currency",
652
+ "type": "string",
653
+ "internalType": "string"
654
+ },
655
+ {
656
+ "name": "assetType",
657
+ "type": "uint8",
658
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
659
+ },
660
+ {
661
+ "name": "nav",
662
+ "type": "uint256",
663
+ "internalType": "uint256"
664
+ },
665
+ {
666
+ "name": "units",
667
+ "type": "uint256",
668
+ "internalType": "uint256"
669
+ },
670
+ {
671
+ "name": "valuationDate",
672
+ "type": "uint256",
673
+ "internalType": "uint256"
674
+ },
675
+ {
676
+ "name": "reportStart",
677
+ "type": "uint256",
678
+ "internalType": "uint256"
679
+ },
680
+ {
681
+ "name": "reportEnd",
682
+ "type": "uint256",
683
+ "internalType": "uint256"
684
+ },
685
+ {
686
+ "name": "lastTxHash",
687
+ "type": "string",
688
+ "internalType": "string"
689
+ }
690
+ ]
691
+ }
692
+ ],
693
+ "outputs": [
694
+ {
695
+ "name": "",
696
+ "type": "bytes32",
697
+ "internalType": "bytes32"
698
+ }
699
+ ],
700
+ "stateMutability": "view"
701
+ },
702
+ {
703
+ "type": "function",
704
+ "name": "getWalletAddress",
705
+ "inputs": [
706
+ {
707
+ "name": "walletAddr_",
708
+ "type": "address",
709
+ "internalType": "address"
710
+ },
711
+ {
712
+ "name": "iban_",
713
+ "type": "string",
714
+ "internalType": "string"
715
+ },
716
+ {
717
+ "name": "currency_",
718
+ "type": "string",
719
+ "internalType": "string"
720
+ }
721
+ ],
722
+ "outputs": [
723
+ {
724
+ "name": "",
725
+ "type": "address",
726
+ "internalType": "address"
727
+ }
728
+ ],
729
+ "stateMutability": "view"
730
+ },
731
+ {
732
+ "type": "function",
733
+ "name": "maxAttestationAge",
734
+ "inputs": [],
735
+ "outputs": [
736
+ {
737
+ "name": "",
738
+ "type": "uint256",
739
+ "internalType": "uint256"
740
+ }
741
+ ],
742
+ "stateMutability": "view"
743
+ },
744
+ {
745
+ "type": "function",
746
+ "name": "maxAttestationHistory",
747
+ "inputs": [],
748
+ "outputs": [
749
+ {
750
+ "name": "",
751
+ "type": "uint8",
752
+ "internalType": "uint8"
753
+ }
754
+ ],
755
+ "stateMutability": "view"
756
+ },
757
+ {
758
+ "type": "function",
759
+ "name": "maxWindow",
760
+ "inputs": [],
761
+ "outputs": [
762
+ {
763
+ "name": "",
764
+ "type": "uint256",
765
+ "internalType": "uint256"
766
+ }
767
+ ],
768
+ "stateMutability": "view"
769
+ },
770
+ {
771
+ "type": "function",
772
+ "name": "minBalance",
773
+ "inputs": [],
774
+ "outputs": [
775
+ {
776
+ "name": "",
777
+ "type": "uint256",
778
+ "internalType": "uint256"
779
+ }
780
+ ],
781
+ "stateMutability": "view"
782
+ },
783
+ {
784
+ "type": "function",
785
+ "name": "minWindow",
786
+ "inputs": [],
787
+ "outputs": [
788
+ {
789
+ "name": "",
790
+ "type": "uint256",
791
+ "internalType": "uint256"
792
+ }
793
+ ],
794
+ "stateMutability": "view"
795
+ },
796
+ {
797
+ "type": "function",
798
+ "name": "setMaxAttestationAge",
799
+ "inputs": [
800
+ {
801
+ "name": "maxAge_",
802
+ "type": "uint256",
803
+ "internalType": "uint256"
804
+ }
805
+ ],
806
+ "outputs": [],
807
+ "stateMutability": "nonpayable"
808
+ },
809
+ {
810
+ "type": "function",
811
+ "name": "setMaxAttestationHistory",
812
+ "inputs": [
813
+ {
814
+ "name": "maxHistory_",
815
+ "type": "uint8",
816
+ "internalType": "uint8"
817
+ }
818
+ ],
819
+ "outputs": [],
820
+ "stateMutability": "nonpayable"
821
+ },
822
+ {
823
+ "type": "function",
824
+ "name": "updateAttestationWallet",
825
+ "inputs": [
826
+ {
827
+ "name": "walletAddress_",
828
+ "type": "address",
829
+ "internalType": "address"
830
+ },
831
+ {
832
+ "name": "iban_",
833
+ "type": "string",
834
+ "internalType": "string"
835
+ },
836
+ {
837
+ "name": "currency_",
838
+ "type": "string",
839
+ "internalType": "string"
840
+ }
841
+ ],
842
+ "outputs": [],
843
+ "stateMutability": "nonpayable"
844
+ },
845
+ {
846
+ "type": "function",
847
+ "name": "updateReserveAttestationWallet",
848
+ "inputs": [
849
+ {
850
+ "name": "walletAddress_",
851
+ "type": "address",
852
+ "internalType": "address"
853
+ },
854
+ {
855
+ "name": "isin_",
856
+ "type": "string",
857
+ "internalType": "string"
858
+ },
859
+ {
860
+ "name": "assetType_",
861
+ "type": "uint8",
862
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
863
+ }
864
+ ],
865
+ "outputs": [],
866
+ "stateMutability": "nonpayable"
867
+ },
868
+ {
869
+ "type": "event",
870
+ "name": "MaxAttestationAgeUpdated",
871
+ "inputs": [
872
+ {
873
+ "name": "newMaxAge",
874
+ "type": "uint256",
875
+ "indexed": true,
876
+ "internalType": "uint256"
877
+ },
878
+ {
879
+ "name": "oldMaxAge",
880
+ "type": "uint256",
881
+ "indexed": true,
882
+ "internalType": "uint256"
883
+ }
884
+ ],
885
+ "anonymous": false
886
+ },
887
+ {
888
+ "type": "event",
889
+ "name": "MaxAttestationHistoryUpdated",
890
+ "inputs": [
891
+ {
892
+ "name": "newMaxHistory",
893
+ "type": "uint8",
894
+ "indexed": true,
895
+ "internalType": "uint8"
896
+ },
897
+ {
898
+ "name": "oldMaxHistory",
899
+ "type": "uint8",
900
+ "indexed": true,
901
+ "internalType": "uint8"
902
+ }
903
+ ],
904
+ "anonymous": false
905
+ },
906
+ {
907
+ "type": "event",
908
+ "name": "P3DepositAttestationConfirmed",
909
+ "inputs": [
910
+ {
911
+ "name": "attestationData",
912
+ "type": "tuple",
913
+ "indexed": false,
914
+ "internalType": "struct IP3AttestationManager.AttestationData",
915
+ "components": [
916
+ {
917
+ "name": "walletAddr",
918
+ "type": "address",
919
+ "internalType": "address"
920
+ },
921
+ {
922
+ "name": "iban",
923
+ "type": "string",
924
+ "internalType": "string"
925
+ },
926
+ {
927
+ "name": "currency",
928
+ "type": "string",
929
+ "internalType": "string"
930
+ },
931
+ {
932
+ "name": "reportStart",
933
+ "type": "uint256",
934
+ "internalType": "uint256"
935
+ },
936
+ {
937
+ "name": "reportEnd",
938
+ "type": "uint256",
939
+ "internalType": "uint256"
940
+ },
941
+ {
942
+ "name": "balance",
943
+ "type": "uint256",
944
+ "internalType": "uint256"
945
+ },
946
+ {
947
+ "name": "lastTxHash",
948
+ "type": "string",
949
+ "internalType": "string"
950
+ }
951
+ ]
952
+ }
953
+ ],
954
+ "anonymous": false
955
+ },
956
+ {
957
+ "type": "event",
958
+ "name": "P3DepositAttestationWalletUpdated",
959
+ "inputs": [
960
+ {
961
+ "name": "accountAttestationKey",
962
+ "type": "bytes32",
963
+ "indexed": true,
964
+ "internalType": "bytes32"
965
+ },
966
+ {
967
+ "name": "newWalletAddress",
968
+ "type": "address",
969
+ "indexed": true,
970
+ "internalType": "address"
971
+ },
972
+ {
973
+ "name": "oldWalletAddress",
974
+ "type": "address",
975
+ "indexed": true,
976
+ "internalType": "address"
977
+ }
978
+ ],
979
+ "anonymous": false
980
+ },
981
+ {
982
+ "type": "event",
983
+ "name": "P3ReserveAttestationConfirmed",
984
+ "inputs": [
985
+ {
986
+ "name": "attestationData",
987
+ "type": "tuple",
988
+ "indexed": false,
989
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
990
+ "components": [
991
+ {
992
+ "name": "walletAddr",
993
+ "type": "address",
994
+ "internalType": "address"
995
+ },
996
+ {
997
+ "name": "isin",
998
+ "type": "string",
999
+ "internalType": "string"
1000
+ },
1001
+ {
1002
+ "name": "currency",
1003
+ "type": "string",
1004
+ "internalType": "string"
1005
+ },
1006
+ {
1007
+ "name": "assetType",
1008
+ "type": "uint8",
1009
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
1010
+ },
1011
+ {
1012
+ "name": "nav",
1013
+ "type": "uint256",
1014
+ "internalType": "uint256"
1015
+ },
1016
+ {
1017
+ "name": "units",
1018
+ "type": "uint256",
1019
+ "internalType": "uint256"
1020
+ },
1021
+ {
1022
+ "name": "valuationDate",
1023
+ "type": "uint256",
1024
+ "internalType": "uint256"
1025
+ },
1026
+ {
1027
+ "name": "reportStart",
1028
+ "type": "uint256",
1029
+ "internalType": "uint256"
1030
+ },
1031
+ {
1032
+ "name": "reportEnd",
1033
+ "type": "uint256",
1034
+ "internalType": "uint256"
1035
+ },
1036
+ {
1037
+ "name": "lastTxHash",
1038
+ "type": "string",
1039
+ "internalType": "string"
1040
+ }
1041
+ ]
1042
+ }
1043
+ ],
1044
+ "anonymous": false
1045
+ },
1046
+ {
1047
+ "type": "event",
1048
+ "name": "P3ReserveAttestationWalletUpdated",
1049
+ "inputs": [
1050
+ {
1051
+ "name": "reserveAttestationKey",
1052
+ "type": "bytes32",
1053
+ "indexed": true,
1054
+ "internalType": "bytes32"
1055
+ },
1056
+ {
1057
+ "name": "newWalletAddress",
1058
+ "type": "address",
1059
+ "indexed": true,
1060
+ "internalType": "address"
1061
+ },
1062
+ {
1063
+ "name": "oldWalletAddress",
1064
+ "type": "address",
1065
+ "indexed": true,
1066
+ "internalType": "address"
1067
+ }
1068
+ ],
1069
+ "anonymous": false
1070
+ },
1071
+ {
1072
+ "type": "error",
1073
+ "name": "P3AttestationManagerBalanceTooLow",
1074
+ "inputs": [
1075
+ {
1076
+ "name": "balance",
1077
+ "type": "uint256",
1078
+ "internalType": "uint256"
1079
+ }
1080
+ ]
1081
+ },
1082
+ {
1083
+ "type": "error",
1084
+ "name": "P3AttestationManagerDuplicateLastTxHash",
1085
+ "inputs": [
1086
+ {
1087
+ "name": "lastTxHash",
1088
+ "type": "string",
1089
+ "internalType": "string"
1090
+ }
1091
+ ]
1092
+ },
1093
+ {
1094
+ "type": "error",
1095
+ "name": "P3AttestationManagerInvalidAttestationSigner",
1096
+ "inputs": [
1097
+ {
1098
+ "name": "signer",
1099
+ "type": "address",
1100
+ "internalType": "address"
1101
+ },
1102
+ {
1103
+ "name": "attestationHash",
1104
+ "type": "bytes32",
1105
+ "internalType": "bytes32"
1106
+ },
1107
+ {
1108
+ "name": "sig",
1109
+ "type": "bytes",
1110
+ "internalType": "bytes"
1111
+ }
1112
+ ]
1113
+ },
1114
+ {
1115
+ "type": "error",
1116
+ "name": "P3AttestationManagerInvalidMaxAge",
1117
+ "inputs": []
1118
+ },
1119
+ {
1120
+ "type": "error",
1121
+ "name": "P3AttestationManagerInvalidReport",
1122
+ "inputs": [
1123
+ {
1124
+ "name": "attestationData",
1125
+ "type": "tuple",
1126
+ "internalType": "struct IP3AttestationManager.AttestationData",
1127
+ "components": [
1128
+ {
1129
+ "name": "walletAddr",
1130
+ "type": "address",
1131
+ "internalType": "address"
1132
+ },
1133
+ {
1134
+ "name": "iban",
1135
+ "type": "string",
1136
+ "internalType": "string"
1137
+ },
1138
+ {
1139
+ "name": "currency",
1140
+ "type": "string",
1141
+ "internalType": "string"
1142
+ },
1143
+ {
1144
+ "name": "reportStart",
1145
+ "type": "uint256",
1146
+ "internalType": "uint256"
1147
+ },
1148
+ {
1149
+ "name": "reportEnd",
1150
+ "type": "uint256",
1151
+ "internalType": "uint256"
1152
+ },
1153
+ {
1154
+ "name": "balance",
1155
+ "type": "uint256",
1156
+ "internalType": "uint256"
1157
+ },
1158
+ {
1159
+ "name": "lastTxHash",
1160
+ "type": "string",
1161
+ "internalType": "string"
1162
+ }
1163
+ ]
1164
+ }
1165
+ ]
1166
+ },
1167
+ {
1168
+ "type": "error",
1169
+ "name": "P3AttestationManagerInvalidReserveAttestationSigner",
1170
+ "inputs": [
1171
+ {
1172
+ "name": "signer",
1173
+ "type": "address",
1174
+ "internalType": "address"
1175
+ },
1176
+ {
1177
+ "name": "attestationHash",
1178
+ "type": "bytes32",
1179
+ "internalType": "bytes32"
1180
+ },
1181
+ {
1182
+ "name": "sig",
1183
+ "type": "bytes",
1184
+ "internalType": "bytes"
1185
+ }
1186
+ ]
1187
+ },
1188
+ {
1189
+ "type": "error",
1190
+ "name": "P3AttestationManagerInvalidReserveReport",
1191
+ "inputs": [
1192
+ {
1193
+ "name": "attestationData",
1194
+ "type": "tuple",
1195
+ "internalType": "struct IP3AttestationManager.ReserveAttestationData",
1196
+ "components": [
1197
+ {
1198
+ "name": "walletAddr",
1199
+ "type": "address",
1200
+ "internalType": "address"
1201
+ },
1202
+ {
1203
+ "name": "isin",
1204
+ "type": "string",
1205
+ "internalType": "string"
1206
+ },
1207
+ {
1208
+ "name": "currency",
1209
+ "type": "string",
1210
+ "internalType": "string"
1211
+ },
1212
+ {
1213
+ "name": "assetType",
1214
+ "type": "uint8",
1215
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
1216
+ },
1217
+ {
1218
+ "name": "nav",
1219
+ "type": "uint256",
1220
+ "internalType": "uint256"
1221
+ },
1222
+ {
1223
+ "name": "units",
1224
+ "type": "uint256",
1225
+ "internalType": "uint256"
1226
+ },
1227
+ {
1228
+ "name": "valuationDate",
1229
+ "type": "uint256",
1230
+ "internalType": "uint256"
1231
+ },
1232
+ {
1233
+ "name": "reportStart",
1234
+ "type": "uint256",
1235
+ "internalType": "uint256"
1236
+ },
1237
+ {
1238
+ "name": "reportEnd",
1239
+ "type": "uint256",
1240
+ "internalType": "uint256"
1241
+ },
1242
+ {
1243
+ "name": "lastTxHash",
1244
+ "type": "string",
1245
+ "internalType": "string"
1246
+ }
1247
+ ]
1248
+ }
1249
+ ]
1250
+ },
1251
+ {
1252
+ "type": "error",
1253
+ "name": "P3AttestationManagerInvalidReserveWallet",
1254
+ "inputs": [
1255
+ {
1256
+ "name": "isin",
1257
+ "type": "string",
1258
+ "internalType": "string"
1259
+ },
1260
+ {
1261
+ "name": "assetType",
1262
+ "type": "uint8",
1263
+ "internalType": "enum IP3AttestationManager.P3ReserveAssetType"
1264
+ }
1265
+ ]
1266
+ },
1267
+ {
1268
+ "type": "error",
1269
+ "name": "P3AttestationManagerInvalidWallet",
1270
+ "inputs": [
1271
+ {
1272
+ "name": "iban",
1273
+ "type": "string",
1274
+ "internalType": "string"
1275
+ },
1276
+ {
1277
+ "name": "currency",
1278
+ "type": "string",
1279
+ "internalType": "string"
1280
+ }
1281
+ ]
1282
+ },
1283
+ {
1284
+ "type": "error",
1285
+ "name": "P3AttestationManagerInvalidWindowRange",
1286
+ "inputs": [
1287
+ {
1288
+ "name": "minWindow",
1289
+ "type": "uint256",
1290
+ "internalType": "uint256"
1291
+ },
1292
+ {
1293
+ "name": "maxWindow",
1294
+ "type": "uint256",
1295
+ "internalType": "uint256"
1296
+ }
1297
+ ]
1298
+ },
1299
+ {
1300
+ "type": "error",
1301
+ "name": "P3AttestationManagerPermissionsZeroAddress",
1302
+ "inputs": []
1303
+ },
1304
+ {
1305
+ "type": "error",
1306
+ "name": "P3AttestationManagerReserveNavTooLow",
1307
+ "inputs": [
1308
+ {
1309
+ "name": "nav",
1310
+ "type": "uint256",
1311
+ "internalType": "uint256"
1312
+ }
1313
+ ]
1314
+ },
1315
+ {
1316
+ "type": "error",
1317
+ "name": "P3AttestationManagerStaleAttestation",
1318
+ "inputs": [
1319
+ {
1320
+ "name": "walletAddr",
1321
+ "type": "address",
1322
+ "internalType": "address"
1323
+ },
1324
+ {
1325
+ "name": "attestationAge",
1326
+ "type": "uint256",
1327
+ "internalType": "uint256"
1328
+ },
1329
+ {
1330
+ "name": "maxAge",
1331
+ "type": "uint256",
1332
+ "internalType": "uint256"
1333
+ }
1334
+ ]
1335
+ },
1336
+ {
1337
+ "type": "error",
1338
+ "name": "P3AttestationManagerWalletZeroAddress",
1339
+ "inputs": []
1340
+ },
1341
+ {
1342
+ "type": "error",
1343
+ "name": "P3AttestationManagerZeroUnits",
1344
+ "inputs": []
1345
+ }
1346
+ ];
1347
+ export default abi;