@lidofinance/lsv-cli 1.0.0-alpha.61 → 1.0.0-alpha.62
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.
- package/README.md +1 -1
- package/dist/abi/Dashboard.d.ts +706 -445
- package/dist/abi/Dashboard.js +331 -300
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +278 -27
- package/dist/abi/LazyOracle.js +352 -27
- package/dist/abi/LazyOracle.js.map +1 -1
- package/dist/abi/LidoLocator.d.ts +28 -0
- package/dist/abi/LidoLocator.js +36 -0
- package/dist/abi/LidoLocator.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +166 -1
- package/dist/abi/OperatorGrid.js +174 -1
- package/dist/abi/OperatorGrid.js.map +1 -1
- package/dist/abi/PredepositGuarantee.d.ts +181 -139
- package/dist/abi/PredepositGuarantee.js +191 -166
- package/dist/abi/PredepositGuarantee.js.map +1 -1
- package/dist/abi/StEth.d.ts +1 -1
- package/dist/abi/StEth.js +1 -1
- package/dist/abi/StEth.js.map +1 -1
- package/dist/abi/StakingVault.d.ts +184 -32
- package/dist/abi/StakingVault.js +203 -37
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +470 -72
- package/dist/abi/VaultFactory.js +24 -1
- package/dist/abi/VaultFactory.js.map +1 -1
- package/dist/abi/VaultHub.d.ts +416 -420
- package/dist/abi/VaultHub.js +349 -398
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +74 -42
- package/dist/abi/VaultViewer.js +82 -42
- package/dist/abi/VaultViewer.js.map +1 -1
- package/dist/abi/index.d.ts +0 -2
- package/dist/abi/index.js +0 -2
- package/dist/abi/index.js.map +1 -1
- package/dist/contracts/index.d.ts +0 -1
- package/dist/contracts/index.js +0 -1
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/locator.d.ts +1428 -12
- package/dist/contracts/steth.d.ts +74 -74
- package/dist/contracts/vault-factory.d.ts +15731 -5838
- package/dist/contracts/vault-viewer.d.ts +1360 -768
- package/dist/contracts/vault-viewer.js +1 -1
- package/dist/features/index.d.ts +1 -0
- package/dist/features/index.js +1 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/lazy-oracle.d.ts +1 -0
- package/dist/features/lazy-oracle.js +42 -0
- package/dist/features/lazy-oracle.js.map +1 -0
- package/dist/features/vault-hub.js +0 -4
- package/dist/features/vault-hub.js.map +1 -1
- package/dist/features/vault-operations/dashboard-by-vault.d.ts +2 -1
- package/dist/features/vault-operations/dashboard-by-vault.js +3 -1
- package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -1
- package/dist/features/vault-operations/vault-health.js +2 -2
- package/dist/features/vault-operations/vault-health.js.map +1 -1
- package/dist/features/vault-operations/vault-info.js +29 -32
- package/dist/features/vault-operations/vault-info.js.map +1 -1
- package/dist/features/vault-operations/vault-overview.js +35 -28
- package/dist/features/vault-operations/vault-overview.js.map +1 -1
- package/dist/features/vault-operations/vault-roles.d.ts +1 -1
- package/dist/features/vault-operations/vault-roles.js +6 -6
- package/dist/features/vault-operations/vault-roles.js.map +1 -1
- package/dist/features/vault.js +4 -2
- package/dist/features/vault.js.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.js +49 -40
- package/dist/programs/contracts/dashboard/config.js.map +1 -1
- package/dist/programs/contracts/dashboard/read.js +38 -3
- package/dist/programs/contracts/dashboard/read.js.map +1 -1
- package/dist/programs/contracts/dashboard/write.js +121 -84
- package/dist/programs/contracts/dashboard/write.js.map +1 -1
- package/dist/programs/contracts/hub/config.js +7 -17
- package/dist/programs/contracts/hub/config.js.map +1 -1
- package/dist/programs/contracts/hub/write.js +7 -69
- package/dist/programs/contracts/hub/write.js.map +1 -1
- package/dist/programs/contracts/lazy-oracle/config.js +5 -0
- package/dist/programs/contracts/lazy-oracle/config.js.map +1 -1
- package/dist/programs/contracts/lazy-oracle/read.js +7 -0
- package/dist/programs/contracts/lazy-oracle/read.js.map +1 -1
- package/dist/programs/contracts/operator-grid/config.js +21 -10
- package/dist/programs/contracts/operator-grid/config.js.map +1 -1
- package/dist/programs/contracts/operator-grid/read.js +21 -1
- package/dist/programs/contracts/operator-grid/read.js.map +1 -1
- package/dist/programs/contracts/operator-grid/write.js +48 -6
- package/dist/programs/contracts/operator-grid/write.js.map +1 -1
- package/dist/programs/contracts/pdg/config.js +9 -2
- package/dist/programs/contracts/pdg/config.js.map +1 -1
- package/dist/programs/contracts/pdg/read.js +16 -1
- package/dist/programs/contracts/pdg/read.js.map +1 -1
- package/dist/programs/contracts/pdg/write.js +26 -89
- package/dist/programs/contracts/pdg/write.js.map +1 -1
- package/dist/programs/contracts/vault/config.js +12 -0
- package/dist/programs/contracts/vault/config.js.map +1 -1
- package/dist/programs/contracts/vault/write.js +84 -20
- package/dist/programs/contracts/vault/write.js.map +1 -1
- package/dist/programs/use-cases/deposits/read.js +19 -2
- package/dist/programs/use-cases/deposits/read.js.map +1 -1
- package/dist/programs/use-cases/deposits/write.js +22 -32
- package/dist/programs/use-cases/deposits/write.js.map +1 -1
- package/dist/programs/use-cases/metrics/read.js +7 -6
- package/dist/programs/use-cases/metrics/read.js.map +1 -1
- package/dist/programs/use-cases/report/read.js +14 -7
- package/dist/programs/use-cases/report/read.js.map +1 -1
- package/dist/programs/use-cases/report/write.js +4 -2
- package/dist/programs/use-cases/report/write.js.map +1 -1
- package/dist/programs/use-cases/vault-operations/create-vault.js +6 -2
- package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -1
- package/dist/programs/use-cases/vault-operations/write.js +98 -8
- package/dist/programs/use-cases/vault-operations/write.js.map +1 -1
- package/dist/providers/wallet.d.ts +60 -60
- package/dist/tests/utils/calculate-overview.test.js +1 -1
- package/dist/tests/utils/calculate-overview.test.js.map +1 -1
- package/dist/tests/utils/health.test.js +2 -2
- package/dist/tests/utils/health.test.js.map +1 -1
- package/dist/types/common.d.ts +4 -0
- package/dist/utils/arguments.d.ts +3 -1
- package/dist/utils/arguments.js +39 -0
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/calculate-overview-v2.d.ts +4 -2
- package/dist/utils/calculate-overview-v2.js +5 -8
- package/dist/utils/calculate-overview-v2.js.map +1 -1
- package/dist/utils/calculate-overview.d.ts +1 -1
- package/dist/utils/calculate-overview.js +2 -2
- package/dist/utils/calculate-overview.js.map +1 -1
- package/dist/utils/charts/blessed/charts-apr.js +2 -1
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
- package/dist/utils/charts/blessed/charts-rewards.js +2 -1
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
- package/dist/utils/charts/overview.d.ts +1 -1
- package/dist/utils/charts/overview.js +1 -1
- package/dist/utils/charts/overview.js.map +1 -1
- package/dist/utils/charts/simple/simple-charts.js +2 -1
- package/dist/utils/charts/simple/simple-charts.js.map +1 -1
- package/dist/utils/commands/confirmations.d.ts +7 -3
- package/dist/utils/commands/confirmations.js +39 -29
- package/dist/utils/commands/confirmations.js.map +1 -1
- package/dist/utils/commands/report.js +2 -1
- package/dist/utils/commands/report.js.map +1 -1
- package/dist/utils/health/calculate-health.d.ts +1 -1
- package/dist/utils/health/calculate-health.js +2 -2
- package/dist/utils/health/calculate-health.js.map +1 -1
- package/dist/utils/health/health-utils.d.ts +77 -77
- package/dist/utils/health/health-utils.js +11 -10
- package/dist/utils/health/health-utils.js.map +1 -1
- package/dist/utils/report/report.js +1 -0
- package/dist/utils/report/report.js.map +1 -1
- package/dist/utils/report/statistic-data.js +2 -2
- package/dist/utils/report/statistic-data.js.map +1 -1
- package/dist/utils/report/types.d.ts +10 -2
- package/dist/utils/statistic/report-statistic.js +13 -14
- package/dist/utils/statistic/report-statistic.js.map +1 -1
- package/dist/utils/transactions/tx-wc.js +15 -2
- package/dist/utils/transactions/tx-wc.js.map +1 -1
- package/dist/utils/wallet-connect.d.ts +40 -40
- package/dist/version/index.js +1 -1
- package/package.json +12 -2
- package/dist/abi/TokenManager.d.ts +0 -577
- package/dist/abi/TokenManager.js +0 -756
- package/dist/abi/TokenManager.js.map +0 -1
- package/dist/abi/Voting.d.ts +0 -676
- package/dist/abi/Voting.js +0 -884
- package/dist/abi/Voting.js.map +0 -1
- package/dist/contracts/token-manager.d.ts +0 -3
- package/dist/contracts/token-manager.js +0 -13
- package/dist/contracts/token-manager.js.map +0 -1
|
@@ -54,6 +54,14 @@ export declare const getLocatorContract: () => {
|
|
|
54
54
|
readonly internalType: "address";
|
|
55
55
|
readonly name: "oracleDaemonConfig";
|
|
56
56
|
readonly type: "address";
|
|
57
|
+
}, {
|
|
58
|
+
readonly internalType: "address";
|
|
59
|
+
readonly name: "validatorExitDelayVerifier";
|
|
60
|
+
readonly type: "address";
|
|
61
|
+
}, {
|
|
62
|
+
readonly internalType: "address";
|
|
63
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
64
|
+
readonly type: "address";
|
|
57
65
|
}, {
|
|
58
66
|
readonly internalType: "address";
|
|
59
67
|
readonly name: "accounting";
|
|
@@ -297,6 +305,26 @@ export declare const getLocatorContract: () => {
|
|
|
297
305
|
}];
|
|
298
306
|
readonly stateMutability: "view";
|
|
299
307
|
readonly type: "function";
|
|
308
|
+
}, {
|
|
309
|
+
readonly inputs: readonly [];
|
|
310
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
311
|
+
readonly outputs: readonly [{
|
|
312
|
+
readonly internalType: "address";
|
|
313
|
+
readonly name: "";
|
|
314
|
+
readonly type: "address";
|
|
315
|
+
}];
|
|
316
|
+
readonly stateMutability: "view";
|
|
317
|
+
readonly type: "function";
|
|
318
|
+
}, {
|
|
319
|
+
readonly inputs: readonly [];
|
|
320
|
+
readonly name: "validatorExitDelayVerifier";
|
|
321
|
+
readonly outputs: readonly [{
|
|
322
|
+
readonly internalType: "address";
|
|
323
|
+
readonly name: "";
|
|
324
|
+
readonly type: "address";
|
|
325
|
+
}];
|
|
326
|
+
readonly stateMutability: "view";
|
|
327
|
+
readonly type: "function";
|
|
300
328
|
}, {
|
|
301
329
|
readonly inputs: readonly [];
|
|
302
330
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -412,6 +440,14 @@ export declare const getLocatorContract: () => {
|
|
|
412
440
|
readonly internalType: "address";
|
|
413
441
|
readonly name: "oracleDaemonConfig";
|
|
414
442
|
readonly type: "address";
|
|
443
|
+
}, {
|
|
444
|
+
readonly internalType: "address";
|
|
445
|
+
readonly name: "validatorExitDelayVerifier";
|
|
446
|
+
readonly type: "address";
|
|
447
|
+
}, {
|
|
448
|
+
readonly internalType: "address";
|
|
449
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
450
|
+
readonly type: "address";
|
|
415
451
|
}, {
|
|
416
452
|
readonly internalType: "address";
|
|
417
453
|
readonly name: "accounting";
|
|
@@ -655,6 +691,26 @@ export declare const getLocatorContract: () => {
|
|
|
655
691
|
}];
|
|
656
692
|
readonly stateMutability: "view";
|
|
657
693
|
readonly type: "function";
|
|
694
|
+
}, {
|
|
695
|
+
readonly inputs: readonly [];
|
|
696
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
697
|
+
readonly outputs: readonly [{
|
|
698
|
+
readonly internalType: "address";
|
|
699
|
+
readonly name: "";
|
|
700
|
+
readonly type: "address";
|
|
701
|
+
}];
|
|
702
|
+
readonly stateMutability: "view";
|
|
703
|
+
readonly type: "function";
|
|
704
|
+
}, {
|
|
705
|
+
readonly inputs: readonly [];
|
|
706
|
+
readonly name: "validatorExitDelayVerifier";
|
|
707
|
+
readonly outputs: readonly [{
|
|
708
|
+
readonly internalType: "address";
|
|
709
|
+
readonly name: "";
|
|
710
|
+
readonly type: "address";
|
|
711
|
+
}];
|
|
712
|
+
readonly stateMutability: "view";
|
|
713
|
+
readonly type: "function";
|
|
658
714
|
}, {
|
|
659
715
|
readonly inputs: readonly [];
|
|
660
716
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -770,6 +826,14 @@ export declare const getLocatorContract: () => {
|
|
|
770
826
|
readonly internalType: "address";
|
|
771
827
|
readonly name: "oracleDaemonConfig";
|
|
772
828
|
readonly type: "address";
|
|
829
|
+
}, {
|
|
830
|
+
readonly internalType: "address";
|
|
831
|
+
readonly name: "validatorExitDelayVerifier";
|
|
832
|
+
readonly type: "address";
|
|
833
|
+
}, {
|
|
834
|
+
readonly internalType: "address";
|
|
835
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
836
|
+
readonly type: "address";
|
|
773
837
|
}, {
|
|
774
838
|
readonly internalType: "address";
|
|
775
839
|
readonly name: "accounting";
|
|
@@ -1013,6 +1077,26 @@ export declare const getLocatorContract: () => {
|
|
|
1013
1077
|
}];
|
|
1014
1078
|
readonly stateMutability: "view";
|
|
1015
1079
|
readonly type: "function";
|
|
1080
|
+
}, {
|
|
1081
|
+
readonly inputs: readonly [];
|
|
1082
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1083
|
+
readonly outputs: readonly [{
|
|
1084
|
+
readonly internalType: "address";
|
|
1085
|
+
readonly name: "";
|
|
1086
|
+
readonly type: "address";
|
|
1087
|
+
}];
|
|
1088
|
+
readonly stateMutability: "view";
|
|
1089
|
+
readonly type: "function";
|
|
1090
|
+
}, {
|
|
1091
|
+
readonly inputs: readonly [];
|
|
1092
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1093
|
+
readonly outputs: readonly [{
|
|
1094
|
+
readonly internalType: "address";
|
|
1095
|
+
readonly name: "";
|
|
1096
|
+
readonly type: "address";
|
|
1097
|
+
}];
|
|
1098
|
+
readonly stateMutability: "view";
|
|
1099
|
+
readonly type: "function";
|
|
1016
1100
|
}, {
|
|
1017
1101
|
readonly inputs: readonly [];
|
|
1018
1102
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -1128,6 +1212,14 @@ export declare const getLocatorContract: () => {
|
|
|
1128
1212
|
readonly internalType: "address";
|
|
1129
1213
|
readonly name: "oracleDaemonConfig";
|
|
1130
1214
|
readonly type: "address";
|
|
1215
|
+
}, {
|
|
1216
|
+
readonly internalType: "address";
|
|
1217
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1218
|
+
readonly type: "address";
|
|
1219
|
+
}, {
|
|
1220
|
+
readonly internalType: "address";
|
|
1221
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1222
|
+
readonly type: "address";
|
|
1131
1223
|
}, {
|
|
1132
1224
|
readonly internalType: "address";
|
|
1133
1225
|
readonly name: "accounting";
|
|
@@ -1371,6 +1463,26 @@ export declare const getLocatorContract: () => {
|
|
|
1371
1463
|
}];
|
|
1372
1464
|
readonly stateMutability: "view";
|
|
1373
1465
|
readonly type: "function";
|
|
1466
|
+
}, {
|
|
1467
|
+
readonly inputs: readonly [];
|
|
1468
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1469
|
+
readonly outputs: readonly [{
|
|
1470
|
+
readonly internalType: "address";
|
|
1471
|
+
readonly name: "";
|
|
1472
|
+
readonly type: "address";
|
|
1473
|
+
}];
|
|
1474
|
+
readonly stateMutability: "view";
|
|
1475
|
+
readonly type: "function";
|
|
1476
|
+
}, {
|
|
1477
|
+
readonly inputs: readonly [];
|
|
1478
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1479
|
+
readonly outputs: readonly [{
|
|
1480
|
+
readonly internalType: "address";
|
|
1481
|
+
readonly name: "";
|
|
1482
|
+
readonly type: "address";
|
|
1483
|
+
}];
|
|
1484
|
+
readonly stateMutability: "view";
|
|
1485
|
+
readonly type: "function";
|
|
1374
1486
|
}, {
|
|
1375
1487
|
readonly inputs: readonly [];
|
|
1376
1488
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -1486,6 +1598,14 @@ export declare const getLocatorContract: () => {
|
|
|
1486
1598
|
readonly internalType: "address";
|
|
1487
1599
|
readonly name: "oracleDaemonConfig";
|
|
1488
1600
|
readonly type: "address";
|
|
1601
|
+
}, {
|
|
1602
|
+
readonly internalType: "address";
|
|
1603
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1604
|
+
readonly type: "address";
|
|
1605
|
+
}, {
|
|
1606
|
+
readonly internalType: "address";
|
|
1607
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1608
|
+
readonly type: "address";
|
|
1489
1609
|
}, {
|
|
1490
1610
|
readonly internalType: "address";
|
|
1491
1611
|
readonly name: "accounting";
|
|
@@ -1729,6 +1849,26 @@ export declare const getLocatorContract: () => {
|
|
|
1729
1849
|
}];
|
|
1730
1850
|
readonly stateMutability: "view";
|
|
1731
1851
|
readonly type: "function";
|
|
1852
|
+
}, {
|
|
1853
|
+
readonly inputs: readonly [];
|
|
1854
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1855
|
+
readonly outputs: readonly [{
|
|
1856
|
+
readonly internalType: "address";
|
|
1857
|
+
readonly name: "";
|
|
1858
|
+
readonly type: "address";
|
|
1859
|
+
}];
|
|
1860
|
+
readonly stateMutability: "view";
|
|
1861
|
+
readonly type: "function";
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly inputs: readonly [];
|
|
1864
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1865
|
+
readonly outputs: readonly [{
|
|
1866
|
+
readonly internalType: "address";
|
|
1867
|
+
readonly name: "";
|
|
1868
|
+
readonly type: "address";
|
|
1869
|
+
}];
|
|
1870
|
+
readonly stateMutability: "view";
|
|
1871
|
+
readonly type: "function";
|
|
1732
1872
|
}, {
|
|
1733
1873
|
readonly inputs: readonly [];
|
|
1734
1874
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -1844,6 +1984,14 @@ export declare const getLocatorContract: () => {
|
|
|
1844
1984
|
readonly internalType: "address";
|
|
1845
1985
|
readonly name: "oracleDaemonConfig";
|
|
1846
1986
|
readonly type: "address";
|
|
1987
|
+
}, {
|
|
1988
|
+
readonly internalType: "address";
|
|
1989
|
+
readonly name: "validatorExitDelayVerifier";
|
|
1990
|
+
readonly type: "address";
|
|
1991
|
+
}, {
|
|
1992
|
+
readonly internalType: "address";
|
|
1993
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
1994
|
+
readonly type: "address";
|
|
1847
1995
|
}, {
|
|
1848
1996
|
readonly internalType: "address";
|
|
1849
1997
|
readonly name: "accounting";
|
|
@@ -2087,6 +2235,26 @@ export declare const getLocatorContract: () => {
|
|
|
2087
2235
|
}];
|
|
2088
2236
|
readonly stateMutability: "view";
|
|
2089
2237
|
readonly type: "function";
|
|
2238
|
+
}, {
|
|
2239
|
+
readonly inputs: readonly [];
|
|
2240
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
2241
|
+
readonly outputs: readonly [{
|
|
2242
|
+
readonly internalType: "address";
|
|
2243
|
+
readonly name: "";
|
|
2244
|
+
readonly type: "address";
|
|
2245
|
+
}];
|
|
2246
|
+
readonly stateMutability: "view";
|
|
2247
|
+
readonly type: "function";
|
|
2248
|
+
}, {
|
|
2249
|
+
readonly inputs: readonly [];
|
|
2250
|
+
readonly name: "validatorExitDelayVerifier";
|
|
2251
|
+
readonly outputs: readonly [{
|
|
2252
|
+
readonly internalType: "address";
|
|
2253
|
+
readonly name: "";
|
|
2254
|
+
readonly type: "address";
|
|
2255
|
+
}];
|
|
2256
|
+
readonly stateMutability: "view";
|
|
2257
|
+
readonly type: "function";
|
|
2090
2258
|
}, {
|
|
2091
2259
|
readonly inputs: readonly [];
|
|
2092
2260
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -2202,6 +2370,14 @@ export declare const getLocatorContract: () => {
|
|
|
2202
2370
|
readonly internalType: "address";
|
|
2203
2371
|
readonly name: "oracleDaemonConfig";
|
|
2204
2372
|
readonly type: "address";
|
|
2373
|
+
}, {
|
|
2374
|
+
readonly internalType: "address";
|
|
2375
|
+
readonly name: "validatorExitDelayVerifier";
|
|
2376
|
+
readonly type: "address";
|
|
2377
|
+
}, {
|
|
2378
|
+
readonly internalType: "address";
|
|
2379
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
2380
|
+
readonly type: "address";
|
|
2205
2381
|
}, {
|
|
2206
2382
|
readonly internalType: "address";
|
|
2207
2383
|
readonly name: "accounting";
|
|
@@ -2445,6 +2621,26 @@ export declare const getLocatorContract: () => {
|
|
|
2445
2621
|
}];
|
|
2446
2622
|
readonly stateMutability: "view";
|
|
2447
2623
|
readonly type: "function";
|
|
2624
|
+
}, {
|
|
2625
|
+
readonly inputs: readonly [];
|
|
2626
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
2627
|
+
readonly outputs: readonly [{
|
|
2628
|
+
readonly internalType: "address";
|
|
2629
|
+
readonly name: "";
|
|
2630
|
+
readonly type: "address";
|
|
2631
|
+
}];
|
|
2632
|
+
readonly stateMutability: "view";
|
|
2633
|
+
readonly type: "function";
|
|
2634
|
+
}, {
|
|
2635
|
+
readonly inputs: readonly [];
|
|
2636
|
+
readonly name: "validatorExitDelayVerifier";
|
|
2637
|
+
readonly outputs: readonly [{
|
|
2638
|
+
readonly internalType: "address";
|
|
2639
|
+
readonly name: "";
|
|
2640
|
+
readonly type: "address";
|
|
2641
|
+
}];
|
|
2642
|
+
readonly stateMutability: "view";
|
|
2643
|
+
readonly type: "function";
|
|
2448
2644
|
}, {
|
|
2449
2645
|
readonly inputs: readonly [];
|
|
2450
2646
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -2560,6 +2756,14 @@ export declare const getLocatorContract: () => {
|
|
|
2560
2756
|
readonly internalType: "address";
|
|
2561
2757
|
readonly name: "oracleDaemonConfig";
|
|
2562
2758
|
readonly type: "address";
|
|
2759
|
+
}, {
|
|
2760
|
+
readonly internalType: "address";
|
|
2761
|
+
readonly name: "validatorExitDelayVerifier";
|
|
2762
|
+
readonly type: "address";
|
|
2763
|
+
}, {
|
|
2764
|
+
readonly internalType: "address";
|
|
2765
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
2766
|
+
readonly type: "address";
|
|
2563
2767
|
}, {
|
|
2564
2768
|
readonly internalType: "address";
|
|
2565
2769
|
readonly name: "accounting";
|
|
@@ -2803,6 +3007,26 @@ export declare const getLocatorContract: () => {
|
|
|
2803
3007
|
}];
|
|
2804
3008
|
readonly stateMutability: "view";
|
|
2805
3009
|
readonly type: "function";
|
|
3010
|
+
}, {
|
|
3011
|
+
readonly inputs: readonly [];
|
|
3012
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3013
|
+
readonly outputs: readonly [{
|
|
3014
|
+
readonly internalType: "address";
|
|
3015
|
+
readonly name: "";
|
|
3016
|
+
readonly type: "address";
|
|
3017
|
+
}];
|
|
3018
|
+
readonly stateMutability: "view";
|
|
3019
|
+
readonly type: "function";
|
|
3020
|
+
}, {
|
|
3021
|
+
readonly inputs: readonly [];
|
|
3022
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3023
|
+
readonly outputs: readonly [{
|
|
3024
|
+
readonly internalType: "address";
|
|
3025
|
+
readonly name: "";
|
|
3026
|
+
readonly type: "address";
|
|
3027
|
+
}];
|
|
3028
|
+
readonly stateMutability: "view";
|
|
3029
|
+
readonly type: "function";
|
|
2806
3030
|
}, {
|
|
2807
3031
|
readonly inputs: readonly [];
|
|
2808
3032
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -2918,6 +3142,14 @@ export declare const getLocatorContract: () => {
|
|
|
2918
3142
|
readonly internalType: "address";
|
|
2919
3143
|
readonly name: "oracleDaemonConfig";
|
|
2920
3144
|
readonly type: "address";
|
|
3145
|
+
}, {
|
|
3146
|
+
readonly internalType: "address";
|
|
3147
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3148
|
+
readonly type: "address";
|
|
3149
|
+
}, {
|
|
3150
|
+
readonly internalType: "address";
|
|
3151
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3152
|
+
readonly type: "address";
|
|
2921
3153
|
}, {
|
|
2922
3154
|
readonly internalType: "address";
|
|
2923
3155
|
readonly name: "accounting";
|
|
@@ -3161,6 +3393,26 @@ export declare const getLocatorContract: () => {
|
|
|
3161
3393
|
}];
|
|
3162
3394
|
readonly stateMutability: "view";
|
|
3163
3395
|
readonly type: "function";
|
|
3396
|
+
}, {
|
|
3397
|
+
readonly inputs: readonly [];
|
|
3398
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3399
|
+
readonly outputs: readonly [{
|
|
3400
|
+
readonly internalType: "address";
|
|
3401
|
+
readonly name: "";
|
|
3402
|
+
readonly type: "address";
|
|
3403
|
+
}];
|
|
3404
|
+
readonly stateMutability: "view";
|
|
3405
|
+
readonly type: "function";
|
|
3406
|
+
}, {
|
|
3407
|
+
readonly inputs: readonly [];
|
|
3408
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3409
|
+
readonly outputs: readonly [{
|
|
3410
|
+
readonly internalType: "address";
|
|
3411
|
+
readonly name: "";
|
|
3412
|
+
readonly type: "address";
|
|
3413
|
+
}];
|
|
3414
|
+
readonly stateMutability: "view";
|
|
3415
|
+
readonly type: "function";
|
|
3164
3416
|
}, {
|
|
3165
3417
|
readonly inputs: readonly [];
|
|
3166
3418
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -3276,6 +3528,14 @@ export declare const getLocatorContract: () => {
|
|
|
3276
3528
|
readonly internalType: "address";
|
|
3277
3529
|
readonly name: "oracleDaemonConfig";
|
|
3278
3530
|
readonly type: "address";
|
|
3531
|
+
}, {
|
|
3532
|
+
readonly internalType: "address";
|
|
3533
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3534
|
+
readonly type: "address";
|
|
3535
|
+
}, {
|
|
3536
|
+
readonly internalType: "address";
|
|
3537
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3538
|
+
readonly type: "address";
|
|
3279
3539
|
}, {
|
|
3280
3540
|
readonly internalType: "address";
|
|
3281
3541
|
readonly name: "accounting";
|
|
@@ -3519,6 +3779,26 @@ export declare const getLocatorContract: () => {
|
|
|
3519
3779
|
}];
|
|
3520
3780
|
readonly stateMutability: "view";
|
|
3521
3781
|
readonly type: "function";
|
|
3782
|
+
}, {
|
|
3783
|
+
readonly inputs: readonly [];
|
|
3784
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3785
|
+
readonly outputs: readonly [{
|
|
3786
|
+
readonly internalType: "address";
|
|
3787
|
+
readonly name: "";
|
|
3788
|
+
readonly type: "address";
|
|
3789
|
+
}];
|
|
3790
|
+
readonly stateMutability: "view";
|
|
3791
|
+
readonly type: "function";
|
|
3792
|
+
}, {
|
|
3793
|
+
readonly inputs: readonly [];
|
|
3794
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3795
|
+
readonly outputs: readonly [{
|
|
3796
|
+
readonly internalType: "address";
|
|
3797
|
+
readonly name: "";
|
|
3798
|
+
readonly type: "address";
|
|
3799
|
+
}];
|
|
3800
|
+
readonly stateMutability: "view";
|
|
3801
|
+
readonly type: "function";
|
|
3522
3802
|
}, {
|
|
3523
3803
|
readonly inputs: readonly [];
|
|
3524
3804
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -3634,6 +3914,14 @@ export declare const getLocatorContract: () => {
|
|
|
3634
3914
|
readonly internalType: "address";
|
|
3635
3915
|
readonly name: "oracleDaemonConfig";
|
|
3636
3916
|
readonly type: "address";
|
|
3917
|
+
}, {
|
|
3918
|
+
readonly internalType: "address";
|
|
3919
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3920
|
+
readonly type: "address";
|
|
3921
|
+
}, {
|
|
3922
|
+
readonly internalType: "address";
|
|
3923
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3924
|
+
readonly type: "address";
|
|
3637
3925
|
}, {
|
|
3638
3926
|
readonly internalType: "address";
|
|
3639
3927
|
readonly name: "accounting";
|
|
@@ -3879,7 +4167,7 @@ export declare const getLocatorContract: () => {
|
|
|
3879
4167
|
readonly type: "function";
|
|
3880
4168
|
}, {
|
|
3881
4169
|
readonly inputs: readonly [];
|
|
3882
|
-
readonly name: "
|
|
4170
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
3883
4171
|
readonly outputs: readonly [{
|
|
3884
4172
|
readonly internalType: "address";
|
|
3885
4173
|
readonly name: "";
|
|
@@ -3889,7 +4177,7 @@ export declare const getLocatorContract: () => {
|
|
|
3889
4177
|
readonly type: "function";
|
|
3890
4178
|
}, {
|
|
3891
4179
|
readonly inputs: readonly [];
|
|
3892
|
-
readonly name: "
|
|
4180
|
+
readonly name: "validatorExitDelayVerifier";
|
|
3893
4181
|
readonly outputs: readonly [{
|
|
3894
4182
|
readonly internalType: "address";
|
|
3895
4183
|
readonly name: "";
|
|
@@ -3899,7 +4187,7 @@ export declare const getLocatorContract: () => {
|
|
|
3899
4187
|
readonly type: "function";
|
|
3900
4188
|
}, {
|
|
3901
4189
|
readonly inputs: readonly [];
|
|
3902
|
-
readonly name: "
|
|
4190
|
+
readonly name: "validatorsExitBusOracle";
|
|
3903
4191
|
readonly outputs: readonly [{
|
|
3904
4192
|
readonly internalType: "address";
|
|
3905
4193
|
readonly name: "";
|
|
@@ -3909,7 +4197,7 @@ export declare const getLocatorContract: () => {
|
|
|
3909
4197
|
readonly type: "function";
|
|
3910
4198
|
}, {
|
|
3911
4199
|
readonly inputs: readonly [];
|
|
3912
|
-
readonly name: "
|
|
4200
|
+
readonly name: "vaultFactory";
|
|
3913
4201
|
readonly outputs: readonly [{
|
|
3914
4202
|
readonly internalType: "address";
|
|
3915
4203
|
readonly name: "";
|
|
@@ -3919,7 +4207,7 @@ export declare const getLocatorContract: () => {
|
|
|
3919
4207
|
readonly type: "function";
|
|
3920
4208
|
}, {
|
|
3921
4209
|
readonly inputs: readonly [];
|
|
3922
|
-
readonly name: "
|
|
4210
|
+
readonly name: "vaultHub";
|
|
3923
4211
|
readonly outputs: readonly [{
|
|
3924
4212
|
readonly internalType: "address";
|
|
3925
4213
|
readonly name: "";
|
|
@@ -3929,7 +4217,27 @@ export declare const getLocatorContract: () => {
|
|
|
3929
4217
|
readonly type: "function";
|
|
3930
4218
|
}, {
|
|
3931
4219
|
readonly inputs: readonly [];
|
|
3932
|
-
readonly name: "
|
|
4220
|
+
readonly name: "withdrawalQueue";
|
|
4221
|
+
readonly outputs: readonly [{
|
|
4222
|
+
readonly internalType: "address";
|
|
4223
|
+
readonly name: "";
|
|
4224
|
+
readonly type: "address";
|
|
4225
|
+
}];
|
|
4226
|
+
readonly stateMutability: "view";
|
|
4227
|
+
readonly type: "function";
|
|
4228
|
+
}, {
|
|
4229
|
+
readonly inputs: readonly [];
|
|
4230
|
+
readonly name: "withdrawalVault";
|
|
4231
|
+
readonly outputs: readonly [{
|
|
4232
|
+
readonly internalType: "address";
|
|
4233
|
+
readonly name: "";
|
|
4234
|
+
readonly type: "address";
|
|
4235
|
+
}];
|
|
4236
|
+
readonly stateMutability: "view";
|
|
4237
|
+
readonly type: "function";
|
|
4238
|
+
}, {
|
|
4239
|
+
readonly inputs: readonly [];
|
|
4240
|
+
readonly name: "wstETH";
|
|
3933
4241
|
readonly outputs: readonly [{
|
|
3934
4242
|
readonly internalType: "address";
|
|
3935
4243
|
readonly name: "";
|
|
@@ -3992,6 +4300,14 @@ export declare const getLocatorContract: () => {
|
|
|
3992
4300
|
readonly internalType: "address";
|
|
3993
4301
|
readonly name: "oracleDaemonConfig";
|
|
3994
4302
|
readonly type: "address";
|
|
4303
|
+
}, {
|
|
4304
|
+
readonly internalType: "address";
|
|
4305
|
+
readonly name: "validatorExitDelayVerifier";
|
|
4306
|
+
readonly type: "address";
|
|
4307
|
+
}, {
|
|
4308
|
+
readonly internalType: "address";
|
|
4309
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
4310
|
+
readonly type: "address";
|
|
3995
4311
|
}, {
|
|
3996
4312
|
readonly internalType: "address";
|
|
3997
4313
|
readonly name: "accounting";
|
|
@@ -4235,6 +4551,26 @@ export declare const getLocatorContract: () => {
|
|
|
4235
4551
|
}];
|
|
4236
4552
|
readonly stateMutability: "view";
|
|
4237
4553
|
readonly type: "function";
|
|
4554
|
+
}, {
|
|
4555
|
+
readonly inputs: readonly [];
|
|
4556
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
4557
|
+
readonly outputs: readonly [{
|
|
4558
|
+
readonly internalType: "address";
|
|
4559
|
+
readonly name: "";
|
|
4560
|
+
readonly type: "address";
|
|
4561
|
+
}];
|
|
4562
|
+
readonly stateMutability: "view";
|
|
4563
|
+
readonly type: "function";
|
|
4564
|
+
}, {
|
|
4565
|
+
readonly inputs: readonly [];
|
|
4566
|
+
readonly name: "validatorExitDelayVerifier";
|
|
4567
|
+
readonly outputs: readonly [{
|
|
4568
|
+
readonly internalType: "address";
|
|
4569
|
+
readonly name: "";
|
|
4570
|
+
readonly type: "address";
|
|
4571
|
+
}];
|
|
4572
|
+
readonly stateMutability: "view";
|
|
4573
|
+
readonly type: "function";
|
|
4238
4574
|
}, {
|
|
4239
4575
|
readonly inputs: readonly [];
|
|
4240
4576
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -4350,6 +4686,14 @@ export declare const getLocatorContract: () => {
|
|
|
4350
4686
|
readonly internalType: "address";
|
|
4351
4687
|
readonly name: "oracleDaemonConfig";
|
|
4352
4688
|
readonly type: "address";
|
|
4689
|
+
}, {
|
|
4690
|
+
readonly internalType: "address";
|
|
4691
|
+
readonly name: "validatorExitDelayVerifier";
|
|
4692
|
+
readonly type: "address";
|
|
4693
|
+
}, {
|
|
4694
|
+
readonly internalType: "address";
|
|
4695
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
4696
|
+
readonly type: "address";
|
|
4353
4697
|
}, {
|
|
4354
4698
|
readonly internalType: "address";
|
|
4355
4699
|
readonly name: "accounting";
|
|
@@ -4545,7 +4889,799 @@ export declare const getLocatorContract: () => {
|
|
|
4545
4889
|
readonly type: "function";
|
|
4546
4890
|
}, {
|
|
4547
4891
|
readonly inputs: readonly [];
|
|
4548
|
-
readonly name: "oracleReportSanityChecker";
|
|
4892
|
+
readonly name: "oracleReportSanityChecker";
|
|
4893
|
+
readonly outputs: readonly [{
|
|
4894
|
+
readonly internalType: "address";
|
|
4895
|
+
readonly name: "";
|
|
4896
|
+
readonly type: "address";
|
|
4897
|
+
}];
|
|
4898
|
+
readonly stateMutability: "view";
|
|
4899
|
+
readonly type: "function";
|
|
4900
|
+
}, {
|
|
4901
|
+
readonly inputs: readonly [];
|
|
4902
|
+
readonly name: "postTokenRebaseReceiver";
|
|
4903
|
+
readonly outputs: readonly [{
|
|
4904
|
+
readonly internalType: "address";
|
|
4905
|
+
readonly name: "";
|
|
4906
|
+
readonly type: "address";
|
|
4907
|
+
}];
|
|
4908
|
+
readonly stateMutability: "view";
|
|
4909
|
+
readonly type: "function";
|
|
4910
|
+
}, {
|
|
4911
|
+
readonly inputs: readonly [];
|
|
4912
|
+
readonly name: "predepositGuarantee";
|
|
4913
|
+
readonly outputs: readonly [{
|
|
4914
|
+
readonly internalType: "address";
|
|
4915
|
+
readonly name: "";
|
|
4916
|
+
readonly type: "address";
|
|
4917
|
+
}];
|
|
4918
|
+
readonly stateMutability: "view";
|
|
4919
|
+
readonly type: "function";
|
|
4920
|
+
}, {
|
|
4921
|
+
readonly inputs: readonly [];
|
|
4922
|
+
readonly name: "stakingRouter";
|
|
4923
|
+
readonly outputs: readonly [{
|
|
4924
|
+
readonly internalType: "address";
|
|
4925
|
+
readonly name: "";
|
|
4926
|
+
readonly type: "address";
|
|
4927
|
+
}];
|
|
4928
|
+
readonly stateMutability: "view";
|
|
4929
|
+
readonly type: "function";
|
|
4930
|
+
}, {
|
|
4931
|
+
readonly inputs: readonly [];
|
|
4932
|
+
readonly name: "treasury";
|
|
4933
|
+
readonly outputs: readonly [{
|
|
4934
|
+
readonly internalType: "address";
|
|
4935
|
+
readonly name: "";
|
|
4936
|
+
readonly type: "address";
|
|
4937
|
+
}];
|
|
4938
|
+
readonly stateMutability: "view";
|
|
4939
|
+
readonly type: "function";
|
|
4940
|
+
}, {
|
|
4941
|
+
readonly inputs: readonly [];
|
|
4942
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
4943
|
+
readonly outputs: readonly [{
|
|
4944
|
+
readonly internalType: "address";
|
|
4945
|
+
readonly name: "";
|
|
4946
|
+
readonly type: "address";
|
|
4947
|
+
}];
|
|
4948
|
+
readonly stateMutability: "view";
|
|
4949
|
+
readonly type: "function";
|
|
4950
|
+
}, {
|
|
4951
|
+
readonly inputs: readonly [];
|
|
4952
|
+
readonly name: "validatorExitDelayVerifier";
|
|
4953
|
+
readonly outputs: readonly [{
|
|
4954
|
+
readonly internalType: "address";
|
|
4955
|
+
readonly name: "";
|
|
4956
|
+
readonly type: "address";
|
|
4957
|
+
}];
|
|
4958
|
+
readonly stateMutability: "view";
|
|
4959
|
+
readonly type: "function";
|
|
4960
|
+
}, {
|
|
4961
|
+
readonly inputs: readonly [];
|
|
4962
|
+
readonly name: "validatorsExitBusOracle";
|
|
4963
|
+
readonly outputs: readonly [{
|
|
4964
|
+
readonly internalType: "address";
|
|
4965
|
+
readonly name: "";
|
|
4966
|
+
readonly type: "address";
|
|
4967
|
+
}];
|
|
4968
|
+
readonly stateMutability: "view";
|
|
4969
|
+
readonly type: "function";
|
|
4970
|
+
}, {
|
|
4971
|
+
readonly inputs: readonly [];
|
|
4972
|
+
readonly name: "vaultFactory";
|
|
4973
|
+
readonly outputs: readonly [{
|
|
4974
|
+
readonly internalType: "address";
|
|
4975
|
+
readonly name: "";
|
|
4976
|
+
readonly type: "address";
|
|
4977
|
+
}];
|
|
4978
|
+
readonly stateMutability: "view";
|
|
4979
|
+
readonly type: "function";
|
|
4980
|
+
}, {
|
|
4981
|
+
readonly inputs: readonly [];
|
|
4982
|
+
readonly name: "vaultHub";
|
|
4983
|
+
readonly outputs: readonly [{
|
|
4984
|
+
readonly internalType: "address";
|
|
4985
|
+
readonly name: "";
|
|
4986
|
+
readonly type: "address";
|
|
4987
|
+
}];
|
|
4988
|
+
readonly stateMutability: "view";
|
|
4989
|
+
readonly type: "function";
|
|
4990
|
+
}, {
|
|
4991
|
+
readonly inputs: readonly [];
|
|
4992
|
+
readonly name: "withdrawalQueue";
|
|
4993
|
+
readonly outputs: readonly [{
|
|
4994
|
+
readonly internalType: "address";
|
|
4995
|
+
readonly name: "";
|
|
4996
|
+
readonly type: "address";
|
|
4997
|
+
}];
|
|
4998
|
+
readonly stateMutability: "view";
|
|
4999
|
+
readonly type: "function";
|
|
5000
|
+
}, {
|
|
5001
|
+
readonly inputs: readonly [];
|
|
5002
|
+
readonly name: "withdrawalVault";
|
|
5003
|
+
readonly outputs: readonly [{
|
|
5004
|
+
readonly internalType: "address";
|
|
5005
|
+
readonly name: "";
|
|
5006
|
+
readonly type: "address";
|
|
5007
|
+
}];
|
|
5008
|
+
readonly stateMutability: "view";
|
|
5009
|
+
readonly type: "function";
|
|
5010
|
+
}, {
|
|
5011
|
+
readonly inputs: readonly [];
|
|
5012
|
+
readonly name: "wstETH";
|
|
5013
|
+
readonly outputs: readonly [{
|
|
5014
|
+
readonly internalType: "address";
|
|
5015
|
+
readonly name: "";
|
|
5016
|
+
readonly type: "address";
|
|
5017
|
+
}];
|
|
5018
|
+
readonly stateMutability: "view";
|
|
5019
|
+
readonly type: "function";
|
|
5020
|
+
}], "oracleDaemonConfig", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5021
|
+
validatorExitDelayVerifier: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
5022
|
+
readonly inputs: readonly [{
|
|
5023
|
+
readonly components: readonly [{
|
|
5024
|
+
readonly internalType: "address";
|
|
5025
|
+
readonly name: "accountingOracle";
|
|
5026
|
+
readonly type: "address";
|
|
5027
|
+
}, {
|
|
5028
|
+
readonly internalType: "address";
|
|
5029
|
+
readonly name: "depositSecurityModule";
|
|
5030
|
+
readonly type: "address";
|
|
5031
|
+
}, {
|
|
5032
|
+
readonly internalType: "address";
|
|
5033
|
+
readonly name: "elRewardsVault";
|
|
5034
|
+
readonly type: "address";
|
|
5035
|
+
}, {
|
|
5036
|
+
readonly internalType: "address";
|
|
5037
|
+
readonly name: "lido";
|
|
5038
|
+
readonly type: "address";
|
|
5039
|
+
}, {
|
|
5040
|
+
readonly internalType: "address";
|
|
5041
|
+
readonly name: "oracleReportSanityChecker";
|
|
5042
|
+
readonly type: "address";
|
|
5043
|
+
}, {
|
|
5044
|
+
readonly internalType: "address";
|
|
5045
|
+
readonly name: "postTokenRebaseReceiver";
|
|
5046
|
+
readonly type: "address";
|
|
5047
|
+
}, {
|
|
5048
|
+
readonly internalType: "address";
|
|
5049
|
+
readonly name: "burner";
|
|
5050
|
+
readonly type: "address";
|
|
5051
|
+
}, {
|
|
5052
|
+
readonly internalType: "address";
|
|
5053
|
+
readonly name: "stakingRouter";
|
|
5054
|
+
readonly type: "address";
|
|
5055
|
+
}, {
|
|
5056
|
+
readonly internalType: "address";
|
|
5057
|
+
readonly name: "treasury";
|
|
5058
|
+
readonly type: "address";
|
|
5059
|
+
}, {
|
|
5060
|
+
readonly internalType: "address";
|
|
5061
|
+
readonly name: "validatorsExitBusOracle";
|
|
5062
|
+
readonly type: "address";
|
|
5063
|
+
}, {
|
|
5064
|
+
readonly internalType: "address";
|
|
5065
|
+
readonly name: "withdrawalQueue";
|
|
5066
|
+
readonly type: "address";
|
|
5067
|
+
}, {
|
|
5068
|
+
readonly internalType: "address";
|
|
5069
|
+
readonly name: "withdrawalVault";
|
|
5070
|
+
readonly type: "address";
|
|
5071
|
+
}, {
|
|
5072
|
+
readonly internalType: "address";
|
|
5073
|
+
readonly name: "oracleDaemonConfig";
|
|
5074
|
+
readonly type: "address";
|
|
5075
|
+
}, {
|
|
5076
|
+
readonly internalType: "address";
|
|
5077
|
+
readonly name: "validatorExitDelayVerifier";
|
|
5078
|
+
readonly type: "address";
|
|
5079
|
+
}, {
|
|
5080
|
+
readonly internalType: "address";
|
|
5081
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
5082
|
+
readonly type: "address";
|
|
5083
|
+
}, {
|
|
5084
|
+
readonly internalType: "address";
|
|
5085
|
+
readonly name: "accounting";
|
|
5086
|
+
readonly type: "address";
|
|
5087
|
+
}, {
|
|
5088
|
+
readonly internalType: "address";
|
|
5089
|
+
readonly name: "predepositGuarantee";
|
|
5090
|
+
readonly type: "address";
|
|
5091
|
+
}, {
|
|
5092
|
+
readonly internalType: "address";
|
|
5093
|
+
readonly name: "wstETH";
|
|
5094
|
+
readonly type: "address";
|
|
5095
|
+
}, {
|
|
5096
|
+
readonly internalType: "address";
|
|
5097
|
+
readonly name: "vaultHub";
|
|
5098
|
+
readonly type: "address";
|
|
5099
|
+
}, {
|
|
5100
|
+
readonly internalType: "address";
|
|
5101
|
+
readonly name: "vaultFactory";
|
|
5102
|
+
readonly type: "address";
|
|
5103
|
+
}, {
|
|
5104
|
+
readonly internalType: "address";
|
|
5105
|
+
readonly name: "lazyOracle";
|
|
5106
|
+
readonly type: "address";
|
|
5107
|
+
}, {
|
|
5108
|
+
readonly internalType: "address";
|
|
5109
|
+
readonly name: "operatorGrid";
|
|
5110
|
+
readonly type: "address";
|
|
5111
|
+
}];
|
|
5112
|
+
readonly internalType: "struct LidoLocator.Config";
|
|
5113
|
+
readonly name: "_config";
|
|
5114
|
+
readonly type: "tuple";
|
|
5115
|
+
}];
|
|
5116
|
+
readonly stateMutability: "nonpayable";
|
|
5117
|
+
readonly type: "constructor";
|
|
5118
|
+
}, {
|
|
5119
|
+
readonly inputs: readonly [];
|
|
5120
|
+
readonly name: "ZeroAddress";
|
|
5121
|
+
readonly type: "error";
|
|
5122
|
+
}, {
|
|
5123
|
+
readonly inputs: readonly [];
|
|
5124
|
+
readonly name: "accounting";
|
|
5125
|
+
readonly outputs: readonly [{
|
|
5126
|
+
readonly internalType: "address";
|
|
5127
|
+
readonly name: "";
|
|
5128
|
+
readonly type: "address";
|
|
5129
|
+
}];
|
|
5130
|
+
readonly stateMutability: "view";
|
|
5131
|
+
readonly type: "function";
|
|
5132
|
+
}, {
|
|
5133
|
+
readonly inputs: readonly [];
|
|
5134
|
+
readonly name: "accountingOracle";
|
|
5135
|
+
readonly outputs: readonly [{
|
|
5136
|
+
readonly internalType: "address";
|
|
5137
|
+
readonly name: "";
|
|
5138
|
+
readonly type: "address";
|
|
5139
|
+
}];
|
|
5140
|
+
readonly stateMutability: "view";
|
|
5141
|
+
readonly type: "function";
|
|
5142
|
+
}, {
|
|
5143
|
+
readonly inputs: readonly [];
|
|
5144
|
+
readonly name: "burner";
|
|
5145
|
+
readonly outputs: readonly [{
|
|
5146
|
+
readonly internalType: "address";
|
|
5147
|
+
readonly name: "";
|
|
5148
|
+
readonly type: "address";
|
|
5149
|
+
}];
|
|
5150
|
+
readonly stateMutability: "view";
|
|
5151
|
+
readonly type: "function";
|
|
5152
|
+
}, {
|
|
5153
|
+
readonly inputs: readonly [];
|
|
5154
|
+
readonly name: "coreComponents";
|
|
5155
|
+
readonly outputs: readonly [{
|
|
5156
|
+
readonly internalType: "address";
|
|
5157
|
+
readonly name: "";
|
|
5158
|
+
readonly type: "address";
|
|
5159
|
+
}, {
|
|
5160
|
+
readonly internalType: "address";
|
|
5161
|
+
readonly name: "";
|
|
5162
|
+
readonly type: "address";
|
|
5163
|
+
}, {
|
|
5164
|
+
readonly internalType: "address";
|
|
5165
|
+
readonly name: "";
|
|
5166
|
+
readonly type: "address";
|
|
5167
|
+
}, {
|
|
5168
|
+
readonly internalType: "address";
|
|
5169
|
+
readonly name: "";
|
|
5170
|
+
readonly type: "address";
|
|
5171
|
+
}, {
|
|
5172
|
+
readonly internalType: "address";
|
|
5173
|
+
readonly name: "";
|
|
5174
|
+
readonly type: "address";
|
|
5175
|
+
}, {
|
|
5176
|
+
readonly internalType: "address";
|
|
5177
|
+
readonly name: "";
|
|
5178
|
+
readonly type: "address";
|
|
5179
|
+
}];
|
|
5180
|
+
readonly stateMutability: "view";
|
|
5181
|
+
readonly type: "function";
|
|
5182
|
+
}, {
|
|
5183
|
+
readonly inputs: readonly [];
|
|
5184
|
+
readonly name: "depositSecurityModule";
|
|
5185
|
+
readonly outputs: readonly [{
|
|
5186
|
+
readonly internalType: "address";
|
|
5187
|
+
readonly name: "";
|
|
5188
|
+
readonly type: "address";
|
|
5189
|
+
}];
|
|
5190
|
+
readonly stateMutability: "view";
|
|
5191
|
+
readonly type: "function";
|
|
5192
|
+
}, {
|
|
5193
|
+
readonly inputs: readonly [];
|
|
5194
|
+
readonly name: "elRewardsVault";
|
|
5195
|
+
readonly outputs: readonly [{
|
|
5196
|
+
readonly internalType: "address";
|
|
5197
|
+
readonly name: "";
|
|
5198
|
+
readonly type: "address";
|
|
5199
|
+
}];
|
|
5200
|
+
readonly stateMutability: "view";
|
|
5201
|
+
readonly type: "function";
|
|
5202
|
+
}, {
|
|
5203
|
+
readonly inputs: readonly [];
|
|
5204
|
+
readonly name: "lazyOracle";
|
|
5205
|
+
readonly outputs: readonly [{
|
|
5206
|
+
readonly internalType: "address";
|
|
5207
|
+
readonly name: "";
|
|
5208
|
+
readonly type: "address";
|
|
5209
|
+
}];
|
|
5210
|
+
readonly stateMutability: "view";
|
|
5211
|
+
readonly type: "function";
|
|
5212
|
+
}, {
|
|
5213
|
+
readonly inputs: readonly [];
|
|
5214
|
+
readonly name: "lido";
|
|
5215
|
+
readonly outputs: readonly [{
|
|
5216
|
+
readonly internalType: "address";
|
|
5217
|
+
readonly name: "";
|
|
5218
|
+
readonly type: "address";
|
|
5219
|
+
}];
|
|
5220
|
+
readonly stateMutability: "view";
|
|
5221
|
+
readonly type: "function";
|
|
5222
|
+
}, {
|
|
5223
|
+
readonly inputs: readonly [];
|
|
5224
|
+
readonly name: "operatorGrid";
|
|
5225
|
+
readonly outputs: readonly [{
|
|
5226
|
+
readonly internalType: "address";
|
|
5227
|
+
readonly name: "";
|
|
5228
|
+
readonly type: "address";
|
|
5229
|
+
}];
|
|
5230
|
+
readonly stateMutability: "view";
|
|
5231
|
+
readonly type: "function";
|
|
5232
|
+
}, {
|
|
5233
|
+
readonly inputs: readonly [];
|
|
5234
|
+
readonly name: "oracleDaemonConfig";
|
|
5235
|
+
readonly outputs: readonly [{
|
|
5236
|
+
readonly internalType: "address";
|
|
5237
|
+
readonly name: "";
|
|
5238
|
+
readonly type: "address";
|
|
5239
|
+
}];
|
|
5240
|
+
readonly stateMutability: "view";
|
|
5241
|
+
readonly type: "function";
|
|
5242
|
+
}, {
|
|
5243
|
+
readonly inputs: readonly [];
|
|
5244
|
+
readonly name: "oracleReportComponents";
|
|
5245
|
+
readonly outputs: readonly [{
|
|
5246
|
+
readonly internalType: "address";
|
|
5247
|
+
readonly name: "";
|
|
5248
|
+
readonly type: "address";
|
|
5249
|
+
}, {
|
|
5250
|
+
readonly internalType: "address";
|
|
5251
|
+
readonly name: "";
|
|
5252
|
+
readonly type: "address";
|
|
5253
|
+
}, {
|
|
5254
|
+
readonly internalType: "address";
|
|
5255
|
+
readonly name: "";
|
|
5256
|
+
readonly type: "address";
|
|
5257
|
+
}, {
|
|
5258
|
+
readonly internalType: "address";
|
|
5259
|
+
readonly name: "";
|
|
5260
|
+
readonly type: "address";
|
|
5261
|
+
}, {
|
|
5262
|
+
readonly internalType: "address";
|
|
5263
|
+
readonly name: "";
|
|
5264
|
+
readonly type: "address";
|
|
5265
|
+
}, {
|
|
5266
|
+
readonly internalType: "address";
|
|
5267
|
+
readonly name: "";
|
|
5268
|
+
readonly type: "address";
|
|
5269
|
+
}, {
|
|
5270
|
+
readonly internalType: "address";
|
|
5271
|
+
readonly name: "";
|
|
5272
|
+
readonly type: "address";
|
|
5273
|
+
}];
|
|
5274
|
+
readonly stateMutability: "view";
|
|
5275
|
+
readonly type: "function";
|
|
5276
|
+
}, {
|
|
5277
|
+
readonly inputs: readonly [];
|
|
5278
|
+
readonly name: "oracleReportSanityChecker";
|
|
5279
|
+
readonly outputs: readonly [{
|
|
5280
|
+
readonly internalType: "address";
|
|
5281
|
+
readonly name: "";
|
|
5282
|
+
readonly type: "address";
|
|
5283
|
+
}];
|
|
5284
|
+
readonly stateMutability: "view";
|
|
5285
|
+
readonly type: "function";
|
|
5286
|
+
}, {
|
|
5287
|
+
readonly inputs: readonly [];
|
|
5288
|
+
readonly name: "postTokenRebaseReceiver";
|
|
5289
|
+
readonly outputs: readonly [{
|
|
5290
|
+
readonly internalType: "address";
|
|
5291
|
+
readonly name: "";
|
|
5292
|
+
readonly type: "address";
|
|
5293
|
+
}];
|
|
5294
|
+
readonly stateMutability: "view";
|
|
5295
|
+
readonly type: "function";
|
|
5296
|
+
}, {
|
|
5297
|
+
readonly inputs: readonly [];
|
|
5298
|
+
readonly name: "predepositGuarantee";
|
|
5299
|
+
readonly outputs: readonly [{
|
|
5300
|
+
readonly internalType: "address";
|
|
5301
|
+
readonly name: "";
|
|
5302
|
+
readonly type: "address";
|
|
5303
|
+
}];
|
|
5304
|
+
readonly stateMutability: "view";
|
|
5305
|
+
readonly type: "function";
|
|
5306
|
+
}, {
|
|
5307
|
+
readonly inputs: readonly [];
|
|
5308
|
+
readonly name: "stakingRouter";
|
|
5309
|
+
readonly outputs: readonly [{
|
|
5310
|
+
readonly internalType: "address";
|
|
5311
|
+
readonly name: "";
|
|
5312
|
+
readonly type: "address";
|
|
5313
|
+
}];
|
|
5314
|
+
readonly stateMutability: "view";
|
|
5315
|
+
readonly type: "function";
|
|
5316
|
+
}, {
|
|
5317
|
+
readonly inputs: readonly [];
|
|
5318
|
+
readonly name: "treasury";
|
|
5319
|
+
readonly outputs: readonly [{
|
|
5320
|
+
readonly internalType: "address";
|
|
5321
|
+
readonly name: "";
|
|
5322
|
+
readonly type: "address";
|
|
5323
|
+
}];
|
|
5324
|
+
readonly stateMutability: "view";
|
|
5325
|
+
readonly type: "function";
|
|
5326
|
+
}, {
|
|
5327
|
+
readonly inputs: readonly [];
|
|
5328
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
5329
|
+
readonly outputs: readonly [{
|
|
5330
|
+
readonly internalType: "address";
|
|
5331
|
+
readonly name: "";
|
|
5332
|
+
readonly type: "address";
|
|
5333
|
+
}];
|
|
5334
|
+
readonly stateMutability: "view";
|
|
5335
|
+
readonly type: "function";
|
|
5336
|
+
}, {
|
|
5337
|
+
readonly inputs: readonly [];
|
|
5338
|
+
readonly name: "validatorExitDelayVerifier";
|
|
5339
|
+
readonly outputs: readonly [{
|
|
5340
|
+
readonly internalType: "address";
|
|
5341
|
+
readonly name: "";
|
|
5342
|
+
readonly type: "address";
|
|
5343
|
+
}];
|
|
5344
|
+
readonly stateMutability: "view";
|
|
5345
|
+
readonly type: "function";
|
|
5346
|
+
}, {
|
|
5347
|
+
readonly inputs: readonly [];
|
|
5348
|
+
readonly name: "validatorsExitBusOracle";
|
|
5349
|
+
readonly outputs: readonly [{
|
|
5350
|
+
readonly internalType: "address";
|
|
5351
|
+
readonly name: "";
|
|
5352
|
+
readonly type: "address";
|
|
5353
|
+
}];
|
|
5354
|
+
readonly stateMutability: "view";
|
|
5355
|
+
readonly type: "function";
|
|
5356
|
+
}, {
|
|
5357
|
+
readonly inputs: readonly [];
|
|
5358
|
+
readonly name: "vaultFactory";
|
|
5359
|
+
readonly outputs: readonly [{
|
|
5360
|
+
readonly internalType: "address";
|
|
5361
|
+
readonly name: "";
|
|
5362
|
+
readonly type: "address";
|
|
5363
|
+
}];
|
|
5364
|
+
readonly stateMutability: "view";
|
|
5365
|
+
readonly type: "function";
|
|
5366
|
+
}, {
|
|
5367
|
+
readonly inputs: readonly [];
|
|
5368
|
+
readonly name: "vaultHub";
|
|
5369
|
+
readonly outputs: readonly [{
|
|
5370
|
+
readonly internalType: "address";
|
|
5371
|
+
readonly name: "";
|
|
5372
|
+
readonly type: "address";
|
|
5373
|
+
}];
|
|
5374
|
+
readonly stateMutability: "view";
|
|
5375
|
+
readonly type: "function";
|
|
5376
|
+
}, {
|
|
5377
|
+
readonly inputs: readonly [];
|
|
5378
|
+
readonly name: "withdrawalQueue";
|
|
5379
|
+
readonly outputs: readonly [{
|
|
5380
|
+
readonly internalType: "address";
|
|
5381
|
+
readonly name: "";
|
|
5382
|
+
readonly type: "address";
|
|
5383
|
+
}];
|
|
5384
|
+
readonly stateMutability: "view";
|
|
5385
|
+
readonly type: "function";
|
|
5386
|
+
}, {
|
|
5387
|
+
readonly inputs: readonly [];
|
|
5388
|
+
readonly name: "withdrawalVault";
|
|
5389
|
+
readonly outputs: readonly [{
|
|
5390
|
+
readonly internalType: "address";
|
|
5391
|
+
readonly name: "";
|
|
5392
|
+
readonly type: "address";
|
|
5393
|
+
}];
|
|
5394
|
+
readonly stateMutability: "view";
|
|
5395
|
+
readonly type: "function";
|
|
5396
|
+
}, {
|
|
5397
|
+
readonly inputs: readonly [];
|
|
5398
|
+
readonly name: "wstETH";
|
|
5399
|
+
readonly outputs: readonly [{
|
|
5400
|
+
readonly internalType: "address";
|
|
5401
|
+
readonly name: "";
|
|
5402
|
+
readonly type: "address";
|
|
5403
|
+
}];
|
|
5404
|
+
readonly stateMutability: "view";
|
|
5405
|
+
readonly type: "function";
|
|
5406
|
+
}], "validatorExitDelayVerifier", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5407
|
+
triggerableWithdrawalsGateway: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
5408
|
+
readonly inputs: readonly [{
|
|
5409
|
+
readonly components: readonly [{
|
|
5410
|
+
readonly internalType: "address";
|
|
5411
|
+
readonly name: "accountingOracle";
|
|
5412
|
+
readonly type: "address";
|
|
5413
|
+
}, {
|
|
5414
|
+
readonly internalType: "address";
|
|
5415
|
+
readonly name: "depositSecurityModule";
|
|
5416
|
+
readonly type: "address";
|
|
5417
|
+
}, {
|
|
5418
|
+
readonly internalType: "address";
|
|
5419
|
+
readonly name: "elRewardsVault";
|
|
5420
|
+
readonly type: "address";
|
|
5421
|
+
}, {
|
|
5422
|
+
readonly internalType: "address";
|
|
5423
|
+
readonly name: "lido";
|
|
5424
|
+
readonly type: "address";
|
|
5425
|
+
}, {
|
|
5426
|
+
readonly internalType: "address";
|
|
5427
|
+
readonly name: "oracleReportSanityChecker";
|
|
5428
|
+
readonly type: "address";
|
|
5429
|
+
}, {
|
|
5430
|
+
readonly internalType: "address";
|
|
5431
|
+
readonly name: "postTokenRebaseReceiver";
|
|
5432
|
+
readonly type: "address";
|
|
5433
|
+
}, {
|
|
5434
|
+
readonly internalType: "address";
|
|
5435
|
+
readonly name: "burner";
|
|
5436
|
+
readonly type: "address";
|
|
5437
|
+
}, {
|
|
5438
|
+
readonly internalType: "address";
|
|
5439
|
+
readonly name: "stakingRouter";
|
|
5440
|
+
readonly type: "address";
|
|
5441
|
+
}, {
|
|
5442
|
+
readonly internalType: "address";
|
|
5443
|
+
readonly name: "treasury";
|
|
5444
|
+
readonly type: "address";
|
|
5445
|
+
}, {
|
|
5446
|
+
readonly internalType: "address";
|
|
5447
|
+
readonly name: "validatorsExitBusOracle";
|
|
5448
|
+
readonly type: "address";
|
|
5449
|
+
}, {
|
|
5450
|
+
readonly internalType: "address";
|
|
5451
|
+
readonly name: "withdrawalQueue";
|
|
5452
|
+
readonly type: "address";
|
|
5453
|
+
}, {
|
|
5454
|
+
readonly internalType: "address";
|
|
5455
|
+
readonly name: "withdrawalVault";
|
|
5456
|
+
readonly type: "address";
|
|
5457
|
+
}, {
|
|
5458
|
+
readonly internalType: "address";
|
|
5459
|
+
readonly name: "oracleDaemonConfig";
|
|
5460
|
+
readonly type: "address";
|
|
5461
|
+
}, {
|
|
5462
|
+
readonly internalType: "address";
|
|
5463
|
+
readonly name: "validatorExitDelayVerifier";
|
|
5464
|
+
readonly type: "address";
|
|
5465
|
+
}, {
|
|
5466
|
+
readonly internalType: "address";
|
|
5467
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
5468
|
+
readonly type: "address";
|
|
5469
|
+
}, {
|
|
5470
|
+
readonly internalType: "address";
|
|
5471
|
+
readonly name: "accounting";
|
|
5472
|
+
readonly type: "address";
|
|
5473
|
+
}, {
|
|
5474
|
+
readonly internalType: "address";
|
|
5475
|
+
readonly name: "predepositGuarantee";
|
|
5476
|
+
readonly type: "address";
|
|
5477
|
+
}, {
|
|
5478
|
+
readonly internalType: "address";
|
|
5479
|
+
readonly name: "wstETH";
|
|
5480
|
+
readonly type: "address";
|
|
5481
|
+
}, {
|
|
5482
|
+
readonly internalType: "address";
|
|
5483
|
+
readonly name: "vaultHub";
|
|
5484
|
+
readonly type: "address";
|
|
5485
|
+
}, {
|
|
5486
|
+
readonly internalType: "address";
|
|
5487
|
+
readonly name: "vaultFactory";
|
|
5488
|
+
readonly type: "address";
|
|
5489
|
+
}, {
|
|
5490
|
+
readonly internalType: "address";
|
|
5491
|
+
readonly name: "lazyOracle";
|
|
5492
|
+
readonly type: "address";
|
|
5493
|
+
}, {
|
|
5494
|
+
readonly internalType: "address";
|
|
5495
|
+
readonly name: "operatorGrid";
|
|
5496
|
+
readonly type: "address";
|
|
5497
|
+
}];
|
|
5498
|
+
readonly internalType: "struct LidoLocator.Config";
|
|
5499
|
+
readonly name: "_config";
|
|
5500
|
+
readonly type: "tuple";
|
|
5501
|
+
}];
|
|
5502
|
+
readonly stateMutability: "nonpayable";
|
|
5503
|
+
readonly type: "constructor";
|
|
5504
|
+
}, {
|
|
5505
|
+
readonly inputs: readonly [];
|
|
5506
|
+
readonly name: "ZeroAddress";
|
|
5507
|
+
readonly type: "error";
|
|
5508
|
+
}, {
|
|
5509
|
+
readonly inputs: readonly [];
|
|
5510
|
+
readonly name: "accounting";
|
|
5511
|
+
readonly outputs: readonly [{
|
|
5512
|
+
readonly internalType: "address";
|
|
5513
|
+
readonly name: "";
|
|
5514
|
+
readonly type: "address";
|
|
5515
|
+
}];
|
|
5516
|
+
readonly stateMutability: "view";
|
|
5517
|
+
readonly type: "function";
|
|
5518
|
+
}, {
|
|
5519
|
+
readonly inputs: readonly [];
|
|
5520
|
+
readonly name: "accountingOracle";
|
|
5521
|
+
readonly outputs: readonly [{
|
|
5522
|
+
readonly internalType: "address";
|
|
5523
|
+
readonly name: "";
|
|
5524
|
+
readonly type: "address";
|
|
5525
|
+
}];
|
|
5526
|
+
readonly stateMutability: "view";
|
|
5527
|
+
readonly type: "function";
|
|
5528
|
+
}, {
|
|
5529
|
+
readonly inputs: readonly [];
|
|
5530
|
+
readonly name: "burner";
|
|
5531
|
+
readonly outputs: readonly [{
|
|
5532
|
+
readonly internalType: "address";
|
|
5533
|
+
readonly name: "";
|
|
5534
|
+
readonly type: "address";
|
|
5535
|
+
}];
|
|
5536
|
+
readonly stateMutability: "view";
|
|
5537
|
+
readonly type: "function";
|
|
5538
|
+
}, {
|
|
5539
|
+
readonly inputs: readonly [];
|
|
5540
|
+
readonly name: "coreComponents";
|
|
5541
|
+
readonly outputs: readonly [{
|
|
5542
|
+
readonly internalType: "address";
|
|
5543
|
+
readonly name: "";
|
|
5544
|
+
readonly type: "address";
|
|
5545
|
+
}, {
|
|
5546
|
+
readonly internalType: "address";
|
|
5547
|
+
readonly name: "";
|
|
5548
|
+
readonly type: "address";
|
|
5549
|
+
}, {
|
|
5550
|
+
readonly internalType: "address";
|
|
5551
|
+
readonly name: "";
|
|
5552
|
+
readonly type: "address";
|
|
5553
|
+
}, {
|
|
5554
|
+
readonly internalType: "address";
|
|
5555
|
+
readonly name: "";
|
|
5556
|
+
readonly type: "address";
|
|
5557
|
+
}, {
|
|
5558
|
+
readonly internalType: "address";
|
|
5559
|
+
readonly name: "";
|
|
5560
|
+
readonly type: "address";
|
|
5561
|
+
}, {
|
|
5562
|
+
readonly internalType: "address";
|
|
5563
|
+
readonly name: "";
|
|
5564
|
+
readonly type: "address";
|
|
5565
|
+
}];
|
|
5566
|
+
readonly stateMutability: "view";
|
|
5567
|
+
readonly type: "function";
|
|
5568
|
+
}, {
|
|
5569
|
+
readonly inputs: readonly [];
|
|
5570
|
+
readonly name: "depositSecurityModule";
|
|
5571
|
+
readonly outputs: readonly [{
|
|
5572
|
+
readonly internalType: "address";
|
|
5573
|
+
readonly name: "";
|
|
5574
|
+
readonly type: "address";
|
|
5575
|
+
}];
|
|
5576
|
+
readonly stateMutability: "view";
|
|
5577
|
+
readonly type: "function";
|
|
5578
|
+
}, {
|
|
5579
|
+
readonly inputs: readonly [];
|
|
5580
|
+
readonly name: "elRewardsVault";
|
|
5581
|
+
readonly outputs: readonly [{
|
|
5582
|
+
readonly internalType: "address";
|
|
5583
|
+
readonly name: "";
|
|
5584
|
+
readonly type: "address";
|
|
5585
|
+
}];
|
|
5586
|
+
readonly stateMutability: "view";
|
|
5587
|
+
readonly type: "function";
|
|
5588
|
+
}, {
|
|
5589
|
+
readonly inputs: readonly [];
|
|
5590
|
+
readonly name: "lazyOracle";
|
|
5591
|
+
readonly outputs: readonly [{
|
|
5592
|
+
readonly internalType: "address";
|
|
5593
|
+
readonly name: "";
|
|
5594
|
+
readonly type: "address";
|
|
5595
|
+
}];
|
|
5596
|
+
readonly stateMutability: "view";
|
|
5597
|
+
readonly type: "function";
|
|
5598
|
+
}, {
|
|
5599
|
+
readonly inputs: readonly [];
|
|
5600
|
+
readonly name: "lido";
|
|
5601
|
+
readonly outputs: readonly [{
|
|
5602
|
+
readonly internalType: "address";
|
|
5603
|
+
readonly name: "";
|
|
5604
|
+
readonly type: "address";
|
|
5605
|
+
}];
|
|
5606
|
+
readonly stateMutability: "view";
|
|
5607
|
+
readonly type: "function";
|
|
5608
|
+
}, {
|
|
5609
|
+
readonly inputs: readonly [];
|
|
5610
|
+
readonly name: "operatorGrid";
|
|
5611
|
+
readonly outputs: readonly [{
|
|
5612
|
+
readonly internalType: "address";
|
|
5613
|
+
readonly name: "";
|
|
5614
|
+
readonly type: "address";
|
|
5615
|
+
}];
|
|
5616
|
+
readonly stateMutability: "view";
|
|
5617
|
+
readonly type: "function";
|
|
5618
|
+
}, {
|
|
5619
|
+
readonly inputs: readonly [];
|
|
5620
|
+
readonly name: "oracleDaemonConfig";
|
|
5621
|
+
readonly outputs: readonly [{
|
|
5622
|
+
readonly internalType: "address";
|
|
5623
|
+
readonly name: "";
|
|
5624
|
+
readonly type: "address";
|
|
5625
|
+
}];
|
|
5626
|
+
readonly stateMutability: "view";
|
|
5627
|
+
readonly type: "function";
|
|
5628
|
+
}, {
|
|
5629
|
+
readonly inputs: readonly [];
|
|
5630
|
+
readonly name: "oracleReportComponents";
|
|
5631
|
+
readonly outputs: readonly [{
|
|
5632
|
+
readonly internalType: "address";
|
|
5633
|
+
readonly name: "";
|
|
5634
|
+
readonly type: "address";
|
|
5635
|
+
}, {
|
|
5636
|
+
readonly internalType: "address";
|
|
5637
|
+
readonly name: "";
|
|
5638
|
+
readonly type: "address";
|
|
5639
|
+
}, {
|
|
5640
|
+
readonly internalType: "address";
|
|
5641
|
+
readonly name: "";
|
|
5642
|
+
readonly type: "address";
|
|
5643
|
+
}, {
|
|
5644
|
+
readonly internalType: "address";
|
|
5645
|
+
readonly name: "";
|
|
5646
|
+
readonly type: "address";
|
|
5647
|
+
}, {
|
|
5648
|
+
readonly internalType: "address";
|
|
5649
|
+
readonly name: "";
|
|
5650
|
+
readonly type: "address";
|
|
5651
|
+
}, {
|
|
5652
|
+
readonly internalType: "address";
|
|
5653
|
+
readonly name: "";
|
|
5654
|
+
readonly type: "address";
|
|
5655
|
+
}, {
|
|
5656
|
+
readonly internalType: "address";
|
|
5657
|
+
readonly name: "";
|
|
5658
|
+
readonly type: "address";
|
|
5659
|
+
}];
|
|
5660
|
+
readonly stateMutability: "view";
|
|
5661
|
+
readonly type: "function";
|
|
5662
|
+
}, {
|
|
5663
|
+
readonly inputs: readonly [];
|
|
5664
|
+
readonly name: "oracleReportSanityChecker";
|
|
5665
|
+
readonly outputs: readonly [{
|
|
5666
|
+
readonly internalType: "address";
|
|
5667
|
+
readonly name: "";
|
|
5668
|
+
readonly type: "address";
|
|
5669
|
+
}];
|
|
5670
|
+
readonly stateMutability: "view";
|
|
5671
|
+
readonly type: "function";
|
|
5672
|
+
}, {
|
|
5673
|
+
readonly inputs: readonly [];
|
|
5674
|
+
readonly name: "postTokenRebaseReceiver";
|
|
5675
|
+
readonly outputs: readonly [{
|
|
5676
|
+
readonly internalType: "address";
|
|
5677
|
+
readonly name: "";
|
|
5678
|
+
readonly type: "address";
|
|
5679
|
+
}];
|
|
5680
|
+
readonly stateMutability: "view";
|
|
5681
|
+
readonly type: "function";
|
|
5682
|
+
}, {
|
|
5683
|
+
readonly inputs: readonly [];
|
|
5684
|
+
readonly name: "predepositGuarantee";
|
|
4549
5685
|
readonly outputs: readonly [{
|
|
4550
5686
|
readonly internalType: "address";
|
|
4551
5687
|
readonly name: "";
|
|
@@ -4555,7 +5691,7 @@ export declare const getLocatorContract: () => {
|
|
|
4555
5691
|
readonly type: "function";
|
|
4556
5692
|
}, {
|
|
4557
5693
|
readonly inputs: readonly [];
|
|
4558
|
-
readonly name: "
|
|
5694
|
+
readonly name: "stakingRouter";
|
|
4559
5695
|
readonly outputs: readonly [{
|
|
4560
5696
|
readonly internalType: "address";
|
|
4561
5697
|
readonly name: "";
|
|
@@ -4565,7 +5701,7 @@ export declare const getLocatorContract: () => {
|
|
|
4565
5701
|
readonly type: "function";
|
|
4566
5702
|
}, {
|
|
4567
5703
|
readonly inputs: readonly [];
|
|
4568
|
-
readonly name: "
|
|
5704
|
+
readonly name: "treasury";
|
|
4569
5705
|
readonly outputs: readonly [{
|
|
4570
5706
|
readonly internalType: "address";
|
|
4571
5707
|
readonly name: "";
|
|
@@ -4575,7 +5711,7 @@ export declare const getLocatorContract: () => {
|
|
|
4575
5711
|
readonly type: "function";
|
|
4576
5712
|
}, {
|
|
4577
5713
|
readonly inputs: readonly [];
|
|
4578
|
-
readonly name: "
|
|
5714
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
4579
5715
|
readonly outputs: readonly [{
|
|
4580
5716
|
readonly internalType: "address";
|
|
4581
5717
|
readonly name: "";
|
|
@@ -4585,7 +5721,7 @@ export declare const getLocatorContract: () => {
|
|
|
4585
5721
|
readonly type: "function";
|
|
4586
5722
|
}, {
|
|
4587
5723
|
readonly inputs: readonly [];
|
|
4588
|
-
readonly name: "
|
|
5724
|
+
readonly name: "validatorExitDelayVerifier";
|
|
4589
5725
|
readonly outputs: readonly [{
|
|
4590
5726
|
readonly internalType: "address";
|
|
4591
5727
|
readonly name: "";
|
|
@@ -4653,7 +5789,7 @@ export declare const getLocatorContract: () => {
|
|
|
4653
5789
|
}];
|
|
4654
5790
|
readonly stateMutability: "view";
|
|
4655
5791
|
readonly type: "function";
|
|
4656
|
-
}], "
|
|
5792
|
+
}], "triggerableWithdrawalsGateway", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
4657
5793
|
accounting: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
4658
5794
|
readonly inputs: readonly [{
|
|
4659
5795
|
readonly components: readonly [{
|
|
@@ -4708,6 +5844,14 @@ export declare const getLocatorContract: () => {
|
|
|
4708
5844
|
readonly internalType: "address";
|
|
4709
5845
|
readonly name: "oracleDaemonConfig";
|
|
4710
5846
|
readonly type: "address";
|
|
5847
|
+
}, {
|
|
5848
|
+
readonly internalType: "address";
|
|
5849
|
+
readonly name: "validatorExitDelayVerifier";
|
|
5850
|
+
readonly type: "address";
|
|
5851
|
+
}, {
|
|
5852
|
+
readonly internalType: "address";
|
|
5853
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
5854
|
+
readonly type: "address";
|
|
4711
5855
|
}, {
|
|
4712
5856
|
readonly internalType: "address";
|
|
4713
5857
|
readonly name: "accounting";
|
|
@@ -4951,6 +6095,26 @@ export declare const getLocatorContract: () => {
|
|
|
4951
6095
|
}];
|
|
4952
6096
|
readonly stateMutability: "view";
|
|
4953
6097
|
readonly type: "function";
|
|
6098
|
+
}, {
|
|
6099
|
+
readonly inputs: readonly [];
|
|
6100
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
6101
|
+
readonly outputs: readonly [{
|
|
6102
|
+
readonly internalType: "address";
|
|
6103
|
+
readonly name: "";
|
|
6104
|
+
readonly type: "address";
|
|
6105
|
+
}];
|
|
6106
|
+
readonly stateMutability: "view";
|
|
6107
|
+
readonly type: "function";
|
|
6108
|
+
}, {
|
|
6109
|
+
readonly inputs: readonly [];
|
|
6110
|
+
readonly name: "validatorExitDelayVerifier";
|
|
6111
|
+
readonly outputs: readonly [{
|
|
6112
|
+
readonly internalType: "address";
|
|
6113
|
+
readonly name: "";
|
|
6114
|
+
readonly type: "address";
|
|
6115
|
+
}];
|
|
6116
|
+
readonly stateMutability: "view";
|
|
6117
|
+
readonly type: "function";
|
|
4954
6118
|
}, {
|
|
4955
6119
|
readonly inputs: readonly [];
|
|
4956
6120
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -5066,6 +6230,14 @@ export declare const getLocatorContract: () => {
|
|
|
5066
6230
|
readonly internalType: "address";
|
|
5067
6231
|
readonly name: "oracleDaemonConfig";
|
|
5068
6232
|
readonly type: "address";
|
|
6233
|
+
}, {
|
|
6234
|
+
readonly internalType: "address";
|
|
6235
|
+
readonly name: "validatorExitDelayVerifier";
|
|
6236
|
+
readonly type: "address";
|
|
6237
|
+
}, {
|
|
6238
|
+
readonly internalType: "address";
|
|
6239
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
6240
|
+
readonly type: "address";
|
|
5069
6241
|
}, {
|
|
5070
6242
|
readonly internalType: "address";
|
|
5071
6243
|
readonly name: "accounting";
|
|
@@ -5309,6 +6481,26 @@ export declare const getLocatorContract: () => {
|
|
|
5309
6481
|
}];
|
|
5310
6482
|
readonly stateMutability: "view";
|
|
5311
6483
|
readonly type: "function";
|
|
6484
|
+
}, {
|
|
6485
|
+
readonly inputs: readonly [];
|
|
6486
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
6487
|
+
readonly outputs: readonly [{
|
|
6488
|
+
readonly internalType: "address";
|
|
6489
|
+
readonly name: "";
|
|
6490
|
+
readonly type: "address";
|
|
6491
|
+
}];
|
|
6492
|
+
readonly stateMutability: "view";
|
|
6493
|
+
readonly type: "function";
|
|
6494
|
+
}, {
|
|
6495
|
+
readonly inputs: readonly [];
|
|
6496
|
+
readonly name: "validatorExitDelayVerifier";
|
|
6497
|
+
readonly outputs: readonly [{
|
|
6498
|
+
readonly internalType: "address";
|
|
6499
|
+
readonly name: "";
|
|
6500
|
+
readonly type: "address";
|
|
6501
|
+
}];
|
|
6502
|
+
readonly stateMutability: "view";
|
|
6503
|
+
readonly type: "function";
|
|
5312
6504
|
}, {
|
|
5313
6505
|
readonly inputs: readonly [];
|
|
5314
6506
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -5424,6 +6616,14 @@ export declare const getLocatorContract: () => {
|
|
|
5424
6616
|
readonly internalType: "address";
|
|
5425
6617
|
readonly name: "oracleDaemonConfig";
|
|
5426
6618
|
readonly type: "address";
|
|
6619
|
+
}, {
|
|
6620
|
+
readonly internalType: "address";
|
|
6621
|
+
readonly name: "validatorExitDelayVerifier";
|
|
6622
|
+
readonly type: "address";
|
|
6623
|
+
}, {
|
|
6624
|
+
readonly internalType: "address";
|
|
6625
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
6626
|
+
readonly type: "address";
|
|
5427
6627
|
}, {
|
|
5428
6628
|
readonly internalType: "address";
|
|
5429
6629
|
readonly name: "accounting";
|
|
@@ -5667,6 +6867,26 @@ export declare const getLocatorContract: () => {
|
|
|
5667
6867
|
}];
|
|
5668
6868
|
readonly stateMutability: "view";
|
|
5669
6869
|
readonly type: "function";
|
|
6870
|
+
}, {
|
|
6871
|
+
readonly inputs: readonly [];
|
|
6872
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
6873
|
+
readonly outputs: readonly [{
|
|
6874
|
+
readonly internalType: "address";
|
|
6875
|
+
readonly name: "";
|
|
6876
|
+
readonly type: "address";
|
|
6877
|
+
}];
|
|
6878
|
+
readonly stateMutability: "view";
|
|
6879
|
+
readonly type: "function";
|
|
6880
|
+
}, {
|
|
6881
|
+
readonly inputs: readonly [];
|
|
6882
|
+
readonly name: "validatorExitDelayVerifier";
|
|
6883
|
+
readonly outputs: readonly [{
|
|
6884
|
+
readonly internalType: "address";
|
|
6885
|
+
readonly name: "";
|
|
6886
|
+
readonly type: "address";
|
|
6887
|
+
}];
|
|
6888
|
+
readonly stateMutability: "view";
|
|
6889
|
+
readonly type: "function";
|
|
5670
6890
|
}, {
|
|
5671
6891
|
readonly inputs: readonly [];
|
|
5672
6892
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -5782,6 +7002,14 @@ export declare const getLocatorContract: () => {
|
|
|
5782
7002
|
readonly internalType: "address";
|
|
5783
7003
|
readonly name: "oracleDaemonConfig";
|
|
5784
7004
|
readonly type: "address";
|
|
7005
|
+
}, {
|
|
7006
|
+
readonly internalType: "address";
|
|
7007
|
+
readonly name: "validatorExitDelayVerifier";
|
|
7008
|
+
readonly type: "address";
|
|
7009
|
+
}, {
|
|
7010
|
+
readonly internalType: "address";
|
|
7011
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
7012
|
+
readonly type: "address";
|
|
5785
7013
|
}, {
|
|
5786
7014
|
readonly internalType: "address";
|
|
5787
7015
|
readonly name: "accounting";
|
|
@@ -6025,6 +7253,26 @@ export declare const getLocatorContract: () => {
|
|
|
6025
7253
|
}];
|
|
6026
7254
|
readonly stateMutability: "view";
|
|
6027
7255
|
readonly type: "function";
|
|
7256
|
+
}, {
|
|
7257
|
+
readonly inputs: readonly [];
|
|
7258
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
7259
|
+
readonly outputs: readonly [{
|
|
7260
|
+
readonly internalType: "address";
|
|
7261
|
+
readonly name: "";
|
|
7262
|
+
readonly type: "address";
|
|
7263
|
+
}];
|
|
7264
|
+
readonly stateMutability: "view";
|
|
7265
|
+
readonly type: "function";
|
|
7266
|
+
}, {
|
|
7267
|
+
readonly inputs: readonly [];
|
|
7268
|
+
readonly name: "validatorExitDelayVerifier";
|
|
7269
|
+
readonly outputs: readonly [{
|
|
7270
|
+
readonly internalType: "address";
|
|
7271
|
+
readonly name: "";
|
|
7272
|
+
readonly type: "address";
|
|
7273
|
+
}];
|
|
7274
|
+
readonly stateMutability: "view";
|
|
7275
|
+
readonly type: "function";
|
|
6028
7276
|
}, {
|
|
6029
7277
|
readonly inputs: readonly [];
|
|
6030
7278
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -6140,6 +7388,14 @@ export declare const getLocatorContract: () => {
|
|
|
6140
7388
|
readonly internalType: "address";
|
|
6141
7389
|
readonly name: "oracleDaemonConfig";
|
|
6142
7390
|
readonly type: "address";
|
|
7391
|
+
}, {
|
|
7392
|
+
readonly internalType: "address";
|
|
7393
|
+
readonly name: "validatorExitDelayVerifier";
|
|
7394
|
+
readonly type: "address";
|
|
7395
|
+
}, {
|
|
7396
|
+
readonly internalType: "address";
|
|
7397
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
7398
|
+
readonly type: "address";
|
|
6143
7399
|
}, {
|
|
6144
7400
|
readonly internalType: "address";
|
|
6145
7401
|
readonly name: "accounting";
|
|
@@ -6383,6 +7639,26 @@ export declare const getLocatorContract: () => {
|
|
|
6383
7639
|
}];
|
|
6384
7640
|
readonly stateMutability: "view";
|
|
6385
7641
|
readonly type: "function";
|
|
7642
|
+
}, {
|
|
7643
|
+
readonly inputs: readonly [];
|
|
7644
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
7645
|
+
readonly outputs: readonly [{
|
|
7646
|
+
readonly internalType: "address";
|
|
7647
|
+
readonly name: "";
|
|
7648
|
+
readonly type: "address";
|
|
7649
|
+
}];
|
|
7650
|
+
readonly stateMutability: "view";
|
|
7651
|
+
readonly type: "function";
|
|
7652
|
+
}, {
|
|
7653
|
+
readonly inputs: readonly [];
|
|
7654
|
+
readonly name: "validatorExitDelayVerifier";
|
|
7655
|
+
readonly outputs: readonly [{
|
|
7656
|
+
readonly internalType: "address";
|
|
7657
|
+
readonly name: "";
|
|
7658
|
+
readonly type: "address";
|
|
7659
|
+
}];
|
|
7660
|
+
readonly stateMutability: "view";
|
|
7661
|
+
readonly type: "function";
|
|
6386
7662
|
}, {
|
|
6387
7663
|
readonly inputs: readonly [];
|
|
6388
7664
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -6498,6 +7774,14 @@ export declare const getLocatorContract: () => {
|
|
|
6498
7774
|
readonly internalType: "address";
|
|
6499
7775
|
readonly name: "oracleDaemonConfig";
|
|
6500
7776
|
readonly type: "address";
|
|
7777
|
+
}, {
|
|
7778
|
+
readonly internalType: "address";
|
|
7779
|
+
readonly name: "validatorExitDelayVerifier";
|
|
7780
|
+
readonly type: "address";
|
|
7781
|
+
}, {
|
|
7782
|
+
readonly internalType: "address";
|
|
7783
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
7784
|
+
readonly type: "address";
|
|
6501
7785
|
}, {
|
|
6502
7786
|
readonly internalType: "address";
|
|
6503
7787
|
readonly name: "accounting";
|
|
@@ -6741,6 +8025,26 @@ export declare const getLocatorContract: () => {
|
|
|
6741
8025
|
}];
|
|
6742
8026
|
readonly stateMutability: "view";
|
|
6743
8027
|
readonly type: "function";
|
|
8028
|
+
}, {
|
|
8029
|
+
readonly inputs: readonly [];
|
|
8030
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8031
|
+
readonly outputs: readonly [{
|
|
8032
|
+
readonly internalType: "address";
|
|
8033
|
+
readonly name: "";
|
|
8034
|
+
readonly type: "address";
|
|
8035
|
+
}];
|
|
8036
|
+
readonly stateMutability: "view";
|
|
8037
|
+
readonly type: "function";
|
|
8038
|
+
}, {
|
|
8039
|
+
readonly inputs: readonly [];
|
|
8040
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8041
|
+
readonly outputs: readonly [{
|
|
8042
|
+
readonly internalType: "address";
|
|
8043
|
+
readonly name: "";
|
|
8044
|
+
readonly type: "address";
|
|
8045
|
+
}];
|
|
8046
|
+
readonly stateMutability: "view";
|
|
8047
|
+
readonly type: "function";
|
|
6744
8048
|
}, {
|
|
6745
8049
|
readonly inputs: readonly [];
|
|
6746
8050
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -6856,6 +8160,14 @@ export declare const getLocatorContract: () => {
|
|
|
6856
8160
|
readonly internalType: "address";
|
|
6857
8161
|
readonly name: "oracleDaemonConfig";
|
|
6858
8162
|
readonly type: "address";
|
|
8163
|
+
}, {
|
|
8164
|
+
readonly internalType: "address";
|
|
8165
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8166
|
+
readonly type: "address";
|
|
8167
|
+
}, {
|
|
8168
|
+
readonly internalType: "address";
|
|
8169
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8170
|
+
readonly type: "address";
|
|
6859
8171
|
}, {
|
|
6860
8172
|
readonly internalType: "address";
|
|
6861
8173
|
readonly name: "accounting";
|
|
@@ -7099,6 +8411,26 @@ export declare const getLocatorContract: () => {
|
|
|
7099
8411
|
}];
|
|
7100
8412
|
readonly stateMutability: "view";
|
|
7101
8413
|
readonly type: "function";
|
|
8414
|
+
}, {
|
|
8415
|
+
readonly inputs: readonly [];
|
|
8416
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8417
|
+
readonly outputs: readonly [{
|
|
8418
|
+
readonly internalType: "address";
|
|
8419
|
+
readonly name: "";
|
|
8420
|
+
readonly type: "address";
|
|
8421
|
+
}];
|
|
8422
|
+
readonly stateMutability: "view";
|
|
8423
|
+
readonly type: "function";
|
|
8424
|
+
}, {
|
|
8425
|
+
readonly inputs: readonly [];
|
|
8426
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8427
|
+
readonly outputs: readonly [{
|
|
8428
|
+
readonly internalType: "address";
|
|
8429
|
+
readonly name: "";
|
|
8430
|
+
readonly type: "address";
|
|
8431
|
+
}];
|
|
8432
|
+
readonly stateMutability: "view";
|
|
8433
|
+
readonly type: "function";
|
|
7102
8434
|
}, {
|
|
7103
8435
|
readonly inputs: readonly [];
|
|
7104
8436
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -7214,6 +8546,14 @@ export declare const getLocatorContract: () => {
|
|
|
7214
8546
|
readonly internalType: "address";
|
|
7215
8547
|
readonly name: "oracleDaemonConfig";
|
|
7216
8548
|
readonly type: "address";
|
|
8549
|
+
}, {
|
|
8550
|
+
readonly internalType: "address";
|
|
8551
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8552
|
+
readonly type: "address";
|
|
8553
|
+
}, {
|
|
8554
|
+
readonly internalType: "address";
|
|
8555
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8556
|
+
readonly type: "address";
|
|
7217
8557
|
}, {
|
|
7218
8558
|
readonly internalType: "address";
|
|
7219
8559
|
readonly name: "accounting";
|
|
@@ -7457,6 +8797,26 @@ export declare const getLocatorContract: () => {
|
|
|
7457
8797
|
}];
|
|
7458
8798
|
readonly stateMutability: "view";
|
|
7459
8799
|
readonly type: "function";
|
|
8800
|
+
}, {
|
|
8801
|
+
readonly inputs: readonly [];
|
|
8802
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8803
|
+
readonly outputs: readonly [{
|
|
8804
|
+
readonly internalType: "address";
|
|
8805
|
+
readonly name: "";
|
|
8806
|
+
readonly type: "address";
|
|
8807
|
+
}];
|
|
8808
|
+
readonly stateMutability: "view";
|
|
8809
|
+
readonly type: "function";
|
|
8810
|
+
}, {
|
|
8811
|
+
readonly inputs: readonly [];
|
|
8812
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8813
|
+
readonly outputs: readonly [{
|
|
8814
|
+
readonly internalType: "address";
|
|
8815
|
+
readonly name: "";
|
|
8816
|
+
readonly type: "address";
|
|
8817
|
+
}];
|
|
8818
|
+
readonly stateMutability: "view";
|
|
8819
|
+
readonly type: "function";
|
|
7460
8820
|
}, {
|
|
7461
8821
|
readonly inputs: readonly [];
|
|
7462
8822
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -7572,6 +8932,14 @@ export declare const getLocatorContract: () => {
|
|
|
7572
8932
|
readonly internalType: "address";
|
|
7573
8933
|
readonly name: "oracleDaemonConfig";
|
|
7574
8934
|
readonly type: "address";
|
|
8935
|
+
}, {
|
|
8936
|
+
readonly internalType: "address";
|
|
8937
|
+
readonly name: "validatorExitDelayVerifier";
|
|
8938
|
+
readonly type: "address";
|
|
8939
|
+
}, {
|
|
8940
|
+
readonly internalType: "address";
|
|
8941
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
8942
|
+
readonly type: "address";
|
|
7575
8943
|
}, {
|
|
7576
8944
|
readonly internalType: "address";
|
|
7577
8945
|
readonly name: "accounting";
|
|
@@ -7815,6 +9183,26 @@ export declare const getLocatorContract: () => {
|
|
|
7815
9183
|
}];
|
|
7816
9184
|
readonly stateMutability: "view";
|
|
7817
9185
|
readonly type: "function";
|
|
9186
|
+
}, {
|
|
9187
|
+
readonly inputs: readonly [];
|
|
9188
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
9189
|
+
readonly outputs: readonly [{
|
|
9190
|
+
readonly internalType: "address";
|
|
9191
|
+
readonly name: "";
|
|
9192
|
+
readonly type: "address";
|
|
9193
|
+
}];
|
|
9194
|
+
readonly stateMutability: "view";
|
|
9195
|
+
readonly type: "function";
|
|
9196
|
+
}, {
|
|
9197
|
+
readonly inputs: readonly [];
|
|
9198
|
+
readonly name: "validatorExitDelayVerifier";
|
|
9199
|
+
readonly outputs: readonly [{
|
|
9200
|
+
readonly internalType: "address";
|
|
9201
|
+
readonly name: "";
|
|
9202
|
+
readonly type: "address";
|
|
9203
|
+
}];
|
|
9204
|
+
readonly stateMutability: "view";
|
|
9205
|
+
readonly type: "function";
|
|
7818
9206
|
}, {
|
|
7819
9207
|
readonly inputs: readonly [];
|
|
7820
9208
|
readonly name: "validatorsExitBusOracle";
|
|
@@ -7932,6 +9320,14 @@ export declare const getLocatorContract: () => {
|
|
|
7932
9320
|
readonly internalType: "address";
|
|
7933
9321
|
readonly name: "oracleDaemonConfig";
|
|
7934
9322
|
readonly type: "address";
|
|
9323
|
+
}, {
|
|
9324
|
+
readonly internalType: "address";
|
|
9325
|
+
readonly name: "validatorExitDelayVerifier";
|
|
9326
|
+
readonly type: "address";
|
|
9327
|
+
}, {
|
|
9328
|
+
readonly internalType: "address";
|
|
9329
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
9330
|
+
readonly type: "address";
|
|
7935
9331
|
}, {
|
|
7936
9332
|
readonly internalType: "address";
|
|
7937
9333
|
readonly name: "accounting";
|
|
@@ -8175,6 +9571,26 @@ export declare const getLocatorContract: () => {
|
|
|
8175
9571
|
}];
|
|
8176
9572
|
readonly stateMutability: "view";
|
|
8177
9573
|
readonly type: "function";
|
|
9574
|
+
}, {
|
|
9575
|
+
readonly inputs: readonly [];
|
|
9576
|
+
readonly name: "triggerableWithdrawalsGateway";
|
|
9577
|
+
readonly outputs: readonly [{
|
|
9578
|
+
readonly internalType: "address";
|
|
9579
|
+
readonly name: "";
|
|
9580
|
+
readonly type: "address";
|
|
9581
|
+
}];
|
|
9582
|
+
readonly stateMutability: "view";
|
|
9583
|
+
readonly type: "function";
|
|
9584
|
+
}, {
|
|
9585
|
+
readonly inputs: readonly [];
|
|
9586
|
+
readonly name: "validatorExitDelayVerifier";
|
|
9587
|
+
readonly outputs: readonly [{
|
|
9588
|
+
readonly internalType: "address";
|
|
9589
|
+
readonly name: "";
|
|
9590
|
+
readonly type: "address";
|
|
9591
|
+
}];
|
|
9592
|
+
readonly stateMutability: "view";
|
|
9593
|
+
readonly type: "function";
|
|
8178
9594
|
}, {
|
|
8179
9595
|
readonly inputs: readonly [];
|
|
8180
9596
|
readonly name: "validatorsExitBusOracle";
|