@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,1163 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "function",
5
+ "name": "addReserveToken",
6
+ "inputs": [
7
+ {
8
+ "name": "token",
9
+ "type": "address",
10
+ "internalType": "address"
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": "getP3TokenType",
353
+ "inputs": [],
354
+ "outputs": [
355
+ {
356
+ "name": "",
357
+ "type": "uint8",
358
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
359
+ }
360
+ ],
361
+ "stateMutability": "view"
362
+ },
363
+ {
364
+ "type": "function",
365
+ "name": "getReserveTokens",
366
+ "inputs": [],
367
+ "outputs": [
368
+ {
369
+ "name": "",
370
+ "type": "address[]",
371
+ "internalType": "address[]"
372
+ }
373
+ ],
374
+ "stateMutability": "view"
375
+ },
376
+ {
377
+ "type": "function",
378
+ "name": "getTicker",
379
+ "inputs": [],
380
+ "outputs": [
381
+ {
382
+ "name": "",
383
+ "type": "string",
384
+ "internalType": "string"
385
+ }
386
+ ],
387
+ "stateMutability": "view"
388
+ },
389
+ {
390
+ "type": "function",
391
+ "name": "getYieldPaymentToken",
392
+ "inputs": [],
393
+ "outputs": [
394
+ {
395
+ "name": "",
396
+ "type": "address",
397
+ "internalType": "address"
398
+ }
399
+ ],
400
+ "stateMutability": "view"
401
+ },
402
+ {
403
+ "type": "function",
404
+ "name": "identityRegistry",
405
+ "inputs": [],
406
+ "outputs": [
407
+ {
408
+ "name": "",
409
+ "type": "address",
410
+ "internalType": "contract IIdentityRegistry"
411
+ }
412
+ ],
413
+ "stateMutability": "view"
414
+ },
415
+ {
416
+ "type": "function",
417
+ "name": "initializeEIP3009",
418
+ "inputs": [
419
+ {
420
+ "name": "agenticRegistry_",
421
+ "type": "address",
422
+ "internalType": "address"
423
+ }
424
+ ],
425
+ "outputs": [],
426
+ "stateMutability": "nonpayable"
427
+ },
428
+ {
429
+ "type": "function",
430
+ "name": "isFrozen",
431
+ "inputs": [
432
+ {
433
+ "name": "_userAddress",
434
+ "type": "address",
435
+ "internalType": "address"
436
+ }
437
+ ],
438
+ "outputs": [
439
+ {
440
+ "name": "",
441
+ "type": "bool",
442
+ "internalType": "bool"
443
+ }
444
+ ],
445
+ "stateMutability": "view"
446
+ },
447
+ {
448
+ "type": "function",
449
+ "name": "mint",
450
+ "inputs": [
451
+ {
452
+ "name": "_to",
453
+ "type": "address",
454
+ "internalType": "address"
455
+ },
456
+ {
457
+ "name": "_amount",
458
+ "type": "uint256",
459
+ "internalType": "uint256"
460
+ }
461
+ ],
462
+ "outputs": [],
463
+ "stateMutability": "nonpayable"
464
+ },
465
+ {
466
+ "type": "function",
467
+ "name": "name",
468
+ "inputs": [],
469
+ "outputs": [
470
+ {
471
+ "name": "",
472
+ "type": "string",
473
+ "internalType": "string"
474
+ }
475
+ ],
476
+ "stateMutability": "view"
477
+ },
478
+ {
479
+ "type": "function",
480
+ "name": "onchainID",
481
+ "inputs": [],
482
+ "outputs": [
483
+ {
484
+ "name": "",
485
+ "type": "address",
486
+ "internalType": "address"
487
+ }
488
+ ],
489
+ "stateMutability": "view"
490
+ },
491
+ {
492
+ "type": "function",
493
+ "name": "pause",
494
+ "inputs": [],
495
+ "outputs": [],
496
+ "stateMutability": "nonpayable"
497
+ },
498
+ {
499
+ "type": "function",
500
+ "name": "paused",
501
+ "inputs": [],
502
+ "outputs": [
503
+ {
504
+ "name": "",
505
+ "type": "bool",
506
+ "internalType": "bool"
507
+ }
508
+ ],
509
+ "stateMutability": "view"
510
+ },
511
+ {
512
+ "type": "function",
513
+ "name": "recoveryAddress",
514
+ "inputs": [
515
+ {
516
+ "name": "_lostWallet",
517
+ "type": "address",
518
+ "internalType": "address"
519
+ },
520
+ {
521
+ "name": "_newWallet",
522
+ "type": "address",
523
+ "internalType": "address"
524
+ },
525
+ {
526
+ "name": "_investorOnchainID",
527
+ "type": "address",
528
+ "internalType": "address"
529
+ }
530
+ ],
531
+ "outputs": [
532
+ {
533
+ "name": "",
534
+ "type": "bool",
535
+ "internalType": "bool"
536
+ }
537
+ ],
538
+ "stateMutability": "nonpayable"
539
+ },
540
+ {
541
+ "type": "function",
542
+ "name": "removeReserveToken",
543
+ "inputs": [
544
+ {
545
+ "name": "token",
546
+ "type": "address",
547
+ "internalType": "address"
548
+ }
549
+ ],
550
+ "outputs": [],
551
+ "stateMutability": "nonpayable"
552
+ },
553
+ {
554
+ "type": "function",
555
+ "name": "setAddressFrozen",
556
+ "inputs": [
557
+ {
558
+ "name": "_userAddress",
559
+ "type": "address",
560
+ "internalType": "address"
561
+ },
562
+ {
563
+ "name": "_freeze",
564
+ "type": "bool",
565
+ "internalType": "bool"
566
+ }
567
+ ],
568
+ "outputs": [],
569
+ "stateMutability": "nonpayable"
570
+ },
571
+ {
572
+ "type": "function",
573
+ "name": "setCompliance",
574
+ "inputs": [
575
+ {
576
+ "name": "_compliance",
577
+ "type": "address",
578
+ "internalType": "address"
579
+ }
580
+ ],
581
+ "outputs": [],
582
+ "stateMutability": "nonpayable"
583
+ },
584
+ {
585
+ "type": "function",
586
+ "name": "setIdentityRegistry",
587
+ "inputs": [
588
+ {
589
+ "name": "_identityRegistry",
590
+ "type": "address",
591
+ "internalType": "address"
592
+ }
593
+ ],
594
+ "outputs": [],
595
+ "stateMutability": "nonpayable"
596
+ },
597
+ {
598
+ "type": "function",
599
+ "name": "setInitData",
600
+ "inputs": [
601
+ {
602
+ "name": "initData",
603
+ "type": "tuple",
604
+ "internalType": "struct IP3StablecoinToken.FSImmutableData",
605
+ "components": [
606
+ {
607
+ "name": "ticker",
608
+ "type": "string",
609
+ "internalType": "string"
610
+ },
611
+ {
612
+ "name": "currency",
613
+ "type": "string",
614
+ "internalType": "string"
615
+ },
616
+ {
617
+ "name": "description",
618
+ "type": "string",
619
+ "internalType": "string"
620
+ }
621
+ ]
622
+ }
623
+ ],
624
+ "outputs": [],
625
+ "stateMutability": "nonpayable"
626
+ },
627
+ {
628
+ "type": "function",
629
+ "name": "setName",
630
+ "inputs": [
631
+ {
632
+ "name": "_name",
633
+ "type": "string",
634
+ "internalType": "string"
635
+ }
636
+ ],
637
+ "outputs": [],
638
+ "stateMutability": "nonpayable"
639
+ },
640
+ {
641
+ "type": "function",
642
+ "name": "setOnchainID",
643
+ "inputs": [
644
+ {
645
+ "name": "_onchainID",
646
+ "type": "address",
647
+ "internalType": "address"
648
+ }
649
+ ],
650
+ "outputs": [],
651
+ "stateMutability": "nonpayable"
652
+ },
653
+ {
654
+ "type": "function",
655
+ "name": "setP3TokenType",
656
+ "inputs": [
657
+ {
658
+ "name": "newTokenType_",
659
+ "type": "uint8",
660
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
661
+ }
662
+ ],
663
+ "outputs": [],
664
+ "stateMutability": "nonpayable"
665
+ },
666
+ {
667
+ "type": "function",
668
+ "name": "setSymbol",
669
+ "inputs": [
670
+ {
671
+ "name": "_symbol",
672
+ "type": "string",
673
+ "internalType": "string"
674
+ }
675
+ ],
676
+ "outputs": [],
677
+ "stateMutability": "nonpayable"
678
+ },
679
+ {
680
+ "type": "function",
681
+ "name": "setYieldPaymentToken",
682
+ "inputs": [
683
+ {
684
+ "name": "paymentToken_",
685
+ "type": "address",
686
+ "internalType": "address"
687
+ }
688
+ ],
689
+ "outputs": [],
690
+ "stateMutability": "nonpayable"
691
+ },
692
+ {
693
+ "type": "function",
694
+ "name": "symbol",
695
+ "inputs": [],
696
+ "outputs": [
697
+ {
698
+ "name": "",
699
+ "type": "string",
700
+ "internalType": "string"
701
+ }
702
+ ],
703
+ "stateMutability": "view"
704
+ },
705
+ {
706
+ "type": "function",
707
+ "name": "totalSupply",
708
+ "inputs": [],
709
+ "outputs": [
710
+ {
711
+ "name": "",
712
+ "type": "uint256",
713
+ "internalType": "uint256"
714
+ }
715
+ ],
716
+ "stateMutability": "view"
717
+ },
718
+ {
719
+ "type": "function",
720
+ "name": "transfer",
721
+ "inputs": [
722
+ {
723
+ "name": "to",
724
+ "type": "address",
725
+ "internalType": "address"
726
+ },
727
+ {
728
+ "name": "amount",
729
+ "type": "uint256",
730
+ "internalType": "uint256"
731
+ }
732
+ ],
733
+ "outputs": [
734
+ {
735
+ "name": "",
736
+ "type": "bool",
737
+ "internalType": "bool"
738
+ }
739
+ ],
740
+ "stateMutability": "nonpayable"
741
+ },
742
+ {
743
+ "type": "function",
744
+ "name": "transferFrom",
745
+ "inputs": [
746
+ {
747
+ "name": "from",
748
+ "type": "address",
749
+ "internalType": "address"
750
+ },
751
+ {
752
+ "name": "to",
753
+ "type": "address",
754
+ "internalType": "address"
755
+ },
756
+ {
757
+ "name": "amount",
758
+ "type": "uint256",
759
+ "internalType": "uint256"
760
+ }
761
+ ],
762
+ "outputs": [
763
+ {
764
+ "name": "",
765
+ "type": "bool",
766
+ "internalType": "bool"
767
+ }
768
+ ],
769
+ "stateMutability": "nonpayable"
770
+ },
771
+ {
772
+ "type": "function",
773
+ "name": "unfreezePartialTokens",
774
+ "inputs": [
775
+ {
776
+ "name": "_userAddress",
777
+ "type": "address",
778
+ "internalType": "address"
779
+ },
780
+ {
781
+ "name": "_amount",
782
+ "type": "uint256",
783
+ "internalType": "uint256"
784
+ }
785
+ ],
786
+ "outputs": [],
787
+ "stateMutability": "nonpayable"
788
+ },
789
+ {
790
+ "type": "function",
791
+ "name": "unpause",
792
+ "inputs": [],
793
+ "outputs": [],
794
+ "stateMutability": "nonpayable"
795
+ },
796
+ {
797
+ "type": "function",
798
+ "name": "version",
799
+ "inputs": [],
800
+ "outputs": [
801
+ {
802
+ "name": "",
803
+ "type": "string",
804
+ "internalType": "string"
805
+ }
806
+ ],
807
+ "stateMutability": "view"
808
+ },
809
+ {
810
+ "type": "event",
811
+ "name": "AddressFrozen",
812
+ "inputs": [
813
+ {
814
+ "name": "_userAddress",
815
+ "type": "address",
816
+ "indexed": true,
817
+ "internalType": "address"
818
+ },
819
+ {
820
+ "name": "_isFrozen",
821
+ "type": "bool",
822
+ "indexed": true,
823
+ "internalType": "bool"
824
+ },
825
+ {
826
+ "name": "_owner",
827
+ "type": "address",
828
+ "indexed": true,
829
+ "internalType": "address"
830
+ }
831
+ ],
832
+ "anonymous": false
833
+ },
834
+ {
835
+ "type": "event",
836
+ "name": "Approval",
837
+ "inputs": [
838
+ {
839
+ "name": "owner",
840
+ "type": "address",
841
+ "indexed": true,
842
+ "internalType": "address"
843
+ },
844
+ {
845
+ "name": "spender",
846
+ "type": "address",
847
+ "indexed": true,
848
+ "internalType": "address"
849
+ },
850
+ {
851
+ "name": "value",
852
+ "type": "uint256",
853
+ "indexed": false,
854
+ "internalType": "uint256"
855
+ }
856
+ ],
857
+ "anonymous": false
858
+ },
859
+ {
860
+ "type": "event",
861
+ "name": "ComplianceAdded",
862
+ "inputs": [
863
+ {
864
+ "name": "_compliance",
865
+ "type": "address",
866
+ "indexed": true,
867
+ "internalType": "address"
868
+ }
869
+ ],
870
+ "anonymous": false
871
+ },
872
+ {
873
+ "type": "event",
874
+ "name": "EIP3009Initialized",
875
+ "inputs": [
876
+ {
877
+ "name": "agenticRegistry",
878
+ "type": "address",
879
+ "indexed": true,
880
+ "internalType": "address"
881
+ }
882
+ ],
883
+ "anonymous": false
884
+ },
885
+ {
886
+ "type": "event",
887
+ "name": "IdentityRegistryAdded",
888
+ "inputs": [
889
+ {
890
+ "name": "_identityRegistry",
891
+ "type": "address",
892
+ "indexed": true,
893
+ "internalType": "address"
894
+ }
895
+ ],
896
+ "anonymous": false
897
+ },
898
+ {
899
+ "type": "event",
900
+ "name": "Paused",
901
+ "inputs": [
902
+ {
903
+ "name": "_userAddress",
904
+ "type": "address",
905
+ "indexed": false,
906
+ "internalType": "address"
907
+ }
908
+ ],
909
+ "anonymous": false
910
+ },
911
+ {
912
+ "type": "event",
913
+ "name": "RecoverySuccess",
914
+ "inputs": [
915
+ {
916
+ "name": "_lostWallet",
917
+ "type": "address",
918
+ "indexed": true,
919
+ "internalType": "address"
920
+ },
921
+ {
922
+ "name": "_newWallet",
923
+ "type": "address",
924
+ "indexed": true,
925
+ "internalType": "address"
926
+ },
927
+ {
928
+ "name": "_investorOnchainID",
929
+ "type": "address",
930
+ "indexed": true,
931
+ "internalType": "address"
932
+ }
933
+ ],
934
+ "anonymous": false
935
+ },
936
+ {
937
+ "type": "event",
938
+ "name": "ReserveTokenAdded",
939
+ "inputs": [
940
+ {
941
+ "name": "token",
942
+ "type": "address",
943
+ "indexed": true,
944
+ "internalType": "address"
945
+ }
946
+ ],
947
+ "anonymous": false
948
+ },
949
+ {
950
+ "type": "event",
951
+ "name": "ReserveTokenRemoved",
952
+ "inputs": [
953
+ {
954
+ "name": "token",
955
+ "type": "address",
956
+ "indexed": true,
957
+ "internalType": "address"
958
+ }
959
+ ],
960
+ "anonymous": false
961
+ },
962
+ {
963
+ "type": "event",
964
+ "name": "TokensFrozen",
965
+ "inputs": [
966
+ {
967
+ "name": "_userAddress",
968
+ "type": "address",
969
+ "indexed": true,
970
+ "internalType": "address"
971
+ },
972
+ {
973
+ "name": "_amount",
974
+ "type": "uint256",
975
+ "indexed": false,
976
+ "internalType": "uint256"
977
+ }
978
+ ],
979
+ "anonymous": false
980
+ },
981
+ {
982
+ "type": "event",
983
+ "name": "TokensUnfrozen",
984
+ "inputs": [
985
+ {
986
+ "name": "_userAddress",
987
+ "type": "address",
988
+ "indexed": true,
989
+ "internalType": "address"
990
+ },
991
+ {
992
+ "name": "_amount",
993
+ "type": "uint256",
994
+ "indexed": false,
995
+ "internalType": "uint256"
996
+ }
997
+ ],
998
+ "anonymous": false
999
+ },
1000
+ {
1001
+ "type": "event",
1002
+ "name": "Transfer",
1003
+ "inputs": [
1004
+ {
1005
+ "name": "from",
1006
+ "type": "address",
1007
+ "indexed": true,
1008
+ "internalType": "address"
1009
+ },
1010
+ {
1011
+ "name": "to",
1012
+ "type": "address",
1013
+ "indexed": true,
1014
+ "internalType": "address"
1015
+ },
1016
+ {
1017
+ "name": "value",
1018
+ "type": "uint256",
1019
+ "indexed": false,
1020
+ "internalType": "uint256"
1021
+ }
1022
+ ],
1023
+ "anonymous": false
1024
+ },
1025
+ {
1026
+ "type": "event",
1027
+ "name": "Unpaused",
1028
+ "inputs": [
1029
+ {
1030
+ "name": "_userAddress",
1031
+ "type": "address",
1032
+ "indexed": false,
1033
+ "internalType": "address"
1034
+ }
1035
+ ],
1036
+ "anonymous": false
1037
+ },
1038
+ {
1039
+ "type": "event",
1040
+ "name": "UpdatedTokenInformation",
1041
+ "inputs": [
1042
+ {
1043
+ "name": "_newName",
1044
+ "type": "string",
1045
+ "indexed": true,
1046
+ "internalType": "string"
1047
+ },
1048
+ {
1049
+ "name": "_newSymbol",
1050
+ "type": "string",
1051
+ "indexed": true,
1052
+ "internalType": "string"
1053
+ },
1054
+ {
1055
+ "name": "_newDecimals",
1056
+ "type": "uint8",
1057
+ "indexed": false,
1058
+ "internalType": "uint8"
1059
+ },
1060
+ {
1061
+ "name": "_newVersion",
1062
+ "type": "string",
1063
+ "indexed": false,
1064
+ "internalType": "string"
1065
+ },
1066
+ {
1067
+ "name": "_newOnchainID",
1068
+ "type": "address",
1069
+ "indexed": true,
1070
+ "internalType": "address"
1071
+ }
1072
+ ],
1073
+ "anonymous": false
1074
+ },
1075
+ {
1076
+ "type": "error",
1077
+ "name": "P3BasicTokenEIP3009AlreadyInitialized",
1078
+ "inputs": []
1079
+ },
1080
+ {
1081
+ "type": "error",
1082
+ "name": "P3BasicTokenInsufficientBalance",
1083
+ "inputs": []
1084
+ },
1085
+ {
1086
+ "type": "error",
1087
+ "name": "P3BasicTokenInvalidTokenType",
1088
+ "inputs": []
1089
+ },
1090
+ {
1091
+ "type": "error",
1092
+ "name": "P3BasicTokenOnlyOwnerOrAgent",
1093
+ "inputs": []
1094
+ },
1095
+ {
1096
+ "type": "error",
1097
+ "name": "P3BasicTokenTransferNotPossible",
1098
+ "inputs": []
1099
+ },
1100
+ {
1101
+ "type": "error",
1102
+ "name": "P3BasicTokenUnableToUpdateP3TokenType",
1103
+ "inputs": []
1104
+ },
1105
+ {
1106
+ "type": "error",
1107
+ "name": "P3BasicTokenWalletFrozen",
1108
+ "inputs": []
1109
+ },
1110
+ {
1111
+ "type": "error",
1112
+ "name": "P3StablecoinTokenCannotRemoveLastReserveToken",
1113
+ "inputs": []
1114
+ },
1115
+ {
1116
+ "type": "error",
1117
+ "name": "P3StablecoinTokenEmptyCurrency",
1118
+ "inputs": []
1119
+ },
1120
+ {
1121
+ "type": "error",
1122
+ "name": "P3StablecoinTokenEmptyTicker",
1123
+ "inputs": []
1124
+ },
1125
+ {
1126
+ "type": "error",
1127
+ "name": "P3StablecoinTokenReserveTokenAlreadyExists",
1128
+ "inputs": [
1129
+ {
1130
+ "name": "token",
1131
+ "type": "address",
1132
+ "internalType": "address"
1133
+ }
1134
+ ]
1135
+ },
1136
+ {
1137
+ "type": "error",
1138
+ "name": "P3StablecoinTokenReserveTokenNotFound",
1139
+ "inputs": [
1140
+ {
1141
+ "name": "token",
1142
+ "type": "address",
1143
+ "internalType": "address"
1144
+ }
1145
+ ]
1146
+ },
1147
+ {
1148
+ "type": "error",
1149
+ "name": "P3StablecoinTokenUnableToUpdateInitData",
1150
+ "inputs": []
1151
+ },
1152
+ {
1153
+ "type": "error",
1154
+ "name": "P3YieldBearingInvalidPaymentToken",
1155
+ "inputs": []
1156
+ },
1157
+ {
1158
+ "type": "error",
1159
+ "name": "P3YieldBearingPaymentTokenNotSet",
1160
+ "inputs": []
1161
+ }
1162
+ ];
1163
+ export default abi;