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