@lidofinance/lsv-cli 1.0.0-alpha.54 → 1.0.0-alpha.55
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 +3 -3
- package/dist/abi/AccessControlConfirmable.d.ts +331 -0
- package/dist/abi/AccessControlConfirmable.js +430 -0
- package/dist/abi/AccessControlConfirmable.js.map +1 -0
- package/dist/abi/Dashboard.d.ts +813 -374
- package/dist/abi/Dashboard.js +458 -277
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +604 -0
- package/dist/abi/LazyOracle.js +782 -0
- package/dist/abi/LazyOracle.js.map +1 -0
- 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 +340 -169
- package/dist/abi/OperatorGrid.js +344 -164
- package/dist/abi/OperatorGrid.js.map +1 -1
- package/dist/abi/PredepositGuarantee.d.ts +371 -56
- package/dist/abi/PredepositGuarantee.js +290 -69
- package/dist/abi/PredepositGuarantee.js.map +1 -1
- package/dist/abi/StakingVault.d.ts +97 -425
- package/dist/abi/StakingVault.js +94 -419
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +209 -134
- package/dist/abi/VaultFactory.js +66 -10
- package/dist/abi/VaultFactory.js.map +1 -1
- package/dist/abi/VaultHub.d.ts +1109 -445
- package/dist/abi/VaultHub.js +1502 -559
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +308 -1
- package/dist/abi/VaultViewer.js +399 -1
- package/dist/abi/VaultViewer.js.map +1 -1
- package/dist/abi/index.d.ts +2 -3
- package/dist/abi/index.js +2 -4
- package/dist/abi/index.js.map +1 -1
- package/dist/command/index.js +1 -1
- package/dist/command/index.js.map +1 -1
- package/dist/contracts/index.d.ts +1 -4
- package/dist/contracts/index.js +1 -4
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/lazy-oracle.d.ts +3 -0
- package/dist/contracts/lazy-oracle.js +18 -0
- package/dist/contracts/lazy-oracle.js.map +1 -0
- package/dist/contracts/locator.d.ts +1342 -38
- package/dist/contracts/operator-grid.d.ts +1 -0
- package/dist/contracts/pdg.d.ts +1 -0
- package/dist/contracts/vault-factory.d.ts +8849 -3187
- package/dist/contracts/vault-viewer.d.ts +6467 -73
- package/dist/contracts/vault-viewer.js +1 -1
- package/dist/contracts/vault.d.ts +1 -0
- package/dist/features/dashboard.js +5 -250
- package/dist/features/dashboard.js.map +1 -1
- package/dist/features/deposits/check-bls-deposits.d.ts +3 -0
- package/dist/features/deposits/check-bls-deposits.js +15 -0
- package/dist/features/deposits/check-bls-deposits.js.map +1 -0
- package/dist/features/deposits/index.d.ts +3 -0
- package/dist/features/deposits/index.js +4 -0
- package/dist/features/deposits/index.js.map +1 -0
- package/dist/features/deposits/make-pdg-proof.d.ts +3 -0
- package/dist/features/deposits/make-pdg-proof.js +52 -0
- package/dist/features/deposits/make-pdg-proof.js.map +1 -0
- package/dist/features/deposits/no-pdg.d.ts +21 -0
- package/dist/features/deposits/no-pdg.js +92 -0
- package/dist/features/deposits/no-pdg.js.map +1 -0
- package/dist/features/index.d.ts +4 -0
- package/dist/features/index.js +4 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/mint-burn/allowance.d.ts +2 -0
- package/dist/features/mint-burn/allowance.js +49 -0
- package/dist/features/mint-burn/allowance.js.map +1 -0
- package/dist/features/mint-burn/burn-shares.d.ts +3 -0
- package/dist/features/mint-burn/burn-shares.js +33 -0
- package/dist/features/mint-burn/burn-shares.js.map +1 -0
- package/dist/features/mint-burn/burn-steth.d.ts +3 -0
- package/dist/features/mint-burn/burn-steth.js +35 -0
- package/dist/features/mint-burn/burn-steth.js.map +1 -0
- package/dist/features/mint-burn/index.d.ts +5 -0
- package/dist/features/mint-burn/index.js +6 -0
- package/dist/features/mint-burn/index.js.map +1 -0
- package/dist/features/mint-burn/mint-shares.d.ts +3 -0
- package/dist/features/mint-burn/mint-shares.js +37 -0
- package/dist/features/mint-burn/mint-shares.js.map +1 -0
- package/dist/features/mint-burn/mint-steth.d.ts +3 -0
- package/dist/features/mint-burn/mint-steth.js +39 -0
- package/dist/features/mint-burn/mint-steth.js.map +1 -0
- package/dist/features/pdg.js +17 -23
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/utils/get-address.d.ts +2 -0
- package/dist/features/utils/get-address.js +16 -0
- package/dist/features/utils/get-address.js.map +1 -0
- package/dist/features/utils/index.d.ts +4 -0
- package/dist/features/utils/index.js +5 -0
- package/dist/features/utils/index.js.map +1 -0
- package/dist/features/utils/liability-shares.d.ts +2 -0
- package/dist/features/utils/liability-shares.js +10 -0
- package/dist/features/utils/liability-shares.js.map +1 -0
- package/dist/features/utils/minting-capacity.d.ts +2 -0
- package/dist/features/utils/minting-capacity.js +11 -0
- package/dist/features/utils/minting-capacity.js.map +1 -0
- package/dist/features/utils/report-fresh.d.ts +2 -0
- package/dist/features/utils/report-fresh.js +18 -0
- package/dist/features/utils/report-fresh.js.map +1 -0
- package/dist/features/vault-factory.d.ts +17 -1
- package/dist/features/vault-factory.js +44 -8
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-hub.js +6 -6
- package/dist/features/vault-hub.js.map +1 -1
- package/dist/features/vault-operations/create-vault.d.ts +2 -0
- package/dist/features/vault-operations/create-vault.js +58 -0
- package/dist/features/vault-operations/create-vault.js.map +1 -0
- package/dist/features/vault-operations/dashboard-by-vault.d.ts +11 -0
- package/dist/features/vault-operations/dashboard-by-vault.js +34 -0
- package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -0
- package/dist/features/vault-operations/index.d.ts +7 -0
- package/dist/features/vault-operations/index.js +8 -0
- package/dist/features/vault-operations/index.js.map +1 -0
- package/dist/features/vault-operations/vault-health.d.ts +2 -0
- package/dist/features/vault-operations/vault-health.js +24 -0
- package/dist/features/vault-operations/vault-health.js.map +1 -0
- package/dist/features/vault-operations/vault-info.d.ts +2 -0
- package/dist/features/vault-operations/vault-info.js +107 -0
- package/dist/features/vault-operations/vault-info.js.map +1 -0
- package/dist/features/vault-operations/vault-overview.d.ts +2 -0
- package/dist/features/vault-operations/vault-overview.js +107 -0
- package/dist/features/vault-operations/vault-overview.js.map +1 -0
- package/dist/features/vault-operations/vault-roles.d.ts +6 -0
- package/dist/features/vault-operations/vault-roles.js +62 -0
- package/dist/features/vault-operations/vault-roles.js.map +1 -0
- package/dist/features/vault-operations/vaults-by-role.d.ts +3 -0
- package/dist/features/vault-operations/vaults-by-role.js +45 -0
- package/dist/features/vault-operations/vaults-by-role.js.map +1 -0
- package/dist/features/vault.js +6 -14
- package/dist/features/vault.js.map +1 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/programs/account/read.js +5 -1
- package/dist/programs/account/read.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.d.ts +3 -0
- package/dist/programs/{dashboard → contracts/dashboard}/config.js +43 -35
- package/dist/programs/contracts/dashboard/config.js.map +1 -0
- package/dist/programs/contracts/dashboard/index.js.map +1 -0
- package/dist/programs/contracts/dashboard/main.js +5 -0
- package/dist/programs/contracts/dashboard/main.js.map +1 -0
- package/dist/programs/{dashboard → contracts/dashboard}/read.js +6 -33
- package/dist/programs/contracts/dashboard/read.js.map +1 -0
- package/dist/programs/{dashboard → contracts/dashboard}/write.js +109 -130
- package/dist/programs/contracts/dashboard/write.js.map +1 -0
- package/dist/programs/contracts/hub/config.d.ts +3 -0
- package/dist/programs/contracts/hub/config.js +165 -0
- package/dist/programs/contracts/hub/config.js.map +1 -0
- package/dist/programs/contracts/hub/index.js.map +1 -0
- package/dist/programs/contracts/hub/main.js +5 -0
- package/dist/programs/contracts/hub/main.js.map +1 -0
- package/dist/programs/{hub → contracts/hub}/read.js +13 -18
- package/dist/programs/contracts/hub/read.js.map +1 -0
- package/dist/programs/contracts/hub/write.js +425 -0
- package/dist/programs/contracts/hub/write.js.map +1 -0
- package/dist/programs/contracts/index.d.ts +8 -0
- package/dist/programs/contracts/index.js +9 -0
- package/dist/programs/contracts/index.js.map +1 -0
- package/dist/programs/contracts/main.d.ts +1 -0
- package/dist/programs/contracts/main.js +6 -0
- package/dist/programs/contracts/main.js.map +1 -0
- package/dist/programs/contracts/operator-grid/config.d.ts +3 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/config.js +40 -34
- package/dist/programs/contracts/operator-grid/config.js.map +1 -0
- package/dist/programs/contracts/operator-grid/index.js.map +1 -0
- package/dist/programs/contracts/operator-grid/main.js +5 -0
- package/dist/programs/contracts/operator-grid/main.js.map +1 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/read.js +4 -4
- package/dist/programs/contracts/operator-grid/read.js.map +1 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/write.js +27 -32
- package/dist/programs/contracts/operator-grid/write.js.map +1 -0
- package/dist/programs/contracts/pdg/config.d.ts +3 -0
- package/dist/programs/{pdg → contracts/pdg}/config.js +53 -27
- package/dist/programs/contracts/pdg/config.js.map +1 -0
- package/dist/programs/contracts/pdg/index.js.map +1 -0
- package/dist/programs/contracts/pdg/main.js +5 -0
- package/dist/programs/contracts/pdg/main.js.map +1 -0
- package/dist/programs/{pdg → contracts/pdg}/read.js +4 -4
- package/dist/programs/contracts/pdg/read.js.map +1 -0
- package/dist/programs/{pdg → contracts/pdg}/write.js +38 -20
- package/dist/programs/contracts/pdg/write.js.map +1 -0
- package/dist/programs/contracts/vault/config.d.ts +3 -0
- package/dist/programs/{vault → contracts/vault}/config.js +0 -28
- package/dist/programs/contracts/vault/config.js.map +1 -0
- package/dist/programs/contracts/vault/index.js.map +1 -0
- package/dist/programs/contracts/vault/main.js +3 -0
- package/dist/programs/contracts/vault/main.js.map +1 -0
- package/dist/programs/{vault → contracts/vault}/read.js +4 -4
- package/dist/programs/contracts/vault/read.js.map +1 -0
- package/dist/programs/{vault → contracts/vault}/write.js +37 -70
- package/dist/programs/contracts/vault/write.js.map +1 -0
- package/dist/programs/contracts/vault-factory/config.d.ts +3 -0
- package/dist/programs/contracts/vault-factory/config.js.map +1 -0
- package/dist/programs/contracts/vault-factory/index.js.map +1 -0
- package/dist/programs/contracts/vault-factory/main.js +5 -0
- package/dist/programs/contracts/vault-factory/main.js.map +1 -0
- package/dist/programs/{vault-factory → contracts/vault-factory}/read.js +4 -4
- package/dist/programs/contracts/vault-factory/read.js.map +1 -0
- package/dist/programs/contracts/vault-factory/write.js +126 -0
- package/dist/programs/contracts/vault-factory/write.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/config.d.ts +3 -0
- package/dist/programs/contracts/vault-viewer/config.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/index.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/main.js +5 -0
- package/dist/programs/contracts/vault-viewer/main.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/read.d.ts +1 -0
- package/dist/programs/{vault-viewer → contracts/vault-viewer}/read.js +20 -10
- package/dist/programs/contracts/vault-viewer/read.js.map +1 -0
- package/dist/programs/index.d.ts +2 -9
- package/dist/programs/index.js +2 -9
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/pdg-helpers.js +46 -10
- package/dist/programs/pdg-helpers.js.map +1 -1
- package/dist/programs/use-cases/deposits/index.js.map +1 -0
- package/dist/programs/use-cases/deposits/main.d.ts +1 -0
- package/dist/programs/use-cases/deposits/main.js +6 -0
- package/dist/programs/use-cases/deposits/main.js.map +1 -0
- package/dist/programs/use-cases/deposits/read.js +13 -0
- package/dist/programs/use-cases/deposits/read.js.map +1 -0
- package/dist/programs/use-cases/deposits/write.js +211 -0
- package/dist/programs/use-cases/deposits/write.js.map +1 -0
- package/dist/programs/use-cases/index.d.ts +4 -0
- package/dist/programs/use-cases/index.js +5 -0
- package/dist/programs/use-cases/index.js.map +1 -0
- package/dist/programs/use-cases/metrics/index.js.map +1 -0
- package/dist/programs/use-cases/metrics/main.js +6 -0
- package/dist/programs/use-cases/metrics/main.js.map +1 -0
- package/dist/programs/{metrics → use-cases/metrics}/read.js +29 -23
- package/dist/programs/use-cases/metrics/read.js.map +1 -0
- package/dist/programs/use-cases/report/index.d.ts +3 -0
- package/dist/programs/use-cases/report/index.js +4 -0
- package/dist/programs/use-cases/report/index.js.map +1 -0
- package/dist/programs/use-cases/report/main.js +6 -0
- package/dist/programs/use-cases/report/main.js.map +1 -0
- package/dist/programs/{report → use-cases/report}/read.js +32 -41
- package/dist/programs/use-cases/report/read.js.map +1 -0
- package/dist/programs/{report → use-cases/report}/write.js +33 -42
- package/dist/programs/use-cases/report/write.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/create-vault.js +129 -0
- package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/index.d.ts +4 -0
- package/dist/programs/use-cases/vault-operations/index.js +5 -0
- package/dist/programs/use-cases/vault-operations/index.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/main.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/main.js +6 -0
- package/dist/programs/use-cases/vault-operations/main.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/read.js +46 -0
- package/dist/programs/use-cases/vault-operations/read.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/write.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/write.js +148 -0
- package/dist/programs/use-cases/vault-operations/write.js.map +1 -0
- package/dist/providers/wallet.d.ts +10 -10
- package/dist/tests/utils/error-handler.test.js +0 -8
- package/dist/tests/utils/error-handler.test.js.map +1 -1
- package/dist/tests/utils/ipfs.test.js +2 -2
- package/dist/tests/utils/ipfs.test.js.map +1 -1
- package/dist/types/common.d.ts +6 -2
- package/dist/utils/arguments.d.ts +1 -0
- package/dist/utils/arguments.js +3 -0
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/cache.d.ts +2 -2
- package/dist/utils/cache.js +7 -7
- package/dist/utils/cache.js.map +1 -1
- package/dist/utils/calculate-overview-v2.d.ts +2 -1
- package/dist/utils/calculate-overview-v2.js +2 -4
- package/dist/utils/calculate-overview-v2.js.map +1 -1
- package/dist/utils/calculate-overview.d.ts +0 -1
- package/dist/utils/calculate-overview.js +1 -3
- package/dist/utils/calculate-overview.js.map +1 -1
- package/dist/utils/charts/blessed/charts-apr.js +6 -3
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
- package/dist/utils/charts/blessed/charts-rewards.js +3 -3
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js +4 -4
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js.map +1 -1
- package/dist/utils/charts/simple/simple-charts.js +5 -5
- package/dist/utils/charts/simple/simple-charts.js.map +1 -1
- package/dist/utils/commands/confirmations.d.ts +20 -8
- package/dist/utils/commands/confirmations.js +30 -14
- package/dist/utils/commands/confirmations.js.map +1 -1
- package/dist/utils/commands/index.d.ts +0 -2
- package/dist/utils/commands/index.js +0 -2
- package/dist/utils/commands/index.js.map +1 -1
- package/dist/utils/commands/report.d.ts +1 -1
- package/dist/utils/commands/report.js +18 -25
- package/dist/utils/commands/report.js.map +1 -1
- package/dist/utils/consts.d.ts +3 -0
- package/dist/utils/consts.js +4 -0
- package/dist/utils/consts.js.map +1 -0
- package/dist/utils/fetchCL.d.ts +22 -0
- package/dist/utils/fetchCL.js +12 -0
- package/dist/utils/fetchCL.js.map +1 -1
- package/dist/utils/index.d.ts +2 -1
- package/dist/utils/index.js +2 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/prompts/confirmations.js +2 -2
- package/dist/utils/prompts/confirmations.js.map +1 -1
- package/dist/utils/prompts/default.d.ts +2 -0
- package/dist/utils/prompts/default.js +7 -0
- package/dist/utils/prompts/default.js.map +1 -1
- package/dist/utils/prompts/index.d.ts +1 -1
- package/dist/utils/prompts/index.js +1 -1
- package/dist/utils/prompts/index.js.map +1 -1
- package/dist/utils/prompts/mint-burn/confirm-burn.d.ts +17 -0
- package/dist/utils/prompts/mint-burn/confirm-burn.js +23 -0
- package/dist/utils/prompts/mint-burn/confirm-burn.js.map +1 -0
- package/dist/utils/prompts/{dashboard.d.ts → mint-burn/confirm-mint.d.ts} +0 -15
- package/dist/utils/prompts/mint-burn/confirm-mint.js +23 -0
- package/dist/utils/prompts/mint-burn/confirm-mint.js.map +1 -0
- package/dist/utils/prompts/mint-burn/constants.d.ts +2 -0
- package/dist/utils/prompts/mint-burn/constants.js +6 -0
- package/dist/utils/prompts/mint-burn/constants.js.map +1 -0
- package/dist/utils/prompts/mint-burn/index.d.ts +2 -0
- package/dist/utils/prompts/mint-burn/index.js +3 -0
- package/dist/utils/prompts/mint-burn/index.js.map +1 -0
- package/dist/utils/prompts/operations.d.ts +1 -1
- package/dist/utils/prompts/operations.js +3 -3
- package/dist/utils/prompts/operations.js.map +1 -1
- package/dist/utils/prompts/predeposit-guarantee.d.ts +2 -2
- package/dist/utils/prompts/predeposit-guarantee.js.map +1 -1
- package/dist/utils/proof/create-proof.d.ts +4 -0
- package/dist/utils/proof/create-proof.js +2 -0
- package/dist/utils/proof/create-proof.js.map +1 -1
- package/dist/utils/proof/index.d.ts +0 -1
- package/dist/utils/proof/index.js +0 -1
- package/dist/utils/proof/index.js.map +1 -1
- package/dist/utils/read-programs-by-abi.d.ts +11 -4
- package/dist/utils/read-programs-by-abi.js +4 -3
- package/dist/utils/read-programs-by-abi.js.map +1 -1
- package/dist/utils/report/index.d.ts +2 -1
- package/dist/utils/report/index.js +2 -1
- package/dist/utils/report/index.js.map +1 -1
- package/dist/utils/report/report-proof.d.ts +42 -0
- package/dist/utils/report/report-proof.js +38 -0
- package/dist/utils/report/report-proof.js.map +1 -0
- package/dist/utils/report/report.d.ts +3 -60
- package/dist/utils/report/report.js +14 -8
- package/dist/utils/report/report.js.map +1 -1
- package/dist/utils/report/statistic-data.d.ts +1 -1
- package/dist/utils/report/statistic-data.js +5 -6
- package/dist/utils/report/statistic-data.js.map +1 -1
- package/dist/utils/report/types.d.ts +69 -0
- package/dist/utils/report/types.js +2 -0
- package/dist/utils/report/types.js.map +1 -0
- package/dist/utils/statistic/index.d.ts +1 -0
- package/dist/utils/statistic/index.js +2 -0
- package/dist/utils/statistic/index.js.map +1 -0
- package/dist/utils/{report → statistic}/report-statistic.d.ts +3 -3
- package/dist/utils/{report → statistic}/report-statistic.js +16 -19
- package/dist/utils/statistic/report-statistic.js.map +1 -0
- package/dist/version/index.js +1 -1
- package/package.json +2 -1
- package/dist/abi/BlsHarness.d.ts +0 -178
- package/dist/abi/BlsHarness.js +0 -232
- package/dist/abi/BlsHarness.js.map +0 -1
- package/dist/abi/CLProofVerifier.d.ts +0 -188
- package/dist/abi/CLProofVerifier.js +0 -247
- package/dist/abi/CLProofVerifier.js.map +0 -1
- package/dist/abi/ReportChecker.d.ts +0 -83
- package/dist/abi/ReportChecker.js +0 -109
- package/dist/abi/ReportChecker.js.map +0 -1
- package/dist/contracts/blsHarness.d.ts +0 -947
- package/dist/contracts/blsHarness.js +0 -24
- package/dist/contracts/blsHarness.js.map +0 -1
- package/dist/contracts/clProofVerifier.d.ts +0 -2647
- package/dist/contracts/clProofVerifier.js +0 -23
- package/dist/contracts/clProofVerifier.js.map +0 -1
- package/dist/contracts/reportChecker.d.ts +0 -758
- package/dist/contracts/reportChecker.js +0 -23
- package/dist/contracts/reportChecker.js.map +0 -1
- package/dist/contracts/voting.d.ts +0 -6
- package/dist/contracts/voting.js +0 -19
- package/dist/contracts/voting.js.map +0 -1
- package/dist/programs/dashboard/config.d.ts +0 -2
- package/dist/programs/dashboard/config.js.map +0 -1
- package/dist/programs/dashboard/index.js.map +0 -1
- package/dist/programs/dashboard/main.js +0 -5
- package/dist/programs/dashboard/main.js.map +0 -1
- package/dist/programs/dashboard/read.js.map +0 -1
- package/dist/programs/dashboard/write.js.map +0 -1
- package/dist/programs/hub/config.d.ts +0 -2
- package/dist/programs/hub/config.js +0 -123
- package/dist/programs/hub/config.js.map +0 -1
- package/dist/programs/hub/index.js.map +0 -1
- package/dist/programs/hub/main.js +0 -5
- package/dist/programs/hub/main.js.map +0 -1
- package/dist/programs/hub/read.js.map +0 -1
- package/dist/programs/hub/write.js +0 -246
- package/dist/programs/hub/write.js.map +0 -1
- package/dist/programs/metrics/index.js.map +0 -1
- package/dist/programs/metrics/main.js +0 -3
- package/dist/programs/metrics/main.js.map +0 -1
- package/dist/programs/metrics/read.js.map +0 -1
- package/dist/programs/operator-grid/config.d.ts +0 -2
- package/dist/programs/operator-grid/config.js.map +0 -1
- package/dist/programs/operator-grid/index.js.map +0 -1
- package/dist/programs/operator-grid/main.js +0 -5
- package/dist/programs/operator-grid/main.js.map +0 -1
- package/dist/programs/operator-grid/read.js.map +0 -1
- package/dist/programs/operator-grid/write.js.map +0 -1
- package/dist/programs/pdg/config.d.ts +0 -2
- package/dist/programs/pdg/config.js.map +0 -1
- package/dist/programs/pdg/index.js.map +0 -1
- package/dist/programs/pdg/main.js +0 -5
- package/dist/programs/pdg/main.js.map +0 -1
- package/dist/programs/pdg/read.js.map +0 -1
- package/dist/programs/pdg/write.js.map +0 -1
- package/dist/programs/report/index.js.map +0 -1
- package/dist/programs/report/main.js +0 -3
- package/dist/programs/report/main.js.map +0 -1
- package/dist/programs/report/read.js.map +0 -1
- package/dist/programs/report/write.js.map +0 -1
- package/dist/programs/vault/config.d.ts +0 -2
- package/dist/programs/vault/config.js.map +0 -1
- package/dist/programs/vault/index.js.map +0 -1
- package/dist/programs/vault/main.js +0 -3
- package/dist/programs/vault/main.js.map +0 -1
- package/dist/programs/vault/read.js.map +0 -1
- package/dist/programs/vault/write.js.map +0 -1
- package/dist/programs/vault-factory/config.d.ts +0 -2
- package/dist/programs/vault-factory/config.js.map +0 -1
- package/dist/programs/vault-factory/index.js.map +0 -1
- package/dist/programs/vault-factory/main.js +0 -5
- package/dist/programs/vault-factory/main.js.map +0 -1
- package/dist/programs/vault-factory/read.js.map +0 -1
- package/dist/programs/vault-factory/write.js +0 -86
- package/dist/programs/vault-factory/write.js.map +0 -1
- package/dist/programs/vault-viewer/config.d.ts +0 -2
- package/dist/programs/vault-viewer/config.js.map +0 -1
- package/dist/programs/vault-viewer/index.js.map +0 -1
- package/dist/programs/vault-viewer/main.js +0 -10
- package/dist/programs/vault-viewer/main.js.map +0 -1
- package/dist/programs/vault-viewer/read.js.map +0 -1
- package/dist/tests/__mocks__/@lodestar/types.js +0 -6
- package/dist/tests/__mocks__/@lodestar/types.js.map +0 -1
- package/dist/tests/utils/fetchCL.test.js +0 -57
- package/dist/tests/utils/fetchCL.test.js.map +0 -1
- package/dist/tests/utils/report-proof.test.js +0 -29
- package/dist/tests/utils/report-proof.test.js.map +0 -1
- package/dist/tests/utils/report-statistic.test.d.ts +0 -1
- package/dist/tests/utils/report-statistic.test.js +0 -247
- package/dist/tests/utils/report-statistic.test.js.map +0 -1
- package/dist/tests/utils/required-lock.test.d.ts +0 -1
- package/dist/tests/utils/required-lock.test.js +0 -26
- package/dist/tests/utils/required-lock.test.js.map +0 -1
- package/dist/utils/commands/dashboard.d.ts +0 -6
- package/dist/utils/commands/dashboard.js +0 -145
- package/dist/utils/commands/dashboard.js.map +0 -1
- package/dist/utils/commands/utils.d.ts +0 -6
- package/dist/utils/commands/utils.js +0 -57
- package/dist/utils/commands/utils.js.map +0 -1
- package/dist/utils/prompts/dashboard.js +0 -45
- package/dist/utils/prompts/dashboard.js.map +0 -1
- package/dist/utils/proof/report-proof.d.ts +0 -5
- package/dist/utils/proof/report-proof.js +0 -26
- package/dist/utils/proof/report-proof.js.map +0 -1
- package/dist/utils/report/report-statistic.js.map +0 -1
- package/dist/utils/required-lock.d.ts +0 -5
- package/dist/utils/required-lock.js +0 -21
- package/dist/utils/required-lock.js.map +0 -1
- /package/dist/programs/{dashboard → contracts/dashboard}/index.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/index.js +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/main.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/read.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/write.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/index.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/index.js +0 -0
- /package/dist/programs/{hub → contracts/hub}/main.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/read.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/write.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/index.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/index.js +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/main.d.ts +0 -0
- /package/dist/programs/{metrics → contracts/operator-grid}/read.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/write.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/index.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/index.js +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/main.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/pdg}/read.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/write.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/index.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/index.js +0 -0
- /package/dist/programs/{vault → contracts/vault}/main.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault}/read.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/write.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault-factory}/config.js +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/index.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/index.js +0 -0
- /package/dist/programs/{vault-factory → contracts/vault-factory}/main.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/vault-factory}/read.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/write.d.ts +0 -0
- /package/dist/programs/{vault-viewer → contracts/vault-viewer}/config.js +0 -0
- /package/dist/programs/{metrics → contracts/vault-viewer}/index.d.ts +0 -0
- /package/dist/programs/{metrics → contracts/vault-viewer}/index.js +0 -0
- /package/dist/programs/{vault-viewer → contracts/vault-viewer}/main.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/index.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/index.js +0 -0
- /package/dist/programs/{vault-factory → use-cases/deposits}/read.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/write.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/index.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/index.js +0 -0
- /package/dist/programs/{metrics → use-cases/metrics}/main.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/read.d.ts +0 -0
- /package/dist/programs/{report → use-cases/report}/main.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/report}/read.d.ts +0 -0
- /package/dist/{tests/__mocks__/@lodestar/types.d.ts → programs/use-cases/report/write.d.ts} +0 -0
- /package/dist/{tests/utils/fetchCL.test.d.ts → programs/use-cases/vault-operations/create-vault.d.ts} +0 -0
- /package/dist/{tests/utils/report-proof.test.d.ts → programs/use-cases/vault-operations/read.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const getLocatorContract: () => {
|
|
2
2
|
read: {
|
|
3
|
-
|
|
3
|
+
accountingOracle: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
4
4
|
readonly inputs: readonly [{
|
|
5
5
|
readonly components: readonly [{
|
|
6
6
|
readonly internalType: "address";
|
|
@@ -70,6 +70,14 @@ export declare const getLocatorContract: () => {
|
|
|
70
70
|
readonly internalType: "address";
|
|
71
71
|
readonly name: "vaultHub";
|
|
72
72
|
readonly type: "address";
|
|
73
|
+
}, {
|
|
74
|
+
readonly internalType: "address";
|
|
75
|
+
readonly name: "vaultFactory";
|
|
76
|
+
readonly type: "address";
|
|
77
|
+
}, {
|
|
78
|
+
readonly internalType: "address";
|
|
79
|
+
readonly name: "lazyOracle";
|
|
80
|
+
readonly type: "address";
|
|
73
81
|
}, {
|
|
74
82
|
readonly internalType: "address";
|
|
75
83
|
readonly name: "operatorGrid";
|
|
@@ -165,6 +173,16 @@ export declare const getLocatorContract: () => {
|
|
|
165
173
|
}];
|
|
166
174
|
readonly stateMutability: "view";
|
|
167
175
|
readonly type: "function";
|
|
176
|
+
}, {
|
|
177
|
+
readonly inputs: readonly [];
|
|
178
|
+
readonly name: "lazyOracle";
|
|
179
|
+
readonly outputs: readonly [{
|
|
180
|
+
readonly internalType: "address";
|
|
181
|
+
readonly name: "";
|
|
182
|
+
readonly type: "address";
|
|
183
|
+
}];
|
|
184
|
+
readonly stateMutability: "view";
|
|
185
|
+
readonly type: "function";
|
|
168
186
|
}, {
|
|
169
187
|
readonly inputs: readonly [];
|
|
170
188
|
readonly name: "lido";
|
|
@@ -289,6 +307,16 @@ export declare const getLocatorContract: () => {
|
|
|
289
307
|
}];
|
|
290
308
|
readonly stateMutability: "view";
|
|
291
309
|
readonly type: "function";
|
|
310
|
+
}, {
|
|
311
|
+
readonly inputs: readonly [];
|
|
312
|
+
readonly name: "vaultFactory";
|
|
313
|
+
readonly outputs: readonly [{
|
|
314
|
+
readonly internalType: "address";
|
|
315
|
+
readonly name: "";
|
|
316
|
+
readonly type: "address";
|
|
317
|
+
}];
|
|
318
|
+
readonly stateMutability: "view";
|
|
319
|
+
readonly type: "function";
|
|
292
320
|
}, {
|
|
293
321
|
readonly inputs: readonly [];
|
|
294
322
|
readonly name: "vaultHub";
|
|
@@ -329,8 +357,8 @@ export declare const getLocatorContract: () => {
|
|
|
329
357
|
}];
|
|
330
358
|
readonly stateMutability: "view";
|
|
331
359
|
readonly type: "function";
|
|
332
|
-
}], "
|
|
333
|
-
|
|
360
|
+
}], "accountingOracle", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
361
|
+
depositSecurityModule: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
334
362
|
readonly inputs: readonly [{
|
|
335
363
|
readonly components: readonly [{
|
|
336
364
|
readonly internalType: "address";
|
|
@@ -400,6 +428,14 @@ export declare const getLocatorContract: () => {
|
|
|
400
428
|
readonly internalType: "address";
|
|
401
429
|
readonly name: "vaultHub";
|
|
402
430
|
readonly type: "address";
|
|
431
|
+
}, {
|
|
432
|
+
readonly internalType: "address";
|
|
433
|
+
readonly name: "vaultFactory";
|
|
434
|
+
readonly type: "address";
|
|
435
|
+
}, {
|
|
436
|
+
readonly internalType: "address";
|
|
437
|
+
readonly name: "lazyOracle";
|
|
438
|
+
readonly type: "address";
|
|
403
439
|
}, {
|
|
404
440
|
readonly internalType: "address";
|
|
405
441
|
readonly name: "operatorGrid";
|
|
@@ -495,6 +531,16 @@ export declare const getLocatorContract: () => {
|
|
|
495
531
|
}];
|
|
496
532
|
readonly stateMutability: "view";
|
|
497
533
|
readonly type: "function";
|
|
534
|
+
}, {
|
|
535
|
+
readonly inputs: readonly [];
|
|
536
|
+
readonly name: "lazyOracle";
|
|
537
|
+
readonly outputs: readonly [{
|
|
538
|
+
readonly internalType: "address";
|
|
539
|
+
readonly name: "";
|
|
540
|
+
readonly type: "address";
|
|
541
|
+
}];
|
|
542
|
+
readonly stateMutability: "view";
|
|
543
|
+
readonly type: "function";
|
|
498
544
|
}, {
|
|
499
545
|
readonly inputs: readonly [];
|
|
500
546
|
readonly name: "lido";
|
|
@@ -619,6 +665,16 @@ export declare const getLocatorContract: () => {
|
|
|
619
665
|
}];
|
|
620
666
|
readonly stateMutability: "view";
|
|
621
667
|
readonly type: "function";
|
|
668
|
+
}, {
|
|
669
|
+
readonly inputs: readonly [];
|
|
670
|
+
readonly name: "vaultFactory";
|
|
671
|
+
readonly outputs: readonly [{
|
|
672
|
+
readonly internalType: "address";
|
|
673
|
+
readonly name: "";
|
|
674
|
+
readonly type: "address";
|
|
675
|
+
}];
|
|
676
|
+
readonly stateMutability: "view";
|
|
677
|
+
readonly type: "function";
|
|
622
678
|
}, {
|
|
623
679
|
readonly inputs: readonly [];
|
|
624
680
|
readonly name: "vaultHub";
|
|
@@ -659,8 +715,8 @@ export declare const getLocatorContract: () => {
|
|
|
659
715
|
}];
|
|
660
716
|
readonly stateMutability: "view";
|
|
661
717
|
readonly type: "function";
|
|
662
|
-
}], "
|
|
663
|
-
|
|
718
|
+
}], "depositSecurityModule", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
719
|
+
elRewardsVault: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
664
720
|
readonly inputs: readonly [{
|
|
665
721
|
readonly components: readonly [{
|
|
666
722
|
readonly internalType: "address";
|
|
@@ -730,6 +786,14 @@ export declare const getLocatorContract: () => {
|
|
|
730
786
|
readonly internalType: "address";
|
|
731
787
|
readonly name: "vaultHub";
|
|
732
788
|
readonly type: "address";
|
|
789
|
+
}, {
|
|
790
|
+
readonly internalType: "address";
|
|
791
|
+
readonly name: "vaultFactory";
|
|
792
|
+
readonly type: "address";
|
|
793
|
+
}, {
|
|
794
|
+
readonly internalType: "address";
|
|
795
|
+
readonly name: "lazyOracle";
|
|
796
|
+
readonly type: "address";
|
|
733
797
|
}, {
|
|
734
798
|
readonly internalType: "address";
|
|
735
799
|
readonly name: "operatorGrid";
|
|
@@ -825,6 +889,16 @@ export declare const getLocatorContract: () => {
|
|
|
825
889
|
}];
|
|
826
890
|
readonly stateMutability: "view";
|
|
827
891
|
readonly type: "function";
|
|
892
|
+
}, {
|
|
893
|
+
readonly inputs: readonly [];
|
|
894
|
+
readonly name: "lazyOracle";
|
|
895
|
+
readonly outputs: readonly [{
|
|
896
|
+
readonly internalType: "address";
|
|
897
|
+
readonly name: "";
|
|
898
|
+
readonly type: "address";
|
|
899
|
+
}];
|
|
900
|
+
readonly stateMutability: "view";
|
|
901
|
+
readonly type: "function";
|
|
828
902
|
}, {
|
|
829
903
|
readonly inputs: readonly [];
|
|
830
904
|
readonly name: "lido";
|
|
@@ -949,6 +1023,16 @@ export declare const getLocatorContract: () => {
|
|
|
949
1023
|
}];
|
|
950
1024
|
readonly stateMutability: "view";
|
|
951
1025
|
readonly type: "function";
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly inputs: readonly [];
|
|
1028
|
+
readonly name: "vaultFactory";
|
|
1029
|
+
readonly outputs: readonly [{
|
|
1030
|
+
readonly internalType: "address";
|
|
1031
|
+
readonly name: "";
|
|
1032
|
+
readonly type: "address";
|
|
1033
|
+
}];
|
|
1034
|
+
readonly stateMutability: "view";
|
|
1035
|
+
readonly type: "function";
|
|
952
1036
|
}, {
|
|
953
1037
|
readonly inputs: readonly [];
|
|
954
1038
|
readonly name: "vaultHub";
|
|
@@ -989,8 +1073,8 @@ export declare const getLocatorContract: () => {
|
|
|
989
1073
|
}];
|
|
990
1074
|
readonly stateMutability: "view";
|
|
991
1075
|
readonly type: "function";
|
|
992
|
-
}], "
|
|
993
|
-
|
|
1076
|
+
}], "elRewardsVault", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
1077
|
+
lido: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
994
1078
|
readonly inputs: readonly [{
|
|
995
1079
|
readonly components: readonly [{
|
|
996
1080
|
readonly internalType: "address";
|
|
@@ -1060,6 +1144,14 @@ export declare const getLocatorContract: () => {
|
|
|
1060
1144
|
readonly internalType: "address";
|
|
1061
1145
|
readonly name: "vaultHub";
|
|
1062
1146
|
readonly type: "address";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly internalType: "address";
|
|
1149
|
+
readonly name: "vaultFactory";
|
|
1150
|
+
readonly type: "address";
|
|
1151
|
+
}, {
|
|
1152
|
+
readonly internalType: "address";
|
|
1153
|
+
readonly name: "lazyOracle";
|
|
1154
|
+
readonly type: "address";
|
|
1063
1155
|
}, {
|
|
1064
1156
|
readonly internalType: "address";
|
|
1065
1157
|
readonly name: "operatorGrid";
|
|
@@ -1155,6 +1247,16 @@ export declare const getLocatorContract: () => {
|
|
|
1155
1247
|
}];
|
|
1156
1248
|
readonly stateMutability: "view";
|
|
1157
1249
|
readonly type: "function";
|
|
1250
|
+
}, {
|
|
1251
|
+
readonly inputs: readonly [];
|
|
1252
|
+
readonly name: "lazyOracle";
|
|
1253
|
+
readonly outputs: readonly [{
|
|
1254
|
+
readonly internalType: "address";
|
|
1255
|
+
readonly name: "";
|
|
1256
|
+
readonly type: "address";
|
|
1257
|
+
}];
|
|
1258
|
+
readonly stateMutability: "view";
|
|
1259
|
+
readonly type: "function";
|
|
1158
1260
|
}, {
|
|
1159
1261
|
readonly inputs: readonly [];
|
|
1160
1262
|
readonly name: "lido";
|
|
@@ -1279,6 +1381,16 @@ export declare const getLocatorContract: () => {
|
|
|
1279
1381
|
}];
|
|
1280
1382
|
readonly stateMutability: "view";
|
|
1281
1383
|
readonly type: "function";
|
|
1384
|
+
}, {
|
|
1385
|
+
readonly inputs: readonly [];
|
|
1386
|
+
readonly name: "vaultFactory";
|
|
1387
|
+
readonly outputs: readonly [{
|
|
1388
|
+
readonly internalType: "address";
|
|
1389
|
+
readonly name: "";
|
|
1390
|
+
readonly type: "address";
|
|
1391
|
+
}];
|
|
1392
|
+
readonly stateMutability: "view";
|
|
1393
|
+
readonly type: "function";
|
|
1282
1394
|
}, {
|
|
1283
1395
|
readonly inputs: readonly [];
|
|
1284
1396
|
readonly name: "vaultHub";
|
|
@@ -1319,8 +1431,8 @@ export declare const getLocatorContract: () => {
|
|
|
1319
1431
|
}];
|
|
1320
1432
|
readonly stateMutability: "view";
|
|
1321
1433
|
readonly type: "function";
|
|
1322
|
-
}], "
|
|
1323
|
-
|
|
1434
|
+
}], "lido", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
1435
|
+
oracleReportSanityChecker: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
1324
1436
|
readonly inputs: readonly [{
|
|
1325
1437
|
readonly components: readonly [{
|
|
1326
1438
|
readonly internalType: "address";
|
|
@@ -1390,6 +1502,14 @@ export declare const getLocatorContract: () => {
|
|
|
1390
1502
|
readonly internalType: "address";
|
|
1391
1503
|
readonly name: "vaultHub";
|
|
1392
1504
|
readonly type: "address";
|
|
1505
|
+
}, {
|
|
1506
|
+
readonly internalType: "address";
|
|
1507
|
+
readonly name: "vaultFactory";
|
|
1508
|
+
readonly type: "address";
|
|
1509
|
+
}, {
|
|
1510
|
+
readonly internalType: "address";
|
|
1511
|
+
readonly name: "lazyOracle";
|
|
1512
|
+
readonly type: "address";
|
|
1393
1513
|
}, {
|
|
1394
1514
|
readonly internalType: "address";
|
|
1395
1515
|
readonly name: "operatorGrid";
|
|
@@ -1485,6 +1605,16 @@ export declare const getLocatorContract: () => {
|
|
|
1485
1605
|
}];
|
|
1486
1606
|
readonly stateMutability: "view";
|
|
1487
1607
|
readonly type: "function";
|
|
1608
|
+
}, {
|
|
1609
|
+
readonly inputs: readonly [];
|
|
1610
|
+
readonly name: "lazyOracle";
|
|
1611
|
+
readonly outputs: readonly [{
|
|
1612
|
+
readonly internalType: "address";
|
|
1613
|
+
readonly name: "";
|
|
1614
|
+
readonly type: "address";
|
|
1615
|
+
}];
|
|
1616
|
+
readonly stateMutability: "view";
|
|
1617
|
+
readonly type: "function";
|
|
1488
1618
|
}, {
|
|
1489
1619
|
readonly inputs: readonly [];
|
|
1490
1620
|
readonly name: "lido";
|
|
@@ -1609,6 +1739,16 @@ export declare const getLocatorContract: () => {
|
|
|
1609
1739
|
}];
|
|
1610
1740
|
readonly stateMutability: "view";
|
|
1611
1741
|
readonly type: "function";
|
|
1742
|
+
}, {
|
|
1743
|
+
readonly inputs: readonly [];
|
|
1744
|
+
readonly name: "vaultFactory";
|
|
1745
|
+
readonly outputs: readonly [{
|
|
1746
|
+
readonly internalType: "address";
|
|
1747
|
+
readonly name: "";
|
|
1748
|
+
readonly type: "address";
|
|
1749
|
+
}];
|
|
1750
|
+
readonly stateMutability: "view";
|
|
1751
|
+
readonly type: "function";
|
|
1612
1752
|
}, {
|
|
1613
1753
|
readonly inputs: readonly [];
|
|
1614
1754
|
readonly name: "vaultHub";
|
|
@@ -1649,8 +1789,8 @@ export declare const getLocatorContract: () => {
|
|
|
1649
1789
|
}];
|
|
1650
1790
|
readonly stateMutability: "view";
|
|
1651
1791
|
readonly type: "function";
|
|
1652
|
-
}], "
|
|
1653
|
-
|
|
1792
|
+
}], "oracleReportSanityChecker", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
1793
|
+
postTokenRebaseReceiver: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
1654
1794
|
readonly inputs: readonly [{
|
|
1655
1795
|
readonly components: readonly [{
|
|
1656
1796
|
readonly internalType: "address";
|
|
@@ -1720,6 +1860,14 @@ export declare const getLocatorContract: () => {
|
|
|
1720
1860
|
readonly internalType: "address";
|
|
1721
1861
|
readonly name: "vaultHub";
|
|
1722
1862
|
readonly type: "address";
|
|
1863
|
+
}, {
|
|
1864
|
+
readonly internalType: "address";
|
|
1865
|
+
readonly name: "vaultFactory";
|
|
1866
|
+
readonly type: "address";
|
|
1867
|
+
}, {
|
|
1868
|
+
readonly internalType: "address";
|
|
1869
|
+
readonly name: "lazyOracle";
|
|
1870
|
+
readonly type: "address";
|
|
1723
1871
|
}, {
|
|
1724
1872
|
readonly internalType: "address";
|
|
1725
1873
|
readonly name: "operatorGrid";
|
|
@@ -1815,6 +1963,16 @@ export declare const getLocatorContract: () => {
|
|
|
1815
1963
|
}];
|
|
1816
1964
|
readonly stateMutability: "view";
|
|
1817
1965
|
readonly type: "function";
|
|
1966
|
+
}, {
|
|
1967
|
+
readonly inputs: readonly [];
|
|
1968
|
+
readonly name: "lazyOracle";
|
|
1969
|
+
readonly outputs: readonly [{
|
|
1970
|
+
readonly internalType: "address";
|
|
1971
|
+
readonly name: "";
|
|
1972
|
+
readonly type: "address";
|
|
1973
|
+
}];
|
|
1974
|
+
readonly stateMutability: "view";
|
|
1975
|
+
readonly type: "function";
|
|
1818
1976
|
}, {
|
|
1819
1977
|
readonly inputs: readonly [];
|
|
1820
1978
|
readonly name: "lido";
|
|
@@ -1939,6 +2097,16 @@ export declare const getLocatorContract: () => {
|
|
|
1939
2097
|
}];
|
|
1940
2098
|
readonly stateMutability: "view";
|
|
1941
2099
|
readonly type: "function";
|
|
2100
|
+
}, {
|
|
2101
|
+
readonly inputs: readonly [];
|
|
2102
|
+
readonly name: "vaultFactory";
|
|
2103
|
+
readonly outputs: readonly [{
|
|
2104
|
+
readonly internalType: "address";
|
|
2105
|
+
readonly name: "";
|
|
2106
|
+
readonly type: "address";
|
|
2107
|
+
}];
|
|
2108
|
+
readonly stateMutability: "view";
|
|
2109
|
+
readonly type: "function";
|
|
1942
2110
|
}, {
|
|
1943
2111
|
readonly inputs: readonly [];
|
|
1944
2112
|
readonly name: "vaultHub";
|
|
@@ -1979,8 +2147,8 @@ export declare const getLocatorContract: () => {
|
|
|
1979
2147
|
}];
|
|
1980
2148
|
readonly stateMutability: "view";
|
|
1981
2149
|
readonly type: "function";
|
|
1982
|
-
}], "
|
|
1983
|
-
|
|
2150
|
+
}], "postTokenRebaseReceiver", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
2151
|
+
burner: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
1984
2152
|
readonly inputs: readonly [{
|
|
1985
2153
|
readonly components: readonly [{
|
|
1986
2154
|
readonly internalType: "address";
|
|
@@ -2050,6 +2218,14 @@ export declare const getLocatorContract: () => {
|
|
|
2050
2218
|
readonly internalType: "address";
|
|
2051
2219
|
readonly name: "vaultHub";
|
|
2052
2220
|
readonly type: "address";
|
|
2221
|
+
}, {
|
|
2222
|
+
readonly internalType: "address";
|
|
2223
|
+
readonly name: "vaultFactory";
|
|
2224
|
+
readonly type: "address";
|
|
2225
|
+
}, {
|
|
2226
|
+
readonly internalType: "address";
|
|
2227
|
+
readonly name: "lazyOracle";
|
|
2228
|
+
readonly type: "address";
|
|
2053
2229
|
}, {
|
|
2054
2230
|
readonly internalType: "address";
|
|
2055
2231
|
readonly name: "operatorGrid";
|
|
@@ -2145,6 +2321,16 @@ export declare const getLocatorContract: () => {
|
|
|
2145
2321
|
}];
|
|
2146
2322
|
readonly stateMutability: "view";
|
|
2147
2323
|
readonly type: "function";
|
|
2324
|
+
}, {
|
|
2325
|
+
readonly inputs: readonly [];
|
|
2326
|
+
readonly name: "lazyOracle";
|
|
2327
|
+
readonly outputs: readonly [{
|
|
2328
|
+
readonly internalType: "address";
|
|
2329
|
+
readonly name: "";
|
|
2330
|
+
readonly type: "address";
|
|
2331
|
+
}];
|
|
2332
|
+
readonly stateMutability: "view";
|
|
2333
|
+
readonly type: "function";
|
|
2148
2334
|
}, {
|
|
2149
2335
|
readonly inputs: readonly [];
|
|
2150
2336
|
readonly name: "lido";
|
|
@@ -2269,6 +2455,16 @@ export declare const getLocatorContract: () => {
|
|
|
2269
2455
|
}];
|
|
2270
2456
|
readonly stateMutability: "view";
|
|
2271
2457
|
readonly type: "function";
|
|
2458
|
+
}, {
|
|
2459
|
+
readonly inputs: readonly [];
|
|
2460
|
+
readonly name: "vaultFactory";
|
|
2461
|
+
readonly outputs: readonly [{
|
|
2462
|
+
readonly internalType: "address";
|
|
2463
|
+
readonly name: "";
|
|
2464
|
+
readonly type: "address";
|
|
2465
|
+
}];
|
|
2466
|
+
readonly stateMutability: "view";
|
|
2467
|
+
readonly type: "function";
|
|
2272
2468
|
}, {
|
|
2273
2469
|
readonly inputs: readonly [];
|
|
2274
2470
|
readonly name: "vaultHub";
|
|
@@ -2309,8 +2505,8 @@ export declare const getLocatorContract: () => {
|
|
|
2309
2505
|
}];
|
|
2310
2506
|
readonly stateMutability: "view";
|
|
2311
2507
|
readonly type: "function";
|
|
2312
|
-
}], "
|
|
2313
|
-
|
|
2508
|
+
}], "burner", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
2509
|
+
stakingRouter: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
2314
2510
|
readonly inputs: readonly [{
|
|
2315
2511
|
readonly components: readonly [{
|
|
2316
2512
|
readonly internalType: "address";
|
|
@@ -2380,6 +2576,14 @@ export declare const getLocatorContract: () => {
|
|
|
2380
2576
|
readonly internalType: "address";
|
|
2381
2577
|
readonly name: "vaultHub";
|
|
2382
2578
|
readonly type: "address";
|
|
2579
|
+
}, {
|
|
2580
|
+
readonly internalType: "address";
|
|
2581
|
+
readonly name: "vaultFactory";
|
|
2582
|
+
readonly type: "address";
|
|
2583
|
+
}, {
|
|
2584
|
+
readonly internalType: "address";
|
|
2585
|
+
readonly name: "lazyOracle";
|
|
2586
|
+
readonly type: "address";
|
|
2383
2587
|
}, {
|
|
2384
2588
|
readonly internalType: "address";
|
|
2385
2589
|
readonly name: "operatorGrid";
|
|
@@ -2475,6 +2679,16 @@ export declare const getLocatorContract: () => {
|
|
|
2475
2679
|
}];
|
|
2476
2680
|
readonly stateMutability: "view";
|
|
2477
2681
|
readonly type: "function";
|
|
2682
|
+
}, {
|
|
2683
|
+
readonly inputs: readonly [];
|
|
2684
|
+
readonly name: "lazyOracle";
|
|
2685
|
+
readonly outputs: readonly [{
|
|
2686
|
+
readonly internalType: "address";
|
|
2687
|
+
readonly name: "";
|
|
2688
|
+
readonly type: "address";
|
|
2689
|
+
}];
|
|
2690
|
+
readonly stateMutability: "view";
|
|
2691
|
+
readonly type: "function";
|
|
2478
2692
|
}, {
|
|
2479
2693
|
readonly inputs: readonly [];
|
|
2480
2694
|
readonly name: "lido";
|
|
@@ -2599,6 +2813,16 @@ export declare const getLocatorContract: () => {
|
|
|
2599
2813
|
}];
|
|
2600
2814
|
readonly stateMutability: "view";
|
|
2601
2815
|
readonly type: "function";
|
|
2816
|
+
}, {
|
|
2817
|
+
readonly inputs: readonly [];
|
|
2818
|
+
readonly name: "vaultFactory";
|
|
2819
|
+
readonly outputs: readonly [{
|
|
2820
|
+
readonly internalType: "address";
|
|
2821
|
+
readonly name: "";
|
|
2822
|
+
readonly type: "address";
|
|
2823
|
+
}];
|
|
2824
|
+
readonly stateMutability: "view";
|
|
2825
|
+
readonly type: "function";
|
|
2602
2826
|
}, {
|
|
2603
2827
|
readonly inputs: readonly [];
|
|
2604
2828
|
readonly name: "vaultHub";
|
|
@@ -2639,8 +2863,8 @@ export declare const getLocatorContract: () => {
|
|
|
2639
2863
|
}];
|
|
2640
2864
|
readonly stateMutability: "view";
|
|
2641
2865
|
readonly type: "function";
|
|
2642
|
-
}], "
|
|
2643
|
-
|
|
2866
|
+
}], "stakingRouter", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
2867
|
+
treasury: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
2644
2868
|
readonly inputs: readonly [{
|
|
2645
2869
|
readonly components: readonly [{
|
|
2646
2870
|
readonly internalType: "address";
|
|
@@ -2710,6 +2934,14 @@ export declare const getLocatorContract: () => {
|
|
|
2710
2934
|
readonly internalType: "address";
|
|
2711
2935
|
readonly name: "vaultHub";
|
|
2712
2936
|
readonly type: "address";
|
|
2937
|
+
}, {
|
|
2938
|
+
readonly internalType: "address";
|
|
2939
|
+
readonly name: "vaultFactory";
|
|
2940
|
+
readonly type: "address";
|
|
2941
|
+
}, {
|
|
2942
|
+
readonly internalType: "address";
|
|
2943
|
+
readonly name: "lazyOracle";
|
|
2944
|
+
readonly type: "address";
|
|
2713
2945
|
}, {
|
|
2714
2946
|
readonly internalType: "address";
|
|
2715
2947
|
readonly name: "operatorGrid";
|
|
@@ -2805,6 +3037,16 @@ export declare const getLocatorContract: () => {
|
|
|
2805
3037
|
}];
|
|
2806
3038
|
readonly stateMutability: "view";
|
|
2807
3039
|
readonly type: "function";
|
|
3040
|
+
}, {
|
|
3041
|
+
readonly inputs: readonly [];
|
|
3042
|
+
readonly name: "lazyOracle";
|
|
3043
|
+
readonly outputs: readonly [{
|
|
3044
|
+
readonly internalType: "address";
|
|
3045
|
+
readonly name: "";
|
|
3046
|
+
readonly type: "address";
|
|
3047
|
+
}];
|
|
3048
|
+
readonly stateMutability: "view";
|
|
3049
|
+
readonly type: "function";
|
|
2808
3050
|
}, {
|
|
2809
3051
|
readonly inputs: readonly [];
|
|
2810
3052
|
readonly name: "lido";
|
|
@@ -2929,6 +3171,16 @@ export declare const getLocatorContract: () => {
|
|
|
2929
3171
|
}];
|
|
2930
3172
|
readonly stateMutability: "view";
|
|
2931
3173
|
readonly type: "function";
|
|
3174
|
+
}, {
|
|
3175
|
+
readonly inputs: readonly [];
|
|
3176
|
+
readonly name: "vaultFactory";
|
|
3177
|
+
readonly outputs: readonly [{
|
|
3178
|
+
readonly internalType: "address";
|
|
3179
|
+
readonly name: "";
|
|
3180
|
+
readonly type: "address";
|
|
3181
|
+
}];
|
|
3182
|
+
readonly stateMutability: "view";
|
|
3183
|
+
readonly type: "function";
|
|
2932
3184
|
}, {
|
|
2933
3185
|
readonly inputs: readonly [];
|
|
2934
3186
|
readonly name: "vaultHub";
|
|
@@ -2969,8 +3221,8 @@ export declare const getLocatorContract: () => {
|
|
|
2969
3221
|
}];
|
|
2970
3222
|
readonly stateMutability: "view";
|
|
2971
3223
|
readonly type: "function";
|
|
2972
|
-
}], "
|
|
2973
|
-
|
|
3224
|
+
}], "treasury", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
3225
|
+
validatorsExitBusOracle: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
2974
3226
|
readonly inputs: readonly [{
|
|
2975
3227
|
readonly components: readonly [{
|
|
2976
3228
|
readonly internalType: "address";
|
|
@@ -3042,9 +3294,733 @@ export declare const getLocatorContract: () => {
|
|
|
3042
3294
|
readonly type: "address";
|
|
3043
3295
|
}, {
|
|
3044
3296
|
readonly internalType: "address";
|
|
3045
|
-
readonly name: "
|
|
3297
|
+
readonly name: "vaultFactory";
|
|
3046
3298
|
readonly type: "address";
|
|
3047
|
-
}
|
|
3299
|
+
}, {
|
|
3300
|
+
readonly internalType: "address";
|
|
3301
|
+
readonly name: "lazyOracle";
|
|
3302
|
+
readonly type: "address";
|
|
3303
|
+
}, {
|
|
3304
|
+
readonly internalType: "address";
|
|
3305
|
+
readonly name: "operatorGrid";
|
|
3306
|
+
readonly type: "address";
|
|
3307
|
+
}];
|
|
3308
|
+
readonly internalType: "struct LidoLocator.Config";
|
|
3309
|
+
readonly name: "_config";
|
|
3310
|
+
readonly type: "tuple";
|
|
3311
|
+
}];
|
|
3312
|
+
readonly stateMutability: "nonpayable";
|
|
3313
|
+
readonly type: "constructor";
|
|
3314
|
+
}, {
|
|
3315
|
+
readonly inputs: readonly [];
|
|
3316
|
+
readonly name: "ZeroAddress";
|
|
3317
|
+
readonly type: "error";
|
|
3318
|
+
}, {
|
|
3319
|
+
readonly inputs: readonly [];
|
|
3320
|
+
readonly name: "accounting";
|
|
3321
|
+
readonly outputs: readonly [{
|
|
3322
|
+
readonly internalType: "address";
|
|
3323
|
+
readonly name: "";
|
|
3324
|
+
readonly type: "address";
|
|
3325
|
+
}];
|
|
3326
|
+
readonly stateMutability: "view";
|
|
3327
|
+
readonly type: "function";
|
|
3328
|
+
}, {
|
|
3329
|
+
readonly inputs: readonly [];
|
|
3330
|
+
readonly name: "accountingOracle";
|
|
3331
|
+
readonly outputs: readonly [{
|
|
3332
|
+
readonly internalType: "address";
|
|
3333
|
+
readonly name: "";
|
|
3334
|
+
readonly type: "address";
|
|
3335
|
+
}];
|
|
3336
|
+
readonly stateMutability: "view";
|
|
3337
|
+
readonly type: "function";
|
|
3338
|
+
}, {
|
|
3339
|
+
readonly inputs: readonly [];
|
|
3340
|
+
readonly name: "burner";
|
|
3341
|
+
readonly outputs: readonly [{
|
|
3342
|
+
readonly internalType: "address";
|
|
3343
|
+
readonly name: "";
|
|
3344
|
+
readonly type: "address";
|
|
3345
|
+
}];
|
|
3346
|
+
readonly stateMutability: "view";
|
|
3347
|
+
readonly type: "function";
|
|
3348
|
+
}, {
|
|
3349
|
+
readonly inputs: readonly [];
|
|
3350
|
+
readonly name: "coreComponents";
|
|
3351
|
+
readonly outputs: readonly [{
|
|
3352
|
+
readonly internalType: "address";
|
|
3353
|
+
readonly name: "";
|
|
3354
|
+
readonly type: "address";
|
|
3355
|
+
}, {
|
|
3356
|
+
readonly internalType: "address";
|
|
3357
|
+
readonly name: "";
|
|
3358
|
+
readonly type: "address";
|
|
3359
|
+
}, {
|
|
3360
|
+
readonly internalType: "address";
|
|
3361
|
+
readonly name: "";
|
|
3362
|
+
readonly type: "address";
|
|
3363
|
+
}, {
|
|
3364
|
+
readonly internalType: "address";
|
|
3365
|
+
readonly name: "";
|
|
3366
|
+
readonly type: "address";
|
|
3367
|
+
}, {
|
|
3368
|
+
readonly internalType: "address";
|
|
3369
|
+
readonly name: "";
|
|
3370
|
+
readonly type: "address";
|
|
3371
|
+
}, {
|
|
3372
|
+
readonly internalType: "address";
|
|
3373
|
+
readonly name: "";
|
|
3374
|
+
readonly type: "address";
|
|
3375
|
+
}];
|
|
3376
|
+
readonly stateMutability: "view";
|
|
3377
|
+
readonly type: "function";
|
|
3378
|
+
}, {
|
|
3379
|
+
readonly inputs: readonly [];
|
|
3380
|
+
readonly name: "depositSecurityModule";
|
|
3381
|
+
readonly outputs: readonly [{
|
|
3382
|
+
readonly internalType: "address";
|
|
3383
|
+
readonly name: "";
|
|
3384
|
+
readonly type: "address";
|
|
3385
|
+
}];
|
|
3386
|
+
readonly stateMutability: "view";
|
|
3387
|
+
readonly type: "function";
|
|
3388
|
+
}, {
|
|
3389
|
+
readonly inputs: readonly [];
|
|
3390
|
+
readonly name: "elRewardsVault";
|
|
3391
|
+
readonly outputs: readonly [{
|
|
3392
|
+
readonly internalType: "address";
|
|
3393
|
+
readonly name: "";
|
|
3394
|
+
readonly type: "address";
|
|
3395
|
+
}];
|
|
3396
|
+
readonly stateMutability: "view";
|
|
3397
|
+
readonly type: "function";
|
|
3398
|
+
}, {
|
|
3399
|
+
readonly inputs: readonly [];
|
|
3400
|
+
readonly name: "lazyOracle";
|
|
3401
|
+
readonly outputs: readonly [{
|
|
3402
|
+
readonly internalType: "address";
|
|
3403
|
+
readonly name: "";
|
|
3404
|
+
readonly type: "address";
|
|
3405
|
+
}];
|
|
3406
|
+
readonly stateMutability: "view";
|
|
3407
|
+
readonly type: "function";
|
|
3408
|
+
}, {
|
|
3409
|
+
readonly inputs: readonly [];
|
|
3410
|
+
readonly name: "lido";
|
|
3411
|
+
readonly outputs: readonly [{
|
|
3412
|
+
readonly internalType: "address";
|
|
3413
|
+
readonly name: "";
|
|
3414
|
+
readonly type: "address";
|
|
3415
|
+
}];
|
|
3416
|
+
readonly stateMutability: "view";
|
|
3417
|
+
readonly type: "function";
|
|
3418
|
+
}, {
|
|
3419
|
+
readonly inputs: readonly [];
|
|
3420
|
+
readonly name: "operatorGrid";
|
|
3421
|
+
readonly outputs: readonly [{
|
|
3422
|
+
readonly internalType: "address";
|
|
3423
|
+
readonly name: "";
|
|
3424
|
+
readonly type: "address";
|
|
3425
|
+
}];
|
|
3426
|
+
readonly stateMutability: "view";
|
|
3427
|
+
readonly type: "function";
|
|
3428
|
+
}, {
|
|
3429
|
+
readonly inputs: readonly [];
|
|
3430
|
+
readonly name: "oracleDaemonConfig";
|
|
3431
|
+
readonly outputs: readonly [{
|
|
3432
|
+
readonly internalType: "address";
|
|
3433
|
+
readonly name: "";
|
|
3434
|
+
readonly type: "address";
|
|
3435
|
+
}];
|
|
3436
|
+
readonly stateMutability: "view";
|
|
3437
|
+
readonly type: "function";
|
|
3438
|
+
}, {
|
|
3439
|
+
readonly inputs: readonly [];
|
|
3440
|
+
readonly name: "oracleReportComponents";
|
|
3441
|
+
readonly outputs: readonly [{
|
|
3442
|
+
readonly internalType: "address";
|
|
3443
|
+
readonly name: "";
|
|
3444
|
+
readonly type: "address";
|
|
3445
|
+
}, {
|
|
3446
|
+
readonly internalType: "address";
|
|
3447
|
+
readonly name: "";
|
|
3448
|
+
readonly type: "address";
|
|
3449
|
+
}, {
|
|
3450
|
+
readonly internalType: "address";
|
|
3451
|
+
readonly name: "";
|
|
3452
|
+
readonly type: "address";
|
|
3453
|
+
}, {
|
|
3454
|
+
readonly internalType: "address";
|
|
3455
|
+
readonly name: "";
|
|
3456
|
+
readonly type: "address";
|
|
3457
|
+
}, {
|
|
3458
|
+
readonly internalType: "address";
|
|
3459
|
+
readonly name: "";
|
|
3460
|
+
readonly type: "address";
|
|
3461
|
+
}, {
|
|
3462
|
+
readonly internalType: "address";
|
|
3463
|
+
readonly name: "";
|
|
3464
|
+
readonly type: "address";
|
|
3465
|
+
}, {
|
|
3466
|
+
readonly internalType: "address";
|
|
3467
|
+
readonly name: "";
|
|
3468
|
+
readonly type: "address";
|
|
3469
|
+
}];
|
|
3470
|
+
readonly stateMutability: "view";
|
|
3471
|
+
readonly type: "function";
|
|
3472
|
+
}, {
|
|
3473
|
+
readonly inputs: readonly [];
|
|
3474
|
+
readonly name: "oracleReportSanityChecker";
|
|
3475
|
+
readonly outputs: readonly [{
|
|
3476
|
+
readonly internalType: "address";
|
|
3477
|
+
readonly name: "";
|
|
3478
|
+
readonly type: "address";
|
|
3479
|
+
}];
|
|
3480
|
+
readonly stateMutability: "view";
|
|
3481
|
+
readonly type: "function";
|
|
3482
|
+
}, {
|
|
3483
|
+
readonly inputs: readonly [];
|
|
3484
|
+
readonly name: "postTokenRebaseReceiver";
|
|
3485
|
+
readonly outputs: readonly [{
|
|
3486
|
+
readonly internalType: "address";
|
|
3487
|
+
readonly name: "";
|
|
3488
|
+
readonly type: "address";
|
|
3489
|
+
}];
|
|
3490
|
+
readonly stateMutability: "view";
|
|
3491
|
+
readonly type: "function";
|
|
3492
|
+
}, {
|
|
3493
|
+
readonly inputs: readonly [];
|
|
3494
|
+
readonly name: "predepositGuarantee";
|
|
3495
|
+
readonly outputs: readonly [{
|
|
3496
|
+
readonly internalType: "address";
|
|
3497
|
+
readonly name: "";
|
|
3498
|
+
readonly type: "address";
|
|
3499
|
+
}];
|
|
3500
|
+
readonly stateMutability: "view";
|
|
3501
|
+
readonly type: "function";
|
|
3502
|
+
}, {
|
|
3503
|
+
readonly inputs: readonly [];
|
|
3504
|
+
readonly name: "stakingRouter";
|
|
3505
|
+
readonly outputs: readonly [{
|
|
3506
|
+
readonly internalType: "address";
|
|
3507
|
+
readonly name: "";
|
|
3508
|
+
readonly type: "address";
|
|
3509
|
+
}];
|
|
3510
|
+
readonly stateMutability: "view";
|
|
3511
|
+
readonly type: "function";
|
|
3512
|
+
}, {
|
|
3513
|
+
readonly inputs: readonly [];
|
|
3514
|
+
readonly name: "treasury";
|
|
3515
|
+
readonly outputs: readonly [{
|
|
3516
|
+
readonly internalType: "address";
|
|
3517
|
+
readonly name: "";
|
|
3518
|
+
readonly type: "address";
|
|
3519
|
+
}];
|
|
3520
|
+
readonly stateMutability: "view";
|
|
3521
|
+
readonly type: "function";
|
|
3522
|
+
}, {
|
|
3523
|
+
readonly inputs: readonly [];
|
|
3524
|
+
readonly name: "validatorsExitBusOracle";
|
|
3525
|
+
readonly outputs: readonly [{
|
|
3526
|
+
readonly internalType: "address";
|
|
3527
|
+
readonly name: "";
|
|
3528
|
+
readonly type: "address";
|
|
3529
|
+
}];
|
|
3530
|
+
readonly stateMutability: "view";
|
|
3531
|
+
readonly type: "function";
|
|
3532
|
+
}, {
|
|
3533
|
+
readonly inputs: readonly [];
|
|
3534
|
+
readonly name: "vaultFactory";
|
|
3535
|
+
readonly outputs: readonly [{
|
|
3536
|
+
readonly internalType: "address";
|
|
3537
|
+
readonly name: "";
|
|
3538
|
+
readonly type: "address";
|
|
3539
|
+
}];
|
|
3540
|
+
readonly stateMutability: "view";
|
|
3541
|
+
readonly type: "function";
|
|
3542
|
+
}, {
|
|
3543
|
+
readonly inputs: readonly [];
|
|
3544
|
+
readonly name: "vaultHub";
|
|
3545
|
+
readonly outputs: readonly [{
|
|
3546
|
+
readonly internalType: "address";
|
|
3547
|
+
readonly name: "";
|
|
3548
|
+
readonly type: "address";
|
|
3549
|
+
}];
|
|
3550
|
+
readonly stateMutability: "view";
|
|
3551
|
+
readonly type: "function";
|
|
3552
|
+
}, {
|
|
3553
|
+
readonly inputs: readonly [];
|
|
3554
|
+
readonly name: "withdrawalQueue";
|
|
3555
|
+
readonly outputs: readonly [{
|
|
3556
|
+
readonly internalType: "address";
|
|
3557
|
+
readonly name: "";
|
|
3558
|
+
readonly type: "address";
|
|
3559
|
+
}];
|
|
3560
|
+
readonly stateMutability: "view";
|
|
3561
|
+
readonly type: "function";
|
|
3562
|
+
}, {
|
|
3563
|
+
readonly inputs: readonly [];
|
|
3564
|
+
readonly name: "withdrawalVault";
|
|
3565
|
+
readonly outputs: readonly [{
|
|
3566
|
+
readonly internalType: "address";
|
|
3567
|
+
readonly name: "";
|
|
3568
|
+
readonly type: "address";
|
|
3569
|
+
}];
|
|
3570
|
+
readonly stateMutability: "view";
|
|
3571
|
+
readonly type: "function";
|
|
3572
|
+
}, {
|
|
3573
|
+
readonly inputs: readonly [];
|
|
3574
|
+
readonly name: "wstETH";
|
|
3575
|
+
readonly outputs: readonly [{
|
|
3576
|
+
readonly internalType: "address";
|
|
3577
|
+
readonly name: "";
|
|
3578
|
+
readonly type: "address";
|
|
3579
|
+
}];
|
|
3580
|
+
readonly stateMutability: "view";
|
|
3581
|
+
readonly type: "function";
|
|
3582
|
+
}], "validatorsExitBusOracle", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
3583
|
+
withdrawalQueue: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
3584
|
+
readonly inputs: readonly [{
|
|
3585
|
+
readonly components: readonly [{
|
|
3586
|
+
readonly internalType: "address";
|
|
3587
|
+
readonly name: "accountingOracle";
|
|
3588
|
+
readonly type: "address";
|
|
3589
|
+
}, {
|
|
3590
|
+
readonly internalType: "address";
|
|
3591
|
+
readonly name: "depositSecurityModule";
|
|
3592
|
+
readonly type: "address";
|
|
3593
|
+
}, {
|
|
3594
|
+
readonly internalType: "address";
|
|
3595
|
+
readonly name: "elRewardsVault";
|
|
3596
|
+
readonly type: "address";
|
|
3597
|
+
}, {
|
|
3598
|
+
readonly internalType: "address";
|
|
3599
|
+
readonly name: "lido";
|
|
3600
|
+
readonly type: "address";
|
|
3601
|
+
}, {
|
|
3602
|
+
readonly internalType: "address";
|
|
3603
|
+
readonly name: "oracleReportSanityChecker";
|
|
3604
|
+
readonly type: "address";
|
|
3605
|
+
}, {
|
|
3606
|
+
readonly internalType: "address";
|
|
3607
|
+
readonly name: "postTokenRebaseReceiver";
|
|
3608
|
+
readonly type: "address";
|
|
3609
|
+
}, {
|
|
3610
|
+
readonly internalType: "address";
|
|
3611
|
+
readonly name: "burner";
|
|
3612
|
+
readonly type: "address";
|
|
3613
|
+
}, {
|
|
3614
|
+
readonly internalType: "address";
|
|
3615
|
+
readonly name: "stakingRouter";
|
|
3616
|
+
readonly type: "address";
|
|
3617
|
+
}, {
|
|
3618
|
+
readonly internalType: "address";
|
|
3619
|
+
readonly name: "treasury";
|
|
3620
|
+
readonly type: "address";
|
|
3621
|
+
}, {
|
|
3622
|
+
readonly internalType: "address";
|
|
3623
|
+
readonly name: "validatorsExitBusOracle";
|
|
3624
|
+
readonly type: "address";
|
|
3625
|
+
}, {
|
|
3626
|
+
readonly internalType: "address";
|
|
3627
|
+
readonly name: "withdrawalQueue";
|
|
3628
|
+
readonly type: "address";
|
|
3629
|
+
}, {
|
|
3630
|
+
readonly internalType: "address";
|
|
3631
|
+
readonly name: "withdrawalVault";
|
|
3632
|
+
readonly type: "address";
|
|
3633
|
+
}, {
|
|
3634
|
+
readonly internalType: "address";
|
|
3635
|
+
readonly name: "oracleDaemonConfig";
|
|
3636
|
+
readonly type: "address";
|
|
3637
|
+
}, {
|
|
3638
|
+
readonly internalType: "address";
|
|
3639
|
+
readonly name: "accounting";
|
|
3640
|
+
readonly type: "address";
|
|
3641
|
+
}, {
|
|
3642
|
+
readonly internalType: "address";
|
|
3643
|
+
readonly name: "predepositGuarantee";
|
|
3644
|
+
readonly type: "address";
|
|
3645
|
+
}, {
|
|
3646
|
+
readonly internalType: "address";
|
|
3647
|
+
readonly name: "wstETH";
|
|
3648
|
+
readonly type: "address";
|
|
3649
|
+
}, {
|
|
3650
|
+
readonly internalType: "address";
|
|
3651
|
+
readonly name: "vaultHub";
|
|
3652
|
+
readonly type: "address";
|
|
3653
|
+
}, {
|
|
3654
|
+
readonly internalType: "address";
|
|
3655
|
+
readonly name: "vaultFactory";
|
|
3656
|
+
readonly type: "address";
|
|
3657
|
+
}, {
|
|
3658
|
+
readonly internalType: "address";
|
|
3659
|
+
readonly name: "lazyOracle";
|
|
3660
|
+
readonly type: "address";
|
|
3661
|
+
}, {
|
|
3662
|
+
readonly internalType: "address";
|
|
3663
|
+
readonly name: "operatorGrid";
|
|
3664
|
+
readonly type: "address";
|
|
3665
|
+
}];
|
|
3666
|
+
readonly internalType: "struct LidoLocator.Config";
|
|
3667
|
+
readonly name: "_config";
|
|
3668
|
+
readonly type: "tuple";
|
|
3669
|
+
}];
|
|
3670
|
+
readonly stateMutability: "nonpayable";
|
|
3671
|
+
readonly type: "constructor";
|
|
3672
|
+
}, {
|
|
3673
|
+
readonly inputs: readonly [];
|
|
3674
|
+
readonly name: "ZeroAddress";
|
|
3675
|
+
readonly type: "error";
|
|
3676
|
+
}, {
|
|
3677
|
+
readonly inputs: readonly [];
|
|
3678
|
+
readonly name: "accounting";
|
|
3679
|
+
readonly outputs: readonly [{
|
|
3680
|
+
readonly internalType: "address";
|
|
3681
|
+
readonly name: "";
|
|
3682
|
+
readonly type: "address";
|
|
3683
|
+
}];
|
|
3684
|
+
readonly stateMutability: "view";
|
|
3685
|
+
readonly type: "function";
|
|
3686
|
+
}, {
|
|
3687
|
+
readonly inputs: readonly [];
|
|
3688
|
+
readonly name: "accountingOracle";
|
|
3689
|
+
readonly outputs: readonly [{
|
|
3690
|
+
readonly internalType: "address";
|
|
3691
|
+
readonly name: "";
|
|
3692
|
+
readonly type: "address";
|
|
3693
|
+
}];
|
|
3694
|
+
readonly stateMutability: "view";
|
|
3695
|
+
readonly type: "function";
|
|
3696
|
+
}, {
|
|
3697
|
+
readonly inputs: readonly [];
|
|
3698
|
+
readonly name: "burner";
|
|
3699
|
+
readonly outputs: readonly [{
|
|
3700
|
+
readonly internalType: "address";
|
|
3701
|
+
readonly name: "";
|
|
3702
|
+
readonly type: "address";
|
|
3703
|
+
}];
|
|
3704
|
+
readonly stateMutability: "view";
|
|
3705
|
+
readonly type: "function";
|
|
3706
|
+
}, {
|
|
3707
|
+
readonly inputs: readonly [];
|
|
3708
|
+
readonly name: "coreComponents";
|
|
3709
|
+
readonly outputs: readonly [{
|
|
3710
|
+
readonly internalType: "address";
|
|
3711
|
+
readonly name: "";
|
|
3712
|
+
readonly type: "address";
|
|
3713
|
+
}, {
|
|
3714
|
+
readonly internalType: "address";
|
|
3715
|
+
readonly name: "";
|
|
3716
|
+
readonly type: "address";
|
|
3717
|
+
}, {
|
|
3718
|
+
readonly internalType: "address";
|
|
3719
|
+
readonly name: "";
|
|
3720
|
+
readonly type: "address";
|
|
3721
|
+
}, {
|
|
3722
|
+
readonly internalType: "address";
|
|
3723
|
+
readonly name: "";
|
|
3724
|
+
readonly type: "address";
|
|
3725
|
+
}, {
|
|
3726
|
+
readonly internalType: "address";
|
|
3727
|
+
readonly name: "";
|
|
3728
|
+
readonly type: "address";
|
|
3729
|
+
}, {
|
|
3730
|
+
readonly internalType: "address";
|
|
3731
|
+
readonly name: "";
|
|
3732
|
+
readonly type: "address";
|
|
3733
|
+
}];
|
|
3734
|
+
readonly stateMutability: "view";
|
|
3735
|
+
readonly type: "function";
|
|
3736
|
+
}, {
|
|
3737
|
+
readonly inputs: readonly [];
|
|
3738
|
+
readonly name: "depositSecurityModule";
|
|
3739
|
+
readonly outputs: readonly [{
|
|
3740
|
+
readonly internalType: "address";
|
|
3741
|
+
readonly name: "";
|
|
3742
|
+
readonly type: "address";
|
|
3743
|
+
}];
|
|
3744
|
+
readonly stateMutability: "view";
|
|
3745
|
+
readonly type: "function";
|
|
3746
|
+
}, {
|
|
3747
|
+
readonly inputs: readonly [];
|
|
3748
|
+
readonly name: "elRewardsVault";
|
|
3749
|
+
readonly outputs: readonly [{
|
|
3750
|
+
readonly internalType: "address";
|
|
3751
|
+
readonly name: "";
|
|
3752
|
+
readonly type: "address";
|
|
3753
|
+
}];
|
|
3754
|
+
readonly stateMutability: "view";
|
|
3755
|
+
readonly type: "function";
|
|
3756
|
+
}, {
|
|
3757
|
+
readonly inputs: readonly [];
|
|
3758
|
+
readonly name: "lazyOracle";
|
|
3759
|
+
readonly outputs: readonly [{
|
|
3760
|
+
readonly internalType: "address";
|
|
3761
|
+
readonly name: "";
|
|
3762
|
+
readonly type: "address";
|
|
3763
|
+
}];
|
|
3764
|
+
readonly stateMutability: "view";
|
|
3765
|
+
readonly type: "function";
|
|
3766
|
+
}, {
|
|
3767
|
+
readonly inputs: readonly [];
|
|
3768
|
+
readonly name: "lido";
|
|
3769
|
+
readonly outputs: readonly [{
|
|
3770
|
+
readonly internalType: "address";
|
|
3771
|
+
readonly name: "";
|
|
3772
|
+
readonly type: "address";
|
|
3773
|
+
}];
|
|
3774
|
+
readonly stateMutability: "view";
|
|
3775
|
+
readonly type: "function";
|
|
3776
|
+
}, {
|
|
3777
|
+
readonly inputs: readonly [];
|
|
3778
|
+
readonly name: "operatorGrid";
|
|
3779
|
+
readonly outputs: readonly [{
|
|
3780
|
+
readonly internalType: "address";
|
|
3781
|
+
readonly name: "";
|
|
3782
|
+
readonly type: "address";
|
|
3783
|
+
}];
|
|
3784
|
+
readonly stateMutability: "view";
|
|
3785
|
+
readonly type: "function";
|
|
3786
|
+
}, {
|
|
3787
|
+
readonly inputs: readonly [];
|
|
3788
|
+
readonly name: "oracleDaemonConfig";
|
|
3789
|
+
readonly outputs: readonly [{
|
|
3790
|
+
readonly internalType: "address";
|
|
3791
|
+
readonly name: "";
|
|
3792
|
+
readonly type: "address";
|
|
3793
|
+
}];
|
|
3794
|
+
readonly stateMutability: "view";
|
|
3795
|
+
readonly type: "function";
|
|
3796
|
+
}, {
|
|
3797
|
+
readonly inputs: readonly [];
|
|
3798
|
+
readonly name: "oracleReportComponents";
|
|
3799
|
+
readonly outputs: readonly [{
|
|
3800
|
+
readonly internalType: "address";
|
|
3801
|
+
readonly name: "";
|
|
3802
|
+
readonly type: "address";
|
|
3803
|
+
}, {
|
|
3804
|
+
readonly internalType: "address";
|
|
3805
|
+
readonly name: "";
|
|
3806
|
+
readonly type: "address";
|
|
3807
|
+
}, {
|
|
3808
|
+
readonly internalType: "address";
|
|
3809
|
+
readonly name: "";
|
|
3810
|
+
readonly type: "address";
|
|
3811
|
+
}, {
|
|
3812
|
+
readonly internalType: "address";
|
|
3813
|
+
readonly name: "";
|
|
3814
|
+
readonly type: "address";
|
|
3815
|
+
}, {
|
|
3816
|
+
readonly internalType: "address";
|
|
3817
|
+
readonly name: "";
|
|
3818
|
+
readonly type: "address";
|
|
3819
|
+
}, {
|
|
3820
|
+
readonly internalType: "address";
|
|
3821
|
+
readonly name: "";
|
|
3822
|
+
readonly type: "address";
|
|
3823
|
+
}, {
|
|
3824
|
+
readonly internalType: "address";
|
|
3825
|
+
readonly name: "";
|
|
3826
|
+
readonly type: "address";
|
|
3827
|
+
}];
|
|
3828
|
+
readonly stateMutability: "view";
|
|
3829
|
+
readonly type: "function";
|
|
3830
|
+
}, {
|
|
3831
|
+
readonly inputs: readonly [];
|
|
3832
|
+
readonly name: "oracleReportSanityChecker";
|
|
3833
|
+
readonly outputs: readonly [{
|
|
3834
|
+
readonly internalType: "address";
|
|
3835
|
+
readonly name: "";
|
|
3836
|
+
readonly type: "address";
|
|
3837
|
+
}];
|
|
3838
|
+
readonly stateMutability: "view";
|
|
3839
|
+
readonly type: "function";
|
|
3840
|
+
}, {
|
|
3841
|
+
readonly inputs: readonly [];
|
|
3842
|
+
readonly name: "postTokenRebaseReceiver";
|
|
3843
|
+
readonly outputs: readonly [{
|
|
3844
|
+
readonly internalType: "address";
|
|
3845
|
+
readonly name: "";
|
|
3846
|
+
readonly type: "address";
|
|
3847
|
+
}];
|
|
3848
|
+
readonly stateMutability: "view";
|
|
3849
|
+
readonly type: "function";
|
|
3850
|
+
}, {
|
|
3851
|
+
readonly inputs: readonly [];
|
|
3852
|
+
readonly name: "predepositGuarantee";
|
|
3853
|
+
readonly outputs: readonly [{
|
|
3854
|
+
readonly internalType: "address";
|
|
3855
|
+
readonly name: "";
|
|
3856
|
+
readonly type: "address";
|
|
3857
|
+
}];
|
|
3858
|
+
readonly stateMutability: "view";
|
|
3859
|
+
readonly type: "function";
|
|
3860
|
+
}, {
|
|
3861
|
+
readonly inputs: readonly [];
|
|
3862
|
+
readonly name: "stakingRouter";
|
|
3863
|
+
readonly outputs: readonly [{
|
|
3864
|
+
readonly internalType: "address";
|
|
3865
|
+
readonly name: "";
|
|
3866
|
+
readonly type: "address";
|
|
3867
|
+
}];
|
|
3868
|
+
readonly stateMutability: "view";
|
|
3869
|
+
readonly type: "function";
|
|
3870
|
+
}, {
|
|
3871
|
+
readonly inputs: readonly [];
|
|
3872
|
+
readonly name: "treasury";
|
|
3873
|
+
readonly outputs: readonly [{
|
|
3874
|
+
readonly internalType: "address";
|
|
3875
|
+
readonly name: "";
|
|
3876
|
+
readonly type: "address";
|
|
3877
|
+
}];
|
|
3878
|
+
readonly stateMutability: "view";
|
|
3879
|
+
readonly type: "function";
|
|
3880
|
+
}, {
|
|
3881
|
+
readonly inputs: readonly [];
|
|
3882
|
+
readonly name: "validatorsExitBusOracle";
|
|
3883
|
+
readonly outputs: readonly [{
|
|
3884
|
+
readonly internalType: "address";
|
|
3885
|
+
readonly name: "";
|
|
3886
|
+
readonly type: "address";
|
|
3887
|
+
}];
|
|
3888
|
+
readonly stateMutability: "view";
|
|
3889
|
+
readonly type: "function";
|
|
3890
|
+
}, {
|
|
3891
|
+
readonly inputs: readonly [];
|
|
3892
|
+
readonly name: "vaultFactory";
|
|
3893
|
+
readonly outputs: readonly [{
|
|
3894
|
+
readonly internalType: "address";
|
|
3895
|
+
readonly name: "";
|
|
3896
|
+
readonly type: "address";
|
|
3897
|
+
}];
|
|
3898
|
+
readonly stateMutability: "view";
|
|
3899
|
+
readonly type: "function";
|
|
3900
|
+
}, {
|
|
3901
|
+
readonly inputs: readonly [];
|
|
3902
|
+
readonly name: "vaultHub";
|
|
3903
|
+
readonly outputs: readonly [{
|
|
3904
|
+
readonly internalType: "address";
|
|
3905
|
+
readonly name: "";
|
|
3906
|
+
readonly type: "address";
|
|
3907
|
+
}];
|
|
3908
|
+
readonly stateMutability: "view";
|
|
3909
|
+
readonly type: "function";
|
|
3910
|
+
}, {
|
|
3911
|
+
readonly inputs: readonly [];
|
|
3912
|
+
readonly name: "withdrawalQueue";
|
|
3913
|
+
readonly outputs: readonly [{
|
|
3914
|
+
readonly internalType: "address";
|
|
3915
|
+
readonly name: "";
|
|
3916
|
+
readonly type: "address";
|
|
3917
|
+
}];
|
|
3918
|
+
readonly stateMutability: "view";
|
|
3919
|
+
readonly type: "function";
|
|
3920
|
+
}, {
|
|
3921
|
+
readonly inputs: readonly [];
|
|
3922
|
+
readonly name: "withdrawalVault";
|
|
3923
|
+
readonly outputs: readonly [{
|
|
3924
|
+
readonly internalType: "address";
|
|
3925
|
+
readonly name: "";
|
|
3926
|
+
readonly type: "address";
|
|
3927
|
+
}];
|
|
3928
|
+
readonly stateMutability: "view";
|
|
3929
|
+
readonly type: "function";
|
|
3930
|
+
}, {
|
|
3931
|
+
readonly inputs: readonly [];
|
|
3932
|
+
readonly name: "wstETH";
|
|
3933
|
+
readonly outputs: readonly [{
|
|
3934
|
+
readonly internalType: "address";
|
|
3935
|
+
readonly name: "";
|
|
3936
|
+
readonly type: "address";
|
|
3937
|
+
}];
|
|
3938
|
+
readonly stateMutability: "view";
|
|
3939
|
+
readonly type: "function";
|
|
3940
|
+
}], "withdrawalQueue", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
3941
|
+
withdrawalVault: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
3942
|
+
readonly inputs: readonly [{
|
|
3943
|
+
readonly components: readonly [{
|
|
3944
|
+
readonly internalType: "address";
|
|
3945
|
+
readonly name: "accountingOracle";
|
|
3946
|
+
readonly type: "address";
|
|
3947
|
+
}, {
|
|
3948
|
+
readonly internalType: "address";
|
|
3949
|
+
readonly name: "depositSecurityModule";
|
|
3950
|
+
readonly type: "address";
|
|
3951
|
+
}, {
|
|
3952
|
+
readonly internalType: "address";
|
|
3953
|
+
readonly name: "elRewardsVault";
|
|
3954
|
+
readonly type: "address";
|
|
3955
|
+
}, {
|
|
3956
|
+
readonly internalType: "address";
|
|
3957
|
+
readonly name: "lido";
|
|
3958
|
+
readonly type: "address";
|
|
3959
|
+
}, {
|
|
3960
|
+
readonly internalType: "address";
|
|
3961
|
+
readonly name: "oracleReportSanityChecker";
|
|
3962
|
+
readonly type: "address";
|
|
3963
|
+
}, {
|
|
3964
|
+
readonly internalType: "address";
|
|
3965
|
+
readonly name: "postTokenRebaseReceiver";
|
|
3966
|
+
readonly type: "address";
|
|
3967
|
+
}, {
|
|
3968
|
+
readonly internalType: "address";
|
|
3969
|
+
readonly name: "burner";
|
|
3970
|
+
readonly type: "address";
|
|
3971
|
+
}, {
|
|
3972
|
+
readonly internalType: "address";
|
|
3973
|
+
readonly name: "stakingRouter";
|
|
3974
|
+
readonly type: "address";
|
|
3975
|
+
}, {
|
|
3976
|
+
readonly internalType: "address";
|
|
3977
|
+
readonly name: "treasury";
|
|
3978
|
+
readonly type: "address";
|
|
3979
|
+
}, {
|
|
3980
|
+
readonly internalType: "address";
|
|
3981
|
+
readonly name: "validatorsExitBusOracle";
|
|
3982
|
+
readonly type: "address";
|
|
3983
|
+
}, {
|
|
3984
|
+
readonly internalType: "address";
|
|
3985
|
+
readonly name: "withdrawalQueue";
|
|
3986
|
+
readonly type: "address";
|
|
3987
|
+
}, {
|
|
3988
|
+
readonly internalType: "address";
|
|
3989
|
+
readonly name: "withdrawalVault";
|
|
3990
|
+
readonly type: "address";
|
|
3991
|
+
}, {
|
|
3992
|
+
readonly internalType: "address";
|
|
3993
|
+
readonly name: "oracleDaemonConfig";
|
|
3994
|
+
readonly type: "address";
|
|
3995
|
+
}, {
|
|
3996
|
+
readonly internalType: "address";
|
|
3997
|
+
readonly name: "accounting";
|
|
3998
|
+
readonly type: "address";
|
|
3999
|
+
}, {
|
|
4000
|
+
readonly internalType: "address";
|
|
4001
|
+
readonly name: "predepositGuarantee";
|
|
4002
|
+
readonly type: "address";
|
|
4003
|
+
}, {
|
|
4004
|
+
readonly internalType: "address";
|
|
4005
|
+
readonly name: "wstETH";
|
|
4006
|
+
readonly type: "address";
|
|
4007
|
+
}, {
|
|
4008
|
+
readonly internalType: "address";
|
|
4009
|
+
readonly name: "vaultHub";
|
|
4010
|
+
readonly type: "address";
|
|
4011
|
+
}, {
|
|
4012
|
+
readonly internalType: "address";
|
|
4013
|
+
readonly name: "vaultFactory";
|
|
4014
|
+
readonly type: "address";
|
|
4015
|
+
}, {
|
|
4016
|
+
readonly internalType: "address";
|
|
4017
|
+
readonly name: "lazyOracle";
|
|
4018
|
+
readonly type: "address";
|
|
4019
|
+
}, {
|
|
4020
|
+
readonly internalType: "address";
|
|
4021
|
+
readonly name: "operatorGrid";
|
|
4022
|
+
readonly type: "address";
|
|
4023
|
+
}];
|
|
3048
4024
|
readonly internalType: "struct LidoLocator.Config";
|
|
3049
4025
|
readonly name: "_config";
|
|
3050
4026
|
readonly type: "tuple";
|
|
@@ -3135,6 +4111,16 @@ export declare const getLocatorContract: () => {
|
|
|
3135
4111
|
}];
|
|
3136
4112
|
readonly stateMutability: "view";
|
|
3137
4113
|
readonly type: "function";
|
|
4114
|
+
}, {
|
|
4115
|
+
readonly inputs: readonly [];
|
|
4116
|
+
readonly name: "lazyOracle";
|
|
4117
|
+
readonly outputs: readonly [{
|
|
4118
|
+
readonly internalType: "address";
|
|
4119
|
+
readonly name: "";
|
|
4120
|
+
readonly type: "address";
|
|
4121
|
+
}];
|
|
4122
|
+
readonly stateMutability: "view";
|
|
4123
|
+
readonly type: "function";
|
|
3138
4124
|
}, {
|
|
3139
4125
|
readonly inputs: readonly [];
|
|
3140
4126
|
readonly name: "lido";
|
|
@@ -3259,6 +4245,16 @@ export declare const getLocatorContract: () => {
|
|
|
3259
4245
|
}];
|
|
3260
4246
|
readonly stateMutability: "view";
|
|
3261
4247
|
readonly type: "function";
|
|
4248
|
+
}, {
|
|
4249
|
+
readonly inputs: readonly [];
|
|
4250
|
+
readonly name: "vaultFactory";
|
|
4251
|
+
readonly outputs: readonly [{
|
|
4252
|
+
readonly internalType: "address";
|
|
4253
|
+
readonly name: "";
|
|
4254
|
+
readonly type: "address";
|
|
4255
|
+
}];
|
|
4256
|
+
readonly stateMutability: "view";
|
|
4257
|
+
readonly type: "function";
|
|
3262
4258
|
}, {
|
|
3263
4259
|
readonly inputs: readonly [];
|
|
3264
4260
|
readonly name: "vaultHub";
|
|
@@ -3299,8 +4295,8 @@ export declare const getLocatorContract: () => {
|
|
|
3299
4295
|
}];
|
|
3300
4296
|
readonly stateMutability: "view";
|
|
3301
4297
|
readonly type: "function";
|
|
3302
|
-
}], "
|
|
3303
|
-
|
|
4298
|
+
}], "withdrawalVault", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
4299
|
+
oracleDaemonConfig: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
3304
4300
|
readonly inputs: readonly [{
|
|
3305
4301
|
readonly components: readonly [{
|
|
3306
4302
|
readonly internalType: "address";
|
|
@@ -3370,6 +4366,14 @@ export declare const getLocatorContract: () => {
|
|
|
3370
4366
|
readonly internalType: "address";
|
|
3371
4367
|
readonly name: "vaultHub";
|
|
3372
4368
|
readonly type: "address";
|
|
4369
|
+
}, {
|
|
4370
|
+
readonly internalType: "address";
|
|
4371
|
+
readonly name: "vaultFactory";
|
|
4372
|
+
readonly type: "address";
|
|
4373
|
+
}, {
|
|
4374
|
+
readonly internalType: "address";
|
|
4375
|
+
readonly name: "lazyOracle";
|
|
4376
|
+
readonly type: "address";
|
|
3373
4377
|
}, {
|
|
3374
4378
|
readonly internalType: "address";
|
|
3375
4379
|
readonly name: "operatorGrid";
|
|
@@ -3465,6 +4469,16 @@ export declare const getLocatorContract: () => {
|
|
|
3465
4469
|
}];
|
|
3466
4470
|
readonly stateMutability: "view";
|
|
3467
4471
|
readonly type: "function";
|
|
4472
|
+
}, {
|
|
4473
|
+
readonly inputs: readonly [];
|
|
4474
|
+
readonly name: "lazyOracle";
|
|
4475
|
+
readonly outputs: readonly [{
|
|
4476
|
+
readonly internalType: "address";
|
|
4477
|
+
readonly name: "";
|
|
4478
|
+
readonly type: "address";
|
|
4479
|
+
}];
|
|
4480
|
+
readonly stateMutability: "view";
|
|
4481
|
+
readonly type: "function";
|
|
3468
4482
|
}, {
|
|
3469
4483
|
readonly inputs: readonly [];
|
|
3470
4484
|
readonly name: "lido";
|
|
@@ -3589,6 +4603,16 @@ export declare const getLocatorContract: () => {
|
|
|
3589
4603
|
}];
|
|
3590
4604
|
readonly stateMutability: "view";
|
|
3591
4605
|
readonly type: "function";
|
|
4606
|
+
}, {
|
|
4607
|
+
readonly inputs: readonly [];
|
|
4608
|
+
readonly name: "vaultFactory";
|
|
4609
|
+
readonly outputs: readonly [{
|
|
4610
|
+
readonly internalType: "address";
|
|
4611
|
+
readonly name: "";
|
|
4612
|
+
readonly type: "address";
|
|
4613
|
+
}];
|
|
4614
|
+
readonly stateMutability: "view";
|
|
4615
|
+
readonly type: "function";
|
|
3592
4616
|
}, {
|
|
3593
4617
|
readonly inputs: readonly [];
|
|
3594
4618
|
readonly name: "vaultHub";
|
|
@@ -3629,8 +4653,8 @@ export declare const getLocatorContract: () => {
|
|
|
3629
4653
|
}];
|
|
3630
4654
|
readonly stateMutability: "view";
|
|
3631
4655
|
readonly type: "function";
|
|
3632
|
-
}], "
|
|
3633
|
-
|
|
4656
|
+
}], "oracleDaemonConfig", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
4657
|
+
accounting: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
3634
4658
|
readonly inputs: readonly [{
|
|
3635
4659
|
readonly components: readonly [{
|
|
3636
4660
|
readonly internalType: "address";
|
|
@@ -3700,6 +4724,14 @@ export declare const getLocatorContract: () => {
|
|
|
3700
4724
|
readonly internalType: "address";
|
|
3701
4725
|
readonly name: "vaultHub";
|
|
3702
4726
|
readonly type: "address";
|
|
4727
|
+
}, {
|
|
4728
|
+
readonly internalType: "address";
|
|
4729
|
+
readonly name: "vaultFactory";
|
|
4730
|
+
readonly type: "address";
|
|
4731
|
+
}, {
|
|
4732
|
+
readonly internalType: "address";
|
|
4733
|
+
readonly name: "lazyOracle";
|
|
4734
|
+
readonly type: "address";
|
|
3703
4735
|
}, {
|
|
3704
4736
|
readonly internalType: "address";
|
|
3705
4737
|
readonly name: "operatorGrid";
|
|
@@ -3795,6 +4827,16 @@ export declare const getLocatorContract: () => {
|
|
|
3795
4827
|
}];
|
|
3796
4828
|
readonly stateMutability: "view";
|
|
3797
4829
|
readonly type: "function";
|
|
4830
|
+
}, {
|
|
4831
|
+
readonly inputs: readonly [];
|
|
4832
|
+
readonly name: "lazyOracle";
|
|
4833
|
+
readonly outputs: readonly [{
|
|
4834
|
+
readonly internalType: "address";
|
|
4835
|
+
readonly name: "";
|
|
4836
|
+
readonly type: "address";
|
|
4837
|
+
}];
|
|
4838
|
+
readonly stateMutability: "view";
|
|
4839
|
+
readonly type: "function";
|
|
3798
4840
|
}, {
|
|
3799
4841
|
readonly inputs: readonly [];
|
|
3800
4842
|
readonly name: "lido";
|
|
@@ -3919,6 +4961,16 @@ export declare const getLocatorContract: () => {
|
|
|
3919
4961
|
}];
|
|
3920
4962
|
readonly stateMutability: "view";
|
|
3921
4963
|
readonly type: "function";
|
|
4964
|
+
}, {
|
|
4965
|
+
readonly inputs: readonly [];
|
|
4966
|
+
readonly name: "vaultFactory";
|
|
4967
|
+
readonly outputs: readonly [{
|
|
4968
|
+
readonly internalType: "address";
|
|
4969
|
+
readonly name: "";
|
|
4970
|
+
readonly type: "address";
|
|
4971
|
+
}];
|
|
4972
|
+
readonly stateMutability: "view";
|
|
4973
|
+
readonly type: "function";
|
|
3922
4974
|
}, {
|
|
3923
4975
|
readonly inputs: readonly [];
|
|
3924
4976
|
readonly name: "vaultHub";
|
|
@@ -3959,8 +5011,8 @@ export declare const getLocatorContract: () => {
|
|
|
3959
5011
|
}];
|
|
3960
5012
|
readonly stateMutability: "view";
|
|
3961
5013
|
readonly type: "function";
|
|
3962
|
-
}], "
|
|
3963
|
-
|
|
5014
|
+
}], "accounting", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5015
|
+
predepositGuarantee: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
3964
5016
|
readonly inputs: readonly [{
|
|
3965
5017
|
readonly components: readonly [{
|
|
3966
5018
|
readonly internalType: "address";
|
|
@@ -4030,6 +5082,14 @@ export declare const getLocatorContract: () => {
|
|
|
4030
5082
|
readonly internalType: "address";
|
|
4031
5083
|
readonly name: "vaultHub";
|
|
4032
5084
|
readonly type: "address";
|
|
5085
|
+
}, {
|
|
5086
|
+
readonly internalType: "address";
|
|
5087
|
+
readonly name: "vaultFactory";
|
|
5088
|
+
readonly type: "address";
|
|
5089
|
+
}, {
|
|
5090
|
+
readonly internalType: "address";
|
|
5091
|
+
readonly name: "lazyOracle";
|
|
5092
|
+
readonly type: "address";
|
|
4033
5093
|
}, {
|
|
4034
5094
|
readonly internalType: "address";
|
|
4035
5095
|
readonly name: "operatorGrid";
|
|
@@ -4125,6 +5185,16 @@ export declare const getLocatorContract: () => {
|
|
|
4125
5185
|
}];
|
|
4126
5186
|
readonly stateMutability: "view";
|
|
4127
5187
|
readonly type: "function";
|
|
5188
|
+
}, {
|
|
5189
|
+
readonly inputs: readonly [];
|
|
5190
|
+
readonly name: "lazyOracle";
|
|
5191
|
+
readonly outputs: readonly [{
|
|
5192
|
+
readonly internalType: "address";
|
|
5193
|
+
readonly name: "";
|
|
5194
|
+
readonly type: "address";
|
|
5195
|
+
}];
|
|
5196
|
+
readonly stateMutability: "view";
|
|
5197
|
+
readonly type: "function";
|
|
4128
5198
|
}, {
|
|
4129
5199
|
readonly inputs: readonly [];
|
|
4130
5200
|
readonly name: "lido";
|
|
@@ -4249,6 +5319,16 @@ export declare const getLocatorContract: () => {
|
|
|
4249
5319
|
}];
|
|
4250
5320
|
readonly stateMutability: "view";
|
|
4251
5321
|
readonly type: "function";
|
|
5322
|
+
}, {
|
|
5323
|
+
readonly inputs: readonly [];
|
|
5324
|
+
readonly name: "vaultFactory";
|
|
5325
|
+
readonly outputs: readonly [{
|
|
5326
|
+
readonly internalType: "address";
|
|
5327
|
+
readonly name: "";
|
|
5328
|
+
readonly type: "address";
|
|
5329
|
+
}];
|
|
5330
|
+
readonly stateMutability: "view";
|
|
5331
|
+
readonly type: "function";
|
|
4252
5332
|
}, {
|
|
4253
5333
|
readonly inputs: readonly [];
|
|
4254
5334
|
readonly name: "vaultHub";
|
|
@@ -4289,8 +5369,8 @@ export declare const getLocatorContract: () => {
|
|
|
4289
5369
|
}];
|
|
4290
5370
|
readonly stateMutability: "view";
|
|
4291
5371
|
readonly type: "function";
|
|
4292
|
-
}], "
|
|
4293
|
-
|
|
5372
|
+
}], "predepositGuarantee", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5373
|
+
wstETH: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
4294
5374
|
readonly inputs: readonly [{
|
|
4295
5375
|
readonly components: readonly [{
|
|
4296
5376
|
readonly internalType: "address";
|
|
@@ -4360,6 +5440,14 @@ export declare const getLocatorContract: () => {
|
|
|
4360
5440
|
readonly internalType: "address";
|
|
4361
5441
|
readonly name: "vaultHub";
|
|
4362
5442
|
readonly type: "address";
|
|
5443
|
+
}, {
|
|
5444
|
+
readonly internalType: "address";
|
|
5445
|
+
readonly name: "vaultFactory";
|
|
5446
|
+
readonly type: "address";
|
|
5447
|
+
}, {
|
|
5448
|
+
readonly internalType: "address";
|
|
5449
|
+
readonly name: "lazyOracle";
|
|
5450
|
+
readonly type: "address";
|
|
4363
5451
|
}, {
|
|
4364
5452
|
readonly internalType: "address";
|
|
4365
5453
|
readonly name: "operatorGrid";
|
|
@@ -4455,6 +5543,16 @@ export declare const getLocatorContract: () => {
|
|
|
4455
5543
|
}];
|
|
4456
5544
|
readonly stateMutability: "view";
|
|
4457
5545
|
readonly type: "function";
|
|
5546
|
+
}, {
|
|
5547
|
+
readonly inputs: readonly [];
|
|
5548
|
+
readonly name: "lazyOracle";
|
|
5549
|
+
readonly outputs: readonly [{
|
|
5550
|
+
readonly internalType: "address";
|
|
5551
|
+
readonly name: "";
|
|
5552
|
+
readonly type: "address";
|
|
5553
|
+
}];
|
|
5554
|
+
readonly stateMutability: "view";
|
|
5555
|
+
readonly type: "function";
|
|
4458
5556
|
}, {
|
|
4459
5557
|
readonly inputs: readonly [];
|
|
4460
5558
|
readonly name: "lido";
|
|
@@ -4579,6 +5677,16 @@ export declare const getLocatorContract: () => {
|
|
|
4579
5677
|
}];
|
|
4580
5678
|
readonly stateMutability: "view";
|
|
4581
5679
|
readonly type: "function";
|
|
5680
|
+
}, {
|
|
5681
|
+
readonly inputs: readonly [];
|
|
5682
|
+
readonly name: "vaultFactory";
|
|
5683
|
+
readonly outputs: readonly [{
|
|
5684
|
+
readonly internalType: "address";
|
|
5685
|
+
readonly name: "";
|
|
5686
|
+
readonly type: "address";
|
|
5687
|
+
}];
|
|
5688
|
+
readonly stateMutability: "view";
|
|
5689
|
+
readonly type: "function";
|
|
4582
5690
|
}, {
|
|
4583
5691
|
readonly inputs: readonly [];
|
|
4584
5692
|
readonly name: "vaultHub";
|
|
@@ -4619,8 +5727,8 @@ export declare const getLocatorContract: () => {
|
|
|
4619
5727
|
}];
|
|
4620
5728
|
readonly stateMutability: "view";
|
|
4621
5729
|
readonly type: "function";
|
|
4622
|
-
}], "
|
|
4623
|
-
|
|
5730
|
+
}], "wstETH", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5731
|
+
vaultHub: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
4624
5732
|
readonly inputs: readonly [{
|
|
4625
5733
|
readonly components: readonly [{
|
|
4626
5734
|
readonly internalType: "address";
|
|
@@ -4690,6 +5798,14 @@ export declare const getLocatorContract: () => {
|
|
|
4690
5798
|
readonly internalType: "address";
|
|
4691
5799
|
readonly name: "vaultHub";
|
|
4692
5800
|
readonly type: "address";
|
|
5801
|
+
}, {
|
|
5802
|
+
readonly internalType: "address";
|
|
5803
|
+
readonly name: "vaultFactory";
|
|
5804
|
+
readonly type: "address";
|
|
5805
|
+
}, {
|
|
5806
|
+
readonly internalType: "address";
|
|
5807
|
+
readonly name: "lazyOracle";
|
|
5808
|
+
readonly type: "address";
|
|
4693
5809
|
}, {
|
|
4694
5810
|
readonly internalType: "address";
|
|
4695
5811
|
readonly name: "operatorGrid";
|
|
@@ -4785,6 +5901,16 @@ export declare const getLocatorContract: () => {
|
|
|
4785
5901
|
}];
|
|
4786
5902
|
readonly stateMutability: "view";
|
|
4787
5903
|
readonly type: "function";
|
|
5904
|
+
}, {
|
|
5905
|
+
readonly inputs: readonly [];
|
|
5906
|
+
readonly name: "lazyOracle";
|
|
5907
|
+
readonly outputs: readonly [{
|
|
5908
|
+
readonly internalType: "address";
|
|
5909
|
+
readonly name: "";
|
|
5910
|
+
readonly type: "address";
|
|
5911
|
+
}];
|
|
5912
|
+
readonly stateMutability: "view";
|
|
5913
|
+
readonly type: "function";
|
|
4788
5914
|
}, {
|
|
4789
5915
|
readonly inputs: readonly [];
|
|
4790
5916
|
readonly name: "lido";
|
|
@@ -4909,6 +6035,16 @@ export declare const getLocatorContract: () => {
|
|
|
4909
6035
|
}];
|
|
4910
6036
|
readonly stateMutability: "view";
|
|
4911
6037
|
readonly type: "function";
|
|
6038
|
+
}, {
|
|
6039
|
+
readonly inputs: readonly [];
|
|
6040
|
+
readonly name: "vaultFactory";
|
|
6041
|
+
readonly outputs: readonly [{
|
|
6042
|
+
readonly internalType: "address";
|
|
6043
|
+
readonly name: "";
|
|
6044
|
+
readonly type: "address";
|
|
6045
|
+
}];
|
|
6046
|
+
readonly stateMutability: "view";
|
|
6047
|
+
readonly type: "function";
|
|
4912
6048
|
}, {
|
|
4913
6049
|
readonly inputs: readonly [];
|
|
4914
6050
|
readonly name: "vaultHub";
|
|
@@ -4949,8 +6085,8 @@ export declare const getLocatorContract: () => {
|
|
|
4949
6085
|
}];
|
|
4950
6086
|
readonly stateMutability: "view";
|
|
4951
6087
|
readonly type: "function";
|
|
4952
|
-
}], "
|
|
4953
|
-
|
|
6088
|
+
}], "vaultHub", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
6089
|
+
vaultFactory: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
4954
6090
|
readonly inputs: readonly [{
|
|
4955
6091
|
readonly components: readonly [{
|
|
4956
6092
|
readonly internalType: "address";
|
|
@@ -5020,6 +6156,14 @@ export declare const getLocatorContract: () => {
|
|
|
5020
6156
|
readonly internalType: "address";
|
|
5021
6157
|
readonly name: "vaultHub";
|
|
5022
6158
|
readonly type: "address";
|
|
6159
|
+
}, {
|
|
6160
|
+
readonly internalType: "address";
|
|
6161
|
+
readonly name: "vaultFactory";
|
|
6162
|
+
readonly type: "address";
|
|
6163
|
+
}, {
|
|
6164
|
+
readonly internalType: "address";
|
|
6165
|
+
readonly name: "lazyOracle";
|
|
6166
|
+
readonly type: "address";
|
|
5023
6167
|
}, {
|
|
5024
6168
|
readonly internalType: "address";
|
|
5025
6169
|
readonly name: "operatorGrid";
|
|
@@ -5115,6 +6259,16 @@ export declare const getLocatorContract: () => {
|
|
|
5115
6259
|
}];
|
|
5116
6260
|
readonly stateMutability: "view";
|
|
5117
6261
|
readonly type: "function";
|
|
6262
|
+
}, {
|
|
6263
|
+
readonly inputs: readonly [];
|
|
6264
|
+
readonly name: "lazyOracle";
|
|
6265
|
+
readonly outputs: readonly [{
|
|
6266
|
+
readonly internalType: "address";
|
|
6267
|
+
readonly name: "";
|
|
6268
|
+
readonly type: "address";
|
|
6269
|
+
}];
|
|
6270
|
+
readonly stateMutability: "view";
|
|
6271
|
+
readonly type: "function";
|
|
5118
6272
|
}, {
|
|
5119
6273
|
readonly inputs: readonly [];
|
|
5120
6274
|
readonly name: "lido";
|
|
@@ -5239,6 +6393,16 @@ export declare const getLocatorContract: () => {
|
|
|
5239
6393
|
}];
|
|
5240
6394
|
readonly stateMutability: "view";
|
|
5241
6395
|
readonly type: "function";
|
|
6396
|
+
}, {
|
|
6397
|
+
readonly inputs: readonly [];
|
|
6398
|
+
readonly name: "vaultFactory";
|
|
6399
|
+
readonly outputs: readonly [{
|
|
6400
|
+
readonly internalType: "address";
|
|
6401
|
+
readonly name: "";
|
|
6402
|
+
readonly type: "address";
|
|
6403
|
+
}];
|
|
6404
|
+
readonly stateMutability: "view";
|
|
6405
|
+
readonly type: "function";
|
|
5242
6406
|
}, {
|
|
5243
6407
|
readonly inputs: readonly [];
|
|
5244
6408
|
readonly name: "vaultHub";
|
|
@@ -5279,8 +6443,8 @@ export declare const getLocatorContract: () => {
|
|
|
5279
6443
|
}];
|
|
5280
6444
|
readonly stateMutability: "view";
|
|
5281
6445
|
readonly type: "function";
|
|
5282
|
-
}], "
|
|
5283
|
-
|
|
6446
|
+
}], "vaultFactory", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
6447
|
+
lazyOracle: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
5284
6448
|
readonly inputs: readonly [{
|
|
5285
6449
|
readonly components: readonly [{
|
|
5286
6450
|
readonly internalType: "address";
|
|
@@ -5350,6 +6514,14 @@ export declare const getLocatorContract: () => {
|
|
|
5350
6514
|
readonly internalType: "address";
|
|
5351
6515
|
readonly name: "vaultHub";
|
|
5352
6516
|
readonly type: "address";
|
|
6517
|
+
}, {
|
|
6518
|
+
readonly internalType: "address";
|
|
6519
|
+
readonly name: "vaultFactory";
|
|
6520
|
+
readonly type: "address";
|
|
6521
|
+
}, {
|
|
6522
|
+
readonly internalType: "address";
|
|
6523
|
+
readonly name: "lazyOracle";
|
|
6524
|
+
readonly type: "address";
|
|
5353
6525
|
}, {
|
|
5354
6526
|
readonly internalType: "address";
|
|
5355
6527
|
readonly name: "operatorGrid";
|
|
@@ -5445,6 +6617,16 @@ export declare const getLocatorContract: () => {
|
|
|
5445
6617
|
}];
|
|
5446
6618
|
readonly stateMutability: "view";
|
|
5447
6619
|
readonly type: "function";
|
|
6620
|
+
}, {
|
|
6621
|
+
readonly inputs: readonly [];
|
|
6622
|
+
readonly name: "lazyOracle";
|
|
6623
|
+
readonly outputs: readonly [{
|
|
6624
|
+
readonly internalType: "address";
|
|
6625
|
+
readonly name: "";
|
|
6626
|
+
readonly type: "address";
|
|
6627
|
+
}];
|
|
6628
|
+
readonly stateMutability: "view";
|
|
6629
|
+
readonly type: "function";
|
|
5448
6630
|
}, {
|
|
5449
6631
|
readonly inputs: readonly [];
|
|
5450
6632
|
readonly name: "lido";
|
|
@@ -5569,6 +6751,16 @@ export declare const getLocatorContract: () => {
|
|
|
5569
6751
|
}];
|
|
5570
6752
|
readonly stateMutability: "view";
|
|
5571
6753
|
readonly type: "function";
|
|
6754
|
+
}, {
|
|
6755
|
+
readonly inputs: readonly [];
|
|
6756
|
+
readonly name: "vaultFactory";
|
|
6757
|
+
readonly outputs: readonly [{
|
|
6758
|
+
readonly internalType: "address";
|
|
6759
|
+
readonly name: "";
|
|
6760
|
+
readonly type: "address";
|
|
6761
|
+
}];
|
|
6762
|
+
readonly stateMutability: "view";
|
|
6763
|
+
readonly type: "function";
|
|
5572
6764
|
}, {
|
|
5573
6765
|
readonly inputs: readonly [];
|
|
5574
6766
|
readonly name: "vaultHub";
|
|
@@ -5609,8 +6801,8 @@ export declare const getLocatorContract: () => {
|
|
|
5609
6801
|
}];
|
|
5610
6802
|
readonly stateMutability: "view";
|
|
5611
6803
|
readonly type: "function";
|
|
5612
|
-
}], "
|
|
5613
|
-
|
|
6804
|
+
}], "lazyOracle", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
6805
|
+
operatorGrid: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
5614
6806
|
readonly inputs: readonly [{
|
|
5615
6807
|
readonly components: readonly [{
|
|
5616
6808
|
readonly internalType: "address";
|
|
@@ -5680,6 +6872,14 @@ export declare const getLocatorContract: () => {
|
|
|
5680
6872
|
readonly internalType: "address";
|
|
5681
6873
|
readonly name: "vaultHub";
|
|
5682
6874
|
readonly type: "address";
|
|
6875
|
+
}, {
|
|
6876
|
+
readonly internalType: "address";
|
|
6877
|
+
readonly name: "vaultFactory";
|
|
6878
|
+
readonly type: "address";
|
|
6879
|
+
}, {
|
|
6880
|
+
readonly internalType: "address";
|
|
6881
|
+
readonly name: "lazyOracle";
|
|
6882
|
+
readonly type: "address";
|
|
5683
6883
|
}, {
|
|
5684
6884
|
readonly internalType: "address";
|
|
5685
6885
|
readonly name: "operatorGrid";
|
|
@@ -5775,6 +6975,16 @@ export declare const getLocatorContract: () => {
|
|
|
5775
6975
|
}];
|
|
5776
6976
|
readonly stateMutability: "view";
|
|
5777
6977
|
readonly type: "function";
|
|
6978
|
+
}, {
|
|
6979
|
+
readonly inputs: readonly [];
|
|
6980
|
+
readonly name: "lazyOracle";
|
|
6981
|
+
readonly outputs: readonly [{
|
|
6982
|
+
readonly internalType: "address";
|
|
6983
|
+
readonly name: "";
|
|
6984
|
+
readonly type: "address";
|
|
6985
|
+
}];
|
|
6986
|
+
readonly stateMutability: "view";
|
|
6987
|
+
readonly type: "function";
|
|
5778
6988
|
}, {
|
|
5779
6989
|
readonly inputs: readonly [];
|
|
5780
6990
|
readonly name: "lido";
|
|
@@ -5899,6 +7109,16 @@ export declare const getLocatorContract: () => {
|
|
|
5899
7109
|
}];
|
|
5900
7110
|
readonly stateMutability: "view";
|
|
5901
7111
|
readonly type: "function";
|
|
7112
|
+
}, {
|
|
7113
|
+
readonly inputs: readonly [];
|
|
7114
|
+
readonly name: "vaultFactory";
|
|
7115
|
+
readonly outputs: readonly [{
|
|
7116
|
+
readonly internalType: "address";
|
|
7117
|
+
readonly name: "";
|
|
7118
|
+
readonly type: "address";
|
|
7119
|
+
}];
|
|
7120
|
+
readonly stateMutability: "view";
|
|
7121
|
+
readonly type: "function";
|
|
5902
7122
|
}, {
|
|
5903
7123
|
readonly inputs: readonly [];
|
|
5904
7124
|
readonly name: "vaultHub";
|
|
@@ -5939,7 +7159,7 @@ export declare const getLocatorContract: () => {
|
|
|
5939
7159
|
}];
|
|
5940
7160
|
readonly stateMutability: "view";
|
|
5941
7161
|
readonly type: "function";
|
|
5942
|
-
}], "
|
|
7162
|
+
}], "operatorGrid", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<`0x${string}`>;
|
|
5943
7163
|
coreComponents: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
5944
7164
|
readonly inputs: readonly [{
|
|
5945
7165
|
readonly components: readonly [{
|
|
@@ -6010,6 +7230,14 @@ export declare const getLocatorContract: () => {
|
|
|
6010
7230
|
readonly internalType: "address";
|
|
6011
7231
|
readonly name: "vaultHub";
|
|
6012
7232
|
readonly type: "address";
|
|
7233
|
+
}, {
|
|
7234
|
+
readonly internalType: "address";
|
|
7235
|
+
readonly name: "vaultFactory";
|
|
7236
|
+
readonly type: "address";
|
|
7237
|
+
}, {
|
|
7238
|
+
readonly internalType: "address";
|
|
7239
|
+
readonly name: "lazyOracle";
|
|
7240
|
+
readonly type: "address";
|
|
6013
7241
|
}, {
|
|
6014
7242
|
readonly internalType: "address";
|
|
6015
7243
|
readonly name: "operatorGrid";
|
|
@@ -6105,6 +7333,16 @@ export declare const getLocatorContract: () => {
|
|
|
6105
7333
|
}];
|
|
6106
7334
|
readonly stateMutability: "view";
|
|
6107
7335
|
readonly type: "function";
|
|
7336
|
+
}, {
|
|
7337
|
+
readonly inputs: readonly [];
|
|
7338
|
+
readonly name: "lazyOracle";
|
|
7339
|
+
readonly outputs: readonly [{
|
|
7340
|
+
readonly internalType: "address";
|
|
7341
|
+
readonly name: "";
|
|
7342
|
+
readonly type: "address";
|
|
7343
|
+
}];
|
|
7344
|
+
readonly stateMutability: "view";
|
|
7345
|
+
readonly type: "function";
|
|
6108
7346
|
}, {
|
|
6109
7347
|
readonly inputs: readonly [];
|
|
6110
7348
|
readonly name: "lido";
|
|
@@ -6229,6 +7467,16 @@ export declare const getLocatorContract: () => {
|
|
|
6229
7467
|
}];
|
|
6230
7468
|
readonly stateMutability: "view";
|
|
6231
7469
|
readonly type: "function";
|
|
7470
|
+
}, {
|
|
7471
|
+
readonly inputs: readonly [];
|
|
7472
|
+
readonly name: "vaultFactory";
|
|
7473
|
+
readonly outputs: readonly [{
|
|
7474
|
+
readonly internalType: "address";
|
|
7475
|
+
readonly name: "";
|
|
7476
|
+
readonly type: "address";
|
|
7477
|
+
}];
|
|
7478
|
+
readonly stateMutability: "view";
|
|
7479
|
+
readonly type: "function";
|
|
6232
7480
|
}, {
|
|
6233
7481
|
readonly inputs: readonly [];
|
|
6234
7482
|
readonly name: "vaultHub";
|
|
@@ -6340,6 +7588,14 @@ export declare const getLocatorContract: () => {
|
|
|
6340
7588
|
readonly internalType: "address";
|
|
6341
7589
|
readonly name: "vaultHub";
|
|
6342
7590
|
readonly type: "address";
|
|
7591
|
+
}, {
|
|
7592
|
+
readonly internalType: "address";
|
|
7593
|
+
readonly name: "vaultFactory";
|
|
7594
|
+
readonly type: "address";
|
|
7595
|
+
}, {
|
|
7596
|
+
readonly internalType: "address";
|
|
7597
|
+
readonly name: "lazyOracle";
|
|
7598
|
+
readonly type: "address";
|
|
6343
7599
|
}, {
|
|
6344
7600
|
readonly internalType: "address";
|
|
6345
7601
|
readonly name: "operatorGrid";
|
|
@@ -6435,6 +7691,16 @@ export declare const getLocatorContract: () => {
|
|
|
6435
7691
|
}];
|
|
6436
7692
|
readonly stateMutability: "view";
|
|
6437
7693
|
readonly type: "function";
|
|
7694
|
+
}, {
|
|
7695
|
+
readonly inputs: readonly [];
|
|
7696
|
+
readonly name: "lazyOracle";
|
|
7697
|
+
readonly outputs: readonly [{
|
|
7698
|
+
readonly internalType: "address";
|
|
7699
|
+
readonly name: "";
|
|
7700
|
+
readonly type: "address";
|
|
7701
|
+
}];
|
|
7702
|
+
readonly stateMutability: "view";
|
|
7703
|
+
readonly type: "function";
|
|
6438
7704
|
}, {
|
|
6439
7705
|
readonly inputs: readonly [];
|
|
6440
7706
|
readonly name: "lido";
|
|
@@ -6559,6 +7825,16 @@ export declare const getLocatorContract: () => {
|
|
|
6559
7825
|
}];
|
|
6560
7826
|
readonly stateMutability: "view";
|
|
6561
7827
|
readonly type: "function";
|
|
7828
|
+
}, {
|
|
7829
|
+
readonly inputs: readonly [];
|
|
7830
|
+
readonly name: "vaultFactory";
|
|
7831
|
+
readonly outputs: readonly [{
|
|
7832
|
+
readonly internalType: "address";
|
|
7833
|
+
readonly name: "";
|
|
7834
|
+
readonly type: "address";
|
|
7835
|
+
}];
|
|
7836
|
+
readonly stateMutability: "view";
|
|
7837
|
+
readonly type: "function";
|
|
6562
7838
|
}, {
|
|
6563
7839
|
readonly inputs: readonly [];
|
|
6564
7840
|
readonly name: "vaultHub";
|
|
@@ -6672,6 +7948,14 @@ export declare const getLocatorContract: () => {
|
|
|
6672
7948
|
readonly internalType: "address";
|
|
6673
7949
|
readonly name: "vaultHub";
|
|
6674
7950
|
readonly type: "address";
|
|
7951
|
+
}, {
|
|
7952
|
+
readonly internalType: "address";
|
|
7953
|
+
readonly name: "vaultFactory";
|
|
7954
|
+
readonly type: "address";
|
|
7955
|
+
}, {
|
|
7956
|
+
readonly internalType: "address";
|
|
7957
|
+
readonly name: "lazyOracle";
|
|
7958
|
+
readonly type: "address";
|
|
6675
7959
|
}, {
|
|
6676
7960
|
readonly internalType: "address";
|
|
6677
7961
|
readonly name: "operatorGrid";
|
|
@@ -6767,6 +8051,16 @@ export declare const getLocatorContract: () => {
|
|
|
6767
8051
|
}];
|
|
6768
8052
|
readonly stateMutability: "view";
|
|
6769
8053
|
readonly type: "function";
|
|
8054
|
+
}, {
|
|
8055
|
+
readonly inputs: readonly [];
|
|
8056
|
+
readonly name: "lazyOracle";
|
|
8057
|
+
readonly outputs: readonly [{
|
|
8058
|
+
readonly internalType: "address";
|
|
8059
|
+
readonly name: "";
|
|
8060
|
+
readonly type: "address";
|
|
8061
|
+
}];
|
|
8062
|
+
readonly stateMutability: "view";
|
|
8063
|
+
readonly type: "function";
|
|
6770
8064
|
}, {
|
|
6771
8065
|
readonly inputs: readonly [];
|
|
6772
8066
|
readonly name: "lido";
|
|
@@ -6891,6 +8185,16 @@ export declare const getLocatorContract: () => {
|
|
|
6891
8185
|
}];
|
|
6892
8186
|
readonly stateMutability: "view";
|
|
6893
8187
|
readonly type: "function";
|
|
8188
|
+
}, {
|
|
8189
|
+
readonly inputs: readonly [];
|
|
8190
|
+
readonly name: "vaultFactory";
|
|
8191
|
+
readonly outputs: readonly [{
|
|
8192
|
+
readonly internalType: "address";
|
|
8193
|
+
readonly name: "";
|
|
8194
|
+
readonly type: "address";
|
|
8195
|
+
}];
|
|
8196
|
+
readonly stateMutability: "view";
|
|
8197
|
+
readonly type: "function";
|
|
6894
8198
|
}, {
|
|
6895
8199
|
readonly inputs: readonly [];
|
|
6896
8200
|
readonly name: "vaultHub";
|