@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,1104 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export declare const abi: [
3
+ {
4
+ "type": "function",
5
+ "name": "addIBAN",
6
+ "inputs": [
7
+ {
8
+ "name": "iban",
9
+ "type": "string",
10
+ "internalType": "string"
11
+ }
12
+ ],
13
+ "outputs": [],
14
+ "stateMutability": "nonpayable"
15
+ },
16
+ {
17
+ "type": "function",
18
+ "name": "allowance",
19
+ "inputs": [
20
+ {
21
+ "name": "owner",
22
+ "type": "address",
23
+ "internalType": "address"
24
+ },
25
+ {
26
+ "name": "spender",
27
+ "type": "address",
28
+ "internalType": "address"
29
+ }
30
+ ],
31
+ "outputs": [
32
+ {
33
+ "name": "",
34
+ "type": "uint256",
35
+ "internalType": "uint256"
36
+ }
37
+ ],
38
+ "stateMutability": "view"
39
+ },
40
+ {
41
+ "type": "function",
42
+ "name": "approve",
43
+ "inputs": [
44
+ {
45
+ "name": "spender",
46
+ "type": "address",
47
+ "internalType": "address"
48
+ },
49
+ {
50
+ "name": "amount",
51
+ "type": "uint256",
52
+ "internalType": "uint256"
53
+ }
54
+ ],
55
+ "outputs": [
56
+ {
57
+ "name": "",
58
+ "type": "bool",
59
+ "internalType": "bool"
60
+ }
61
+ ],
62
+ "stateMutability": "nonpayable"
63
+ },
64
+ {
65
+ "type": "function",
66
+ "name": "balanceOf",
67
+ "inputs": [
68
+ {
69
+ "name": "account",
70
+ "type": "address",
71
+ "internalType": "address"
72
+ }
73
+ ],
74
+ "outputs": [
75
+ {
76
+ "name": "",
77
+ "type": "uint256",
78
+ "internalType": "uint256"
79
+ }
80
+ ],
81
+ "stateMutability": "view"
82
+ },
83
+ {
84
+ "type": "function",
85
+ "name": "batchBurn",
86
+ "inputs": [
87
+ {
88
+ "name": "_userAddresses",
89
+ "type": "address[]",
90
+ "internalType": "address[]"
91
+ },
92
+ {
93
+ "name": "_amounts",
94
+ "type": "uint256[]",
95
+ "internalType": "uint256[]"
96
+ }
97
+ ],
98
+ "outputs": [],
99
+ "stateMutability": "nonpayable"
100
+ },
101
+ {
102
+ "type": "function",
103
+ "name": "batchForcedTransfer",
104
+ "inputs": [
105
+ {
106
+ "name": "_fromList",
107
+ "type": "address[]",
108
+ "internalType": "address[]"
109
+ },
110
+ {
111
+ "name": "_toList",
112
+ "type": "address[]",
113
+ "internalType": "address[]"
114
+ },
115
+ {
116
+ "name": "_amounts",
117
+ "type": "uint256[]",
118
+ "internalType": "uint256[]"
119
+ }
120
+ ],
121
+ "outputs": [],
122
+ "stateMutability": "nonpayable"
123
+ },
124
+ {
125
+ "type": "function",
126
+ "name": "batchFreezePartialTokens",
127
+ "inputs": [
128
+ {
129
+ "name": "_userAddresses",
130
+ "type": "address[]",
131
+ "internalType": "address[]"
132
+ },
133
+ {
134
+ "name": "_amounts",
135
+ "type": "uint256[]",
136
+ "internalType": "uint256[]"
137
+ }
138
+ ],
139
+ "outputs": [],
140
+ "stateMutability": "nonpayable"
141
+ },
142
+ {
143
+ "type": "function",
144
+ "name": "batchMint",
145
+ "inputs": [
146
+ {
147
+ "name": "_toList",
148
+ "type": "address[]",
149
+ "internalType": "address[]"
150
+ },
151
+ {
152
+ "name": "_amounts",
153
+ "type": "uint256[]",
154
+ "internalType": "uint256[]"
155
+ }
156
+ ],
157
+ "outputs": [],
158
+ "stateMutability": "nonpayable"
159
+ },
160
+ {
161
+ "type": "function",
162
+ "name": "batchSetAddressFrozen",
163
+ "inputs": [
164
+ {
165
+ "name": "_userAddresses",
166
+ "type": "address[]",
167
+ "internalType": "address[]"
168
+ },
169
+ {
170
+ "name": "_freeze",
171
+ "type": "bool[]",
172
+ "internalType": "bool[]"
173
+ }
174
+ ],
175
+ "outputs": [],
176
+ "stateMutability": "nonpayable"
177
+ },
178
+ {
179
+ "type": "function",
180
+ "name": "batchTransfer",
181
+ "inputs": [
182
+ {
183
+ "name": "_toList",
184
+ "type": "address[]",
185
+ "internalType": "address[]"
186
+ },
187
+ {
188
+ "name": "_amounts",
189
+ "type": "uint256[]",
190
+ "internalType": "uint256[]"
191
+ }
192
+ ],
193
+ "outputs": [],
194
+ "stateMutability": "nonpayable"
195
+ },
196
+ {
197
+ "type": "function",
198
+ "name": "batchUnfreezePartialTokens",
199
+ "inputs": [
200
+ {
201
+ "name": "_userAddresses",
202
+ "type": "address[]",
203
+ "internalType": "address[]"
204
+ },
205
+ {
206
+ "name": "_amounts",
207
+ "type": "uint256[]",
208
+ "internalType": "uint256[]"
209
+ }
210
+ ],
211
+ "outputs": [],
212
+ "stateMutability": "nonpayable"
213
+ },
214
+ {
215
+ "type": "function",
216
+ "name": "burn",
217
+ "inputs": [
218
+ {
219
+ "name": "_userAddress",
220
+ "type": "address",
221
+ "internalType": "address"
222
+ },
223
+ {
224
+ "name": "_amount",
225
+ "type": "uint256",
226
+ "internalType": "uint256"
227
+ }
228
+ ],
229
+ "outputs": [],
230
+ "stateMutability": "nonpayable"
231
+ },
232
+ {
233
+ "type": "function",
234
+ "name": "compliance",
235
+ "inputs": [],
236
+ "outputs": [
237
+ {
238
+ "name": "",
239
+ "type": "address",
240
+ "internalType": "contract IModularCompliance"
241
+ }
242
+ ],
243
+ "stateMutability": "view"
244
+ },
245
+ {
246
+ "type": "function",
247
+ "name": "decimals",
248
+ "inputs": [],
249
+ "outputs": [
250
+ {
251
+ "name": "",
252
+ "type": "uint8",
253
+ "internalType": "uint8"
254
+ }
255
+ ],
256
+ "stateMutability": "view"
257
+ },
258
+ {
259
+ "type": "function",
260
+ "name": "forcedTransfer",
261
+ "inputs": [
262
+ {
263
+ "name": "_from",
264
+ "type": "address",
265
+ "internalType": "address"
266
+ },
267
+ {
268
+ "name": "_to",
269
+ "type": "address",
270
+ "internalType": "address"
271
+ },
272
+ {
273
+ "name": "_amount",
274
+ "type": "uint256",
275
+ "internalType": "uint256"
276
+ }
277
+ ],
278
+ "outputs": [
279
+ {
280
+ "name": "",
281
+ "type": "bool",
282
+ "internalType": "bool"
283
+ }
284
+ ],
285
+ "stateMutability": "nonpayable"
286
+ },
287
+ {
288
+ "type": "function",
289
+ "name": "freezePartialTokens",
290
+ "inputs": [
291
+ {
292
+ "name": "_userAddress",
293
+ "type": "address",
294
+ "internalType": "address"
295
+ },
296
+ {
297
+ "name": "_amount",
298
+ "type": "uint256",
299
+ "internalType": "uint256"
300
+ }
301
+ ],
302
+ "outputs": [],
303
+ "stateMutability": "nonpayable"
304
+ },
305
+ {
306
+ "type": "function",
307
+ "name": "getCurrency",
308
+ "inputs": [],
309
+ "outputs": [
310
+ {
311
+ "name": "",
312
+ "type": "string",
313
+ "internalType": "string"
314
+ }
315
+ ],
316
+ "stateMutability": "view"
317
+ },
318
+ {
319
+ "type": "function",
320
+ "name": "getDescription",
321
+ "inputs": [],
322
+ "outputs": [
323
+ {
324
+ "name": "",
325
+ "type": "string",
326
+ "internalType": "string"
327
+ }
328
+ ],
329
+ "stateMutability": "view"
330
+ },
331
+ {
332
+ "type": "function",
333
+ "name": "getFrozenTokens",
334
+ "inputs": [
335
+ {
336
+ "name": "_userAddress",
337
+ "type": "address",
338
+ "internalType": "address"
339
+ }
340
+ ],
341
+ "outputs": [
342
+ {
343
+ "name": "",
344
+ "type": "uint256",
345
+ "internalType": "uint256"
346
+ }
347
+ ],
348
+ "stateMutability": "view"
349
+ },
350
+ {
351
+ "type": "function",
352
+ "name": "getIBANs",
353
+ "inputs": [],
354
+ "outputs": [
355
+ {
356
+ "name": "",
357
+ "type": "string[]",
358
+ "internalType": "string[]"
359
+ }
360
+ ],
361
+ "stateMutability": "view"
362
+ },
363
+ {
364
+ "type": "function",
365
+ "name": "getP3TokenType",
366
+ "inputs": [],
367
+ "outputs": [
368
+ {
369
+ "name": "",
370
+ "type": "uint8",
371
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
372
+ }
373
+ ],
374
+ "stateMutability": "view"
375
+ },
376
+ {
377
+ "type": "function",
378
+ "name": "identityRegistry",
379
+ "inputs": [],
380
+ "outputs": [
381
+ {
382
+ "name": "",
383
+ "type": "address",
384
+ "internalType": "contract IIdentityRegistry"
385
+ }
386
+ ],
387
+ "stateMutability": "view"
388
+ },
389
+ {
390
+ "type": "function",
391
+ "name": "initializeEIP3009",
392
+ "inputs": [
393
+ {
394
+ "name": "agenticRegistry_",
395
+ "type": "address",
396
+ "internalType": "address"
397
+ }
398
+ ],
399
+ "outputs": [],
400
+ "stateMutability": "nonpayable"
401
+ },
402
+ {
403
+ "type": "function",
404
+ "name": "isFrozen",
405
+ "inputs": [
406
+ {
407
+ "name": "_userAddress",
408
+ "type": "address",
409
+ "internalType": "address"
410
+ }
411
+ ],
412
+ "outputs": [
413
+ {
414
+ "name": "",
415
+ "type": "bool",
416
+ "internalType": "bool"
417
+ }
418
+ ],
419
+ "stateMutability": "view"
420
+ },
421
+ {
422
+ "type": "function",
423
+ "name": "mint",
424
+ "inputs": [
425
+ {
426
+ "name": "_to",
427
+ "type": "address",
428
+ "internalType": "address"
429
+ },
430
+ {
431
+ "name": "_amount",
432
+ "type": "uint256",
433
+ "internalType": "uint256"
434
+ }
435
+ ],
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable"
438
+ },
439
+ {
440
+ "type": "function",
441
+ "name": "name",
442
+ "inputs": [],
443
+ "outputs": [
444
+ {
445
+ "name": "",
446
+ "type": "string",
447
+ "internalType": "string"
448
+ }
449
+ ],
450
+ "stateMutability": "view"
451
+ },
452
+ {
453
+ "type": "function",
454
+ "name": "onchainID",
455
+ "inputs": [],
456
+ "outputs": [
457
+ {
458
+ "name": "",
459
+ "type": "address",
460
+ "internalType": "address"
461
+ }
462
+ ],
463
+ "stateMutability": "view"
464
+ },
465
+ {
466
+ "type": "function",
467
+ "name": "pause",
468
+ "inputs": [],
469
+ "outputs": [],
470
+ "stateMutability": "nonpayable"
471
+ },
472
+ {
473
+ "type": "function",
474
+ "name": "paused",
475
+ "inputs": [],
476
+ "outputs": [
477
+ {
478
+ "name": "",
479
+ "type": "bool",
480
+ "internalType": "bool"
481
+ }
482
+ ],
483
+ "stateMutability": "view"
484
+ },
485
+ {
486
+ "type": "function",
487
+ "name": "recoveryAddress",
488
+ "inputs": [
489
+ {
490
+ "name": "_lostWallet",
491
+ "type": "address",
492
+ "internalType": "address"
493
+ },
494
+ {
495
+ "name": "_newWallet",
496
+ "type": "address",
497
+ "internalType": "address"
498
+ },
499
+ {
500
+ "name": "_investorOnchainID",
501
+ "type": "address",
502
+ "internalType": "address"
503
+ }
504
+ ],
505
+ "outputs": [
506
+ {
507
+ "name": "",
508
+ "type": "bool",
509
+ "internalType": "bool"
510
+ }
511
+ ],
512
+ "stateMutability": "nonpayable"
513
+ },
514
+ {
515
+ "type": "function",
516
+ "name": "removeIBAN",
517
+ "inputs": [
518
+ {
519
+ "name": "iban",
520
+ "type": "string",
521
+ "internalType": "string"
522
+ }
523
+ ],
524
+ "outputs": [],
525
+ "stateMutability": "nonpayable"
526
+ },
527
+ {
528
+ "type": "function",
529
+ "name": "setAddressFrozen",
530
+ "inputs": [
531
+ {
532
+ "name": "_userAddress",
533
+ "type": "address",
534
+ "internalType": "address"
535
+ },
536
+ {
537
+ "name": "_freeze",
538
+ "type": "bool",
539
+ "internalType": "bool"
540
+ }
541
+ ],
542
+ "outputs": [],
543
+ "stateMutability": "nonpayable"
544
+ },
545
+ {
546
+ "type": "function",
547
+ "name": "setCompliance",
548
+ "inputs": [
549
+ {
550
+ "name": "_compliance",
551
+ "type": "address",
552
+ "internalType": "address"
553
+ }
554
+ ],
555
+ "outputs": [],
556
+ "stateMutability": "nonpayable"
557
+ },
558
+ {
559
+ "type": "function",
560
+ "name": "setIdentityRegistry",
561
+ "inputs": [
562
+ {
563
+ "name": "_identityRegistry",
564
+ "type": "address",
565
+ "internalType": "address"
566
+ }
567
+ ],
568
+ "outputs": [],
569
+ "stateMutability": "nonpayable"
570
+ },
571
+ {
572
+ "type": "function",
573
+ "name": "setInitData",
574
+ "inputs": [
575
+ {
576
+ "name": "initData",
577
+ "type": "tuple",
578
+ "internalType": "struct IP3DepositToken.FDImmutableData",
579
+ "components": [
580
+ {
581
+ "name": "currency",
582
+ "type": "string",
583
+ "internalType": "string"
584
+ },
585
+ {
586
+ "name": "description",
587
+ "type": "string",
588
+ "internalType": "string"
589
+ }
590
+ ]
591
+ }
592
+ ],
593
+ "outputs": [],
594
+ "stateMutability": "nonpayable"
595
+ },
596
+ {
597
+ "type": "function",
598
+ "name": "setName",
599
+ "inputs": [
600
+ {
601
+ "name": "_name",
602
+ "type": "string",
603
+ "internalType": "string"
604
+ }
605
+ ],
606
+ "outputs": [],
607
+ "stateMutability": "nonpayable"
608
+ },
609
+ {
610
+ "type": "function",
611
+ "name": "setOnchainID",
612
+ "inputs": [
613
+ {
614
+ "name": "_onchainID",
615
+ "type": "address",
616
+ "internalType": "address"
617
+ }
618
+ ],
619
+ "outputs": [],
620
+ "stateMutability": "nonpayable"
621
+ },
622
+ {
623
+ "type": "function",
624
+ "name": "setP3TokenType",
625
+ "inputs": [
626
+ {
627
+ "name": "newTokenType_",
628
+ "type": "uint8",
629
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
630
+ }
631
+ ],
632
+ "outputs": [],
633
+ "stateMutability": "nonpayable"
634
+ },
635
+ {
636
+ "type": "function",
637
+ "name": "setSymbol",
638
+ "inputs": [
639
+ {
640
+ "name": "_symbol",
641
+ "type": "string",
642
+ "internalType": "string"
643
+ }
644
+ ],
645
+ "outputs": [],
646
+ "stateMutability": "nonpayable"
647
+ },
648
+ {
649
+ "type": "function",
650
+ "name": "symbol",
651
+ "inputs": [],
652
+ "outputs": [
653
+ {
654
+ "name": "",
655
+ "type": "string",
656
+ "internalType": "string"
657
+ }
658
+ ],
659
+ "stateMutability": "view"
660
+ },
661
+ {
662
+ "type": "function",
663
+ "name": "totalSupply",
664
+ "inputs": [],
665
+ "outputs": [
666
+ {
667
+ "name": "",
668
+ "type": "uint256",
669
+ "internalType": "uint256"
670
+ }
671
+ ],
672
+ "stateMutability": "view"
673
+ },
674
+ {
675
+ "type": "function",
676
+ "name": "transfer",
677
+ "inputs": [
678
+ {
679
+ "name": "to",
680
+ "type": "address",
681
+ "internalType": "address"
682
+ },
683
+ {
684
+ "name": "amount",
685
+ "type": "uint256",
686
+ "internalType": "uint256"
687
+ }
688
+ ],
689
+ "outputs": [
690
+ {
691
+ "name": "",
692
+ "type": "bool",
693
+ "internalType": "bool"
694
+ }
695
+ ],
696
+ "stateMutability": "nonpayable"
697
+ },
698
+ {
699
+ "type": "function",
700
+ "name": "transferFrom",
701
+ "inputs": [
702
+ {
703
+ "name": "from",
704
+ "type": "address",
705
+ "internalType": "address"
706
+ },
707
+ {
708
+ "name": "to",
709
+ "type": "address",
710
+ "internalType": "address"
711
+ },
712
+ {
713
+ "name": "amount",
714
+ "type": "uint256",
715
+ "internalType": "uint256"
716
+ }
717
+ ],
718
+ "outputs": [
719
+ {
720
+ "name": "",
721
+ "type": "bool",
722
+ "internalType": "bool"
723
+ }
724
+ ],
725
+ "stateMutability": "nonpayable"
726
+ },
727
+ {
728
+ "type": "function",
729
+ "name": "unfreezePartialTokens",
730
+ "inputs": [
731
+ {
732
+ "name": "_userAddress",
733
+ "type": "address",
734
+ "internalType": "address"
735
+ },
736
+ {
737
+ "name": "_amount",
738
+ "type": "uint256",
739
+ "internalType": "uint256"
740
+ }
741
+ ],
742
+ "outputs": [],
743
+ "stateMutability": "nonpayable"
744
+ },
745
+ {
746
+ "type": "function",
747
+ "name": "unpause",
748
+ "inputs": [],
749
+ "outputs": [],
750
+ "stateMutability": "nonpayable"
751
+ },
752
+ {
753
+ "type": "function",
754
+ "name": "version",
755
+ "inputs": [],
756
+ "outputs": [
757
+ {
758
+ "name": "",
759
+ "type": "string",
760
+ "internalType": "string"
761
+ }
762
+ ],
763
+ "stateMutability": "view"
764
+ },
765
+ {
766
+ "type": "event",
767
+ "name": "AddressFrozen",
768
+ "inputs": [
769
+ {
770
+ "name": "_userAddress",
771
+ "type": "address",
772
+ "indexed": true,
773
+ "internalType": "address"
774
+ },
775
+ {
776
+ "name": "_isFrozen",
777
+ "type": "bool",
778
+ "indexed": true,
779
+ "internalType": "bool"
780
+ },
781
+ {
782
+ "name": "_owner",
783
+ "type": "address",
784
+ "indexed": true,
785
+ "internalType": "address"
786
+ }
787
+ ],
788
+ "anonymous": false
789
+ },
790
+ {
791
+ "type": "event",
792
+ "name": "Approval",
793
+ "inputs": [
794
+ {
795
+ "name": "owner",
796
+ "type": "address",
797
+ "indexed": true,
798
+ "internalType": "address"
799
+ },
800
+ {
801
+ "name": "spender",
802
+ "type": "address",
803
+ "indexed": true,
804
+ "internalType": "address"
805
+ },
806
+ {
807
+ "name": "value",
808
+ "type": "uint256",
809
+ "indexed": false,
810
+ "internalType": "uint256"
811
+ }
812
+ ],
813
+ "anonymous": false
814
+ },
815
+ {
816
+ "type": "event",
817
+ "name": "ComplianceAdded",
818
+ "inputs": [
819
+ {
820
+ "name": "_compliance",
821
+ "type": "address",
822
+ "indexed": true,
823
+ "internalType": "address"
824
+ }
825
+ ],
826
+ "anonymous": false
827
+ },
828
+ {
829
+ "type": "event",
830
+ "name": "EIP3009Initialized",
831
+ "inputs": [
832
+ {
833
+ "name": "agenticRegistry",
834
+ "type": "address",
835
+ "indexed": true,
836
+ "internalType": "address"
837
+ }
838
+ ],
839
+ "anonymous": false
840
+ },
841
+ {
842
+ "type": "event",
843
+ "name": "IBANAdded",
844
+ "inputs": [
845
+ {
846
+ "name": "iban",
847
+ "type": "string",
848
+ "indexed": false,
849
+ "internalType": "string"
850
+ }
851
+ ],
852
+ "anonymous": false
853
+ },
854
+ {
855
+ "type": "event",
856
+ "name": "IBANRemoved",
857
+ "inputs": [
858
+ {
859
+ "name": "iban",
860
+ "type": "string",
861
+ "indexed": false,
862
+ "internalType": "string"
863
+ }
864
+ ],
865
+ "anonymous": false
866
+ },
867
+ {
868
+ "type": "event",
869
+ "name": "IdentityRegistryAdded",
870
+ "inputs": [
871
+ {
872
+ "name": "_identityRegistry",
873
+ "type": "address",
874
+ "indexed": true,
875
+ "internalType": "address"
876
+ }
877
+ ],
878
+ "anonymous": false
879
+ },
880
+ {
881
+ "type": "event",
882
+ "name": "Paused",
883
+ "inputs": [
884
+ {
885
+ "name": "_userAddress",
886
+ "type": "address",
887
+ "indexed": false,
888
+ "internalType": "address"
889
+ }
890
+ ],
891
+ "anonymous": false
892
+ },
893
+ {
894
+ "type": "event",
895
+ "name": "RecoverySuccess",
896
+ "inputs": [
897
+ {
898
+ "name": "_lostWallet",
899
+ "type": "address",
900
+ "indexed": true,
901
+ "internalType": "address"
902
+ },
903
+ {
904
+ "name": "_newWallet",
905
+ "type": "address",
906
+ "indexed": true,
907
+ "internalType": "address"
908
+ },
909
+ {
910
+ "name": "_investorOnchainID",
911
+ "type": "address",
912
+ "indexed": true,
913
+ "internalType": "address"
914
+ }
915
+ ],
916
+ "anonymous": false
917
+ },
918
+ {
919
+ "type": "event",
920
+ "name": "TokensFrozen",
921
+ "inputs": [
922
+ {
923
+ "name": "_userAddress",
924
+ "type": "address",
925
+ "indexed": true,
926
+ "internalType": "address"
927
+ },
928
+ {
929
+ "name": "_amount",
930
+ "type": "uint256",
931
+ "indexed": false,
932
+ "internalType": "uint256"
933
+ }
934
+ ],
935
+ "anonymous": false
936
+ },
937
+ {
938
+ "type": "event",
939
+ "name": "TokensUnfrozen",
940
+ "inputs": [
941
+ {
942
+ "name": "_userAddress",
943
+ "type": "address",
944
+ "indexed": true,
945
+ "internalType": "address"
946
+ },
947
+ {
948
+ "name": "_amount",
949
+ "type": "uint256",
950
+ "indexed": false,
951
+ "internalType": "uint256"
952
+ }
953
+ ],
954
+ "anonymous": false
955
+ },
956
+ {
957
+ "type": "event",
958
+ "name": "Transfer",
959
+ "inputs": [
960
+ {
961
+ "name": "from",
962
+ "type": "address",
963
+ "indexed": true,
964
+ "internalType": "address"
965
+ },
966
+ {
967
+ "name": "to",
968
+ "type": "address",
969
+ "indexed": true,
970
+ "internalType": "address"
971
+ },
972
+ {
973
+ "name": "value",
974
+ "type": "uint256",
975
+ "indexed": false,
976
+ "internalType": "uint256"
977
+ }
978
+ ],
979
+ "anonymous": false
980
+ },
981
+ {
982
+ "type": "event",
983
+ "name": "Unpaused",
984
+ "inputs": [
985
+ {
986
+ "name": "_userAddress",
987
+ "type": "address",
988
+ "indexed": false,
989
+ "internalType": "address"
990
+ }
991
+ ],
992
+ "anonymous": false
993
+ },
994
+ {
995
+ "type": "event",
996
+ "name": "UpdatedTokenInformation",
997
+ "inputs": [
998
+ {
999
+ "name": "_newName",
1000
+ "type": "string",
1001
+ "indexed": true,
1002
+ "internalType": "string"
1003
+ },
1004
+ {
1005
+ "name": "_newSymbol",
1006
+ "type": "string",
1007
+ "indexed": true,
1008
+ "internalType": "string"
1009
+ },
1010
+ {
1011
+ "name": "_newDecimals",
1012
+ "type": "uint8",
1013
+ "indexed": false,
1014
+ "internalType": "uint8"
1015
+ },
1016
+ {
1017
+ "name": "_newVersion",
1018
+ "type": "string",
1019
+ "indexed": false,
1020
+ "internalType": "string"
1021
+ },
1022
+ {
1023
+ "name": "_newOnchainID",
1024
+ "type": "address",
1025
+ "indexed": true,
1026
+ "internalType": "address"
1027
+ }
1028
+ ],
1029
+ "anonymous": false
1030
+ },
1031
+ {
1032
+ "type": "error",
1033
+ "name": "P3BasicTokenEIP3009AlreadyInitialized",
1034
+ "inputs": []
1035
+ },
1036
+ {
1037
+ "type": "error",
1038
+ "name": "P3BasicTokenInsufficientBalance",
1039
+ "inputs": []
1040
+ },
1041
+ {
1042
+ "type": "error",
1043
+ "name": "P3BasicTokenInvalidTokenType",
1044
+ "inputs": []
1045
+ },
1046
+ {
1047
+ "type": "error",
1048
+ "name": "P3BasicTokenOnlyOwnerOrAgent",
1049
+ "inputs": []
1050
+ },
1051
+ {
1052
+ "type": "error",
1053
+ "name": "P3BasicTokenTransferNotPossible",
1054
+ "inputs": []
1055
+ },
1056
+ {
1057
+ "type": "error",
1058
+ "name": "P3BasicTokenUnableToUpdateP3TokenType",
1059
+ "inputs": []
1060
+ },
1061
+ {
1062
+ "type": "error",
1063
+ "name": "P3BasicTokenWalletFrozen",
1064
+ "inputs": []
1065
+ },
1066
+ {
1067
+ "type": "error",
1068
+ "name": "P3DepositTokenCannotRemoveLastIBAN",
1069
+ "inputs": []
1070
+ },
1071
+ {
1072
+ "type": "error",
1073
+ "name": "P3DepositTokenEmptyCurrency",
1074
+ "inputs": []
1075
+ },
1076
+ {
1077
+ "type": "error",
1078
+ "name": "P3DepositTokenIBANAlreadyExists",
1079
+ "inputs": [
1080
+ {
1081
+ "name": "iban",
1082
+ "type": "string",
1083
+ "internalType": "string"
1084
+ }
1085
+ ]
1086
+ },
1087
+ {
1088
+ "type": "error",
1089
+ "name": "P3DepositTokenIBANNotFound",
1090
+ "inputs": [
1091
+ {
1092
+ "name": "iban",
1093
+ "type": "string",
1094
+ "internalType": "string"
1095
+ }
1096
+ ]
1097
+ },
1098
+ {
1099
+ "type": "error",
1100
+ "name": "P3DepositTokenUnableToUpdateInitData",
1101
+ "inputs": []
1102
+ }
1103
+ ] as const;
1104
+ export default abi;