@aztec/l1-artifacts 0.71.0 → 0.72.1

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.
@@ -0,0 +1,1461 @@
1
+ /**
2
+ * HonkVerifier ABI.
3
+ */
4
+ export const HonkVerifierAbi = [
5
+ {
6
+ "type": "error",
7
+ "name": "CoinIssuer__InsufficientMintAvailable",
8
+ "inputs": [
9
+ {
10
+ "name": "available",
11
+ "type": "uint256",
12
+ "internalType": "uint256"
13
+ },
14
+ {
15
+ "name": "needed",
16
+ "type": "uint256",
17
+ "internalType": "uint256"
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "type": "error",
23
+ "name": "DevNet__InvalidProposer",
24
+ "inputs": [
25
+ {
26
+ "name": "expected",
27
+ "type": "address",
28
+ "internalType": "address"
29
+ },
30
+ {
31
+ "name": "actual",
32
+ "type": "address",
33
+ "internalType": "address"
34
+ }
35
+ ]
36
+ },
37
+ {
38
+ "type": "error",
39
+ "name": "DevNet__NoPruningAllowed",
40
+ "inputs": []
41
+ },
42
+ {
43
+ "type": "error",
44
+ "name": "FeeJuicePortal__AlreadyInitialized",
45
+ "inputs": []
46
+ },
47
+ {
48
+ "type": "error",
49
+ "name": "FeeJuicePortal__InvalidInitialization",
50
+ "inputs": []
51
+ },
52
+ {
53
+ "type": "error",
54
+ "name": "FeeJuicePortal__Unauthorized",
55
+ "inputs": []
56
+ },
57
+ {
58
+ "type": "error",
59
+ "name": "FeeMath__InvalidFeeAssetPriceModifier",
60
+ "inputs": []
61
+ },
62
+ {
63
+ "type": "error",
64
+ "name": "FeeMath__InvalidProvingCostModifier",
65
+ "inputs": []
66
+ },
67
+ {
68
+ "type": "error",
69
+ "name": "GovernanceProposer__CanOnlyExecuteProposalInPast",
70
+ "inputs": []
71
+ },
72
+ {
73
+ "type": "error",
74
+ "name": "GovernanceProposer__FailedToPropose",
75
+ "inputs": [
76
+ {
77
+ "name": "proposal",
78
+ "type": "address",
79
+ "internalType": "contract IPayload"
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "type": "error",
85
+ "name": "GovernanceProposer__InstanceHaveNoCode",
86
+ "inputs": [
87
+ {
88
+ "name": "instance",
89
+ "type": "address",
90
+ "internalType": "address"
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "type": "error",
96
+ "name": "GovernanceProposer__InsufficientVotes",
97
+ "inputs": [
98
+ {
99
+ "name": "votesCast",
100
+ "type": "uint256",
101
+ "internalType": "uint256"
102
+ },
103
+ {
104
+ "name": "votesNeeded",
105
+ "type": "uint256",
106
+ "internalType": "uint256"
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ "type": "error",
112
+ "name": "GovernanceProposer__InvalidNAndMValues",
113
+ "inputs": [
114
+ {
115
+ "name": "n",
116
+ "type": "uint256",
117
+ "internalType": "uint256"
118
+ },
119
+ {
120
+ "name": "m",
121
+ "type": "uint256",
122
+ "internalType": "uint256"
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "type": "error",
128
+ "name": "GovernanceProposer__NCannotBeLargerTHanM",
129
+ "inputs": [
130
+ {
131
+ "name": "n",
132
+ "type": "uint256",
133
+ "internalType": "uint256"
134
+ },
135
+ {
136
+ "name": "m",
137
+ "type": "uint256",
138
+ "internalType": "uint256"
139
+ }
140
+ ]
141
+ },
142
+ {
143
+ "type": "error",
144
+ "name": "GovernanceProposer__OnlyProposerCanVote",
145
+ "inputs": [
146
+ {
147
+ "name": "caller",
148
+ "type": "address",
149
+ "internalType": "address"
150
+ },
151
+ {
152
+ "name": "proposer",
153
+ "type": "address",
154
+ "internalType": "address"
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "type": "error",
160
+ "name": "GovernanceProposer__ProposalAlreadyExecuted",
161
+ "inputs": [
162
+ {
163
+ "name": "roundNumber",
164
+ "type": "uint256",
165
+ "internalType": "uint256"
166
+ }
167
+ ]
168
+ },
169
+ {
170
+ "type": "error",
171
+ "name": "GovernanceProposer__ProposalCannotBeAddressZero",
172
+ "inputs": []
173
+ },
174
+ {
175
+ "type": "error",
176
+ "name": "GovernanceProposer__ProposalHaveNoCode",
177
+ "inputs": [
178
+ {
179
+ "name": "proposal",
180
+ "type": "address",
181
+ "internalType": "contract IPayload"
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "type": "error",
187
+ "name": "GovernanceProposer__ProposalTooOld",
188
+ "inputs": [
189
+ {
190
+ "name": "roundNumber",
191
+ "type": "uint256",
192
+ "internalType": "uint256"
193
+ },
194
+ {
195
+ "name": "currentRoundNumber",
196
+ "type": "uint256",
197
+ "internalType": "uint256"
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ "type": "error",
203
+ "name": "GovernanceProposer__VoteAlreadyCastForSlot",
204
+ "inputs": [
205
+ {
206
+ "name": "slot",
207
+ "type": "uint256",
208
+ "internalType": "Slot"
209
+ }
210
+ ]
211
+ },
212
+ {
213
+ "type": "error",
214
+ "name": "Governance__CallFailed",
215
+ "inputs": [
216
+ {
217
+ "name": "target",
218
+ "type": "address",
219
+ "internalType": "address"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "type": "error",
225
+ "name": "Governance__CallerNotGovernanceProposer",
226
+ "inputs": [
227
+ {
228
+ "name": "caller",
229
+ "type": "address",
230
+ "internalType": "address"
231
+ },
232
+ {
233
+ "name": "governanceProposer",
234
+ "type": "address",
235
+ "internalType": "address"
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "type": "error",
241
+ "name": "Governance__CallerNotSelf",
242
+ "inputs": [
243
+ {
244
+ "name": "caller",
245
+ "type": "address",
246
+ "internalType": "address"
247
+ },
248
+ {
249
+ "name": "self",
250
+ "type": "address",
251
+ "internalType": "address"
252
+ }
253
+ ]
254
+ },
255
+ {
256
+ "type": "error",
257
+ "name": "Governance__CannotCallAsset",
258
+ "inputs": []
259
+ },
260
+ {
261
+ "type": "error",
262
+ "name": "Governance__ConfigurationLib__DifferentialTooBig",
263
+ "inputs": []
264
+ },
265
+ {
266
+ "type": "error",
267
+ "name": "Governance__ConfigurationLib__DifferentialTooSmall",
268
+ "inputs": []
269
+ },
270
+ {
271
+ "type": "error",
272
+ "name": "Governance__ConfigurationLib__InvalidMinimumVotes",
273
+ "inputs": []
274
+ },
275
+ {
276
+ "type": "error",
277
+ "name": "Governance__ConfigurationLib__LockAmountTooSmall",
278
+ "inputs": []
279
+ },
280
+ {
281
+ "type": "error",
282
+ "name": "Governance__ConfigurationLib__QuorumTooBig",
283
+ "inputs": []
284
+ },
285
+ {
286
+ "type": "error",
287
+ "name": "Governance__ConfigurationLib__QuorumTooSmall",
288
+ "inputs": []
289
+ },
290
+ {
291
+ "type": "error",
292
+ "name": "Governance__ConfigurationLib__TimeTooBig",
293
+ "inputs": [
294
+ {
295
+ "name": "name",
296
+ "type": "string",
297
+ "internalType": "string"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "type": "error",
303
+ "name": "Governance__ConfigurationLib__TimeTooSmall",
304
+ "inputs": [
305
+ {
306
+ "name": "name",
307
+ "type": "string",
308
+ "internalType": "string"
309
+ }
310
+ ]
311
+ },
312
+ {
313
+ "type": "error",
314
+ "name": "Governance__InsufficientPower",
315
+ "inputs": [
316
+ {
317
+ "name": "voter",
318
+ "type": "address",
319
+ "internalType": "address"
320
+ },
321
+ {
322
+ "name": "have",
323
+ "type": "uint256",
324
+ "internalType": "uint256"
325
+ },
326
+ {
327
+ "name": "required",
328
+ "type": "uint256",
329
+ "internalType": "uint256"
330
+ }
331
+ ]
332
+ },
333
+ {
334
+ "type": "error",
335
+ "name": "Governance__InvalidConfiguration",
336
+ "inputs": []
337
+ },
338
+ {
339
+ "type": "error",
340
+ "name": "Governance__NoCheckpointsFound",
341
+ "inputs": []
342
+ },
343
+ {
344
+ "type": "error",
345
+ "name": "Governance__ProposalAlreadyDropped",
346
+ "inputs": []
347
+ },
348
+ {
349
+ "type": "error",
350
+ "name": "Governance__ProposalCannotBeDropped",
351
+ "inputs": []
352
+ },
353
+ {
354
+ "type": "error",
355
+ "name": "Governance__ProposalDoesNotExists",
356
+ "inputs": [
357
+ {
358
+ "name": "proposalId",
359
+ "type": "uint256",
360
+ "internalType": "uint256"
361
+ }
362
+ ]
363
+ },
364
+ {
365
+ "type": "error",
366
+ "name": "Governance__ProposalLib__MoreVoteThanExistNeeded",
367
+ "inputs": []
368
+ },
369
+ {
370
+ "type": "error",
371
+ "name": "Governance__ProposalLib__MoreYeaVoteThanExistNeeded",
372
+ "inputs": []
373
+ },
374
+ {
375
+ "type": "error",
376
+ "name": "Governance__ProposalLib__ZeroMinimum",
377
+ "inputs": []
378
+ },
379
+ {
380
+ "type": "error",
381
+ "name": "Governance__ProposalLib__ZeroVotesNeeded",
382
+ "inputs": []
383
+ },
384
+ {
385
+ "type": "error",
386
+ "name": "Governance__ProposalLib__ZeroYeaVotesNeeded",
387
+ "inputs": []
388
+ },
389
+ {
390
+ "type": "error",
391
+ "name": "Governance__ProposalNotActive",
392
+ "inputs": []
393
+ },
394
+ {
395
+ "type": "error",
396
+ "name": "Governance__ProposalNotExecutable",
397
+ "inputs": []
398
+ },
399
+ {
400
+ "type": "error",
401
+ "name": "Governance__UserLib__NotInPast",
402
+ "inputs": []
403
+ },
404
+ {
405
+ "type": "error",
406
+ "name": "Governance__WithdrawalAlreadyclaimed",
407
+ "inputs": []
408
+ },
409
+ {
410
+ "type": "error",
411
+ "name": "Governance__WithdrawalNotUnlockedYet",
412
+ "inputs": [
413
+ {
414
+ "name": "currentTime",
415
+ "type": "uint256",
416
+ "internalType": "Timestamp"
417
+ },
418
+ {
419
+ "name": "unlocksAt",
420
+ "type": "uint256",
421
+ "internalType": "Timestamp"
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "type": "error",
427
+ "name": "HeaderLib__InvalidHeaderSize",
428
+ "inputs": [
429
+ {
430
+ "name": "expected",
431
+ "type": "uint256",
432
+ "internalType": "uint256"
433
+ },
434
+ {
435
+ "name": "actual",
436
+ "type": "uint256",
437
+ "internalType": "uint256"
438
+ }
439
+ ]
440
+ },
441
+ {
442
+ "type": "error",
443
+ "name": "HeaderLib__InvalidSlotNumber",
444
+ "inputs": [
445
+ {
446
+ "name": "expected",
447
+ "type": "uint256",
448
+ "internalType": "Slot"
449
+ },
450
+ {
451
+ "name": "actual",
452
+ "type": "uint256",
453
+ "internalType": "Slot"
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "type": "error",
459
+ "name": "Inbox__ActorTooLarge",
460
+ "inputs": [
461
+ {
462
+ "name": "actor",
463
+ "type": "bytes32",
464
+ "internalType": "bytes32"
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "type": "error",
470
+ "name": "Inbox__ContentTooLarge",
471
+ "inputs": [
472
+ {
473
+ "name": "content",
474
+ "type": "bytes32",
475
+ "internalType": "bytes32"
476
+ }
477
+ ]
478
+ },
479
+ {
480
+ "type": "error",
481
+ "name": "Inbox__MustBuildBeforeConsume",
482
+ "inputs": []
483
+ },
484
+ {
485
+ "type": "error",
486
+ "name": "Inbox__SecretHashTooLarge",
487
+ "inputs": [
488
+ {
489
+ "name": "secretHash",
490
+ "type": "bytes32",
491
+ "internalType": "bytes32"
492
+ }
493
+ ]
494
+ },
495
+ {
496
+ "type": "error",
497
+ "name": "Inbox__Unauthorized",
498
+ "inputs": []
499
+ },
500
+ {
501
+ "type": "error",
502
+ "name": "Leonidas__EpochNotSetup",
503
+ "inputs": []
504
+ },
505
+ {
506
+ "type": "error",
507
+ "name": "Leonidas__InsufficientAttestations",
508
+ "inputs": [
509
+ {
510
+ "name": "minimumNeeded",
511
+ "type": "uint256",
512
+ "internalType": "uint256"
513
+ },
514
+ {
515
+ "name": "provided",
516
+ "type": "uint256",
517
+ "internalType": "uint256"
518
+ }
519
+ ]
520
+ },
521
+ {
522
+ "type": "error",
523
+ "name": "Leonidas__InsufficientAttestationsProvided",
524
+ "inputs": [
525
+ {
526
+ "name": "minimumNeeded",
527
+ "type": "uint256",
528
+ "internalType": "uint256"
529
+ },
530
+ {
531
+ "name": "provided",
532
+ "type": "uint256",
533
+ "internalType": "uint256"
534
+ }
535
+ ]
536
+ },
537
+ {
538
+ "type": "error",
539
+ "name": "Leonidas__InvalidDeposit",
540
+ "inputs": [
541
+ {
542
+ "name": "attester",
543
+ "type": "address",
544
+ "internalType": "address"
545
+ },
546
+ {
547
+ "name": "proposer",
548
+ "type": "address",
549
+ "internalType": "address"
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "type": "error",
555
+ "name": "Leonidas__InvalidProposer",
556
+ "inputs": [
557
+ {
558
+ "name": "expected",
559
+ "type": "address",
560
+ "internalType": "address"
561
+ },
562
+ {
563
+ "name": "actual",
564
+ "type": "address",
565
+ "internalType": "address"
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "type": "error",
571
+ "name": "MerkleLib__InvalidRoot",
572
+ "inputs": [
573
+ {
574
+ "name": "expected",
575
+ "type": "bytes32",
576
+ "internalType": "bytes32"
577
+ },
578
+ {
579
+ "name": "actual",
580
+ "type": "bytes32",
581
+ "internalType": "bytes32"
582
+ },
583
+ {
584
+ "name": "leaf",
585
+ "type": "bytes32",
586
+ "internalType": "bytes32"
587
+ },
588
+ {
589
+ "name": "leafIndex",
590
+ "type": "uint256",
591
+ "internalType": "uint256"
592
+ }
593
+ ]
594
+ },
595
+ {
596
+ "type": "error",
597
+ "name": "Outbox__AlreadyNullified",
598
+ "inputs": [
599
+ {
600
+ "name": "l2BlockNumber",
601
+ "type": "uint256",
602
+ "internalType": "uint256"
603
+ },
604
+ {
605
+ "name": "leafIndex",
606
+ "type": "uint256",
607
+ "internalType": "uint256"
608
+ }
609
+ ]
610
+ },
611
+ {
612
+ "type": "error",
613
+ "name": "Outbox__BlockNotProven",
614
+ "inputs": [
615
+ {
616
+ "name": "l2BlockNumber",
617
+ "type": "uint256",
618
+ "internalType": "uint256"
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ "type": "error",
624
+ "name": "Outbox__IncompatibleEntryArguments",
625
+ "inputs": [
626
+ {
627
+ "name": "messageHash",
628
+ "type": "bytes32",
629
+ "internalType": "bytes32"
630
+ },
631
+ {
632
+ "name": "storedFee",
633
+ "type": "uint64",
634
+ "internalType": "uint64"
635
+ },
636
+ {
637
+ "name": "feePassed",
638
+ "type": "uint64",
639
+ "internalType": "uint64"
640
+ },
641
+ {
642
+ "name": "storedVersion",
643
+ "type": "uint32",
644
+ "internalType": "uint32"
645
+ },
646
+ {
647
+ "name": "versionPassed",
648
+ "type": "uint32",
649
+ "internalType": "uint32"
650
+ },
651
+ {
652
+ "name": "storedDeadline",
653
+ "type": "uint32",
654
+ "internalType": "uint32"
655
+ },
656
+ {
657
+ "name": "deadlinePassed",
658
+ "type": "uint32",
659
+ "internalType": "uint32"
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "type": "error",
665
+ "name": "Outbox__InvalidChainId",
666
+ "inputs": []
667
+ },
668
+ {
669
+ "type": "error",
670
+ "name": "Outbox__InvalidPathLength",
671
+ "inputs": [
672
+ {
673
+ "name": "expected",
674
+ "type": "uint256",
675
+ "internalType": "uint256"
676
+ },
677
+ {
678
+ "name": "actual",
679
+ "type": "uint256",
680
+ "internalType": "uint256"
681
+ }
682
+ ]
683
+ },
684
+ {
685
+ "type": "error",
686
+ "name": "Outbox__InvalidRecipient",
687
+ "inputs": [
688
+ {
689
+ "name": "expected",
690
+ "type": "address",
691
+ "internalType": "address"
692
+ },
693
+ {
694
+ "name": "actual",
695
+ "type": "address",
696
+ "internalType": "address"
697
+ }
698
+ ]
699
+ },
700
+ {
701
+ "type": "error",
702
+ "name": "Outbox__InvalidVersion",
703
+ "inputs": [
704
+ {
705
+ "name": "entry",
706
+ "type": "uint256",
707
+ "internalType": "uint256"
708
+ },
709
+ {
710
+ "name": "message",
711
+ "type": "uint256",
712
+ "internalType": "uint256"
713
+ }
714
+ ]
715
+ },
716
+ {
717
+ "type": "error",
718
+ "name": "Outbox__NothingToConsume",
719
+ "inputs": [
720
+ {
721
+ "name": "messageHash",
722
+ "type": "bytes32",
723
+ "internalType": "bytes32"
724
+ }
725
+ ]
726
+ },
727
+ {
728
+ "type": "error",
729
+ "name": "Outbox__NothingToConsumeAtBlock",
730
+ "inputs": [
731
+ {
732
+ "name": "l2BlockNumber",
733
+ "type": "uint256",
734
+ "internalType": "uint256"
735
+ }
736
+ ]
737
+ },
738
+ {
739
+ "type": "error",
740
+ "name": "Outbox__RootAlreadySetAtBlock",
741
+ "inputs": [
742
+ {
743
+ "name": "l2BlockNumber",
744
+ "type": "uint256",
745
+ "internalType": "uint256"
746
+ }
747
+ ]
748
+ },
749
+ {
750
+ "type": "error",
751
+ "name": "Outbox__Unauthorized",
752
+ "inputs": []
753
+ },
754
+ {
755
+ "type": "error",
756
+ "name": "ProofCommitmentEscrow__InsufficientBalance",
757
+ "inputs": [
758
+ {
759
+ "name": "balance",
760
+ "type": "uint256",
761
+ "internalType": "uint256"
762
+ },
763
+ {
764
+ "name": "requested",
765
+ "type": "uint256",
766
+ "internalType": "uint256"
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "type": "error",
772
+ "name": "ProofCommitmentEscrow__NotOwner",
773
+ "inputs": [
774
+ {
775
+ "name": "caller",
776
+ "type": "address",
777
+ "internalType": "address"
778
+ }
779
+ ]
780
+ },
781
+ {
782
+ "type": "error",
783
+ "name": "ProofCommitmentEscrow__WithdrawRequestNotReady",
784
+ "inputs": [
785
+ {
786
+ "name": "current",
787
+ "type": "uint256",
788
+ "internalType": "uint256"
789
+ },
790
+ {
791
+ "name": "readyAt",
792
+ "type": "uint256",
793
+ "internalType": "Timestamp"
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "type": "error",
799
+ "name": "PublicInputsLengthWrong",
800
+ "inputs": []
801
+ },
802
+ {
803
+ "type": "error",
804
+ "name": "Registry__RollupAlreadyRegistered",
805
+ "inputs": [
806
+ {
807
+ "name": "rollup",
808
+ "type": "address",
809
+ "internalType": "address"
810
+ }
811
+ ]
812
+ },
813
+ {
814
+ "type": "error",
815
+ "name": "Registry__RollupNotRegistered",
816
+ "inputs": [
817
+ {
818
+ "name": "rollup",
819
+ "type": "address",
820
+ "internalType": "address"
821
+ }
822
+ ]
823
+ },
824
+ {
825
+ "type": "error",
826
+ "name": "RewardDistributor__InvalidCaller",
827
+ "inputs": [
828
+ {
829
+ "name": "caller",
830
+ "type": "address",
831
+ "internalType": "address"
832
+ },
833
+ {
834
+ "name": "canonical",
835
+ "type": "address",
836
+ "internalType": "address"
837
+ }
838
+ ]
839
+ },
840
+ {
841
+ "type": "error",
842
+ "name": "Rollup__InsufficientBondAmount",
843
+ "inputs": [
844
+ {
845
+ "name": "minimum",
846
+ "type": "uint256",
847
+ "internalType": "uint256"
848
+ },
849
+ {
850
+ "name": "provided",
851
+ "type": "uint256",
852
+ "internalType": "uint256"
853
+ }
854
+ ]
855
+ },
856
+ {
857
+ "type": "error",
858
+ "name": "Rollup__InsufficientFundsInEscrow",
859
+ "inputs": [
860
+ {
861
+ "name": "required",
862
+ "type": "uint256",
863
+ "internalType": "uint256"
864
+ },
865
+ {
866
+ "name": "available",
867
+ "type": "uint256",
868
+ "internalType": "uint256"
869
+ }
870
+ ]
871
+ },
872
+ {
873
+ "type": "error",
874
+ "name": "Rollup__InvalidArchive",
875
+ "inputs": [
876
+ {
877
+ "name": "expected",
878
+ "type": "bytes32",
879
+ "internalType": "bytes32"
880
+ },
881
+ {
882
+ "name": "actual",
883
+ "type": "bytes32",
884
+ "internalType": "bytes32"
885
+ }
886
+ ]
887
+ },
888
+ {
889
+ "type": "error",
890
+ "name": "Rollup__InvalidBasisPointFee",
891
+ "inputs": [
892
+ {
893
+ "name": "basisPointFee",
894
+ "type": "uint256",
895
+ "internalType": "uint256"
896
+ }
897
+ ]
898
+ },
899
+ {
900
+ "type": "error",
901
+ "name": "Rollup__InvalidBlobHash",
902
+ "inputs": [
903
+ {
904
+ "name": "blobHash",
905
+ "type": "bytes32",
906
+ "internalType": "bytes32"
907
+ }
908
+ ]
909
+ },
910
+ {
911
+ "type": "error",
912
+ "name": "Rollup__InvalidBlobProof",
913
+ "inputs": [
914
+ {
915
+ "name": "blobHash",
916
+ "type": "bytes32",
917
+ "internalType": "bytes32"
918
+ }
919
+ ]
920
+ },
921
+ {
922
+ "type": "error",
923
+ "name": "Rollup__InvalidBlobPublicInputsHash",
924
+ "inputs": [
925
+ {
926
+ "name": "expected",
927
+ "type": "bytes32",
928
+ "internalType": "bytes32"
929
+ },
930
+ {
931
+ "name": "actual",
932
+ "type": "bytes32",
933
+ "internalType": "bytes32"
934
+ }
935
+ ]
936
+ },
937
+ {
938
+ "type": "error",
939
+ "name": "Rollup__InvalidBlockHash",
940
+ "inputs": [
941
+ {
942
+ "name": "expected",
943
+ "type": "bytes32",
944
+ "internalType": "bytes32"
945
+ },
946
+ {
947
+ "name": "actual",
948
+ "type": "bytes32",
949
+ "internalType": "bytes32"
950
+ }
951
+ ]
952
+ },
953
+ {
954
+ "type": "error",
955
+ "name": "Rollup__InvalidBlockNumber",
956
+ "inputs": [
957
+ {
958
+ "name": "expected",
959
+ "type": "uint256",
960
+ "internalType": "uint256"
961
+ },
962
+ {
963
+ "name": "actual",
964
+ "type": "uint256",
965
+ "internalType": "uint256"
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ "type": "error",
971
+ "name": "Rollup__InvalidChainId",
972
+ "inputs": [
973
+ {
974
+ "name": "expected",
975
+ "type": "uint256",
976
+ "internalType": "uint256"
977
+ },
978
+ {
979
+ "name": "actual",
980
+ "type": "uint256",
981
+ "internalType": "uint256"
982
+ }
983
+ ]
984
+ },
985
+ {
986
+ "type": "error",
987
+ "name": "Rollup__InvalidEpoch",
988
+ "inputs": [
989
+ {
990
+ "name": "expected",
991
+ "type": "uint256",
992
+ "internalType": "Epoch"
993
+ },
994
+ {
995
+ "name": "actual",
996
+ "type": "uint256",
997
+ "internalType": "Epoch"
998
+ }
999
+ ]
1000
+ },
1001
+ {
1002
+ "type": "error",
1003
+ "name": "Rollup__InvalidInHash",
1004
+ "inputs": [
1005
+ {
1006
+ "name": "expected",
1007
+ "type": "bytes32",
1008
+ "internalType": "bytes32"
1009
+ },
1010
+ {
1011
+ "name": "actual",
1012
+ "type": "bytes32",
1013
+ "internalType": "bytes32"
1014
+ }
1015
+ ]
1016
+ },
1017
+ {
1018
+ "type": "error",
1019
+ "name": "Rollup__InvalidManaBaseFee",
1020
+ "inputs": [
1021
+ {
1022
+ "name": "expected",
1023
+ "type": "uint256",
1024
+ "internalType": "uint256"
1025
+ },
1026
+ {
1027
+ "name": "actual",
1028
+ "type": "uint256",
1029
+ "internalType": "uint256"
1030
+ }
1031
+ ]
1032
+ },
1033
+ {
1034
+ "type": "error",
1035
+ "name": "Rollup__InvalidPreviousArchive",
1036
+ "inputs": [
1037
+ {
1038
+ "name": "expected",
1039
+ "type": "bytes32",
1040
+ "internalType": "bytes32"
1041
+ },
1042
+ {
1043
+ "name": "actual",
1044
+ "type": "bytes32",
1045
+ "internalType": "bytes32"
1046
+ }
1047
+ ]
1048
+ },
1049
+ {
1050
+ "type": "error",
1051
+ "name": "Rollup__InvalidPreviousBlockHash",
1052
+ "inputs": [
1053
+ {
1054
+ "name": "expected",
1055
+ "type": "bytes32",
1056
+ "internalType": "bytes32"
1057
+ },
1058
+ {
1059
+ "name": "actual",
1060
+ "type": "bytes32",
1061
+ "internalType": "bytes32"
1062
+ }
1063
+ ]
1064
+ },
1065
+ {
1066
+ "type": "error",
1067
+ "name": "Rollup__InvalidProof",
1068
+ "inputs": []
1069
+ },
1070
+ {
1071
+ "type": "error",
1072
+ "name": "Rollup__InvalidProposedArchive",
1073
+ "inputs": [
1074
+ {
1075
+ "name": "expected",
1076
+ "type": "bytes32",
1077
+ "internalType": "bytes32"
1078
+ },
1079
+ {
1080
+ "name": "actual",
1081
+ "type": "bytes32",
1082
+ "internalType": "bytes32"
1083
+ }
1084
+ ]
1085
+ },
1086
+ {
1087
+ "type": "error",
1088
+ "name": "Rollup__InvalidTimestamp",
1089
+ "inputs": [
1090
+ {
1091
+ "name": "expected",
1092
+ "type": "uint256",
1093
+ "internalType": "Timestamp"
1094
+ },
1095
+ {
1096
+ "name": "actual",
1097
+ "type": "uint256",
1098
+ "internalType": "Timestamp"
1099
+ }
1100
+ ]
1101
+ },
1102
+ {
1103
+ "type": "error",
1104
+ "name": "Rollup__InvalidVersion",
1105
+ "inputs": [
1106
+ {
1107
+ "name": "expected",
1108
+ "type": "uint256",
1109
+ "internalType": "uint256"
1110
+ },
1111
+ {
1112
+ "name": "actual",
1113
+ "type": "uint256",
1114
+ "internalType": "uint256"
1115
+ }
1116
+ ]
1117
+ },
1118
+ {
1119
+ "type": "error",
1120
+ "name": "Rollup__NoEpochToProve",
1121
+ "inputs": []
1122
+ },
1123
+ {
1124
+ "type": "error",
1125
+ "name": "Rollup__NonSequentialProving",
1126
+ "inputs": []
1127
+ },
1128
+ {
1129
+ "type": "error",
1130
+ "name": "Rollup__NonZeroDaFee",
1131
+ "inputs": []
1132
+ },
1133
+ {
1134
+ "type": "error",
1135
+ "name": "Rollup__NonZeroL2Fee",
1136
+ "inputs": []
1137
+ },
1138
+ {
1139
+ "type": "error",
1140
+ "name": "Rollup__NotClaimingCorrectEpoch",
1141
+ "inputs": [
1142
+ {
1143
+ "name": "expected",
1144
+ "type": "uint256",
1145
+ "internalType": "Epoch"
1146
+ },
1147
+ {
1148
+ "name": "actual",
1149
+ "type": "uint256",
1150
+ "internalType": "Epoch"
1151
+ }
1152
+ ]
1153
+ },
1154
+ {
1155
+ "type": "error",
1156
+ "name": "Rollup__NotInClaimPhase",
1157
+ "inputs": [
1158
+ {
1159
+ "name": "currentSlotInEpoch",
1160
+ "type": "uint256",
1161
+ "internalType": "uint256"
1162
+ },
1163
+ {
1164
+ "name": "claimDuration",
1165
+ "type": "uint256",
1166
+ "internalType": "uint256"
1167
+ }
1168
+ ]
1169
+ },
1170
+ {
1171
+ "type": "error",
1172
+ "name": "Rollup__NothingToPrune",
1173
+ "inputs": []
1174
+ },
1175
+ {
1176
+ "type": "error",
1177
+ "name": "Rollup__ProofRightAlreadyClaimed",
1178
+ "inputs": []
1179
+ },
1180
+ {
1181
+ "type": "error",
1182
+ "name": "Rollup__QuoteExpired",
1183
+ "inputs": [
1184
+ {
1185
+ "name": "currentSlot",
1186
+ "type": "uint256",
1187
+ "internalType": "Slot"
1188
+ },
1189
+ {
1190
+ "name": "quoteSlot",
1191
+ "type": "uint256",
1192
+ "internalType": "Slot"
1193
+ }
1194
+ ]
1195
+ },
1196
+ {
1197
+ "type": "error",
1198
+ "name": "Rollup__SlotAlreadyInChain",
1199
+ "inputs": [
1200
+ {
1201
+ "name": "lastSlot",
1202
+ "type": "uint256",
1203
+ "internalType": "Slot"
1204
+ },
1205
+ {
1206
+ "name": "proposedSlot",
1207
+ "type": "uint256",
1208
+ "internalType": "Slot"
1209
+ }
1210
+ ]
1211
+ },
1212
+ {
1213
+ "type": "error",
1214
+ "name": "Rollup__TimestampInFuture",
1215
+ "inputs": [
1216
+ {
1217
+ "name": "max",
1218
+ "type": "uint256",
1219
+ "internalType": "Timestamp"
1220
+ },
1221
+ {
1222
+ "name": "actual",
1223
+ "type": "uint256",
1224
+ "internalType": "Timestamp"
1225
+ }
1226
+ ]
1227
+ },
1228
+ {
1229
+ "type": "error",
1230
+ "name": "Rollup__TimestampTooOld",
1231
+ "inputs": []
1232
+ },
1233
+ {
1234
+ "type": "error",
1235
+ "name": "Rollup__TryingToProveNonExistingBlock",
1236
+ "inputs": []
1237
+ },
1238
+ {
1239
+ "type": "error",
1240
+ "name": "Rollup__UnavailableTxs",
1241
+ "inputs": [
1242
+ {
1243
+ "name": "txsHash",
1244
+ "type": "bytes32",
1245
+ "internalType": "bytes32"
1246
+ }
1247
+ ]
1248
+ },
1249
+ {
1250
+ "type": "error",
1251
+ "name": "SampleLib__IndexOutOfBounds",
1252
+ "inputs": [
1253
+ {
1254
+ "name": "requested",
1255
+ "type": "uint256",
1256
+ "internalType": "uint256"
1257
+ },
1258
+ {
1259
+ "name": "bound",
1260
+ "type": "uint256",
1261
+ "internalType": "uint256"
1262
+ }
1263
+ ]
1264
+ },
1265
+ {
1266
+ "type": "error",
1267
+ "name": "ShpleminiFailed",
1268
+ "inputs": []
1269
+ },
1270
+ {
1271
+ "type": "error",
1272
+ "name": "SignatureLib__CannotVerifyEmpty",
1273
+ "inputs": []
1274
+ },
1275
+ {
1276
+ "type": "error",
1277
+ "name": "SignatureLib__InvalidSignature",
1278
+ "inputs": [
1279
+ {
1280
+ "name": "expected",
1281
+ "type": "address",
1282
+ "internalType": "address"
1283
+ },
1284
+ {
1285
+ "name": "recovered",
1286
+ "type": "address",
1287
+ "internalType": "address"
1288
+ }
1289
+ ]
1290
+ },
1291
+ {
1292
+ "type": "error",
1293
+ "name": "Staking__AlreadyActive",
1294
+ "inputs": [
1295
+ {
1296
+ "name": "attester",
1297
+ "type": "address",
1298
+ "internalType": "address"
1299
+ }
1300
+ ]
1301
+ },
1302
+ {
1303
+ "type": "error",
1304
+ "name": "Staking__AlreadyRegistered",
1305
+ "inputs": [
1306
+ {
1307
+ "name": "",
1308
+ "type": "address",
1309
+ "internalType": "address"
1310
+ }
1311
+ ]
1312
+ },
1313
+ {
1314
+ "type": "error",
1315
+ "name": "Staking__CannotSlashExitedStake",
1316
+ "inputs": [
1317
+ {
1318
+ "name": "",
1319
+ "type": "address",
1320
+ "internalType": "address"
1321
+ }
1322
+ ]
1323
+ },
1324
+ {
1325
+ "type": "error",
1326
+ "name": "Staking__FailedToRemove",
1327
+ "inputs": [
1328
+ {
1329
+ "name": "",
1330
+ "type": "address",
1331
+ "internalType": "address"
1332
+ }
1333
+ ]
1334
+ },
1335
+ {
1336
+ "type": "error",
1337
+ "name": "Staking__InsufficientStake",
1338
+ "inputs": [
1339
+ {
1340
+ "name": "",
1341
+ "type": "uint256",
1342
+ "internalType": "uint256"
1343
+ },
1344
+ {
1345
+ "name": "",
1346
+ "type": "uint256",
1347
+ "internalType": "uint256"
1348
+ }
1349
+ ]
1350
+ },
1351
+ {
1352
+ "type": "error",
1353
+ "name": "Staking__NoOneToSlash",
1354
+ "inputs": [
1355
+ {
1356
+ "name": "",
1357
+ "type": "address",
1358
+ "internalType": "address"
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "type": "error",
1364
+ "name": "Staking__NotExiting",
1365
+ "inputs": [
1366
+ {
1367
+ "name": "",
1368
+ "type": "address",
1369
+ "internalType": "address"
1370
+ }
1371
+ ]
1372
+ },
1373
+ {
1374
+ "type": "error",
1375
+ "name": "Staking__NotSlasher",
1376
+ "inputs": [
1377
+ {
1378
+ "name": "",
1379
+ "type": "address",
1380
+ "internalType": "address"
1381
+ },
1382
+ {
1383
+ "name": "",
1384
+ "type": "address",
1385
+ "internalType": "address"
1386
+ }
1387
+ ]
1388
+ },
1389
+ {
1390
+ "type": "error",
1391
+ "name": "Staking__NotWithdrawer",
1392
+ "inputs": [
1393
+ {
1394
+ "name": "",
1395
+ "type": "address",
1396
+ "internalType": "address"
1397
+ },
1398
+ {
1399
+ "name": "",
1400
+ "type": "address",
1401
+ "internalType": "address"
1402
+ }
1403
+ ]
1404
+ },
1405
+ {
1406
+ "type": "error",
1407
+ "name": "Staking__NothingToExit",
1408
+ "inputs": [
1409
+ {
1410
+ "name": "",
1411
+ "type": "address",
1412
+ "internalType": "address"
1413
+ }
1414
+ ]
1415
+ },
1416
+ {
1417
+ "type": "error",
1418
+ "name": "Staking__WithdrawalNotUnlockedYet",
1419
+ "inputs": [
1420
+ {
1421
+ "name": "",
1422
+ "type": "uint256",
1423
+ "internalType": "Timestamp"
1424
+ },
1425
+ {
1426
+ "name": "",
1427
+ "type": "uint256",
1428
+ "internalType": "Timestamp"
1429
+ }
1430
+ ]
1431
+ },
1432
+ {
1433
+ "type": "error",
1434
+ "name": "SumcheckFailed",
1435
+ "inputs": []
1436
+ },
1437
+ {
1438
+ "type": "function",
1439
+ "name": "verify",
1440
+ "inputs": [
1441
+ {
1442
+ "name": "proof",
1443
+ "type": "bytes",
1444
+ "internalType": "bytes"
1445
+ },
1446
+ {
1447
+ "name": "publicInputs",
1448
+ "type": "bytes32[]",
1449
+ "internalType": "bytes32[]"
1450
+ }
1451
+ ],
1452
+ "outputs": [
1453
+ {
1454
+ "name": "",
1455
+ "type": "bool",
1456
+ "internalType": "bool"
1457
+ }
1458
+ ],
1459
+ "stateMutability": "view"
1460
+ }
1461
+ ] as const;