@aastar/dapp 0.16.7

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 (108) hide show
  1. package/LICENSE +21 -0
  2. package/dist/core/src/abis/BLSAggregator.json +686 -0
  3. package/dist/core/src/abis/BLSValidator.json +42 -0
  4. package/dist/core/src/abis/DVTValidator.json +368 -0
  5. package/dist/core/src/abis/EntryPoint.json +1382 -0
  6. package/dist/core/src/abis/GToken.json +513 -0
  7. package/dist/core/src/abis/GTokenStaking.json +949 -0
  8. package/dist/core/src/abis/MySBT.json +1518 -0
  9. package/dist/core/src/abis/Paymaster.json +1143 -0
  10. package/dist/core/src/abis/PaymasterFactory.json +640 -0
  11. package/dist/core/src/abis/Registry.json +1942 -0
  12. package/dist/core/src/abis/ReputationSystem.json +699 -0
  13. package/dist/core/src/abis/SimpleAccount.json +560 -0
  14. package/dist/core/src/abis/SimpleAccountFactory.json +111 -0
  15. package/dist/core/src/abis/SuperPaymaster.json +1781 -0
  16. package/dist/core/src/abis/index.d.ts +1126 -0
  17. package/dist/core/src/abis/index.js +91 -0
  18. package/dist/core/src/abis/xPNTsFactory.json +718 -0
  19. package/dist/core/src/abis/xPNTsToken.json +1280 -0
  20. package/dist/core/src/actions/StateValidator.d.ts +68 -0
  21. package/dist/core/src/actions/StateValidator.js +187 -0
  22. package/dist/core/src/actions/account.d.ts +55 -0
  23. package/dist/core/src/actions/account.js +133 -0
  24. package/dist/core/src/actions/aggregator.d.ts +17 -0
  25. package/dist/core/src/actions/aggregator.js +31 -0
  26. package/dist/core/src/actions/dvt.d.ts +30 -0
  27. package/dist/core/src/actions/dvt.js +41 -0
  28. package/dist/core/src/actions/entryPoint.d.ts +90 -0
  29. package/dist/core/src/actions/entryPoint.js +211 -0
  30. package/dist/core/src/actions/factory.d.ts +215 -0
  31. package/dist/core/src/actions/factory.js +442 -0
  32. package/dist/core/src/actions/faucet.d.ts +48 -0
  33. package/dist/core/src/actions/faucet.js +337 -0
  34. package/dist/core/src/actions/gtokenExtended.d.ts +39 -0
  35. package/dist/core/src/actions/gtokenExtended.js +115 -0
  36. package/dist/core/src/actions/index.d.ts +15 -0
  37. package/dist/core/src/actions/index.js +17 -0
  38. package/dist/core/src/actions/paymasterV4.d.ts +170 -0
  39. package/dist/core/src/actions/paymasterV4.js +334 -0
  40. package/dist/core/src/actions/registry.d.ts +246 -0
  41. package/dist/core/src/actions/registry.js +667 -0
  42. package/dist/core/src/actions/reputation.d.ts +129 -0
  43. package/dist/core/src/actions/reputation.js +281 -0
  44. package/dist/core/src/actions/sbt.d.ts +191 -0
  45. package/dist/core/src/actions/sbt.js +533 -0
  46. package/dist/core/src/actions/staking.d.ts +132 -0
  47. package/dist/core/src/actions/staking.js +330 -0
  48. package/dist/core/src/actions/superPaymaster.d.ts +237 -0
  49. package/dist/core/src/actions/superPaymaster.js +644 -0
  50. package/dist/core/src/actions/tokens.d.ts +229 -0
  51. package/dist/core/src/actions/tokens.js +415 -0
  52. package/dist/core/src/branding.d.ts +30 -0
  53. package/dist/core/src/branding.js +30 -0
  54. package/dist/core/src/clients/BaseClient.d.ts +25 -0
  55. package/dist/core/src/clients/BaseClient.js +66 -0
  56. package/dist/core/src/clients/types.d.ts +60 -0
  57. package/dist/core/src/clients/types.js +1 -0
  58. package/dist/core/src/clients.d.ts +5 -0
  59. package/dist/core/src/clients.js +11 -0
  60. package/dist/core/src/communities.d.ts +52 -0
  61. package/dist/core/src/communities.js +73 -0
  62. package/dist/core/src/config/ContractConfigManager.d.ts +20 -0
  63. package/dist/core/src/config/ContractConfigManager.js +48 -0
  64. package/dist/core/src/constants.d.ts +88 -0
  65. package/dist/core/src/constants.js +125 -0
  66. package/dist/core/src/contract-addresses.d.ts +110 -0
  67. package/dist/core/src/contract-addresses.js +99 -0
  68. package/dist/core/src/contracts.d.ts +424 -0
  69. package/dist/core/src/contracts.js +343 -0
  70. package/dist/core/src/crypto/blsSigner.d.ts +64 -0
  71. package/dist/core/src/crypto/blsSigner.js +98 -0
  72. package/dist/core/src/crypto/index.d.ts +1 -0
  73. package/dist/core/src/crypto/index.js +1 -0
  74. package/dist/core/src/index.d.ts +21 -0
  75. package/dist/core/src/index.js +21 -0
  76. package/dist/core/src/networks.d.ts +127 -0
  77. package/dist/core/src/networks.js +118 -0
  78. package/dist/core/src/requirementChecker.d.ts +38 -0
  79. package/dist/core/src/requirementChecker.js +139 -0
  80. package/dist/core/src/roles.d.ts +204 -0
  81. package/dist/core/src/roles.js +211 -0
  82. package/dist/core/src/utils/validation.d.ts +24 -0
  83. package/dist/core/src/utils/validation.js +56 -0
  84. package/dist/dapp/src/index.d.ts +3 -0
  85. package/dist/dapp/src/index.js +3 -0
  86. package/dist/dapp/src/ui/components/EvaluationPanel.d.ts +11 -0
  87. package/dist/dapp/src/ui/components/EvaluationPanel.js +37 -0
  88. package/dist/dapp/src/ui/hooks/useCreditScore.d.ts +13 -0
  89. package/dist/dapp/src/ui/hooks/useCreditScore.js +32 -0
  90. package/dist/dapp/src/ui/hooks/useSuperPaymaster.d.ts +8 -0
  91. package/dist/dapp/src/ui/hooks/useSuperPaymaster.js +23 -0
  92. package/dist/dapp/src/ui/index.d.ts +4 -0
  93. package/dist/dapp/src/ui/index.js +17 -0
  94. package/dist/paymaster/src/SuperPaymaster/index.d.ts +44 -0
  95. package/dist/paymaster/src/SuperPaymaster/index.js +133 -0
  96. package/dist/paymaster/src/V4/PaymasterClient.d.ts +79 -0
  97. package/dist/paymaster/src/V4/PaymasterClient.js +315 -0
  98. package/dist/paymaster/src/V4/PaymasterOperator.d.ts +41 -0
  99. package/dist/paymaster/src/V4/PaymasterOperator.js +241 -0
  100. package/dist/paymaster/src/V4/PaymasterUtils.d.ts +55 -0
  101. package/dist/paymaster/src/V4/PaymasterUtils.js +124 -0
  102. package/dist/paymaster/src/V4/SuperPaymasterClient.d.ts +21 -0
  103. package/dist/paymaster/src/V4/SuperPaymasterClient.js +73 -0
  104. package/dist/paymaster/src/V4/index.d.ts +4 -0
  105. package/dist/paymaster/src/V4/index.js +4 -0
  106. package/dist/paymaster/src/index.d.ts +2 -0
  107. package/dist/paymaster/src/index.js +4 -0
  108. package/package.json +31 -0
@@ -0,0 +1,1126 @@
1
+ /**
2
+ * Smart Contract ABIs (Unified Naming)
3
+ *
4
+ * 命名策略:
5
+ * - 文件名:统一无版本号(如 BLSAggregator.json)
6
+ * - 版本信息:通过 ABI 中的 version() 函数获取
7
+ * - 同步时自动去除版本号后缀(V3 等)
8
+ */
9
+ export declare const RegistryABI: any;
10
+ export declare const GTokenABI: any;
11
+ export declare const GTokenStakingABI: any;
12
+ export declare const SuperPaymasterABI: any;
13
+ export declare const PaymasterFactoryABI: any;
14
+ export declare const PaymasterV4ABI: any;
15
+ export declare const PaymasterABI: any;
16
+ export declare const EntryPointABI: any;
17
+ export declare const SimpleAccountABI: any;
18
+ export declare const SimpleAccountFactoryABI: any;
19
+ export declare const xPNTsTokenABI: any;
20
+ export declare const xPNTsFactoryABI: any;
21
+ export declare const MySBTABI: any;
22
+ export declare const ReputationSystemABI: any;
23
+ export declare const DVTValidatorABI: any;
24
+ export declare const BLSAggregatorABI: any;
25
+ export declare const BLSValidatorABI: any;
26
+ export declare const RegistryArtifact: {
27
+ abi: ({
28
+ type: string;
29
+ inputs: {
30
+ name: string;
31
+ type: string;
32
+ internalType: string;
33
+ }[];
34
+ stateMutability: string;
35
+ name?: undefined;
36
+ outputs?: undefined;
37
+ anonymous?: undefined;
38
+ } | {
39
+ type: string;
40
+ name: string;
41
+ inputs: {
42
+ name: string;
43
+ type: string;
44
+ internalType: string;
45
+ }[];
46
+ outputs: {
47
+ name: string;
48
+ type: string;
49
+ internalType: string;
50
+ }[];
51
+ stateMutability: string;
52
+ anonymous?: undefined;
53
+ } | {
54
+ type: string;
55
+ name: string;
56
+ inputs: ({
57
+ name: string;
58
+ type: string;
59
+ internalType: string;
60
+ components?: undefined;
61
+ } | {
62
+ name: string;
63
+ type: string;
64
+ internalType: string;
65
+ components: {
66
+ name: string;
67
+ type: string;
68
+ internalType: string;
69
+ }[];
70
+ })[];
71
+ outputs: never[];
72
+ stateMutability: string;
73
+ anonymous?: undefined;
74
+ } | {
75
+ type: string;
76
+ name: string;
77
+ inputs: {
78
+ name: string;
79
+ type: string;
80
+ internalType: string;
81
+ }[];
82
+ outputs: {
83
+ name: string;
84
+ type: string;
85
+ internalType: string;
86
+ components: {
87
+ name: string;
88
+ type: string;
89
+ internalType: string;
90
+ }[];
91
+ }[];
92
+ stateMutability: string;
93
+ anonymous?: undefined;
94
+ } | {
95
+ type: string;
96
+ name: string;
97
+ inputs: ({
98
+ name: string;
99
+ type: string;
100
+ indexed: boolean;
101
+ internalType: string;
102
+ components?: undefined;
103
+ } | {
104
+ name: string;
105
+ type: string;
106
+ indexed: boolean;
107
+ internalType: string;
108
+ components: {
109
+ name: string;
110
+ type: string;
111
+ internalType: string;
112
+ }[];
113
+ })[];
114
+ anonymous: boolean;
115
+ stateMutability?: undefined;
116
+ outputs?: undefined;
117
+ } | {
118
+ type: string;
119
+ name: string;
120
+ inputs: {
121
+ name: string;
122
+ type: string;
123
+ internalType: string;
124
+ }[];
125
+ stateMutability?: undefined;
126
+ outputs?: undefined;
127
+ anonymous?: undefined;
128
+ })[];
129
+ bytecode: string;
130
+ };
131
+ export declare const GTokenArtifact: {
132
+ abi: ({
133
+ type: string;
134
+ inputs: {
135
+ name: string;
136
+ type: string;
137
+ internalType: string;
138
+ }[];
139
+ stateMutability: string;
140
+ name?: undefined;
141
+ outputs?: undefined;
142
+ anonymous?: undefined;
143
+ } | {
144
+ type: string;
145
+ name: string;
146
+ inputs: {
147
+ name: string;
148
+ type: string;
149
+ internalType: string;
150
+ }[];
151
+ outputs: {
152
+ name: string;
153
+ type: string;
154
+ internalType: string;
155
+ }[];
156
+ stateMutability: string;
157
+ anonymous?: undefined;
158
+ } | {
159
+ type: string;
160
+ name: string;
161
+ inputs: {
162
+ name: string;
163
+ type: string;
164
+ indexed: boolean;
165
+ internalType: string;
166
+ }[];
167
+ anonymous: boolean;
168
+ stateMutability?: undefined;
169
+ outputs?: undefined;
170
+ } | {
171
+ type: string;
172
+ name: string;
173
+ inputs: {
174
+ name: string;
175
+ type: string;
176
+ internalType: string;
177
+ }[];
178
+ stateMutability?: undefined;
179
+ outputs?: undefined;
180
+ anonymous?: undefined;
181
+ })[];
182
+ bytecode: string;
183
+ };
184
+ export declare const GTokenStakingArtifact: {
185
+ abi: ({
186
+ type: string;
187
+ inputs: {
188
+ name: string;
189
+ type: string;
190
+ internalType: string;
191
+ }[];
192
+ stateMutability: string;
193
+ name?: undefined;
194
+ outputs?: undefined;
195
+ anonymous?: undefined;
196
+ } | {
197
+ type: string;
198
+ name: string;
199
+ inputs: {
200
+ name: string;
201
+ type: string;
202
+ internalType: string;
203
+ }[];
204
+ outputs: {
205
+ name: string;
206
+ type: string;
207
+ internalType: string;
208
+ }[];
209
+ stateMutability: string;
210
+ anonymous?: undefined;
211
+ } | {
212
+ type: string;
213
+ name: string;
214
+ inputs: {
215
+ name: string;
216
+ type: string;
217
+ internalType: string;
218
+ }[];
219
+ outputs: {
220
+ name: string;
221
+ type: string;
222
+ internalType: string;
223
+ components: {
224
+ name: string;
225
+ type: string;
226
+ internalType: string;
227
+ }[];
228
+ }[];
229
+ stateMutability: string;
230
+ anonymous?: undefined;
231
+ } | {
232
+ type: string;
233
+ name: string;
234
+ inputs: {
235
+ name: string;
236
+ type: string;
237
+ indexed: boolean;
238
+ internalType: string;
239
+ }[];
240
+ anonymous: boolean;
241
+ stateMutability?: undefined;
242
+ outputs?: undefined;
243
+ } | {
244
+ type: string;
245
+ name: string;
246
+ inputs: {
247
+ name: string;
248
+ type: string;
249
+ internalType: string;
250
+ }[];
251
+ stateMutability?: undefined;
252
+ outputs?: undefined;
253
+ anonymous?: undefined;
254
+ })[];
255
+ bytecode: string;
256
+ };
257
+ export declare const SuperPaymasterArtifact: {
258
+ abi: ({
259
+ type: string;
260
+ inputs: {
261
+ name: string;
262
+ type: string;
263
+ internalType: string;
264
+ }[];
265
+ stateMutability: string;
266
+ name?: undefined;
267
+ outputs?: undefined;
268
+ anonymous?: undefined;
269
+ } | {
270
+ type: string;
271
+ name: string;
272
+ inputs: {
273
+ name: string;
274
+ type: string;
275
+ internalType: string;
276
+ }[];
277
+ outputs: {
278
+ name: string;
279
+ type: string;
280
+ internalType: string;
281
+ components: {
282
+ name: string;
283
+ type: string;
284
+ internalType: string;
285
+ }[];
286
+ }[];
287
+ stateMutability: string;
288
+ anonymous?: undefined;
289
+ } | {
290
+ type: string;
291
+ name: string;
292
+ inputs: ({
293
+ name: string;
294
+ type: string;
295
+ internalType: string;
296
+ components: {
297
+ name: string;
298
+ type: string;
299
+ internalType: string;
300
+ }[];
301
+ } | {
302
+ name: string;
303
+ type: string;
304
+ internalType: string;
305
+ components?: undefined;
306
+ })[];
307
+ outputs: {
308
+ name: string;
309
+ type: string;
310
+ internalType: string;
311
+ }[];
312
+ stateMutability: string;
313
+ anonymous?: undefined;
314
+ } | {
315
+ type: string;
316
+ name: string;
317
+ inputs: {
318
+ name: string;
319
+ type: string;
320
+ indexed: boolean;
321
+ internalType: string;
322
+ }[];
323
+ anonymous: boolean;
324
+ stateMutability?: undefined;
325
+ outputs?: undefined;
326
+ } | {
327
+ type: string;
328
+ name: string;
329
+ inputs: {
330
+ name: string;
331
+ type: string;
332
+ internalType: string;
333
+ }[];
334
+ stateMutability?: undefined;
335
+ outputs?: undefined;
336
+ anonymous?: undefined;
337
+ })[];
338
+ bytecode: string;
339
+ };
340
+ export declare const PaymasterFactoryArtifact: {
341
+ abi: ({
342
+ type: string;
343
+ inputs: never[];
344
+ stateMutability: string;
345
+ name?: undefined;
346
+ outputs?: undefined;
347
+ anonymous?: undefined;
348
+ } | {
349
+ type: string;
350
+ name: string;
351
+ inputs: {
352
+ name: string;
353
+ type: string;
354
+ internalType: string;
355
+ }[];
356
+ outputs: {
357
+ name: string;
358
+ type: string;
359
+ internalType: string;
360
+ }[];
361
+ stateMutability: string;
362
+ anonymous?: undefined;
363
+ } | {
364
+ type: string;
365
+ name: string;
366
+ inputs: {
367
+ name: string;
368
+ type: string;
369
+ indexed: boolean;
370
+ internalType: string;
371
+ }[];
372
+ anonymous: boolean;
373
+ stateMutability?: undefined;
374
+ outputs?: undefined;
375
+ } | {
376
+ type: string;
377
+ name: string;
378
+ inputs: {
379
+ name: string;
380
+ type: string;
381
+ internalType: string;
382
+ }[];
383
+ stateMutability?: undefined;
384
+ outputs?: undefined;
385
+ anonymous?: undefined;
386
+ })[];
387
+ bytecode: string;
388
+ };
389
+ export declare const PaymasterV4Artifact: {
390
+ abi: ({
391
+ type: string;
392
+ inputs: {
393
+ name: string;
394
+ type: string;
395
+ internalType: string;
396
+ }[];
397
+ stateMutability: string;
398
+ name?: undefined;
399
+ outputs?: undefined;
400
+ anonymous?: undefined;
401
+ } | {
402
+ type: string;
403
+ stateMutability: string;
404
+ inputs?: undefined;
405
+ name?: undefined;
406
+ outputs?: undefined;
407
+ anonymous?: undefined;
408
+ } | {
409
+ type: string;
410
+ name: string;
411
+ inputs: ({
412
+ name: string;
413
+ type: string;
414
+ internalType: string;
415
+ components: {
416
+ name: string;
417
+ type: string;
418
+ internalType: string;
419
+ }[];
420
+ } | {
421
+ name: string;
422
+ type: string;
423
+ internalType: string;
424
+ components?: undefined;
425
+ })[];
426
+ outputs: {
427
+ name: string;
428
+ type: string;
429
+ internalType: string;
430
+ }[];
431
+ stateMutability: string;
432
+ anonymous?: undefined;
433
+ } | {
434
+ type: string;
435
+ name: string;
436
+ inputs: {
437
+ name: string;
438
+ type: string;
439
+ indexed: boolean;
440
+ internalType: string;
441
+ }[];
442
+ anonymous: boolean;
443
+ stateMutability?: undefined;
444
+ outputs?: undefined;
445
+ } | {
446
+ type: string;
447
+ name: string;
448
+ inputs: {
449
+ name: string;
450
+ type: string;
451
+ internalType: string;
452
+ }[];
453
+ stateMutability?: undefined;
454
+ outputs?: undefined;
455
+ anonymous?: undefined;
456
+ })[];
457
+ bytecode: string;
458
+ };
459
+ export declare const PaymasterArtifact: {
460
+ abi: ({
461
+ type: string;
462
+ inputs: {
463
+ name: string;
464
+ type: string;
465
+ internalType: string;
466
+ }[];
467
+ stateMutability: string;
468
+ name?: undefined;
469
+ outputs?: undefined;
470
+ anonymous?: undefined;
471
+ } | {
472
+ type: string;
473
+ stateMutability: string;
474
+ inputs?: undefined;
475
+ name?: undefined;
476
+ outputs?: undefined;
477
+ anonymous?: undefined;
478
+ } | {
479
+ type: string;
480
+ name: string;
481
+ inputs: ({
482
+ name: string;
483
+ type: string;
484
+ internalType: string;
485
+ components: {
486
+ name: string;
487
+ type: string;
488
+ internalType: string;
489
+ }[];
490
+ } | {
491
+ name: string;
492
+ type: string;
493
+ internalType: string;
494
+ components?: undefined;
495
+ })[];
496
+ outputs: {
497
+ name: string;
498
+ type: string;
499
+ internalType: string;
500
+ }[];
501
+ stateMutability: string;
502
+ anonymous?: undefined;
503
+ } | {
504
+ type: string;
505
+ name: string;
506
+ inputs: {
507
+ name: string;
508
+ type: string;
509
+ indexed: boolean;
510
+ internalType: string;
511
+ }[];
512
+ anonymous: boolean;
513
+ stateMutability?: undefined;
514
+ outputs?: undefined;
515
+ } | {
516
+ type: string;
517
+ name: string;
518
+ inputs: {
519
+ name: string;
520
+ type: string;
521
+ internalType: string;
522
+ }[];
523
+ stateMutability?: undefined;
524
+ outputs?: undefined;
525
+ anonymous?: undefined;
526
+ })[];
527
+ bytecode: string;
528
+ };
529
+ export declare const EntryPointArtifact: {
530
+ abi: ({
531
+ type: string;
532
+ inputs: never[];
533
+ stateMutability: string;
534
+ name?: undefined;
535
+ outputs?: undefined;
536
+ anonymous?: undefined;
537
+ } | {
538
+ type: string;
539
+ stateMutability: string;
540
+ inputs?: undefined;
541
+ name?: undefined;
542
+ outputs?: undefined;
543
+ anonymous?: undefined;
544
+ } | {
545
+ type: string;
546
+ name: string;
547
+ inputs: {
548
+ name: string;
549
+ type: string;
550
+ internalType: string;
551
+ }[];
552
+ outputs: {
553
+ name: string;
554
+ type: string;
555
+ internalType: string;
556
+ components: {
557
+ name: string;
558
+ type: string;
559
+ internalType: string;
560
+ }[];
561
+ }[];
562
+ stateMutability: string;
563
+ anonymous?: undefined;
564
+ } | {
565
+ type: string;
566
+ name: string;
567
+ inputs: ({
568
+ name: string;
569
+ type: string;
570
+ internalType: string;
571
+ components?: undefined;
572
+ } | {
573
+ name: string;
574
+ type: string;
575
+ internalType: string;
576
+ components: ({
577
+ name: string;
578
+ type: string;
579
+ internalType: string;
580
+ components: {
581
+ name: string;
582
+ type: string;
583
+ internalType: string;
584
+ }[];
585
+ } | {
586
+ name: string;
587
+ type: string;
588
+ internalType: string;
589
+ components?: undefined;
590
+ })[];
591
+ })[];
592
+ outputs: {
593
+ name: string;
594
+ type: string;
595
+ internalType: string;
596
+ }[];
597
+ stateMutability: string;
598
+ anonymous?: undefined;
599
+ } | {
600
+ type: string;
601
+ name: string;
602
+ inputs: {
603
+ name: string;
604
+ type: string;
605
+ indexed: boolean;
606
+ internalType: string;
607
+ }[];
608
+ anonymous: boolean;
609
+ stateMutability?: undefined;
610
+ outputs?: undefined;
611
+ } | {
612
+ type: string;
613
+ name: string;
614
+ inputs: {
615
+ name: string;
616
+ type: string;
617
+ internalType: string;
618
+ }[];
619
+ stateMutability?: undefined;
620
+ outputs?: undefined;
621
+ anonymous?: undefined;
622
+ })[];
623
+ bytecode: string;
624
+ };
625
+ export declare const SimpleAccountArtifact: {
626
+ abi: ({
627
+ type: string;
628
+ inputs: {
629
+ name: string;
630
+ type: string;
631
+ internalType: string;
632
+ }[];
633
+ stateMutability: string;
634
+ name?: undefined;
635
+ outputs?: undefined;
636
+ anonymous?: undefined;
637
+ } | {
638
+ type: string;
639
+ stateMutability: string;
640
+ inputs?: undefined;
641
+ name?: undefined;
642
+ outputs?: undefined;
643
+ anonymous?: undefined;
644
+ } | {
645
+ type: string;
646
+ name: string;
647
+ inputs: ({
648
+ name: string;
649
+ type: string;
650
+ internalType: string;
651
+ components: {
652
+ name: string;
653
+ type: string;
654
+ internalType: string;
655
+ }[];
656
+ } | {
657
+ name: string;
658
+ type: string;
659
+ internalType: string;
660
+ components?: undefined;
661
+ })[];
662
+ outputs: {
663
+ name: string;
664
+ type: string;
665
+ internalType: string;
666
+ }[];
667
+ stateMutability: string;
668
+ anonymous?: undefined;
669
+ } | {
670
+ type: string;
671
+ name: string;
672
+ inputs: {
673
+ name: string;
674
+ type: string;
675
+ indexed: boolean;
676
+ internalType: string;
677
+ }[];
678
+ anonymous: boolean;
679
+ stateMutability?: undefined;
680
+ outputs?: undefined;
681
+ } | {
682
+ type: string;
683
+ name: string;
684
+ inputs: {
685
+ name: string;
686
+ type: string;
687
+ internalType: string;
688
+ }[];
689
+ stateMutability?: undefined;
690
+ outputs?: undefined;
691
+ anonymous?: undefined;
692
+ })[];
693
+ bytecode: string;
694
+ };
695
+ export declare const SimpleAccountFactoryArtifact: {
696
+ abi: ({
697
+ type: string;
698
+ inputs: {
699
+ name: string;
700
+ type: string;
701
+ internalType: string;
702
+ }[];
703
+ stateMutability: string;
704
+ name?: undefined;
705
+ outputs?: undefined;
706
+ } | {
707
+ type: string;
708
+ name: string;
709
+ inputs: {
710
+ name: string;
711
+ type: string;
712
+ internalType: string;
713
+ }[];
714
+ outputs: {
715
+ name: string;
716
+ type: string;
717
+ internalType: string;
718
+ }[];
719
+ stateMutability: string;
720
+ } | {
721
+ type: string;
722
+ name: string;
723
+ inputs: {
724
+ name: string;
725
+ type: string;
726
+ internalType: string;
727
+ }[];
728
+ stateMutability?: undefined;
729
+ outputs?: undefined;
730
+ })[];
731
+ bytecode: string;
732
+ };
733
+ export declare const xPNTsTokenArtifact: {
734
+ abi: ({
735
+ type: string;
736
+ inputs: {
737
+ name: string;
738
+ type: string;
739
+ internalType: string;
740
+ }[];
741
+ stateMutability: string;
742
+ name?: undefined;
743
+ outputs?: undefined;
744
+ anonymous?: undefined;
745
+ } | {
746
+ type: string;
747
+ name: string;
748
+ inputs: {
749
+ name: string;
750
+ type: string;
751
+ internalType: string;
752
+ }[];
753
+ outputs: {
754
+ name: string;
755
+ type: string;
756
+ internalType: string;
757
+ }[];
758
+ stateMutability: string;
759
+ anonymous?: undefined;
760
+ } | {
761
+ type: string;
762
+ name: string;
763
+ inputs: {
764
+ name: string;
765
+ type: string;
766
+ indexed: boolean;
767
+ internalType: string;
768
+ }[];
769
+ anonymous: boolean;
770
+ stateMutability?: undefined;
771
+ outputs?: undefined;
772
+ } | {
773
+ type: string;
774
+ name: string;
775
+ inputs: {
776
+ name: string;
777
+ type: string;
778
+ internalType: string;
779
+ }[];
780
+ stateMutability?: undefined;
781
+ outputs?: undefined;
782
+ anonymous?: undefined;
783
+ })[];
784
+ bytecode: string;
785
+ };
786
+ export declare const xPNTsFactoryArtifact: {
787
+ abi: ({
788
+ type: string;
789
+ inputs: {
790
+ name: string;
791
+ type: string;
792
+ internalType: string;
793
+ }[];
794
+ stateMutability: string;
795
+ name?: undefined;
796
+ outputs?: undefined;
797
+ anonymous?: undefined;
798
+ } | {
799
+ type: string;
800
+ name: string;
801
+ inputs: {
802
+ name: string;
803
+ type: string;
804
+ internalType: string;
805
+ }[];
806
+ outputs: {
807
+ name: string;
808
+ type: string;
809
+ internalType: string;
810
+ }[];
811
+ stateMutability: string;
812
+ anonymous?: undefined;
813
+ } | {
814
+ type: string;
815
+ name: string;
816
+ inputs: {
817
+ name: string;
818
+ type: string;
819
+ internalType: string;
820
+ }[];
821
+ outputs: {
822
+ name: string;
823
+ type: string;
824
+ internalType: string;
825
+ components: {
826
+ name: string;
827
+ type: string;
828
+ internalType: string;
829
+ }[];
830
+ }[];
831
+ stateMutability: string;
832
+ anonymous?: undefined;
833
+ } | {
834
+ type: string;
835
+ name: string;
836
+ inputs: {
837
+ name: string;
838
+ type: string;
839
+ indexed: boolean;
840
+ internalType: string;
841
+ }[];
842
+ anonymous: boolean;
843
+ stateMutability?: undefined;
844
+ outputs?: undefined;
845
+ } | {
846
+ type: string;
847
+ name: string;
848
+ inputs: {
849
+ name: string;
850
+ type: string;
851
+ internalType: string;
852
+ }[];
853
+ stateMutability?: undefined;
854
+ outputs?: undefined;
855
+ anonymous?: undefined;
856
+ })[];
857
+ bytecode: string;
858
+ };
859
+ export declare const MySBTArtifact: {
860
+ abi: ({
861
+ type: string;
862
+ inputs: {
863
+ name: string;
864
+ type: string;
865
+ internalType: string;
866
+ }[];
867
+ stateMutability: string;
868
+ name?: undefined;
869
+ outputs?: undefined;
870
+ anonymous?: undefined;
871
+ } | {
872
+ type: string;
873
+ name: string;
874
+ inputs: {
875
+ name: string;
876
+ type: string;
877
+ internalType: string;
878
+ }[];
879
+ outputs: {
880
+ name: string;
881
+ type: string;
882
+ internalType: string;
883
+ }[];
884
+ stateMutability: string;
885
+ anonymous?: undefined;
886
+ } | {
887
+ type: string;
888
+ name: string;
889
+ inputs: {
890
+ name: string;
891
+ type: string;
892
+ internalType: string;
893
+ }[];
894
+ outputs: {
895
+ name: string;
896
+ type: string;
897
+ internalType: string;
898
+ components: {
899
+ name: string;
900
+ type: string;
901
+ internalType: string;
902
+ }[];
903
+ }[];
904
+ stateMutability: string;
905
+ anonymous?: undefined;
906
+ } | {
907
+ type: string;
908
+ name: string;
909
+ inputs: {
910
+ name: string;
911
+ type: string;
912
+ indexed: boolean;
913
+ internalType: string;
914
+ }[];
915
+ anonymous: boolean;
916
+ stateMutability?: undefined;
917
+ outputs?: undefined;
918
+ } | {
919
+ type: string;
920
+ name: string;
921
+ inputs: {
922
+ name: string;
923
+ type: string;
924
+ internalType: string;
925
+ }[];
926
+ stateMutability?: undefined;
927
+ outputs?: undefined;
928
+ anonymous?: undefined;
929
+ })[];
930
+ bytecode: string;
931
+ };
932
+ export declare const ReputationSystemArtifact: {
933
+ abi: ({
934
+ type: string;
935
+ inputs: {
936
+ name: string;
937
+ type: string;
938
+ internalType: string;
939
+ }[];
940
+ stateMutability: string;
941
+ name?: undefined;
942
+ outputs?: undefined;
943
+ anonymous?: undefined;
944
+ } | {
945
+ type: string;
946
+ name: string;
947
+ inputs: {
948
+ name: string;
949
+ type: string;
950
+ internalType: string;
951
+ }[];
952
+ outputs: {
953
+ name: string;
954
+ type: string;
955
+ internalType: string;
956
+ }[];
957
+ stateMutability: string;
958
+ anonymous?: undefined;
959
+ } | {
960
+ type: string;
961
+ name: string;
962
+ inputs: {
963
+ name: string;
964
+ type: string;
965
+ indexed: boolean;
966
+ internalType: string;
967
+ }[];
968
+ anonymous: boolean;
969
+ stateMutability?: undefined;
970
+ outputs?: undefined;
971
+ } | {
972
+ type: string;
973
+ name: string;
974
+ inputs: {
975
+ name: string;
976
+ type: string;
977
+ internalType: string;
978
+ }[];
979
+ stateMutability?: undefined;
980
+ outputs?: undefined;
981
+ anonymous?: undefined;
982
+ })[];
983
+ bytecode: string;
984
+ };
985
+ export declare const DVTValidatorArtifact: {
986
+ abi: ({
987
+ type: string;
988
+ inputs: {
989
+ name: string;
990
+ type: string;
991
+ internalType: string;
992
+ }[];
993
+ stateMutability: string;
994
+ name?: undefined;
995
+ outputs?: undefined;
996
+ anonymous?: undefined;
997
+ } | {
998
+ type: string;
999
+ name: string;
1000
+ inputs: {
1001
+ name: string;
1002
+ type: string;
1003
+ internalType: string;
1004
+ }[];
1005
+ outputs: {
1006
+ name: string;
1007
+ type: string;
1008
+ internalType: string;
1009
+ }[];
1010
+ stateMutability: string;
1011
+ anonymous?: undefined;
1012
+ } | {
1013
+ type: string;
1014
+ name: string;
1015
+ inputs: {
1016
+ name: string;
1017
+ type: string;
1018
+ indexed: boolean;
1019
+ internalType: string;
1020
+ }[];
1021
+ anonymous: boolean;
1022
+ stateMutability?: undefined;
1023
+ outputs?: undefined;
1024
+ } | {
1025
+ type: string;
1026
+ name: string;
1027
+ inputs: {
1028
+ name: string;
1029
+ type: string;
1030
+ internalType: string;
1031
+ }[];
1032
+ stateMutability?: undefined;
1033
+ outputs?: undefined;
1034
+ anonymous?: undefined;
1035
+ })[];
1036
+ bytecode: string;
1037
+ };
1038
+ export declare const BLSAggregatorArtifact: {
1039
+ abi: ({
1040
+ type: string;
1041
+ inputs: {
1042
+ name: string;
1043
+ type: string;
1044
+ internalType: string;
1045
+ }[];
1046
+ stateMutability: string;
1047
+ name?: undefined;
1048
+ outputs?: undefined;
1049
+ anonymous?: undefined;
1050
+ } | {
1051
+ type: string;
1052
+ name: string;
1053
+ inputs: {
1054
+ name: string;
1055
+ type: string;
1056
+ internalType: string;
1057
+ }[];
1058
+ outputs: {
1059
+ name: string;
1060
+ type: string;
1061
+ internalType: string;
1062
+ }[];
1063
+ stateMutability: string;
1064
+ anonymous?: undefined;
1065
+ } | {
1066
+ type: string;
1067
+ name: string;
1068
+ inputs: {
1069
+ name: string;
1070
+ type: string;
1071
+ indexed: boolean;
1072
+ internalType: string;
1073
+ }[];
1074
+ anonymous: boolean;
1075
+ stateMutability?: undefined;
1076
+ outputs?: undefined;
1077
+ } | {
1078
+ type: string;
1079
+ name: string;
1080
+ inputs: {
1081
+ name: string;
1082
+ type: string;
1083
+ internalType: string;
1084
+ }[];
1085
+ stateMutability?: undefined;
1086
+ outputs?: undefined;
1087
+ anonymous?: undefined;
1088
+ })[];
1089
+ bytecode: string;
1090
+ };
1091
+ export declare const BLSValidatorArtifact: {
1092
+ abi: {
1093
+ type: string;
1094
+ name: string;
1095
+ inputs: {
1096
+ name: string;
1097
+ type: string;
1098
+ internalType: string;
1099
+ }[];
1100
+ outputs: {
1101
+ name: string;
1102
+ type: string;
1103
+ internalType: string;
1104
+ }[];
1105
+ stateMutability: string;
1106
+ }[];
1107
+ bytecode: string;
1108
+ };
1109
+ export declare const Abis: {
1110
+ readonly Registry: any;
1111
+ readonly GToken: any;
1112
+ readonly GTokenStaking: any;
1113
+ readonly SuperPaymaster: any;
1114
+ readonly PaymasterFactory: any;
1115
+ readonly Paymaster: any;
1116
+ readonly EntryPoint: any;
1117
+ readonly SimpleAccount: any;
1118
+ readonly SimpleAccountFactory: any;
1119
+ readonly xPNTsToken: any;
1120
+ readonly xPNTsFactory: any;
1121
+ readonly MySBT: any;
1122
+ readonly ReputationSystem: any;
1123
+ readonly DVTValidator: any;
1124
+ readonly BLSAggregator: any;
1125
+ readonly BLSValidator: any;
1126
+ };