@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,1197 @@
1
+ // Auto-generated by scripts/build-abis.mjs. Do not edit by hand.
2
+ export const abi = [
3
+ {
4
+ "type": "function",
5
+ "name": "addISIN",
6
+ "inputs": [
7
+ {
8
+ "name": "isin",
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": "custodianURI",
248
+ "inputs": [],
249
+ "outputs": [
250
+ {
251
+ "name": "",
252
+ "type": "string",
253
+ "internalType": "string"
254
+ }
255
+ ],
256
+ "stateMutability": "view"
257
+ },
258
+ {
259
+ "type": "function",
260
+ "name": "decimals",
261
+ "inputs": [],
262
+ "outputs": [
263
+ {
264
+ "name": "",
265
+ "type": "uint8",
266
+ "internalType": "uint8"
267
+ }
268
+ ],
269
+ "stateMutability": "view"
270
+ },
271
+ {
272
+ "type": "function",
273
+ "name": "forcedTransfer",
274
+ "inputs": [
275
+ {
276
+ "name": "_from",
277
+ "type": "address",
278
+ "internalType": "address"
279
+ },
280
+ {
281
+ "name": "_to",
282
+ "type": "address",
283
+ "internalType": "address"
284
+ },
285
+ {
286
+ "name": "_amount",
287
+ "type": "uint256",
288
+ "internalType": "uint256"
289
+ }
290
+ ],
291
+ "outputs": [
292
+ {
293
+ "name": "",
294
+ "type": "bool",
295
+ "internalType": "bool"
296
+ }
297
+ ],
298
+ "stateMutability": "nonpayable"
299
+ },
300
+ {
301
+ "type": "function",
302
+ "name": "freezePartialTokens",
303
+ "inputs": [
304
+ {
305
+ "name": "_userAddress",
306
+ "type": "address",
307
+ "internalType": "address"
308
+ },
309
+ {
310
+ "name": "_amount",
311
+ "type": "uint256",
312
+ "internalType": "uint256"
313
+ }
314
+ ],
315
+ "outputs": [],
316
+ "stateMutability": "nonpayable"
317
+ },
318
+ {
319
+ "type": "function",
320
+ "name": "getCurrency",
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": "getISINs",
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": "getMaturesOn",
366
+ "inputs": [],
367
+ "outputs": [
368
+ {
369
+ "name": "",
370
+ "type": "uint256",
371
+ "internalType": "uint256"
372
+ }
373
+ ],
374
+ "stateMutability": "view"
375
+ },
376
+ {
377
+ "type": "function",
378
+ "name": "getP3TokenType",
379
+ "inputs": [],
380
+ "outputs": [
381
+ {
382
+ "name": "",
383
+ "type": "uint8",
384
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
385
+ }
386
+ ],
387
+ "stateMutability": "view"
388
+ },
389
+ {
390
+ "type": "function",
391
+ "name": "getTokenType",
392
+ "inputs": [],
393
+ "outputs": [
394
+ {
395
+ "name": "",
396
+ "type": "uint8",
397
+ "internalType": "enum IP3DigitalSecurityToken.P3DigitalSecurityTokenType"
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": "removeISIN",
543
+ "inputs": [
544
+ {
545
+ "name": "isin",
546
+ "type": "string",
547
+ "internalType": "string"
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": "setCustodianURI",
587
+ "inputs": [
588
+ {
589
+ "name": "custodianURI",
590
+ "type": "string",
591
+ "internalType": "string"
592
+ }
593
+ ],
594
+ "outputs": [],
595
+ "stateMutability": "nonpayable"
596
+ },
597
+ {
598
+ "type": "function",
599
+ "name": "setDecimals",
600
+ "inputs": [
601
+ {
602
+ "name": "decimals",
603
+ "type": "uint8",
604
+ "internalType": "uint8"
605
+ }
606
+ ],
607
+ "outputs": [],
608
+ "stateMutability": "nonpayable"
609
+ },
610
+ {
611
+ "type": "function",
612
+ "name": "setIdentityRegistry",
613
+ "inputs": [
614
+ {
615
+ "name": "_identityRegistry",
616
+ "type": "address",
617
+ "internalType": "address"
618
+ }
619
+ ],
620
+ "outputs": [],
621
+ "stateMutability": "nonpayable"
622
+ },
623
+ {
624
+ "type": "function",
625
+ "name": "setInitData",
626
+ "inputs": [
627
+ {
628
+ "name": "initData",
629
+ "type": "tuple",
630
+ "internalType": "struct IP3DigitalSecurityToken.FDSImmutableData",
631
+ "components": [
632
+ {
633
+ "name": "baseCurrency",
634
+ "type": "string",
635
+ "internalType": "string"
636
+ },
637
+ {
638
+ "name": "tokenType",
639
+ "type": "uint8",
640
+ "internalType": "enum IP3DigitalSecurityToken.P3DigitalSecurityTokenType"
641
+ }
642
+ ]
643
+ }
644
+ ],
645
+ "outputs": [],
646
+ "stateMutability": "nonpayable"
647
+ },
648
+ {
649
+ "type": "function",
650
+ "name": "setName",
651
+ "inputs": [
652
+ {
653
+ "name": "_name",
654
+ "type": "string",
655
+ "internalType": "string"
656
+ }
657
+ ],
658
+ "outputs": [],
659
+ "stateMutability": "nonpayable"
660
+ },
661
+ {
662
+ "type": "function",
663
+ "name": "setOnchainID",
664
+ "inputs": [
665
+ {
666
+ "name": "_onchainID",
667
+ "type": "address",
668
+ "internalType": "address"
669
+ }
670
+ ],
671
+ "outputs": [],
672
+ "stateMutability": "nonpayable"
673
+ },
674
+ {
675
+ "type": "function",
676
+ "name": "setP3TokenType",
677
+ "inputs": [
678
+ {
679
+ "name": "newTokenType_",
680
+ "type": "uint8",
681
+ "internalType": "enum IP3BasicToken.P3TokenTypes"
682
+ }
683
+ ],
684
+ "outputs": [],
685
+ "stateMutability": "nonpayable"
686
+ },
687
+ {
688
+ "type": "function",
689
+ "name": "setSymbol",
690
+ "inputs": [
691
+ {
692
+ "name": "_symbol",
693
+ "type": "string",
694
+ "internalType": "string"
695
+ }
696
+ ],
697
+ "outputs": [],
698
+ "stateMutability": "nonpayable"
699
+ },
700
+ {
701
+ "type": "function",
702
+ "name": "setUpdateData",
703
+ "inputs": [
704
+ {
705
+ "name": "mutableData",
706
+ "type": "tuple",
707
+ "internalType": "struct IP3DigitalSecurityToken.FDSMutableData",
708
+ "components": [
709
+ {
710
+ "name": "maturesOn",
711
+ "type": "uint256",
712
+ "internalType": "uint256"
713
+ }
714
+ ]
715
+ }
716
+ ],
717
+ "outputs": [],
718
+ "stateMutability": "nonpayable"
719
+ },
720
+ {
721
+ "type": "function",
722
+ "name": "symbol",
723
+ "inputs": [],
724
+ "outputs": [
725
+ {
726
+ "name": "",
727
+ "type": "string",
728
+ "internalType": "string"
729
+ }
730
+ ],
731
+ "stateMutability": "view"
732
+ },
733
+ {
734
+ "type": "function",
735
+ "name": "totalSupply",
736
+ "inputs": [],
737
+ "outputs": [
738
+ {
739
+ "name": "",
740
+ "type": "uint256",
741
+ "internalType": "uint256"
742
+ }
743
+ ],
744
+ "stateMutability": "view"
745
+ },
746
+ {
747
+ "type": "function",
748
+ "name": "transfer",
749
+ "inputs": [
750
+ {
751
+ "name": "to",
752
+ "type": "address",
753
+ "internalType": "address"
754
+ },
755
+ {
756
+ "name": "amount",
757
+ "type": "uint256",
758
+ "internalType": "uint256"
759
+ }
760
+ ],
761
+ "outputs": [
762
+ {
763
+ "name": "",
764
+ "type": "bool",
765
+ "internalType": "bool"
766
+ }
767
+ ],
768
+ "stateMutability": "nonpayable"
769
+ },
770
+ {
771
+ "type": "function",
772
+ "name": "transferFrom",
773
+ "inputs": [
774
+ {
775
+ "name": "from",
776
+ "type": "address",
777
+ "internalType": "address"
778
+ },
779
+ {
780
+ "name": "to",
781
+ "type": "address",
782
+ "internalType": "address"
783
+ },
784
+ {
785
+ "name": "amount",
786
+ "type": "uint256",
787
+ "internalType": "uint256"
788
+ }
789
+ ],
790
+ "outputs": [
791
+ {
792
+ "name": "",
793
+ "type": "bool",
794
+ "internalType": "bool"
795
+ }
796
+ ],
797
+ "stateMutability": "nonpayable"
798
+ },
799
+ {
800
+ "type": "function",
801
+ "name": "unfreezePartialTokens",
802
+ "inputs": [
803
+ {
804
+ "name": "_userAddress",
805
+ "type": "address",
806
+ "internalType": "address"
807
+ },
808
+ {
809
+ "name": "_amount",
810
+ "type": "uint256",
811
+ "internalType": "uint256"
812
+ }
813
+ ],
814
+ "outputs": [],
815
+ "stateMutability": "nonpayable"
816
+ },
817
+ {
818
+ "type": "function",
819
+ "name": "unpause",
820
+ "inputs": [],
821
+ "outputs": [],
822
+ "stateMutability": "nonpayable"
823
+ },
824
+ {
825
+ "type": "function",
826
+ "name": "version",
827
+ "inputs": [],
828
+ "outputs": [
829
+ {
830
+ "name": "",
831
+ "type": "string",
832
+ "internalType": "string"
833
+ }
834
+ ],
835
+ "stateMutability": "view"
836
+ },
837
+ {
838
+ "type": "event",
839
+ "name": "AddressFrozen",
840
+ "inputs": [
841
+ {
842
+ "name": "_userAddress",
843
+ "type": "address",
844
+ "indexed": true,
845
+ "internalType": "address"
846
+ },
847
+ {
848
+ "name": "_isFrozen",
849
+ "type": "bool",
850
+ "indexed": true,
851
+ "internalType": "bool"
852
+ },
853
+ {
854
+ "name": "_owner",
855
+ "type": "address",
856
+ "indexed": true,
857
+ "internalType": "address"
858
+ }
859
+ ],
860
+ "anonymous": false
861
+ },
862
+ {
863
+ "type": "event",
864
+ "name": "Approval",
865
+ "inputs": [
866
+ {
867
+ "name": "owner",
868
+ "type": "address",
869
+ "indexed": true,
870
+ "internalType": "address"
871
+ },
872
+ {
873
+ "name": "spender",
874
+ "type": "address",
875
+ "indexed": true,
876
+ "internalType": "address"
877
+ },
878
+ {
879
+ "name": "value",
880
+ "type": "uint256",
881
+ "indexed": false,
882
+ "internalType": "uint256"
883
+ }
884
+ ],
885
+ "anonymous": false
886
+ },
887
+ {
888
+ "type": "event",
889
+ "name": "ComplianceAdded",
890
+ "inputs": [
891
+ {
892
+ "name": "_compliance",
893
+ "type": "address",
894
+ "indexed": true,
895
+ "internalType": "address"
896
+ }
897
+ ],
898
+ "anonymous": false
899
+ },
900
+ {
901
+ "type": "event",
902
+ "name": "EIP3009Initialized",
903
+ "inputs": [
904
+ {
905
+ "name": "agenticRegistry",
906
+ "type": "address",
907
+ "indexed": true,
908
+ "internalType": "address"
909
+ }
910
+ ],
911
+ "anonymous": false
912
+ },
913
+ {
914
+ "type": "event",
915
+ "name": "ISINAdded",
916
+ "inputs": [
917
+ {
918
+ "name": "isin",
919
+ "type": "string",
920
+ "indexed": false,
921
+ "internalType": "string"
922
+ }
923
+ ],
924
+ "anonymous": false
925
+ },
926
+ {
927
+ "type": "event",
928
+ "name": "ISINRemoved",
929
+ "inputs": [
930
+ {
931
+ "name": "isin",
932
+ "type": "string",
933
+ "indexed": false,
934
+ "internalType": "string"
935
+ }
936
+ ],
937
+ "anonymous": false
938
+ },
939
+ {
940
+ "type": "event",
941
+ "name": "IdentityRegistryAdded",
942
+ "inputs": [
943
+ {
944
+ "name": "_identityRegistry",
945
+ "type": "address",
946
+ "indexed": true,
947
+ "internalType": "address"
948
+ }
949
+ ],
950
+ "anonymous": false
951
+ },
952
+ {
953
+ "type": "event",
954
+ "name": "Paused",
955
+ "inputs": [
956
+ {
957
+ "name": "_userAddress",
958
+ "type": "address",
959
+ "indexed": false,
960
+ "internalType": "address"
961
+ }
962
+ ],
963
+ "anonymous": false
964
+ },
965
+ {
966
+ "type": "event",
967
+ "name": "RecoverySuccess",
968
+ "inputs": [
969
+ {
970
+ "name": "_lostWallet",
971
+ "type": "address",
972
+ "indexed": true,
973
+ "internalType": "address"
974
+ },
975
+ {
976
+ "name": "_newWallet",
977
+ "type": "address",
978
+ "indexed": true,
979
+ "internalType": "address"
980
+ },
981
+ {
982
+ "name": "_investorOnchainID",
983
+ "type": "address",
984
+ "indexed": true,
985
+ "internalType": "address"
986
+ }
987
+ ],
988
+ "anonymous": false
989
+ },
990
+ {
991
+ "type": "event",
992
+ "name": "TokensFrozen",
993
+ "inputs": [
994
+ {
995
+ "name": "_userAddress",
996
+ "type": "address",
997
+ "indexed": true,
998
+ "internalType": "address"
999
+ },
1000
+ {
1001
+ "name": "_amount",
1002
+ "type": "uint256",
1003
+ "indexed": false,
1004
+ "internalType": "uint256"
1005
+ }
1006
+ ],
1007
+ "anonymous": false
1008
+ },
1009
+ {
1010
+ "type": "event",
1011
+ "name": "TokensUnfrozen",
1012
+ "inputs": [
1013
+ {
1014
+ "name": "_userAddress",
1015
+ "type": "address",
1016
+ "indexed": true,
1017
+ "internalType": "address"
1018
+ },
1019
+ {
1020
+ "name": "_amount",
1021
+ "type": "uint256",
1022
+ "indexed": false,
1023
+ "internalType": "uint256"
1024
+ }
1025
+ ],
1026
+ "anonymous": false
1027
+ },
1028
+ {
1029
+ "type": "event",
1030
+ "name": "Transfer",
1031
+ "inputs": [
1032
+ {
1033
+ "name": "from",
1034
+ "type": "address",
1035
+ "indexed": true,
1036
+ "internalType": "address"
1037
+ },
1038
+ {
1039
+ "name": "to",
1040
+ "type": "address",
1041
+ "indexed": true,
1042
+ "internalType": "address"
1043
+ },
1044
+ {
1045
+ "name": "value",
1046
+ "type": "uint256",
1047
+ "indexed": false,
1048
+ "internalType": "uint256"
1049
+ }
1050
+ ],
1051
+ "anonymous": false
1052
+ },
1053
+ {
1054
+ "type": "event",
1055
+ "name": "Unpaused",
1056
+ "inputs": [
1057
+ {
1058
+ "name": "_userAddress",
1059
+ "type": "address",
1060
+ "indexed": false,
1061
+ "internalType": "address"
1062
+ }
1063
+ ],
1064
+ "anonymous": false
1065
+ },
1066
+ {
1067
+ "type": "event",
1068
+ "name": "UpdatedTokenInformation",
1069
+ "inputs": [
1070
+ {
1071
+ "name": "_newName",
1072
+ "type": "string",
1073
+ "indexed": true,
1074
+ "internalType": "string"
1075
+ },
1076
+ {
1077
+ "name": "_newSymbol",
1078
+ "type": "string",
1079
+ "indexed": true,
1080
+ "internalType": "string"
1081
+ },
1082
+ {
1083
+ "name": "_newDecimals",
1084
+ "type": "uint8",
1085
+ "indexed": false,
1086
+ "internalType": "uint8"
1087
+ },
1088
+ {
1089
+ "name": "_newVersion",
1090
+ "type": "string",
1091
+ "indexed": false,
1092
+ "internalType": "string"
1093
+ },
1094
+ {
1095
+ "name": "_newOnchainID",
1096
+ "type": "address",
1097
+ "indexed": true,
1098
+ "internalType": "address"
1099
+ }
1100
+ ],
1101
+ "anonymous": false
1102
+ },
1103
+ {
1104
+ "type": "error",
1105
+ "name": "P3BasicTokenEIP3009AlreadyInitialized",
1106
+ "inputs": []
1107
+ },
1108
+ {
1109
+ "type": "error",
1110
+ "name": "P3BasicTokenInsufficientBalance",
1111
+ "inputs": []
1112
+ },
1113
+ {
1114
+ "type": "error",
1115
+ "name": "P3BasicTokenInvalidTokenType",
1116
+ "inputs": []
1117
+ },
1118
+ {
1119
+ "type": "error",
1120
+ "name": "P3BasicTokenOnlyOwnerOrAgent",
1121
+ "inputs": []
1122
+ },
1123
+ {
1124
+ "type": "error",
1125
+ "name": "P3BasicTokenTransferNotPossible",
1126
+ "inputs": []
1127
+ },
1128
+ {
1129
+ "type": "error",
1130
+ "name": "P3BasicTokenUnableToUpdateP3TokenType",
1131
+ "inputs": []
1132
+ },
1133
+ {
1134
+ "type": "error",
1135
+ "name": "P3BasicTokenWalletFrozen",
1136
+ "inputs": []
1137
+ },
1138
+ {
1139
+ "type": "error",
1140
+ "name": "P3DigitalSecurityTokenCannotRemoveLastISIN",
1141
+ "inputs": []
1142
+ },
1143
+ {
1144
+ "type": "error",
1145
+ "name": "P3DigitalSecurityTokenDecimalsLocked",
1146
+ "inputs": []
1147
+ },
1148
+ {
1149
+ "type": "error",
1150
+ "name": "P3DigitalSecurityTokenEmptyBaseCurrency",
1151
+ "inputs": []
1152
+ },
1153
+ {
1154
+ "type": "error",
1155
+ "name": "P3DigitalSecurityTokenISINAlreadyExists",
1156
+ "inputs": [
1157
+ {
1158
+ "name": "isin",
1159
+ "type": "string",
1160
+ "internalType": "string"
1161
+ }
1162
+ ]
1163
+ },
1164
+ {
1165
+ "type": "error",
1166
+ "name": "P3DigitalSecurityTokenISINNotFound",
1167
+ "inputs": [
1168
+ {
1169
+ "name": "isin",
1170
+ "type": "string",
1171
+ "internalType": "string"
1172
+ }
1173
+ ]
1174
+ },
1175
+ {
1176
+ "type": "error",
1177
+ "name": "P3DigitalSecurityTokenInitDataHasAlreadyBeenSet",
1178
+ "inputs": []
1179
+ },
1180
+ {
1181
+ "type": "error",
1182
+ "name": "P3DigitalSecurityTokenInvalidISINFormat",
1183
+ "inputs": [
1184
+ {
1185
+ "name": "isin",
1186
+ "type": "string",
1187
+ "internalType": "string"
1188
+ }
1189
+ ]
1190
+ },
1191
+ {
1192
+ "type": "error",
1193
+ "name": "P3DigitalSecurityTokenZeroDecimals",
1194
+ "inputs": []
1195
+ }
1196
+ ];
1197
+ export default abi;