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