@lidofinance/lsv-cli 1.0.0-alpha.53 → 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/contract.d.ts +2 -0
- package/dist/utils/contract.js +3 -1
- package/dist/utils/contract.js.map +1 -1
- 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
|
@@ -4,31 +4,27 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
4
4
|
readonly type: "error";
|
|
5
5
|
}, {
|
|
6
6
|
readonly inputs: readonly [];
|
|
7
|
-
readonly name: "
|
|
7
|
+
readonly name: "BeaconChainDepositsAlreadyPaused";
|
|
8
8
|
readonly type: "error";
|
|
9
9
|
}, {
|
|
10
10
|
readonly inputs: readonly [];
|
|
11
|
-
readonly name: "
|
|
11
|
+
readonly name: "BeaconChainDepositsAlreadyResumed";
|
|
12
12
|
readonly type: "error";
|
|
13
13
|
}, {
|
|
14
14
|
readonly inputs: readonly [];
|
|
15
|
-
readonly name: "
|
|
15
|
+
readonly name: "BeaconChainDepositsOnPause";
|
|
16
16
|
readonly type: "error";
|
|
17
17
|
}, {
|
|
18
18
|
readonly inputs: readonly [{
|
|
19
19
|
readonly internalType: "uint256";
|
|
20
|
-
readonly name: "
|
|
20
|
+
readonly name: "_balance";
|
|
21
21
|
readonly type: "uint256";
|
|
22
|
-
}
|
|
23
|
-
readonly name: "InsufficientBalance";
|
|
24
|
-
readonly type: "error";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [{
|
|
22
|
+
}, {
|
|
27
23
|
readonly internalType: "uint256";
|
|
28
|
-
readonly name: "
|
|
24
|
+
readonly name: "_required";
|
|
29
25
|
readonly type: "uint256";
|
|
30
26
|
}];
|
|
31
|
-
readonly name: "
|
|
27
|
+
readonly name: "InsufficientBalance";
|
|
32
28
|
readonly type: "error";
|
|
33
29
|
}, {
|
|
34
30
|
readonly inputs: readonly [{
|
|
@@ -42,14 +38,6 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
42
38
|
}];
|
|
43
39
|
readonly name: "InsufficientValidatorWithdrawalFee";
|
|
44
40
|
readonly type: "error";
|
|
45
|
-
}, {
|
|
46
|
-
readonly inputs: readonly [{
|
|
47
|
-
readonly internalType: "address";
|
|
48
|
-
readonly name: "depositor";
|
|
49
|
-
readonly type: "address";
|
|
50
|
-
}];
|
|
51
|
-
readonly name: "InvalidDepositor";
|
|
52
|
-
readonly type: "error";
|
|
53
41
|
}, {
|
|
54
42
|
readonly inputs: readonly [];
|
|
55
43
|
readonly name: "InvalidInitialization";
|
|
@@ -76,28 +64,12 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
76
64
|
readonly type: "error";
|
|
77
65
|
}, {
|
|
78
66
|
readonly inputs: readonly [];
|
|
79
|
-
readonly name: "
|
|
80
|
-
readonly type: "error";
|
|
81
|
-
}, {
|
|
82
|
-
readonly inputs: readonly [];
|
|
83
|
-
readonly name: "NewLockedNotGreaterThanCurrent";
|
|
67
|
+
readonly name: "NewDepositorSameAsPrevious";
|
|
84
68
|
readonly type: "error";
|
|
85
69
|
}, {
|
|
86
70
|
readonly inputs: readonly [];
|
|
87
71
|
readonly name: "NoWithdrawalRequests";
|
|
88
72
|
readonly type: "error";
|
|
89
|
-
}, {
|
|
90
|
-
readonly inputs: readonly [{
|
|
91
|
-
readonly internalType: "string";
|
|
92
|
-
readonly name: "operation";
|
|
93
|
-
readonly type: "string";
|
|
94
|
-
}, {
|
|
95
|
-
readonly internalType: "address";
|
|
96
|
-
readonly name: "sender";
|
|
97
|
-
readonly type: "address";
|
|
98
|
-
}];
|
|
99
|
-
readonly name: "NotAuthorized";
|
|
100
|
-
readonly type: "error";
|
|
101
73
|
}, {
|
|
102
74
|
readonly inputs: readonly [];
|
|
103
75
|
readonly name: "NotInitializing";
|
|
@@ -120,39 +92,15 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
120
92
|
readonly type: "error";
|
|
121
93
|
}, {
|
|
122
94
|
readonly inputs: readonly [];
|
|
123
|
-
readonly name: "
|
|
124
|
-
readonly type: "error";
|
|
125
|
-
}, {
|
|
126
|
-
readonly inputs: readonly [{
|
|
127
|
-
readonly internalType: "uint256";
|
|
128
|
-
readonly name: "totalValue";
|
|
129
|
-
readonly type: "uint256";
|
|
130
|
-
}, {
|
|
131
|
-
readonly internalType: "uint256";
|
|
132
|
-
readonly name: "rebalanceAmount";
|
|
133
|
-
readonly type: "uint256";
|
|
134
|
-
}];
|
|
135
|
-
readonly name: "RebalanceAmountExceedsTotalValue";
|
|
95
|
+
readonly name: "PubkeyLengthDoesNotMatchAmountLength";
|
|
136
96
|
readonly type: "error";
|
|
137
97
|
}, {
|
|
138
98
|
readonly inputs: readonly [];
|
|
139
|
-
readonly name: "
|
|
140
|
-
readonly type: "error";
|
|
141
|
-
}, {
|
|
142
|
-
readonly inputs: readonly [{
|
|
143
|
-
readonly internalType: "uint64";
|
|
144
|
-
readonly name: "currentTimestamp";
|
|
145
|
-
readonly type: "uint64";
|
|
146
|
-
}, {
|
|
147
|
-
readonly internalType: "uint64";
|
|
148
|
-
readonly name: "newTimestamp";
|
|
149
|
-
readonly type: "uint64";
|
|
150
|
-
}];
|
|
151
|
-
readonly name: "ReportTooOld";
|
|
99
|
+
readonly name: "SenderNotDepositor";
|
|
152
100
|
readonly type: "error";
|
|
153
101
|
}, {
|
|
154
102
|
readonly inputs: readonly [];
|
|
155
|
-
readonly name: "
|
|
103
|
+
readonly name: "SenderNotNodeOperator";
|
|
156
104
|
readonly type: "error";
|
|
157
105
|
}, {
|
|
158
106
|
readonly inputs: readonly [{
|
|
@@ -166,18 +114,6 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
166
114
|
}];
|
|
167
115
|
readonly name: "TransferFailed";
|
|
168
116
|
readonly type: "error";
|
|
169
|
-
}, {
|
|
170
|
-
readonly inputs: readonly [];
|
|
171
|
-
readonly name: "VaultConnected";
|
|
172
|
-
readonly type: "error";
|
|
173
|
-
}, {
|
|
174
|
-
readonly inputs: readonly [];
|
|
175
|
-
readonly name: "VaultHubAuthorized";
|
|
176
|
-
readonly type: "error";
|
|
177
|
-
}, {
|
|
178
|
-
readonly inputs: readonly [];
|
|
179
|
-
readonly name: "VaultHubNotAuthorized";
|
|
180
|
-
readonly type: "error";
|
|
181
117
|
}, {
|
|
182
118
|
readonly inputs: readonly [];
|
|
183
119
|
readonly name: "VaultOssified";
|
|
@@ -190,18 +126,6 @@ export declare const StakingVaultErrorsAbi: readonly [{
|
|
|
190
126
|
readonly inputs: readonly [];
|
|
191
127
|
readonly name: "WithdrawalFeeReadFailed";
|
|
192
128
|
readonly type: "error";
|
|
193
|
-
}, {
|
|
194
|
-
readonly inputs: readonly [{
|
|
195
|
-
readonly internalType: "address";
|
|
196
|
-
readonly name: "_sender";
|
|
197
|
-
readonly type: "address";
|
|
198
|
-
}, {
|
|
199
|
-
readonly internalType: "uint256";
|
|
200
|
-
readonly name: "_amount";
|
|
201
|
-
readonly type: "uint256";
|
|
202
|
-
}];
|
|
203
|
-
readonly name: "WithdrawalFeeRefundFailed";
|
|
204
|
-
readonly type: "error";
|
|
205
129
|
}, {
|
|
206
130
|
readonly inputs: readonly [{
|
|
207
131
|
readonly internalType: "bytes";
|
|
@@ -225,31 +149,27 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
225
149
|
readonly type: "error";
|
|
226
150
|
}, {
|
|
227
151
|
readonly inputs: readonly [];
|
|
228
|
-
readonly name: "
|
|
152
|
+
readonly name: "BeaconChainDepositsAlreadyPaused";
|
|
229
153
|
readonly type: "error";
|
|
230
154
|
}, {
|
|
231
155
|
readonly inputs: readonly [];
|
|
232
|
-
readonly name: "
|
|
156
|
+
readonly name: "BeaconChainDepositsAlreadyResumed";
|
|
233
157
|
readonly type: "error";
|
|
234
158
|
}, {
|
|
235
159
|
readonly inputs: readonly [];
|
|
236
|
-
readonly name: "
|
|
160
|
+
readonly name: "BeaconChainDepositsOnPause";
|
|
237
161
|
readonly type: "error";
|
|
238
162
|
}, {
|
|
239
163
|
readonly inputs: readonly [{
|
|
240
164
|
readonly internalType: "uint256";
|
|
241
|
-
readonly name: "
|
|
165
|
+
readonly name: "_balance";
|
|
242
166
|
readonly type: "uint256";
|
|
243
|
-
}
|
|
244
|
-
readonly name: "InsufficientBalance";
|
|
245
|
-
readonly type: "error";
|
|
246
|
-
}, {
|
|
247
|
-
readonly inputs: readonly [{
|
|
167
|
+
}, {
|
|
248
168
|
readonly internalType: "uint256";
|
|
249
|
-
readonly name: "
|
|
169
|
+
readonly name: "_required";
|
|
250
170
|
readonly type: "uint256";
|
|
251
171
|
}];
|
|
252
|
-
readonly name: "
|
|
172
|
+
readonly name: "InsufficientBalance";
|
|
253
173
|
readonly type: "error";
|
|
254
174
|
}, {
|
|
255
175
|
readonly inputs: readonly [{
|
|
@@ -263,14 +183,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
263
183
|
}];
|
|
264
184
|
readonly name: "InsufficientValidatorWithdrawalFee";
|
|
265
185
|
readonly type: "error";
|
|
266
|
-
}, {
|
|
267
|
-
readonly inputs: readonly [{
|
|
268
|
-
readonly internalType: "address";
|
|
269
|
-
readonly name: "depositor";
|
|
270
|
-
readonly type: "address";
|
|
271
|
-
}];
|
|
272
|
-
readonly name: "InvalidDepositor";
|
|
273
|
-
readonly type: "error";
|
|
274
186
|
}, {
|
|
275
187
|
readonly inputs: readonly [];
|
|
276
188
|
readonly name: "InvalidInitialization";
|
|
@@ -297,28 +209,12 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
297
209
|
readonly type: "error";
|
|
298
210
|
}, {
|
|
299
211
|
readonly inputs: readonly [];
|
|
300
|
-
readonly name: "
|
|
301
|
-
readonly type: "error";
|
|
302
|
-
}, {
|
|
303
|
-
readonly inputs: readonly [];
|
|
304
|
-
readonly name: "NewLockedNotGreaterThanCurrent";
|
|
212
|
+
readonly name: "NewDepositorSameAsPrevious";
|
|
305
213
|
readonly type: "error";
|
|
306
214
|
}, {
|
|
307
215
|
readonly inputs: readonly [];
|
|
308
216
|
readonly name: "NoWithdrawalRequests";
|
|
309
217
|
readonly type: "error";
|
|
310
|
-
}, {
|
|
311
|
-
readonly inputs: readonly [{
|
|
312
|
-
readonly internalType: "string";
|
|
313
|
-
readonly name: "operation";
|
|
314
|
-
readonly type: "string";
|
|
315
|
-
}, {
|
|
316
|
-
readonly internalType: "address";
|
|
317
|
-
readonly name: "sender";
|
|
318
|
-
readonly type: "address";
|
|
319
|
-
}];
|
|
320
|
-
readonly name: "NotAuthorized";
|
|
321
|
-
readonly type: "error";
|
|
322
218
|
}, {
|
|
323
219
|
readonly inputs: readonly [];
|
|
324
220
|
readonly name: "NotInitializing";
|
|
@@ -341,39 +237,15 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
341
237
|
readonly type: "error";
|
|
342
238
|
}, {
|
|
343
239
|
readonly inputs: readonly [];
|
|
344
|
-
readonly name: "
|
|
345
|
-
readonly type: "error";
|
|
346
|
-
}, {
|
|
347
|
-
readonly inputs: readonly [{
|
|
348
|
-
readonly internalType: "uint256";
|
|
349
|
-
readonly name: "totalValue";
|
|
350
|
-
readonly type: "uint256";
|
|
351
|
-
}, {
|
|
352
|
-
readonly internalType: "uint256";
|
|
353
|
-
readonly name: "rebalanceAmount";
|
|
354
|
-
readonly type: "uint256";
|
|
355
|
-
}];
|
|
356
|
-
readonly name: "RebalanceAmountExceedsTotalValue";
|
|
240
|
+
readonly name: "PubkeyLengthDoesNotMatchAmountLength";
|
|
357
241
|
readonly type: "error";
|
|
358
242
|
}, {
|
|
359
243
|
readonly inputs: readonly [];
|
|
360
|
-
readonly name: "
|
|
361
|
-
readonly type: "error";
|
|
362
|
-
}, {
|
|
363
|
-
readonly inputs: readonly [{
|
|
364
|
-
readonly internalType: "uint64";
|
|
365
|
-
readonly name: "currentTimestamp";
|
|
366
|
-
readonly type: "uint64";
|
|
367
|
-
}, {
|
|
368
|
-
readonly internalType: "uint64";
|
|
369
|
-
readonly name: "newTimestamp";
|
|
370
|
-
readonly type: "uint64";
|
|
371
|
-
}];
|
|
372
|
-
readonly name: "ReportTooOld";
|
|
244
|
+
readonly name: "SenderNotDepositor";
|
|
373
245
|
readonly type: "error";
|
|
374
246
|
}, {
|
|
375
247
|
readonly inputs: readonly [];
|
|
376
|
-
readonly name: "
|
|
248
|
+
readonly name: "SenderNotNodeOperator";
|
|
377
249
|
readonly type: "error";
|
|
378
250
|
}, {
|
|
379
251
|
readonly inputs: readonly [{
|
|
@@ -387,18 +259,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
387
259
|
}];
|
|
388
260
|
readonly name: "TransferFailed";
|
|
389
261
|
readonly type: "error";
|
|
390
|
-
}, {
|
|
391
|
-
readonly inputs: readonly [];
|
|
392
|
-
readonly name: "VaultConnected";
|
|
393
|
-
readonly type: "error";
|
|
394
|
-
}, {
|
|
395
|
-
readonly inputs: readonly [];
|
|
396
|
-
readonly name: "VaultHubAuthorized";
|
|
397
|
-
readonly type: "error";
|
|
398
|
-
}, {
|
|
399
|
-
readonly inputs: readonly [];
|
|
400
|
-
readonly name: "VaultHubNotAuthorized";
|
|
401
|
-
readonly type: "error";
|
|
402
262
|
}, {
|
|
403
263
|
readonly inputs: readonly [];
|
|
404
264
|
readonly name: "VaultOssified";
|
|
@@ -411,18 +271,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
411
271
|
readonly inputs: readonly [];
|
|
412
272
|
readonly name: "WithdrawalFeeReadFailed";
|
|
413
273
|
readonly type: "error";
|
|
414
|
-
}, {
|
|
415
|
-
readonly inputs: readonly [{
|
|
416
|
-
readonly internalType: "address";
|
|
417
|
-
readonly name: "_sender";
|
|
418
|
-
readonly type: "address";
|
|
419
|
-
}, {
|
|
420
|
-
readonly internalType: "uint256";
|
|
421
|
-
readonly name: "_amount";
|
|
422
|
-
readonly type: "uint256";
|
|
423
|
-
}];
|
|
424
|
-
readonly name: "WithdrawalFeeRefundFailed";
|
|
425
|
-
readonly type: "error";
|
|
426
274
|
}, {
|
|
427
275
|
readonly inputs: readonly [{
|
|
428
276
|
readonly internalType: "bytes";
|
|
@@ -441,10 +289,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
441
289
|
readonly type: "error";
|
|
442
290
|
}, {
|
|
443
291
|
readonly inputs: readonly [{
|
|
444
|
-
readonly internalType: "address";
|
|
445
|
-
readonly name: "_vaultHub";
|
|
446
|
-
readonly type: "address";
|
|
447
|
-
}, {
|
|
448
292
|
readonly internalType: "address";
|
|
449
293
|
readonly name: "_beaconChainDepositContract";
|
|
450
294
|
readonly type: "address";
|
|
@@ -464,11 +308,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
464
308
|
}, {
|
|
465
309
|
readonly anonymous: false;
|
|
466
310
|
readonly inputs: readonly [{
|
|
467
|
-
readonly indexed: true;
|
|
468
|
-
readonly internalType: "address";
|
|
469
|
-
readonly name: "_sender";
|
|
470
|
-
readonly type: "address";
|
|
471
|
-
}, {
|
|
472
311
|
readonly indexed: false;
|
|
473
312
|
readonly internalType: "uint256";
|
|
474
313
|
readonly name: "_deposits";
|
|
@@ -486,17 +325,32 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
486
325
|
readonly inputs: readonly [{
|
|
487
326
|
readonly indexed: true;
|
|
488
327
|
readonly internalType: "address";
|
|
489
|
-
readonly name: "
|
|
328
|
+
readonly name: "previousDepositor";
|
|
329
|
+
readonly type: "address";
|
|
330
|
+
}, {
|
|
331
|
+
readonly indexed: true;
|
|
332
|
+
readonly internalType: "address";
|
|
333
|
+
readonly name: "newDepositor";
|
|
490
334
|
readonly type: "address";
|
|
491
335
|
}];
|
|
492
336
|
readonly name: "DepositorSet";
|
|
493
337
|
readonly type: "event";
|
|
338
|
+
}, {
|
|
339
|
+
readonly anonymous: false;
|
|
340
|
+
readonly inputs: readonly [{
|
|
341
|
+
readonly indexed: false;
|
|
342
|
+
readonly internalType: "uint256";
|
|
343
|
+
readonly name: "amount";
|
|
344
|
+
readonly type: "uint256";
|
|
345
|
+
}];
|
|
346
|
+
readonly name: "EtherFunded";
|
|
347
|
+
readonly type: "event";
|
|
494
348
|
}, {
|
|
495
349
|
readonly anonymous: false;
|
|
496
350
|
readonly inputs: readonly [{
|
|
497
351
|
readonly indexed: true;
|
|
498
352
|
readonly internalType: "address";
|
|
499
|
-
readonly name: "
|
|
353
|
+
readonly name: "recipient";
|
|
500
354
|
readonly type: "address";
|
|
501
355
|
}, {
|
|
502
356
|
readonly indexed: false;
|
|
@@ -504,7 +358,7 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
504
358
|
readonly name: "amount";
|
|
505
359
|
readonly type: "uint256";
|
|
506
360
|
}];
|
|
507
|
-
readonly name: "
|
|
361
|
+
readonly name: "EtherWithdrawn";
|
|
508
362
|
readonly type: "event";
|
|
509
363
|
}, {
|
|
510
364
|
readonly anonymous: false;
|
|
@@ -519,27 +373,27 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
519
373
|
}, {
|
|
520
374
|
readonly anonymous: false;
|
|
521
375
|
readonly inputs: readonly [{
|
|
522
|
-
readonly indexed:
|
|
523
|
-
readonly internalType: "
|
|
524
|
-
readonly name: "
|
|
525
|
-
readonly type: "
|
|
376
|
+
readonly indexed: true;
|
|
377
|
+
readonly internalType: "address";
|
|
378
|
+
readonly name: "nodeOperator";
|
|
379
|
+
readonly type: "address";
|
|
526
380
|
}];
|
|
527
|
-
readonly name: "
|
|
528
|
-
readonly type: "event";
|
|
529
|
-
}, {
|
|
530
|
-
readonly anonymous: false;
|
|
531
|
-
readonly inputs: readonly [];
|
|
532
|
-
readonly name: "LockedReset";
|
|
381
|
+
readonly name: "NodeOperatorSet";
|
|
533
382
|
readonly type: "event";
|
|
534
383
|
}, {
|
|
535
384
|
readonly anonymous: false;
|
|
536
385
|
readonly inputs: readonly [{
|
|
537
386
|
readonly indexed: true;
|
|
538
387
|
readonly internalType: "address";
|
|
539
|
-
readonly name: "
|
|
388
|
+
readonly name: "previousOwner";
|
|
389
|
+
readonly type: "address";
|
|
390
|
+
}, {
|
|
391
|
+
readonly indexed: true;
|
|
392
|
+
readonly internalType: "address";
|
|
393
|
+
readonly name: "newOwner";
|
|
540
394
|
readonly type: "address";
|
|
541
395
|
}];
|
|
542
|
-
readonly name: "
|
|
396
|
+
readonly name: "OwnershipTransferStarted";
|
|
543
397
|
readonly type: "event";
|
|
544
398
|
}, {
|
|
545
399
|
readonly anonymous: false;
|
|
@@ -569,44 +423,34 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
569
423
|
}, {
|
|
570
424
|
readonly anonymous: false;
|
|
571
425
|
readonly inputs: readonly [{
|
|
572
|
-
readonly indexed: true;
|
|
573
|
-
readonly internalType: "uint64";
|
|
574
|
-
readonly name: "timestamp";
|
|
575
|
-
readonly type: "uint64";
|
|
576
|
-
}, {
|
|
577
|
-
readonly indexed: false;
|
|
578
|
-
readonly internalType: "uint256";
|
|
579
|
-
readonly name: "totalValue";
|
|
580
|
-
readonly type: "uint256";
|
|
581
|
-
}, {
|
|
582
426
|
readonly indexed: false;
|
|
583
|
-
readonly internalType: "
|
|
584
|
-
readonly name: "
|
|
585
|
-
readonly type: "
|
|
427
|
+
readonly internalType: "bytes";
|
|
428
|
+
readonly name: "pubkeys";
|
|
429
|
+
readonly type: "bytes";
|
|
586
430
|
}, {
|
|
587
431
|
readonly indexed: false;
|
|
588
432
|
readonly internalType: "uint256";
|
|
589
|
-
readonly name: "
|
|
433
|
+
readonly name: "excess";
|
|
590
434
|
readonly type: "uint256";
|
|
435
|
+
}, {
|
|
436
|
+
readonly indexed: true;
|
|
437
|
+
readonly internalType: "address";
|
|
438
|
+
readonly name: "refundRecipient";
|
|
439
|
+
readonly type: "address";
|
|
591
440
|
}];
|
|
592
|
-
readonly name: "
|
|
441
|
+
readonly name: "ValidatorEjectionsTriggered";
|
|
593
442
|
readonly type: "event";
|
|
594
443
|
}, {
|
|
595
444
|
readonly anonymous: false;
|
|
596
445
|
readonly inputs: readonly [{
|
|
597
|
-
readonly indexed: false;
|
|
598
|
-
readonly internalType: "address";
|
|
599
|
-
readonly name: "_sender";
|
|
600
|
-
readonly type: "address";
|
|
601
|
-
}, {
|
|
602
446
|
readonly indexed: true;
|
|
603
447
|
readonly internalType: "bytes";
|
|
604
|
-
readonly name: "
|
|
448
|
+
readonly name: "pubkey";
|
|
605
449
|
readonly type: "bytes";
|
|
606
450
|
}, {
|
|
607
451
|
readonly indexed: false;
|
|
608
452
|
readonly internalType: "bytes";
|
|
609
|
-
readonly name: "
|
|
453
|
+
readonly name: "pubkeyRaw";
|
|
610
454
|
readonly type: "bytes";
|
|
611
455
|
}];
|
|
612
456
|
readonly name: "ValidatorExitRequested";
|
|
@@ -614,62 +458,27 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
614
458
|
}, {
|
|
615
459
|
readonly anonymous: false;
|
|
616
460
|
readonly inputs: readonly [{
|
|
617
|
-
readonly indexed: true;
|
|
618
|
-
readonly internalType: "address";
|
|
619
|
-
readonly name: "_sender";
|
|
620
|
-
readonly type: "address";
|
|
621
|
-
}, {
|
|
622
461
|
readonly indexed: false;
|
|
623
462
|
readonly internalType: "bytes";
|
|
624
|
-
readonly name: "
|
|
463
|
+
readonly name: "pubkeys";
|
|
625
464
|
readonly type: "bytes";
|
|
626
465
|
}, {
|
|
627
466
|
readonly indexed: false;
|
|
628
467
|
readonly internalType: "uint64[]";
|
|
629
|
-
readonly name: "
|
|
468
|
+
readonly name: "amounts";
|
|
630
469
|
readonly type: "uint64[]";
|
|
631
|
-
}, {
|
|
632
|
-
readonly indexed: false;
|
|
633
|
-
readonly internalType: "address";
|
|
634
|
-
readonly name: "_refundRecipient";
|
|
635
|
-
readonly type: "address";
|
|
636
470
|
}, {
|
|
637
471
|
readonly indexed: false;
|
|
638
472
|
readonly internalType: "uint256";
|
|
639
|
-
readonly name: "
|
|
473
|
+
readonly name: "excess";
|
|
640
474
|
readonly type: "uint256";
|
|
641
|
-
}];
|
|
642
|
-
readonly name: "ValidatorWithdrawalTriggered";
|
|
643
|
-
readonly type: "event";
|
|
644
|
-
}, {
|
|
645
|
-
readonly anonymous: false;
|
|
646
|
-
readonly inputs: readonly [{
|
|
647
|
-
readonly indexed: false;
|
|
648
|
-
readonly internalType: "bool";
|
|
649
|
-
readonly name: "authorized";
|
|
650
|
-
readonly type: "bool";
|
|
651
|
-
}];
|
|
652
|
-
readonly name: "VaultHubAuthorizedSet";
|
|
653
|
-
readonly type: "event";
|
|
654
|
-
}, {
|
|
655
|
-
readonly anonymous: false;
|
|
656
|
-
readonly inputs: readonly [{
|
|
657
|
-
readonly indexed: true;
|
|
658
|
-
readonly internalType: "address";
|
|
659
|
-
readonly name: "sender";
|
|
660
|
-
readonly type: "address";
|
|
661
475
|
}, {
|
|
662
476
|
readonly indexed: true;
|
|
663
477
|
readonly internalType: "address";
|
|
664
|
-
readonly name: "
|
|
478
|
+
readonly name: "refundRecipient";
|
|
665
479
|
readonly type: "address";
|
|
666
|
-
}, {
|
|
667
|
-
readonly indexed: false;
|
|
668
|
-
readonly internalType: "uint256";
|
|
669
|
-
readonly name: "amount";
|
|
670
|
-
readonly type: "uint256";
|
|
671
480
|
}];
|
|
672
|
-
readonly name: "
|
|
481
|
+
readonly name: "ValidatorWithdrawalsTriggered";
|
|
673
482
|
readonly type: "event";
|
|
674
483
|
}, {
|
|
675
484
|
readonly inputs: readonly [];
|
|
@@ -683,17 +492,7 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
683
492
|
readonly type: "function";
|
|
684
493
|
}, {
|
|
685
494
|
readonly inputs: readonly [];
|
|
686
|
-
readonly name: "
|
|
687
|
-
readonly outputs: readonly [{
|
|
688
|
-
readonly internalType: "uint256";
|
|
689
|
-
readonly name: "";
|
|
690
|
-
readonly type: "uint256";
|
|
691
|
-
}];
|
|
692
|
-
readonly stateMutability: "view";
|
|
693
|
-
readonly type: "function";
|
|
694
|
-
}, {
|
|
695
|
-
readonly inputs: readonly [];
|
|
696
|
-
readonly name: "authorizeLidoVaultHub";
|
|
495
|
+
readonly name: "acceptOwnership";
|
|
697
496
|
readonly outputs: readonly [];
|
|
698
497
|
readonly stateMutability: "nonpayable";
|
|
699
498
|
readonly type: "function";
|
|
@@ -721,12 +520,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
721
520
|
}];
|
|
722
521
|
readonly stateMutability: "view";
|
|
723
522
|
readonly type: "function";
|
|
724
|
-
}, {
|
|
725
|
-
readonly inputs: readonly [];
|
|
726
|
-
readonly name: "deauthorizeLidoVaultHub";
|
|
727
|
-
readonly outputs: readonly [];
|
|
728
|
-
readonly stateMutability: "nonpayable";
|
|
729
|
-
readonly type: "function";
|
|
730
523
|
}, {
|
|
731
524
|
readonly inputs: readonly [{
|
|
732
525
|
readonly components: readonly [{
|
|
@@ -746,7 +539,7 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
746
539
|
readonly name: "depositDataRoot";
|
|
747
540
|
readonly type: "bytes32";
|
|
748
541
|
}];
|
|
749
|
-
readonly internalType: "struct
|
|
542
|
+
readonly internalType: "struct IStakingVault.Deposit[]";
|
|
750
543
|
readonly name: "_deposits";
|
|
751
544
|
readonly type: "tuple[]";
|
|
752
545
|
}];
|
|
@@ -764,6 +557,20 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
764
557
|
}];
|
|
765
558
|
readonly stateMutability: "view";
|
|
766
559
|
readonly type: "function";
|
|
560
|
+
}, {
|
|
561
|
+
readonly inputs: readonly [{
|
|
562
|
+
readonly internalType: "bytes";
|
|
563
|
+
readonly name: "_pubkeys";
|
|
564
|
+
readonly type: "bytes";
|
|
565
|
+
}, {
|
|
566
|
+
readonly internalType: "address";
|
|
567
|
+
readonly name: "_refundRecipient";
|
|
568
|
+
readonly type: "address";
|
|
569
|
+
}];
|
|
570
|
+
readonly name: "ejectValidators";
|
|
571
|
+
readonly outputs: readonly [];
|
|
572
|
+
readonly stateMutability: "payable";
|
|
573
|
+
readonly type: "function";
|
|
767
574
|
}, {
|
|
768
575
|
readonly inputs: readonly [];
|
|
769
576
|
readonly name: "fund";
|
|
@@ -780,16 +587,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
780
587
|
}];
|
|
781
588
|
readonly stateMutability: "view";
|
|
782
589
|
readonly type: "function";
|
|
783
|
-
}, {
|
|
784
|
-
readonly inputs: readonly [];
|
|
785
|
-
readonly name: "inOutDelta";
|
|
786
|
-
readonly outputs: readonly [{
|
|
787
|
-
readonly internalType: "int256";
|
|
788
|
-
readonly name: "";
|
|
789
|
-
readonly type: "int256";
|
|
790
|
-
}];
|
|
791
|
-
readonly stateMutability: "view";
|
|
792
|
-
readonly type: "function";
|
|
793
590
|
}, {
|
|
794
591
|
readonly inputs: readonly [{
|
|
795
592
|
readonly internalType: "address";
|
|
@@ -803,10 +600,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
803
600
|
readonly internalType: "address";
|
|
804
601
|
readonly name: "_depositor";
|
|
805
602
|
readonly type: "address";
|
|
806
|
-
}, {
|
|
807
|
-
readonly internalType: "bytes";
|
|
808
|
-
readonly name: "";
|
|
809
|
-
readonly type: "bytes";
|
|
810
603
|
}];
|
|
811
604
|
readonly name: "initialize";
|
|
812
605
|
readonly outputs: readonly [];
|
|
@@ -814,7 +607,7 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
814
607
|
readonly type: "function";
|
|
815
608
|
}, {
|
|
816
609
|
readonly inputs: readonly [];
|
|
817
|
-
readonly name: "
|
|
610
|
+
readonly name: "isOssified";
|
|
818
611
|
readonly outputs: readonly [{
|
|
819
612
|
readonly internalType: "bool";
|
|
820
613
|
readonly name: "";
|
|
@@ -822,49 +615,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
822
615
|
}];
|
|
823
616
|
readonly stateMutability: "view";
|
|
824
617
|
readonly type: "function";
|
|
825
|
-
}, {
|
|
826
|
-
readonly inputs: readonly [];
|
|
827
|
-
readonly name: "latestReport";
|
|
828
|
-
readonly outputs: readonly [{
|
|
829
|
-
readonly components: readonly [{
|
|
830
|
-
readonly internalType: "uint128";
|
|
831
|
-
readonly name: "totalValue";
|
|
832
|
-
readonly type: "uint128";
|
|
833
|
-
}, {
|
|
834
|
-
readonly internalType: "int128";
|
|
835
|
-
readonly name: "inOutDelta";
|
|
836
|
-
readonly type: "int128";
|
|
837
|
-
}, {
|
|
838
|
-
readonly internalType: "uint64";
|
|
839
|
-
readonly name: "timestamp";
|
|
840
|
-
readonly type: "uint64";
|
|
841
|
-
}];
|
|
842
|
-
readonly internalType: "struct IStakingVault.Report";
|
|
843
|
-
readonly name: "";
|
|
844
|
-
readonly type: "tuple";
|
|
845
|
-
}];
|
|
846
|
-
readonly stateMutability: "view";
|
|
847
|
-
readonly type: "function";
|
|
848
|
-
}, {
|
|
849
|
-
readonly inputs: readonly [{
|
|
850
|
-
readonly internalType: "uint256";
|
|
851
|
-
readonly name: "_locked";
|
|
852
|
-
readonly type: "uint256";
|
|
853
|
-
}];
|
|
854
|
-
readonly name: "lock";
|
|
855
|
-
readonly outputs: readonly [];
|
|
856
|
-
readonly stateMutability: "nonpayable";
|
|
857
|
-
readonly type: "function";
|
|
858
|
-
}, {
|
|
859
|
-
readonly inputs: readonly [];
|
|
860
|
-
readonly name: "locked";
|
|
861
|
-
readonly outputs: readonly [{
|
|
862
|
-
readonly internalType: "uint256";
|
|
863
|
-
readonly name: "";
|
|
864
|
-
readonly type: "uint256";
|
|
865
|
-
}];
|
|
866
|
-
readonly stateMutability: "view";
|
|
867
|
-
readonly type: "function";
|
|
868
618
|
}, {
|
|
869
619
|
readonly inputs: readonly [];
|
|
870
620
|
readonly name: "nodeOperator";
|
|
@@ -877,17 +627,7 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
877
627
|
readonly type: "function";
|
|
878
628
|
}, {
|
|
879
629
|
readonly inputs: readonly [];
|
|
880
|
-
readonly name: "
|
|
881
|
-
readonly outputs: readonly [{
|
|
882
|
-
readonly internalType: "bool";
|
|
883
|
-
readonly name: "";
|
|
884
|
-
readonly type: "bool";
|
|
885
|
-
}];
|
|
886
|
-
readonly stateMutability: "view";
|
|
887
|
-
readonly type: "function";
|
|
888
|
-
}, {
|
|
889
|
-
readonly inputs: readonly [];
|
|
890
|
-
readonly name: "ossifyStakingVault";
|
|
630
|
+
readonly name: "ossify";
|
|
891
631
|
readonly outputs: readonly [];
|
|
892
632
|
readonly stateMutability: "nonpayable";
|
|
893
633
|
readonly type: "function";
|
|
@@ -908,14 +648,14 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
908
648
|
readonly stateMutability: "nonpayable";
|
|
909
649
|
readonly type: "function";
|
|
910
650
|
}, {
|
|
911
|
-
readonly inputs: readonly [
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
readonly
|
|
651
|
+
readonly inputs: readonly [];
|
|
652
|
+
readonly name: "pendingOwner";
|
|
653
|
+
readonly outputs: readonly [{
|
|
654
|
+
readonly internalType: "address";
|
|
655
|
+
readonly name: "";
|
|
656
|
+
readonly type: "address";
|
|
915
657
|
}];
|
|
916
|
-
readonly
|
|
917
|
-
readonly outputs: readonly [];
|
|
918
|
-
readonly stateMutability: "nonpayable";
|
|
658
|
+
readonly stateMutability: "view";
|
|
919
659
|
readonly type: "function";
|
|
920
660
|
}, {
|
|
921
661
|
readonly inputs: readonly [];
|
|
@@ -923,28 +663,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
923
663
|
readonly outputs: readonly [];
|
|
924
664
|
readonly stateMutability: "nonpayable";
|
|
925
665
|
readonly type: "function";
|
|
926
|
-
}, {
|
|
927
|
-
readonly inputs: readonly [{
|
|
928
|
-
readonly internalType: "uint64";
|
|
929
|
-
readonly name: "_timestamp";
|
|
930
|
-
readonly type: "uint64";
|
|
931
|
-
}, {
|
|
932
|
-
readonly internalType: "uint256";
|
|
933
|
-
readonly name: "_totalValue";
|
|
934
|
-
readonly type: "uint256";
|
|
935
|
-
}, {
|
|
936
|
-
readonly internalType: "int256";
|
|
937
|
-
readonly name: "_inOutDelta";
|
|
938
|
-
readonly type: "int256";
|
|
939
|
-
}, {
|
|
940
|
-
readonly internalType: "uint256";
|
|
941
|
-
readonly name: "_locked";
|
|
942
|
-
readonly type: "uint256";
|
|
943
|
-
}];
|
|
944
|
-
readonly name: "report";
|
|
945
|
-
readonly outputs: readonly [];
|
|
946
|
-
readonly stateMutability: "nonpayable";
|
|
947
|
-
readonly type: "function";
|
|
948
666
|
}, {
|
|
949
667
|
readonly inputs: readonly [{
|
|
950
668
|
readonly internalType: "bytes";
|
|
@@ -955,12 +673,6 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
955
673
|
readonly outputs: readonly [];
|
|
956
674
|
readonly stateMutability: "nonpayable";
|
|
957
675
|
readonly type: "function";
|
|
958
|
-
}, {
|
|
959
|
-
readonly inputs: readonly [];
|
|
960
|
-
readonly name: "resetLocked";
|
|
961
|
-
readonly outputs: readonly [];
|
|
962
|
-
readonly stateMutability: "nonpayable";
|
|
963
|
-
readonly type: "function";
|
|
964
676
|
}, {
|
|
965
677
|
readonly inputs: readonly [];
|
|
966
678
|
readonly name: "resumeBeaconChainDeposits";
|
|
@@ -977,20 +689,10 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
977
689
|
readonly outputs: readonly [];
|
|
978
690
|
readonly stateMutability: "nonpayable";
|
|
979
691
|
readonly type: "function";
|
|
980
|
-
}, {
|
|
981
|
-
readonly inputs: readonly [];
|
|
982
|
-
readonly name: "totalValue";
|
|
983
|
-
readonly outputs: readonly [{
|
|
984
|
-
readonly internalType: "uint256";
|
|
985
|
-
readonly name: "";
|
|
986
|
-
readonly type: "uint256";
|
|
987
|
-
}];
|
|
988
|
-
readonly stateMutability: "view";
|
|
989
|
-
readonly type: "function";
|
|
990
692
|
}, {
|
|
991
693
|
readonly inputs: readonly [{
|
|
992
694
|
readonly internalType: "address";
|
|
993
|
-
readonly name: "
|
|
695
|
+
readonly name: "_newOwner";
|
|
994
696
|
readonly type: "address";
|
|
995
697
|
}];
|
|
996
698
|
readonly name: "transferOwnership";
|
|
@@ -1008,43 +710,13 @@ export declare const StakingVaultAbi: readonly [{
|
|
|
1008
710
|
readonly type: "uint64[]";
|
|
1009
711
|
}, {
|
|
1010
712
|
readonly internalType: "address";
|
|
1011
|
-
readonly name: "
|
|
713
|
+
readonly name: "_excessRefundRecipient";
|
|
1012
714
|
readonly type: "address";
|
|
1013
715
|
}];
|
|
1014
|
-
readonly name: "
|
|
716
|
+
readonly name: "triggerValidatorWithdrawals";
|
|
1015
717
|
readonly outputs: readonly [];
|
|
1016
718
|
readonly stateMutability: "payable";
|
|
1017
719
|
readonly type: "function";
|
|
1018
|
-
}, {
|
|
1019
|
-
readonly inputs: readonly [];
|
|
1020
|
-
readonly name: "unlocked";
|
|
1021
|
-
readonly outputs: readonly [{
|
|
1022
|
-
readonly internalType: "uint256";
|
|
1023
|
-
readonly name: "";
|
|
1024
|
-
readonly type: "uint256";
|
|
1025
|
-
}];
|
|
1026
|
-
readonly stateMutability: "view";
|
|
1027
|
-
readonly type: "function";
|
|
1028
|
-
}, {
|
|
1029
|
-
readonly inputs: readonly [];
|
|
1030
|
-
readonly name: "vaultHub";
|
|
1031
|
-
readonly outputs: readonly [{
|
|
1032
|
-
readonly internalType: "address";
|
|
1033
|
-
readonly name: "";
|
|
1034
|
-
readonly type: "address";
|
|
1035
|
-
}];
|
|
1036
|
-
readonly stateMutability: "view";
|
|
1037
|
-
readonly type: "function";
|
|
1038
|
-
}, {
|
|
1039
|
-
readonly inputs: readonly [];
|
|
1040
|
-
readonly name: "vaultHubAuthorized";
|
|
1041
|
-
readonly outputs: readonly [{
|
|
1042
|
-
readonly internalType: "bool";
|
|
1043
|
-
readonly name: "";
|
|
1044
|
-
readonly type: "bool";
|
|
1045
|
-
}];
|
|
1046
|
-
readonly stateMutability: "view";
|
|
1047
|
-
readonly type: "function";
|
|
1048
720
|
}, {
|
|
1049
721
|
readonly inputs: readonly [];
|
|
1050
722
|
readonly name: "version";
|