@pufferfinance/puffer-sdk 1.18.1 → 1.20.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 (37) hide show
  1. package/dist/api/puffer-client.cjs +1 -1
  2. package/dist/api/puffer-client.cjs.map +1 -1
  3. package/dist/api/puffer-client.d.ts +6 -0
  4. package/dist/api/puffer-client.js +42 -28
  5. package/dist/api/puffer-client.js.map +1 -1
  6. package/dist/contracts/abis/mainnet/PufferOracleV2.cjs +2 -0
  7. package/dist/contracts/abis/mainnet/PufferOracleV2.cjs.map +1 -0
  8. package/dist/contracts/abis/mainnet/PufferOracleV2.d.ts +172 -0
  9. package/dist/contracts/abis/mainnet/PufferOracleV2.js +153 -0
  10. package/dist/contracts/abis/mainnet/PufferOracleV2.js.map +1 -0
  11. package/dist/contracts/abis/mainnet/PufferProtocol.cjs +2 -0
  12. package/dist/contracts/abis/mainnet/PufferProtocol.cjs.map +1 -0
  13. package/dist/contracts/abis/mainnet/PufferProtocol.d.ts +665 -0
  14. package/dist/contracts/abis/mainnet/PufferProtocol.js +866 -0
  15. package/dist/contracts/abis/mainnet/PufferProtocol.js.map +1 -0
  16. package/dist/contracts/addresses.cjs +1 -1
  17. package/dist/contracts/addresses.cjs.map +1 -1
  18. package/dist/contracts/addresses.d.ts +6 -0
  19. package/dist/contracts/addresses.js +8 -4
  20. package/dist/contracts/addresses.js.map +1 -1
  21. package/dist/contracts/handlers/puffer-oracle-v2-handler.cjs +2 -0
  22. package/dist/contracts/handlers/puffer-oracle-v2-handler.cjs.map +1 -0
  23. package/dist/contracts/handlers/puffer-oracle-v2-handler.d.ts +14789 -0
  24. package/dist/contracts/handlers/puffer-oracle-v2-handler.js +120 -0
  25. package/dist/contracts/handlers/puffer-oracle-v2-handler.js.map +1 -0
  26. package/dist/contracts/handlers/puffer-protocol-handler.cjs +2 -0
  27. package/dist/contracts/handlers/puffer-protocol-handler.cjs.map +1 -0
  28. package/dist/contracts/handlers/puffer-protocol-handler.d.ts +15413 -0
  29. package/dist/contracts/handlers/puffer-protocol-handler.js +258 -0
  30. package/dist/contracts/handlers/puffer-protocol-handler.js.map +1 -0
  31. package/dist/main.cjs +1 -1
  32. package/dist/main.d.ts +2 -0
  33. package/dist/main.js +22 -18
  34. package/dist/main.js.map +1 -1
  35. package/dist/utils/version.cjs +1 -1
  36. package/dist/utils/version.js +1 -1
  37. package/package.json +1 -1
@@ -0,0 +1,665 @@
1
+ export declare const PufferProtocol: readonly [{
2
+ readonly type: "constructor";
3
+ readonly inputs: readonly [{
4
+ readonly name: "pufferVault";
5
+ readonly type: "address";
6
+ readonly internalType: "contract PufferVaultV2";
7
+ }, {
8
+ readonly name: "guardianModule";
9
+ readonly type: "address";
10
+ readonly internalType: "contract IGuardianModule";
11
+ }, {
12
+ readonly name: "moduleManager";
13
+ readonly type: "address";
14
+ readonly internalType: "address";
15
+ }, {
16
+ readonly name: "validatorTicket";
17
+ readonly type: "address";
18
+ readonly internalType: "contract ValidatorTicket";
19
+ }, {
20
+ readonly name: "oracle";
21
+ readonly type: "address";
22
+ readonly internalType: "contract IPufferOracleV2";
23
+ }, {
24
+ readonly name: "beaconDepositContract";
25
+ readonly type: "address";
26
+ readonly internalType: "address";
27
+ }];
28
+ readonly stateMutability: "nonpayable";
29
+ }, {
30
+ readonly type: "function";
31
+ readonly name: "batchHandleWithdrawals";
32
+ readonly inputs: readonly [{
33
+ readonly name: "validatorInfos";
34
+ readonly type: "tuple[]";
35
+ readonly internalType: "struct StoppedValidatorInfo[]";
36
+ readonly components: readonly [{
37
+ readonly name: "module";
38
+ readonly type: "address";
39
+ readonly internalType: "address";
40
+ }, {
41
+ readonly name: "startEpoch";
42
+ readonly type: "uint256";
43
+ readonly internalType: "uint256";
44
+ }, {
45
+ readonly name: "endEpoch";
46
+ readonly type: "uint256";
47
+ readonly internalType: "uint256";
48
+ }, {
49
+ readonly name: "wasSlashed";
50
+ readonly type: "bool";
51
+ readonly internalType: "bool";
52
+ }, {
53
+ readonly name: "moduleName";
54
+ readonly type: "bytes32";
55
+ readonly internalType: "bytes32";
56
+ }, {
57
+ readonly name: "pufferModuleIndex";
58
+ readonly type: "uint256";
59
+ readonly internalType: "uint256";
60
+ }, {
61
+ readonly name: "withdrawalAmount";
62
+ readonly type: "uint256";
63
+ readonly internalType: "uint256";
64
+ }];
65
+ }, {
66
+ readonly name: "guardianEOASignatures";
67
+ readonly type: "bytes[]";
68
+ readonly internalType: "bytes[]";
69
+ }];
70
+ readonly outputs: readonly [];
71
+ readonly stateMutability: "nonpayable";
72
+ }, {
73
+ readonly type: "function";
74
+ readonly name: "createPufferModule";
75
+ readonly inputs: readonly [{
76
+ readonly name: "moduleName";
77
+ readonly type: "bytes32";
78
+ readonly internalType: "bytes32";
79
+ }];
80
+ readonly outputs: readonly [{
81
+ readonly name: "";
82
+ readonly type: "address";
83
+ readonly internalType: "address";
84
+ }];
85
+ readonly stateMutability: "nonpayable";
86
+ }, {
87
+ readonly type: "function";
88
+ readonly name: "depositValidatorTickets";
89
+ readonly inputs: readonly [{
90
+ readonly name: "permit";
91
+ readonly type: "tuple";
92
+ readonly internalType: "struct Permit";
93
+ readonly components: readonly [{
94
+ readonly name: "deadline";
95
+ readonly type: "uint256";
96
+ readonly internalType: "uint256";
97
+ }, {
98
+ readonly name: "amount";
99
+ readonly type: "uint256";
100
+ readonly internalType: "uint256";
101
+ }, {
102
+ readonly name: "v";
103
+ readonly type: "uint8";
104
+ readonly internalType: "uint8";
105
+ }, {
106
+ readonly name: "r";
107
+ readonly type: "bytes32";
108
+ readonly internalType: "bytes32";
109
+ }, {
110
+ readonly name: "s";
111
+ readonly type: "bytes32";
112
+ readonly internalType: "bytes32";
113
+ }];
114
+ }, {
115
+ readonly name: "node";
116
+ readonly type: "address";
117
+ readonly internalType: "address";
118
+ }];
119
+ readonly outputs: readonly [];
120
+ readonly stateMutability: "nonpayable";
121
+ }, {
122
+ readonly type: "function";
123
+ readonly name: "getDepositDataRoot";
124
+ readonly inputs: readonly [{
125
+ readonly name: "pubKey";
126
+ readonly type: "bytes";
127
+ readonly internalType: "bytes";
128
+ }, {
129
+ readonly name: "signature";
130
+ readonly type: "bytes";
131
+ readonly internalType: "bytes";
132
+ }, {
133
+ readonly name: "withdrawalCredentials";
134
+ readonly type: "bytes";
135
+ readonly internalType: "bytes";
136
+ }];
137
+ readonly outputs: readonly [{
138
+ readonly name: "";
139
+ readonly type: "bytes32";
140
+ readonly internalType: "bytes32";
141
+ }];
142
+ readonly stateMutability: "pure";
143
+ }, {
144
+ readonly type: "function";
145
+ readonly name: "getMinimumVtAmount";
146
+ readonly inputs: readonly [];
147
+ readonly outputs: readonly [{
148
+ readonly name: "";
149
+ readonly type: "uint256";
150
+ readonly internalType: "uint256";
151
+ }];
152
+ readonly stateMutability: "view";
153
+ }, {
154
+ readonly type: "function";
155
+ readonly name: "getModuleAddress";
156
+ readonly inputs: readonly [{
157
+ readonly name: "moduleName";
158
+ readonly type: "bytes32";
159
+ readonly internalType: "bytes32";
160
+ }];
161
+ readonly outputs: readonly [{
162
+ readonly name: "";
163
+ readonly type: "address";
164
+ readonly internalType: "address";
165
+ }];
166
+ readonly stateMutability: "view";
167
+ }, {
168
+ readonly type: "function";
169
+ readonly name: "getModuleLimitInformation";
170
+ readonly inputs: readonly [{
171
+ readonly name: "moduleName";
172
+ readonly type: "bytes32";
173
+ readonly internalType: "bytes32";
174
+ }];
175
+ readonly outputs: readonly [{
176
+ readonly name: "info";
177
+ readonly type: "tuple";
178
+ readonly internalType: "struct ModuleLimit";
179
+ readonly components: readonly [{
180
+ readonly name: "allowedLimit";
181
+ readonly type: "uint128";
182
+ readonly internalType: "uint128";
183
+ }, {
184
+ readonly name: "numberOfRegisteredValidators";
185
+ readonly type: "uint128";
186
+ readonly internalType: "uint128";
187
+ }];
188
+ }];
189
+ readonly stateMutability: "view";
190
+ }, {
191
+ readonly type: "function";
192
+ readonly name: "getModuleWeights";
193
+ readonly inputs: readonly [];
194
+ readonly outputs: readonly [{
195
+ readonly name: "";
196
+ readonly type: "bytes32[]";
197
+ readonly internalType: "bytes32[]";
198
+ }];
199
+ readonly stateMutability: "view";
200
+ }, {
201
+ readonly type: "function";
202
+ readonly name: "getNextValidatorToProvision";
203
+ readonly inputs: readonly [];
204
+ readonly outputs: readonly [{
205
+ readonly name: "";
206
+ readonly type: "bytes32";
207
+ readonly internalType: "bytes32";
208
+ }, {
209
+ readonly name: "";
210
+ readonly type: "uint256";
211
+ readonly internalType: "uint256";
212
+ }];
213
+ readonly stateMutability: "view";
214
+ }, {
215
+ readonly type: "function";
216
+ readonly name: "getNodeInfo";
217
+ readonly inputs: readonly [{
218
+ readonly name: "node";
219
+ readonly type: "address";
220
+ readonly internalType: "address";
221
+ }];
222
+ readonly outputs: readonly [{
223
+ readonly name: "";
224
+ readonly type: "tuple";
225
+ readonly internalType: "struct NodeInfo";
226
+ readonly components: readonly [{
227
+ readonly name: "activeValidatorCount";
228
+ readonly type: "uint64";
229
+ readonly internalType: "uint64";
230
+ }, {
231
+ readonly name: "pendingValidatorCount";
232
+ readonly type: "uint64";
233
+ readonly internalType: "uint64";
234
+ }, {
235
+ readonly name: "vtBalance";
236
+ readonly type: "uint96";
237
+ readonly internalType: "uint96";
238
+ }];
239
+ }];
240
+ readonly stateMutability: "view";
241
+ }, {
242
+ readonly type: "function";
243
+ readonly name: "getVTPenalty";
244
+ readonly inputs: readonly [];
245
+ readonly outputs: readonly [{
246
+ readonly name: "";
247
+ readonly type: "uint256";
248
+ readonly internalType: "uint256";
249
+ }];
250
+ readonly stateMutability: "view";
251
+ }, {
252
+ readonly type: "function";
253
+ readonly name: "getValidatorInfo";
254
+ readonly inputs: readonly [{
255
+ readonly name: "moduleName";
256
+ readonly type: "bytes32";
257
+ readonly internalType: "bytes32";
258
+ }, {
259
+ readonly name: "pufferModuleIndex";
260
+ readonly type: "uint256";
261
+ readonly internalType: "uint256";
262
+ }];
263
+ readonly outputs: readonly [{
264
+ readonly name: "";
265
+ readonly type: "tuple";
266
+ readonly internalType: "struct Validator";
267
+ readonly components: readonly [{
268
+ readonly name: "node";
269
+ readonly type: "address";
270
+ readonly internalType: "address";
271
+ }, {
272
+ readonly name: "bond";
273
+ readonly type: "uint96";
274
+ readonly internalType: "uint96";
275
+ }, {
276
+ readonly name: "module";
277
+ readonly type: "address";
278
+ readonly internalType: "address";
279
+ }, {
280
+ readonly name: "status";
281
+ readonly type: "uint8";
282
+ readonly internalType: "enum Status";
283
+ }, {
284
+ readonly name: "pubKey";
285
+ readonly type: "bytes";
286
+ readonly internalType: "bytes";
287
+ }];
288
+ }];
289
+ readonly stateMutability: "view";
290
+ }, {
291
+ readonly type: "function";
292
+ readonly name: "getValidatorTicketsBalance";
293
+ readonly inputs: readonly [{
294
+ readonly name: "owner";
295
+ readonly type: "address";
296
+ readonly internalType: "address";
297
+ }];
298
+ readonly outputs: readonly [{
299
+ readonly name: "";
300
+ readonly type: "uint256";
301
+ readonly internalType: "uint256";
302
+ }];
303
+ readonly stateMutability: "view";
304
+ }, {
305
+ readonly type: "function";
306
+ readonly name: "getValidators";
307
+ readonly inputs: readonly [{
308
+ readonly name: "moduleName";
309
+ readonly type: "bytes32";
310
+ readonly internalType: "bytes32";
311
+ }];
312
+ readonly outputs: readonly [{
313
+ readonly name: "";
314
+ readonly type: "tuple[]";
315
+ readonly internalType: "struct Validator[]";
316
+ readonly components: readonly [{
317
+ readonly name: "node";
318
+ readonly type: "address";
319
+ readonly internalType: "address";
320
+ }, {
321
+ readonly name: "bond";
322
+ readonly type: "uint96";
323
+ readonly internalType: "uint96";
324
+ }, {
325
+ readonly name: "module";
326
+ readonly type: "address";
327
+ readonly internalType: "address";
328
+ }, {
329
+ readonly name: "status";
330
+ readonly type: "uint8";
331
+ readonly internalType: "enum Status";
332
+ }, {
333
+ readonly name: "pubKey";
334
+ readonly type: "bytes";
335
+ readonly internalType: "bytes";
336
+ }];
337
+ }];
338
+ readonly stateMutability: "view";
339
+ }, {
340
+ readonly type: "function";
341
+ readonly name: "getWithdrawalCredentials";
342
+ readonly inputs: readonly [{
343
+ readonly name: "module";
344
+ readonly type: "address";
345
+ readonly internalType: "address";
346
+ }];
347
+ readonly outputs: readonly [{
348
+ readonly name: "";
349
+ readonly type: "bytes";
350
+ readonly internalType: "bytes";
351
+ }];
352
+ readonly stateMutability: "view";
353
+ }, {
354
+ readonly type: "function";
355
+ readonly name: "provisionNode";
356
+ readonly inputs: readonly [{
357
+ readonly name: "guardianEnclaveSignatures";
358
+ readonly type: "bytes[]";
359
+ readonly internalType: "bytes[]";
360
+ }, {
361
+ readonly name: "validatorSignature";
362
+ readonly type: "bytes";
363
+ readonly internalType: "bytes";
364
+ }, {
365
+ readonly name: "depositRootHash";
366
+ readonly type: "bytes32";
367
+ readonly internalType: "bytes32";
368
+ }];
369
+ readonly outputs: readonly [];
370
+ readonly stateMutability: "nonpayable";
371
+ }, {
372
+ readonly type: "function";
373
+ readonly name: "registerValidatorKey";
374
+ readonly inputs: readonly [{
375
+ readonly name: "data";
376
+ readonly type: "tuple";
377
+ readonly internalType: "struct ValidatorKeyData";
378
+ readonly components: readonly [{
379
+ readonly name: "blsPubKey";
380
+ readonly type: "bytes";
381
+ readonly internalType: "bytes";
382
+ }, {
383
+ readonly name: "signature";
384
+ readonly type: "bytes";
385
+ readonly internalType: "bytes";
386
+ }, {
387
+ readonly name: "depositDataRoot";
388
+ readonly type: "bytes32";
389
+ readonly internalType: "bytes32";
390
+ }, {
391
+ readonly name: "blsEncryptedPrivKeyShares";
392
+ readonly type: "bytes[]";
393
+ readonly internalType: "bytes[]";
394
+ }, {
395
+ readonly name: "blsPubKeySet";
396
+ readonly type: "bytes";
397
+ readonly internalType: "bytes";
398
+ }, {
399
+ readonly name: "raveEvidence";
400
+ readonly type: "bytes";
401
+ readonly internalType: "bytes";
402
+ }];
403
+ }, {
404
+ readonly name: "moduleName";
405
+ readonly type: "bytes32";
406
+ readonly internalType: "bytes32";
407
+ }, {
408
+ readonly name: "pufETHPermit";
409
+ readonly type: "tuple";
410
+ readonly internalType: "struct Permit";
411
+ readonly components: readonly [{
412
+ readonly name: "deadline";
413
+ readonly type: "uint256";
414
+ readonly internalType: "uint256";
415
+ }, {
416
+ readonly name: "amount";
417
+ readonly type: "uint256";
418
+ readonly internalType: "uint256";
419
+ }, {
420
+ readonly name: "v";
421
+ readonly type: "uint8";
422
+ readonly internalType: "uint8";
423
+ }, {
424
+ readonly name: "r";
425
+ readonly type: "bytes32";
426
+ readonly internalType: "bytes32";
427
+ }, {
428
+ readonly name: "s";
429
+ readonly type: "bytes32";
430
+ readonly internalType: "bytes32";
431
+ }];
432
+ }, {
433
+ readonly name: "vtPermit";
434
+ readonly type: "tuple";
435
+ readonly internalType: "struct Permit";
436
+ readonly components: readonly [{
437
+ readonly name: "deadline";
438
+ readonly type: "uint256";
439
+ readonly internalType: "uint256";
440
+ }, {
441
+ readonly name: "amount";
442
+ readonly type: "uint256";
443
+ readonly internalType: "uint256";
444
+ }, {
445
+ readonly name: "v";
446
+ readonly type: "uint8";
447
+ readonly internalType: "uint8";
448
+ }, {
449
+ readonly name: "r";
450
+ readonly type: "bytes32";
451
+ readonly internalType: "bytes32";
452
+ }, {
453
+ readonly name: "s";
454
+ readonly type: "bytes32";
455
+ readonly internalType: "bytes32";
456
+ }];
457
+ }];
458
+ readonly outputs: readonly [];
459
+ readonly stateMutability: "payable";
460
+ }, {
461
+ readonly type: "function";
462
+ readonly name: "skipProvisioning";
463
+ readonly inputs: readonly [{
464
+ readonly name: "moduleName";
465
+ readonly type: "bytes32";
466
+ readonly internalType: "bytes32";
467
+ }, {
468
+ readonly name: "guardianEOASignatures";
469
+ readonly type: "bytes[]";
470
+ readonly internalType: "bytes[]";
471
+ }];
472
+ readonly outputs: readonly [];
473
+ readonly stateMutability: "nonpayable";
474
+ }, {
475
+ readonly type: "function";
476
+ readonly name: "withdrawValidatorTickets";
477
+ readonly inputs: readonly [{
478
+ readonly name: "amount";
479
+ readonly type: "uint96";
480
+ readonly internalType: "uint96";
481
+ }, {
482
+ readonly name: "recipient";
483
+ readonly type: "address";
484
+ readonly internalType: "address";
485
+ }];
486
+ readonly outputs: readonly [];
487
+ readonly stateMutability: "nonpayable";
488
+ }, {
489
+ readonly type: "event";
490
+ readonly name: "NewPufferModuleCreated";
491
+ readonly inputs: readonly [{
492
+ readonly name: "module";
493
+ readonly type: "address";
494
+ readonly indexed: false;
495
+ readonly internalType: "address";
496
+ }, {
497
+ readonly name: "moduleName";
498
+ readonly type: "bytes32";
499
+ readonly indexed: true;
500
+ readonly internalType: "bytes32";
501
+ }, {
502
+ readonly name: "withdrawalCredentials";
503
+ readonly type: "bytes32";
504
+ readonly indexed: false;
505
+ readonly internalType: "bytes32";
506
+ }];
507
+ readonly anonymous: false;
508
+ }, {
509
+ readonly type: "event";
510
+ readonly name: "SuccessfullyProvisioned";
511
+ readonly inputs: readonly [{
512
+ readonly name: "pubKey";
513
+ readonly type: "bytes";
514
+ readonly indexed: false;
515
+ readonly internalType: "bytes";
516
+ }, {
517
+ readonly name: "pufferModuleIndex";
518
+ readonly type: "uint256";
519
+ readonly indexed: true;
520
+ readonly internalType: "uint256";
521
+ }, {
522
+ readonly name: "moduleName";
523
+ readonly type: "bytes32";
524
+ readonly indexed: true;
525
+ readonly internalType: "bytes32";
526
+ }];
527
+ readonly anonymous: false;
528
+ }, {
529
+ readonly type: "event";
530
+ readonly name: "ValidatorKeyRegistered";
531
+ readonly inputs: readonly [{
532
+ readonly name: "pubKey";
533
+ readonly type: "bytes";
534
+ readonly indexed: false;
535
+ readonly internalType: "bytes";
536
+ }, {
537
+ readonly name: "pufferModuleIndex";
538
+ readonly type: "uint256";
539
+ readonly indexed: true;
540
+ readonly internalType: "uint256";
541
+ }, {
542
+ readonly name: "moduleName";
543
+ readonly type: "bytes32";
544
+ readonly indexed: true;
545
+ readonly internalType: "bytes32";
546
+ }, {
547
+ readonly name: "usingEnclave";
548
+ readonly type: "bool";
549
+ readonly indexed: false;
550
+ readonly internalType: "bool";
551
+ }];
552
+ readonly anonymous: false;
553
+ }, {
554
+ readonly type: "event";
555
+ readonly name: "ValidatorTicketsDeposited";
556
+ readonly inputs: readonly [{
557
+ readonly name: "node";
558
+ readonly type: "address";
559
+ readonly indexed: true;
560
+ readonly internalType: "address";
561
+ }, {
562
+ readonly name: "depositor";
563
+ readonly type: "address";
564
+ readonly indexed: true;
565
+ readonly internalType: "address";
566
+ }, {
567
+ readonly name: "amount";
568
+ readonly type: "uint256";
569
+ readonly indexed: false;
570
+ readonly internalType: "uint256";
571
+ }];
572
+ readonly anonymous: false;
573
+ }, {
574
+ readonly type: "event";
575
+ readonly name: "ValidatorTicketsWithdrawn";
576
+ readonly inputs: readonly [{
577
+ readonly name: "node";
578
+ readonly type: "address";
579
+ readonly indexed: true;
580
+ readonly internalType: "address";
581
+ }, {
582
+ readonly name: "recipient";
583
+ readonly type: "address";
584
+ readonly indexed: true;
585
+ readonly internalType: "address";
586
+ }, {
587
+ readonly name: "amount";
588
+ readonly type: "uint256";
589
+ readonly indexed: false;
590
+ readonly internalType: "uint256";
591
+ }];
592
+ readonly anonymous: false;
593
+ }, {
594
+ readonly type: "error";
595
+ readonly name: "AccessManagedInvalidAuthority";
596
+ readonly inputs: readonly [{
597
+ readonly name: "authority";
598
+ readonly type: "address";
599
+ readonly internalType: "address";
600
+ }];
601
+ }, {
602
+ readonly type: "error";
603
+ readonly name: "AccessManagedRequiredDelay";
604
+ readonly inputs: readonly [{
605
+ readonly name: "caller";
606
+ readonly type: "address";
607
+ readonly internalType: "address";
608
+ }, {
609
+ readonly name: "delay";
610
+ readonly type: "uint32";
611
+ readonly internalType: "uint32";
612
+ }];
613
+ }, {
614
+ readonly type: "error";
615
+ readonly name: "AccessManagedUnauthorized";
616
+ readonly inputs: readonly [{
617
+ readonly name: "caller";
618
+ readonly type: "address";
619
+ readonly internalType: "address";
620
+ }];
621
+ }, {
622
+ readonly type: "error";
623
+ readonly name: "InvalidAddress";
624
+ readonly inputs: readonly [];
625
+ }, {
626
+ readonly type: "error";
627
+ readonly name: "InvalidBLSPrivateKeyShares";
628
+ readonly inputs: readonly [];
629
+ }, {
630
+ readonly type: "error";
631
+ readonly name: "InvalidBLSPubKey";
632
+ readonly inputs: readonly [];
633
+ }, {
634
+ readonly type: "error";
635
+ readonly name: "InvalidBLSPublicKeySet";
636
+ readonly inputs: readonly [];
637
+ }, {
638
+ readonly type: "error";
639
+ readonly name: "InvalidDepositRootHash";
640
+ readonly inputs: readonly [];
641
+ }, {
642
+ readonly type: "error";
643
+ readonly name: "InvalidETHAmount";
644
+ readonly inputs: readonly [];
645
+ }, {
646
+ readonly type: "error";
647
+ readonly name: "InvalidVTAmount";
648
+ readonly inputs: readonly [];
649
+ }, {
650
+ readonly type: "error";
651
+ readonly name: "InvalidValidatorState";
652
+ readonly inputs: readonly [{
653
+ readonly name: "status";
654
+ readonly type: "uint8";
655
+ readonly internalType: "enum Status";
656
+ }];
657
+ }, {
658
+ readonly type: "error";
659
+ readonly name: "ModuleAlreadyExists";
660
+ readonly inputs: readonly [];
661
+ }, {
662
+ readonly type: "error";
663
+ readonly name: "ValidatorLimitForModuleReached";
664
+ readonly inputs: readonly [];
665
+ }];