|
1 | 1 | import { StakingVaultErrorsAbi } from './StakingVault.js'; |
2 | 2 |
|
3 | | -export const PredepositGuaranteeAbi = [ |
4 | | - ...StakingVaultErrorsAbi, |
5 | | - { |
6 | | - inputs: [ |
7 | | - { |
8 | | - internalType: 'bytes4', |
9 | | - name: '_genesisForkVersion', |
10 | | - type: 'bytes4', |
11 | | - }, |
12 | | - { |
13 | | - internalType: 'GIndex', |
14 | | - name: '_gIFirstValidator', |
15 | | - type: 'bytes32', |
16 | | - }, |
17 | | - { |
18 | | - internalType: 'GIndex', |
19 | | - name: '_gIFirstValidatorAfterChange', |
20 | | - type: 'bytes32', |
21 | | - }, |
22 | | - { |
23 | | - internalType: 'uint64', |
24 | | - name: '_pivotSlot', |
25 | | - type: 'uint64', |
26 | | - }, |
27 | | - ], |
28 | | - stateMutability: 'nonpayable', |
29 | | - type: 'constructor', |
30 | | - }, |
| 3 | +export const PredepositGuaranteeErrorsAbi = [ |
31 | 4 | { |
32 | 5 | inputs: [], |
33 | 6 | name: 'AccessControlBadConfirmation', |
@@ -379,6 +352,37 @@ export const PredepositGuaranteeAbi = [ |
379 | 352 | name: 'ZeroPauseDuration', |
380 | 353 | type: 'error', |
381 | 354 | }, |
| 355 | +] as const; |
| 356 | + |
| 357 | +export const PredepositGuaranteeAbi = [ |
| 358 | + ...PredepositGuaranteeErrorsAbi, |
| 359 | + ...StakingVaultErrorsAbi, |
| 360 | + { |
| 361 | + inputs: [ |
| 362 | + { |
| 363 | + internalType: 'bytes4', |
| 364 | + name: '_genesisForkVersion', |
| 365 | + type: 'bytes4', |
| 366 | + }, |
| 367 | + { |
| 368 | + internalType: 'GIndex', |
| 369 | + name: '_gIFirstValidator', |
| 370 | + type: 'bytes32', |
| 371 | + }, |
| 372 | + { |
| 373 | + internalType: 'GIndex', |
| 374 | + name: '_gIFirstValidatorAfterChange', |
| 375 | + type: 'bytes32', |
| 376 | + }, |
| 377 | + { |
| 378 | + internalType: 'uint64', |
| 379 | + name: '_pivotSlot', |
| 380 | + type: 'uint64', |
| 381 | + }, |
| 382 | + ], |
| 383 | + stateMutability: 'nonpayable', |
| 384 | + type: 'constructor', |
| 385 | + }, |
382 | 386 | { |
383 | 387 | anonymous: false, |
384 | 388 | inputs: [ |
|
0 commit comments