@lidofinance/lsv-cli 1.0.0-alpha.8 → 1.0.0
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/LICENSE +1 -1
- package/README.md +49 -232
- 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 +2542 -0
- package/dist/abi/Dashboard.js +1699 -971
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +843 -0
- package/dist/abi/LazyOracle.js +1091 -0
- package/dist/abi/LazyOracle.js.map +1 -0
- package/dist/abi/LidoLocator.d.ts +386 -0
- package/dist/abi/LidoLocator.js +383 -273
- package/dist/abi/LidoLocator.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +1973 -0
- package/dist/abi/OperatorGrid.js +1574 -0
- package/dist/abi/OperatorGrid.js.map +1 -0
- package/dist/abi/PredepositGuarantee.d.ts +1710 -0
- package/dist/abi/PredepositGuarantee.js +2004 -0
- package/dist/abi/PredepositGuarantee.js.map +1 -0
- package/dist/abi/StEth.d.ts +372 -0
- package/dist/abi/StEth.js +342 -345
- package/dist/abi/StEth.js.map +1 -1
- package/dist/abi/StakingVault.d.ts +901 -0
- package/dist/abi/StakingVault.js +712 -547
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +1147 -0
- package/dist/abi/VaultFactory.js +252 -171
- package/dist/abi/VaultFactory.js.map +1 -1
- package/dist/abi/VaultHub.d.ts +2538 -0
- package/dist/abi/VaultHub.js +2226 -845
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +649 -0
- package/dist/abi/VaultViewer.js +847 -0
- package/dist/abi/VaultViewer.js.map +1 -0
- package/dist/abi/WstEth.d.ts +362 -0
- package/dist/abi/WstEth.js +478 -0
- package/dist/abi/WstEth.js.map +1 -0
- package/dist/abi/index.d.ts +12 -0
- package/dist/abi/index.js +12 -25
- package/dist/abi/index.js.map +1 -1
- package/dist/command/index.d.ts +2 -0
- package/dist/command/index.js +9 -21
- package/dist/command/index.js.map +1 -1
- package/dist/configs/constants.d.ts +35 -0
- package/dist/configs/constants.js +2 -5
- package/dist/configs/constants.js.map +1 -1
- package/dist/configs/deployed.d.ts +17 -0
- package/dist/configs/deployed.js +67 -126
- package/dist/configs/deployed.js.map +1 -1
- package/dist/configs/envs.d.ts +2 -0
- package/dist/configs/envs.js +13 -45
- package/dist/configs/envs.js.map +1 -1
- package/dist/configs/index.d.ts +3 -0
- package/dist/configs/index.js +3 -19
- package/dist/configs/index.js.map +1 -1
- package/dist/configs/utils.d.ts +4 -0
- package/dist/configs/utils.js +13 -23
- package/dist/configs/utils.js.map +1 -1
- package/dist/contracts/dashboard.d.ts +4 -0
- package/dist/contracts/dashboard.js +7 -15
- package/dist/contracts/dashboard.js.map +1 -1
- package/dist/contracts/index.d.ts +11 -0
- package/dist/contracts/index.js +11 -25
- 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 +9655 -0
- package/dist/contracts/locator.js +11 -15
- package/dist/contracts/locator.js.map +1 -1
- package/dist/contracts/operator-grid.d.ts +4 -0
- package/dist/contracts/operator-grid.js +17 -0
- package/dist/contracts/operator-grid.js.map +1 -0
- package/dist/contracts/pdg.d.ts +4 -0
- package/dist/contracts/pdg.js +17 -0
- package/dist/contracts/pdg.js.map +1 -0
- package/dist/contracts/steth.d.ts +27706 -0
- package/dist/contracts/steth.js +14 -15
- package/dist/contracts/steth.js.map +1 -1
- package/dist/contracts/vault-factory.d.ts +27674 -0
- package/dist/contracts/vault-factory.js +11 -19
- package/dist/contracts/vault-factory.js.map +1 -1
- package/dist/contracts/vault-hub.d.ts +3 -0
- package/dist/contracts/vault-hub.js +13 -17
- package/dist/contracts/vault-hub.js.map +1 -1
- package/dist/contracts/vault-viewer.d.ts +11789 -0
- package/dist/contracts/vault-viewer.js +23 -0
- package/dist/contracts/vault-viewer.js.map +1 -0
- package/dist/contracts/vault.d.ts +4 -0
- package/dist/contracts/vault.js +7 -14
- package/dist/contracts/vault.js.map +1 -1
- package/dist/contracts/wsteth.d.ts +24690 -0
- package/dist/contracts/wsteth.js +18 -0
- package/dist/contracts/wsteth.js.map +1 -0
- package/dist/features/dashboard.d.ts +5 -0
- package/dist/features/dashboard.js +14 -0
- package/dist/features/dashboard.js.map +1 -0
- 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 +22 -0
- package/dist/features/deposits/no-pdg.js +103 -0
- package/dist/features/deposits/no-pdg.js.map +1 -0
- package/dist/features/index.d.ts +11 -0
- package/dist/features/index.js +11 -19
- package/dist/features/index.js.map +1 -1
- package/dist/features/lazy-oracle.d.ts +1 -0
- package/dist/features/lazy-oracle.js +42 -0
- package/dist/features/lazy-oracle.js.map +1 -0
- package/dist/features/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/operator-grid.d.ts +2 -0
- package/dist/features/operator-grid.js +64 -0
- package/dist/features/operator-grid.js.map +1 -0
- package/dist/features/pdg.d.ts +4 -0
- package/dist/features/pdg.js +114 -0
- package/dist/features/pdg.js.map +1 -0
- package/dist/features/token-manager.d.ts +1 -0
- package/dist/features/token-manager.js +5 -4
- package/dist/features/token-manager.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 +6 -0
- package/dist/features/utils/index.js +7 -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/quarantine.d.ts +23 -0
- package/dist/features/utils/quarantine.js +47 -0
- package/dist/features/utils/quarantine.js.map +1 -0
- package/dist/features/utils/report-fresh.d.ts +3 -0
- package/dist/features/utils/report-fresh.js +36 -0
- package/dist/features/utils/report-fresh.js.map +1 -0
- package/dist/features/utils/settled-growth.d.ts +1 -0
- package/dist/features/utils/settled-growth.js +16 -0
- package/dist/features/utils/settled-growth.js.map +1 -0
- package/dist/features/vault-factory.d.ts +29 -0
- package/dist/features/vault-factory.js +88 -25
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-hub.d.ts +2 -0
- package/dist/features/vault-hub.js +84 -0
- package/dist/features/vault-hub.js.map +1 -0
- 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 +12 -0
- package/dist/features/vault-operations/dashboard-by-vault.js +36 -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 +27 -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 +108 -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 +150 -0
- package/dist/features/vault-operations/vault-overview.js.map +1 -0
- package/dist/features/vault-operations/vault-roles.d.ts +5 -0
- package/dist/features/vault-operations/vault-roles.js +64 -0
- package/dist/features/vault-operations/vault-roles.js.map +1 -0
- package/dist/features/vault-operations/vaults-by-role.d.ts +1 -0
- package/dist/features/vault-operations/vaults-by-role.js +48 -0
- package/dist/features/vault-operations/vaults-by-role.js.map +1 -0
- package/dist/features/vault.d.ts +2 -0
- package/dist/features/vault.js +50 -0
- package/dist/features/vault.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +26 -5
- package/dist/index.js.map +1 -1
- package/dist/programs/account/index.d.ts +3 -0
- package/dist/programs/account/index.js +4 -0
- package/dist/programs/account/index.js.map +1 -0
- package/dist/programs/account/main.d.ts +1 -0
- package/dist/programs/account/main.js +5 -0
- package/dist/programs/account/main.js.map +1 -0
- package/dist/programs/account/read.d.ts +1 -0
- package/dist/programs/account/read.js +79 -0
- package/dist/programs/account/read.js.map +1 -0
- package/dist/programs/account/write.d.ts +1 -0
- package/dist/programs/account/write.js +73 -0
- package/dist/programs/account/write.js.map +1 -0
- package/dist/programs/config.d.ts +1 -0
- package/dist/programs/config.js +12 -14
- package/dist/programs/config.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.d.ts +3 -0
- package/dist/programs/contracts/dashboard/config.js +120 -0
- package/dist/programs/contracts/dashboard/config.js.map +1 -0
- package/dist/programs/contracts/dashboard/index.d.ts +3 -0
- package/dist/programs/contracts/dashboard/index.js +4 -0
- package/dist/programs/contracts/dashboard/index.js.map +1 -0
- package/dist/programs/contracts/dashboard/main.d.ts +1 -0
- package/dist/programs/contracts/dashboard/main.js +5 -0
- package/dist/programs/contracts/dashboard/main.js.map +1 -0
- package/dist/programs/contracts/dashboard/read.d.ts +1 -0
- package/dist/programs/contracts/dashboard/read.js +133 -0
- package/dist/programs/contracts/dashboard/read.js.map +1 -0
- package/dist/programs/contracts/dashboard/write.d.ts +1 -0
- package/dist/programs/contracts/dashboard/write.js +723 -0
- 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 +155 -0
- package/dist/programs/contracts/hub/config.js.map +1 -0
- package/dist/programs/contracts/hub/index.d.ts +3 -0
- package/dist/programs/contracts/hub/index.js +4 -0
- package/dist/programs/contracts/hub/index.js.map +1 -0
- package/dist/programs/contracts/hub/main.d.ts +1 -0
- package/dist/programs/contracts/hub/main.js +5 -0
- package/dist/programs/contracts/hub/main.js.map +1 -0
- package/dist/programs/contracts/hub/read.d.ts +1 -0
- package/dist/programs/contracts/hub/read.js +54 -0
- package/dist/programs/contracts/hub/read.js.map +1 -0
- package/dist/programs/contracts/hub/write.d.ts +1 -0
- package/dist/programs/contracts/hub/write.js +363 -0
- package/dist/programs/contracts/hub/write.js.map +1 -0
- package/dist/programs/contracts/index.d.ts +9 -0
- package/dist/programs/contracts/index.js +10 -0
- package/dist/programs/contracts/index.js.map +1 -0
- package/dist/programs/contracts/lazy-oracle/config.d.ts +3 -0
- package/dist/programs/contracts/lazy-oracle/config.js +62 -0
- package/dist/programs/contracts/lazy-oracle/config.js.map +1 -0
- package/dist/programs/contracts/lazy-oracle/index.d.ts +2 -0
- package/dist/programs/contracts/lazy-oracle/index.js +3 -0
- package/dist/programs/contracts/lazy-oracle/index.js.map +1 -0
- package/dist/programs/contracts/lazy-oracle/main.d.ts +1 -0
- package/dist/programs/contracts/lazy-oracle/main.js +5 -0
- package/dist/programs/contracts/lazy-oracle/main.js.map +1 -0
- package/dist/programs/contracts/lazy-oracle/read.d.ts +1 -0
- package/dist/programs/contracts/lazy-oracle/read.js +24 -0
- package/dist/programs/contracts/lazy-oracle/read.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/contracts/operator-grid/config.js +98 -0
- package/dist/programs/contracts/operator-grid/config.js.map +1 -0
- package/dist/programs/contracts/operator-grid/index.d.ts +3 -0
- package/dist/programs/contracts/operator-grid/index.js +4 -0
- package/dist/programs/contracts/operator-grid/index.js.map +1 -0
- package/dist/programs/contracts/operator-grid/main.d.ts +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/contracts/operator-grid/read.d.ts +1 -0
- package/dist/programs/contracts/operator-grid/read.js +50 -0
- package/dist/programs/contracts/operator-grid/read.js.map +1 -0
- package/dist/programs/contracts/operator-grid/write.d.ts +1 -0
- package/dist/programs/contracts/operator-grid/write.js +161 -0
- package/dist/programs/contracts/operator-grid/write.js.map +1 -0
- package/dist/programs/contracts/pdg/config.d.ts +3 -0
- package/dist/programs/contracts/pdg/config.js +167 -0
- package/dist/programs/contracts/pdg/config.js.map +1 -0
- package/dist/programs/contracts/pdg/index.d.ts +3 -0
- package/dist/programs/contracts/pdg/index.js +4 -0
- package/dist/programs/contracts/pdg/index.js.map +1 -0
- package/dist/programs/contracts/pdg/main.d.ts +1 -0
- package/dist/programs/contracts/pdg/main.js +5 -0
- package/dist/programs/contracts/pdg/main.js.map +1 -0
- package/dist/programs/contracts/pdg/read.d.ts +1 -0
- package/dist/programs/contracts/pdg/read.js +53 -0
- package/dist/programs/contracts/pdg/read.js.map +1 -0
- package/dist/programs/contracts/pdg/write.d.ts +1 -0
- package/dist/programs/contracts/pdg/write.js +325 -0
- package/dist/programs/contracts/pdg/write.js.map +1 -0
- package/dist/programs/contracts/vault/config.d.ts +3 -0
- package/dist/programs/contracts/vault/config.js +54 -0
- package/dist/programs/contracts/vault/config.js.map +1 -0
- package/dist/programs/contracts/vault/index.d.ts +3 -0
- package/dist/programs/contracts/vault/index.js +4 -0
- package/dist/programs/contracts/vault/index.js.map +1 -0
- package/dist/programs/contracts/vault/main.d.ts +1 -0
- package/dist/programs/contracts/vault/main.js +3 -0
- package/dist/programs/contracts/vault/main.js.map +1 -0
- package/dist/programs/contracts/vault/read.d.ts +1 -0
- package/dist/programs/contracts/vault/read.js +25 -0
- package/dist/programs/contracts/vault/read.js.map +1 -0
- package/dist/programs/contracts/vault/write.d.ts +1 -0
- package/dist/programs/contracts/vault/write.js +278 -0
- 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 +15 -0
- package/dist/programs/contracts/vault-factory/config.js.map +1 -0
- package/dist/programs/contracts/vault-factory/index.d.ts +3 -0
- package/dist/programs/contracts/vault-factory/index.js +4 -0
- package/dist/programs/contracts/vault-factory/index.js.map +1 -0
- package/dist/programs/contracts/vault-factory/main.d.ts +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/contracts/vault-factory/read.d.ts +1 -0
- package/dist/programs/contracts/vault-factory/read.js +24 -0
- package/dist/programs/contracts/vault-factory/read.js.map +1 -0
- package/dist/programs/contracts/vault-factory/write.d.ts +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 +120 -0
- package/dist/programs/contracts/vault-viewer/config.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/index.d.ts +2 -0
- package/dist/programs/contracts/vault-viewer/index.js +3 -0
- package/dist/programs/contracts/vault-viewer/index.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/main.d.ts +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/contracts/vault-viewer/read.js +131 -0
- package/dist/programs/contracts/vault-viewer/read.js.map +1 -0
- package/dist/programs/index.d.ts +4 -0
- package/dist/programs/index.js +4 -22
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/pdg-helpers.d.ts +1 -0
- package/dist/programs/pdg-helpers.js +257 -0
- package/dist/programs/pdg-helpers.js.map +1 -0
- package/dist/programs/use-cases/deposits/index.d.ts +3 -0
- package/dist/programs/use-cases/deposits/index.js +4 -0
- 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.d.ts +1 -0
- package/dist/programs/use-cases/deposits/read.js +94 -0
- package/dist/programs/use-cases/deposits/read.js.map +1 -0
- package/dist/programs/use-cases/deposits/write.d.ts +1 -0
- package/dist/programs/use-cases/deposits/write.js +202 -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.d.ts +2 -0
- package/dist/programs/use-cases/metrics/index.js +3 -0
- package/dist/programs/use-cases/metrics/index.js.map +1 -0
- package/dist/programs/use-cases/metrics/main.d.ts +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/use-cases/metrics/read.d.ts +1 -0
- package/dist/programs/use-cases/metrics/read.js +240 -0
- 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.d.ts +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/use-cases/report/read.d.ts +1 -0
- package/dist/programs/use-cases/report/read.js +111 -0
- package/dist/programs/use-cases/report/read.js.map +1 -0
- package/dist/programs/use-cases/report/write.d.ts +1 -0
- package/dist/programs/use-cases/report/write.js +99 -0
- package/dist/programs/use-cases/report/write.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/create-vault.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/create-vault.js +133 -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.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/read.js +58 -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 +315 -0
- package/dist/programs/use-cases/vault-operations/write.js.map +1 -0
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.js +1 -17
- package/dist/providers/index.js.map +1 -1
- package/dist/providers/wallet.d.ts +14564 -0
- package/dist/providers/wallet.js +63 -29
- package/dist/providers/wallet.js.map +1 -1
- package/dist/tests/utils/arguments.test.d.ts +1 -0
- package/dist/tests/utils/arguments.test.js +92 -0
- package/dist/tests/utils/arguments.test.js.map +1 -0
- package/dist/tests/utils/calculate-overview.test.d.ts +1 -0
- package/dist/tests/utils/calculate-overview.test.js +30 -0
- package/dist/tests/utils/calculate-overview.test.js.map +1 -0
- package/dist/tests/utils/data-validators.test.d.ts +1 -0
- package/dist/tests/utils/data-validators.test.js +56 -0
- package/dist/tests/utils/data-validators.test.js.map +1 -0
- package/dist/tests/utils/error-handler.test.d.ts +1 -0
- package/dist/tests/utils/error-handler.test.js +43 -0
- package/dist/tests/utils/error-handler.test.js.map +1 -0
- package/dist/tests/utils/get-commands.test.d.ts +1 -0
- package/dist/tests/utils/get-commands.test.js +19 -0
- package/dist/tests/utils/get-commands.test.js.map +1 -0
- package/dist/tests/utils/get-deposit-data-root.test.d.ts +1 -0
- package/dist/tests/utils/get-deposit-data-root.test.js +31 -0
- package/dist/tests/utils/get-deposit-data-root.test.js.map +1 -0
- package/dist/tests/utils/get-value.test.d.ts +1 -0
- package/dist/tests/utils/get-value.test.js +13 -0
- package/dist/tests/utils/get-value.test.js.map +1 -0
- package/dist/tests/utils/health.test.d.ts +1 -0
- package/dist/tests/utils/health.test.js +22 -0
- package/dist/tests/utils/health.test.js.map +1 -0
- package/dist/tests/utils/interrupt-handler.test.d.ts +1 -0
- package/dist/tests/utils/interrupt-handler.test.js +15 -0
- package/dist/tests/utils/interrupt-handler.test.js.map +1 -0
- package/dist/tests/utils/ipfs.test.d.ts +1 -0
- package/dist/tests/utils/ipfs.test.js +110 -0
- package/dist/tests/utils/ipfs.test.js.map +1 -0
- package/dist/tests/utils/logging.test.d.ts +1 -0
- package/dist/tests/utils/logging.test.js +23 -0
- package/dist/tests/utils/logging.test.js.map +1 -0
- package/dist/tests/utils/resove-path.test.d.ts +1 -0
- package/dist/tests/utils/resove-path.test.js +18 -0
- package/dist/tests/utils/resove-path.test.js.map +1 -0
- package/dist/tests/utils/sleep.test.d.ts +1 -0
- package/dist/tests/utils/sleep.test.js +14 -0
- package/dist/tests/utils/sleep.test.js.map +1 -0
- package/dist/types/common.d.ts +39 -0
- package/dist/types/common.js +1 -2
- package/dist/types/config.d.ts +26 -0
- package/dist/types/config.js +1 -2
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +2 -18
- package/dist/types/index.js.map +1 -1
- package/dist/utils/arguments.d.ts +17 -0
- package/dist/utils/arguments.js +112 -0
- package/dist/utils/arguments.js.map +1 -0
- package/dist/utils/bls.d.ts +21 -0
- package/dist/utils/bls.js +101 -0
- package/dist/utils/bls.js.map +1 -0
- package/dist/utils/cache.d.ts +18 -0
- package/dist/utils/cache.js +109 -0
- package/dist/utils/cache.js.map +1 -0
- package/dist/utils/calculate-overview-v2.d.ts +27 -0
- package/dist/utils/calculate-overview-v2.js +56 -0
- package/dist/utils/calculate-overview-v2.js.map +1 -0
- package/dist/utils/calculate-overview.d.ts +28 -0
- package/dist/utils/calculate-overview.js +57 -0
- package/dist/utils/calculate-overview.js.map +1 -0
- package/dist/utils/charts/blessed/charts-apr.d.ts +98 -0
- package/dist/utils/charts/blessed/charts-apr.js +122 -0
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -0
- package/dist/utils/charts/blessed/charts-rewards.d.ts +74 -0
- package/dist/utils/charts/blessed/charts-rewards.js +107 -0
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/constants.d.ts +22 -0
- package/dist/utils/charts/blessed/constants.js +23 -0
- package/dist/utils/charts/blessed/constants.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.d.ts +19 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.js +35 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/carry-spread.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/carry-spread.js +34 -0
- package/dist/utils/charts/blessed/datasets/carry-spread.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.js +34 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.d.ts +24 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.js +40 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/index.d.ts +9 -0
- package/dist/utils/charts/blessed/datasets/index.js +10 -0
- package/dist/utils/charts/blessed/datasets/index.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.d.ts +19 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.js +35 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.js +34 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.js +34 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.d.ts +24 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.js +40 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.d.ts +37 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js +147 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/types.d.ts +4 -0
- package/dist/utils/charts/blessed/datasets/types.js +2 -0
- package/dist/utils/charts/blessed/datasets/types.js.map +1 -0
- package/dist/utils/charts/blessed/index.d.ts +3 -0
- package/dist/utils/charts/blessed/index.js +4 -0
- package/dist/utils/charts/blessed/index.js.map +1 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.d.ts +13 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.js +19 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.js.map +1 -0
- package/dist/utils/charts/blessed/utils.d.ts +61 -0
- package/dist/utils/charts/blessed/utils.js +79 -0
- package/dist/utils/charts/blessed/utils.js.map +1 -0
- package/dist/utils/charts/index.d.ts +3 -0
- package/dist/utils/charts/index.js +4 -0
- package/dist/utils/charts/index.js.map +1 -0
- package/dist/utils/charts/metrics.d.ts +16 -0
- package/dist/utils/charts/metrics.js +160 -0
- package/dist/utils/charts/metrics.js.map +1 -0
- package/dist/utils/charts/overview.d.ts +10 -0
- package/dist/utils/charts/overview.js +89 -0
- package/dist/utils/charts/overview.js.map +1 -0
- package/dist/utils/charts/simple/index.d.ts +1 -0
- package/dist/utils/charts/simple/index.js +2 -0
- package/dist/utils/charts/simple/index.js.map +1 -0
- package/dist/utils/charts/simple/simple-charts.d.ts +7 -0
- package/dist/utils/charts/simple/simple-charts.js +79 -0
- package/dist/utils/charts/simple/simple-charts.js.map +1 -0
- package/dist/utils/commands/confirmations.d.ts +39 -0
- package/dist/utils/commands/confirmations.js +127 -0
- package/dist/utils/commands/confirmations.js.map +1 -0
- package/dist/utils/commands/index.d.ts +2 -0
- package/dist/utils/commands/index.js +3 -0
- package/dist/utils/commands/index.js.map +1 -0
- package/dist/utils/commands/report.d.ts +7 -0
- package/dist/utils/commands/report.js +43 -0
- package/dist/utils/commands/report.js.map +1 -0
- 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/csv-file.d.ts +6 -0
- package/dist/utils/csv-file.js +48 -0
- package/dist/utils/csv-file.js.map +1 -0
- package/dist/utils/data-validators.d.ts +6 -0
- package/dist/utils/data-validators.js +28 -25
- package/dist/utils/data-validators.js.map +1 -1
- package/dist/utils/error-handler.d.ts +1 -0
- package/dist/utils/error-handler.js +13 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/fetchCL.d.ts +36 -0
- package/dist/utils/fetchCL.js +81 -0
- package/dist/utils/fetchCL.js.map +1 -0
- package/dist/utils/get-commands.d.ts +2 -0
- package/dist/utils/get-commands.js +11 -0
- package/dist/utils/get-commands.js.map +1 -0
- package/dist/utils/get-deposit-data-root.d.ts +7 -0
- package/dist/utils/get-deposit-data-root.js +37 -0
- package/dist/utils/get-deposit-data-root.js.map +1 -0
- package/dist/utils/get-value.d.ts +1 -0
- package/dist/utils/get-value.js +5 -11
- package/dist/utils/get-value.js.map +1 -1
- package/dist/utils/health/calculate-health.d.ts +10 -0
- package/dist/utils/health/calculate-health.js +22 -0
- package/dist/utils/health/calculate-health.js.map +1 -0
- package/dist/utils/health/health-utils.d.ts +27743 -0
- package/dist/utils/health/health-utils.js +75 -0
- package/dist/utils/health/health-utils.js.map +1 -0
- package/dist/utils/health/index.d.ts +2 -0
- package/dist/utils/health/index.js +3 -0
- package/dist/utils/health/index.js.map +1 -0
- package/dist/utils/index.d.ts +35 -0
- package/dist/utils/index.js +35 -20
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/interrupt-handler.d.ts +3 -0
- package/dist/utils/interrupt-handler.js +28 -0
- package/dist/utils/interrupt-handler.js.map +1 -0
- package/dist/utils/ipfs.d.ts +17 -0
- package/dist/utils/ipfs.js +100 -0
- package/dist/utils/ipfs.js.map +1 -0
- package/dist/utils/lido-apr.d.ts +2 -0
- package/dist/utils/lido-apr.js +8 -0
- package/dist/utils/lido-apr.js.map +1 -0
- package/dist/utils/logging/console.d.ts +16 -0
- package/dist/utils/logging/console.js +44 -0
- package/dist/utils/logging/console.js.map +1 -0
- package/dist/utils/logging/constants.d.ts +4 -0
- package/dist/utils/logging/constants.js +18 -0
- package/dist/utils/logging/constants.js.map +1 -0
- package/dist/utils/logging/index.d.ts +1 -0
- package/dist/utils/logging/index.js +2 -0
- package/dist/utils/logging/index.js.map +1 -0
- package/dist/utils/prompts/confirmations.d.ts +2 -0
- package/dist/utils/prompts/confirmations.js +18 -0
- package/dist/utils/prompts/confirmations.js.map +1 -0
- package/dist/utils/prompts/default.d.ts +6 -0
- package/dist/utils/prompts/default.js +27 -0
- package/dist/utils/prompts/default.js.map +1 -0
- package/dist/utils/prompts/index.d.ts +6 -0
- package/dist/utils/prompts/index.js +7 -0
- package/dist/utils/prompts/index.js.map +1 -0
- 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/mint-burn/confirm-mint.d.ts +18 -0
- 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 +9 -0
- package/dist/utils/prompts/operations.js +52 -0
- package/dist/utils/prompts/operations.js.map +1 -0
- package/dist/utils/prompts/predeposit-guarantee.d.ts +3 -0
- package/dist/utils/prompts/predeposit-guarantee.js +23 -0
- package/dist/utils/prompts/predeposit-guarantee.js.map +1 -0
- package/dist/utils/prompts/vault.d.ts +2 -0
- package/dist/utils/prompts/vault.js +14 -0
- package/dist/utils/prompts/vault.js.map +1 -0
- package/dist/utils/proof/create-proof.d.ts +15 -0
- package/dist/utils/proof/create-proof.js +40 -0
- package/dist/utils/proof/create-proof.js.map +1 -0
- package/dist/utils/proof/first-validator-gindex.d.ts +1 -0
- package/dist/utils/proof/first-validator-gindex.js +32 -0
- package/dist/utils/proof/first-validator-gindex.js.map +1 -0
- package/dist/utils/proof/index.d.ts +3 -0
- package/dist/utils/proof/index.js +4 -0
- package/dist/utils/proof/index.js.map +1 -0
- package/dist/utils/proof/merkle-utils.d.ts +55 -0
- package/dist/utils/proof/merkle-utils.js +173 -0
- package/dist/utils/proof/merkle-utils.js.map +1 -0
- package/dist/utils/proof/proofs.d.ts +30 -0
- package/dist/utils/proof/proofs.js +52 -0
- package/dist/utils/proof/proofs.js.map +1 -0
- package/dist/utils/read-programs-by-abi.d.ts +27 -0
- package/dist/utils/read-programs-by-abi.js +92 -0
- package/dist/utils/read-programs-by-abi.js.map +1 -0
- package/dist/utils/rebase-rewards.d.ts +7 -0
- package/dist/utils/rebase-rewards.js +6 -0
- package/dist/utils/rebase-rewards.js.map +1 -0
- package/dist/utils/report/index.d.ts +4 -0
- package/dist/utils/report/index.js +5 -0
- package/dist/utils/report/index.js.map +1 -0
- package/dist/utils/report/report-proof.d.ts +39 -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 +19 -0
- package/dist/utils/report/report.js +134 -0
- package/dist/utils/report/report.js.map +1 -0
- package/dist/utils/report/statistic-data.d.ts +32 -0
- package/dist/utils/report/statistic-data.js +28 -0
- package/dist/utils/report/statistic-data.js.map +1 -0
- package/dist/utils/report/types.d.ts +60 -0
- package/dist/utils/report/types.js +2 -0
- package/dist/utils/report/types.js.map +1 -0
- package/dist/utils/resolve-path.d.ts +1 -0
- package/dist/utils/resolve-path.js +9 -12
- package/dist/utils/resolve-path.js.map +1 -1
- package/dist/utils/share-rate.d.ts +1 -0
- package/dist/utils/share-rate.js +16 -0
- package/dist/utils/share-rate.js.map +1 -0
- package/dist/utils/sleep.d.ts +1 -0
- package/dist/utils/sleep.js +1 -5
- package/dist/utils/sleep.js.map +1 -1
- package/dist/utils/snake-to-camel.d.ts +6 -0
- package/dist/utils/snake-to-camel.js +9 -0
- package/dist/utils/snake-to-camel.js.map +1 -0
- package/dist/utils/spinner/constants.d.ts +6 -0
- package/dist/utils/spinner/constants.js +120 -0
- package/dist/utils/spinner/constants.js.map +1 -0
- package/dist/utils/spinner/index.d.ts +1 -0
- package/dist/utils/spinner/index.js +2 -0
- package/dist/utils/spinner/index.js.map +1 -0
- package/dist/utils/spinner/spinners.d.ts +7 -0
- package/dist/utils/spinner/spinners.js +16 -0
- package/dist/utils/spinner/spinners.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/statistic/report-statistic.d.ts +51 -0
- package/dist/utils/statistic/report-statistic.js +124 -0
- package/dist/utils/statistic/report-statistic.js.map +1 -0
- package/dist/utils/timestamp.d.ts +1 -0
- package/dist/utils/timestamp.js +17 -0
- package/dist/utils/timestamp.js.map +1 -0
- package/dist/utils/transactions/index.d.ts +3 -0
- package/dist/utils/transactions/index.js +4 -0
- package/dist/utils/transactions/index.js.map +1 -0
- package/dist/utils/transactions/tx-private-key.d.ts +26 -0
- package/dist/utils/transactions/tx-private-key.js +310 -0
- package/dist/utils/transactions/tx-private-key.js.map +1 -0
- package/dist/utils/transactions/tx-wc.d.ts +34 -0
- package/dist/utils/transactions/tx-wc.js +187 -0
- package/dist/utils/transactions/tx-wc.js.map +1 -0
- package/dist/utils/transactions/types.d.ts +40 -0
- package/dist/utils/transactions/types.js +2 -0
- package/dist/utils/transactions/types.js.map +1 -0
- package/dist/utils/wallet-connect.d.ts +7677 -0
- package/dist/utils/wallet-connect.js +179 -0
- package/dist/utils/wallet-connect.js.map +1 -0
- package/dist/version/index.d.ts +1 -0
- package/dist/version/index.js +1 -0
- package/dist/version/index.js.map +1 -0
- package/package.json +88 -13
- package/dist/abi/Delegation.js +0 -1658
- package/dist/abi/Delegation.js.map +0 -1
- package/dist/abi/TokenManager.js +0 -759
- package/dist/abi/TokenManager.js.map +0 -1
- package/dist/abi/Voting.js +0 -887
- package/dist/abi/Voting.js.map +0 -1
- package/dist/contracts/delegation.js +0 -19
- package/dist/contracts/delegation.js.map +0 -1
- package/dist/contracts/token-manager.js +0 -20
- package/dist/contracts/token-manager.js.map +0 -1
- package/dist/contracts/voting.js +0 -22
- package/dist/contracts/voting.js.map +0 -1
- package/dist/features/advanced-config.js +0 -21
- package/dist/features/advanced-config.js.map +0 -1
- package/dist/features/voting.js +0 -136
- package/dist/features/voting.js.map +0 -1
- package/dist/programs/dashboard.js +0 -688
- package/dist/programs/dashboard.js.map +0 -1
- package/dist/programs/delegation.js +0 -539
- package/dist/programs/delegation.js.map +0 -1
- package/dist/programs/vault-factory.js +0 -84
- package/dist/programs/vault-factory.js.map +0 -1
- package/dist/programs/vault-hub.js +0 -352
- package/dist/programs/vault-hub.js.map +0 -1
- package/dist/programs/vault.js +0 -378
- package/dist/programs/vault.js.map +0 -1
- package/dist/programs/voting.js +0 -53
- package/dist/programs/voting.js.map +0 -1
|
@@ -0,0 +1,2542 @@
|
|
|
1
|
+
export declare const DashboardErrorsAbi: readonly [{
|
|
2
|
+
readonly inputs: readonly [];
|
|
3
|
+
readonly name: "AbnormallyHighFee";
|
|
4
|
+
readonly type: "error";
|
|
5
|
+
}, {
|
|
6
|
+
readonly inputs: readonly [];
|
|
7
|
+
readonly name: "AccessControlBadConfirmation";
|
|
8
|
+
readonly type: "error";
|
|
9
|
+
}, {
|
|
10
|
+
readonly inputs: readonly [{
|
|
11
|
+
readonly internalType: "address";
|
|
12
|
+
readonly name: "account";
|
|
13
|
+
readonly type: "address";
|
|
14
|
+
}, {
|
|
15
|
+
readonly internalType: "bytes32";
|
|
16
|
+
readonly name: "neededRole";
|
|
17
|
+
readonly type: "bytes32";
|
|
18
|
+
}];
|
|
19
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
20
|
+
readonly type: "error";
|
|
21
|
+
}, {
|
|
22
|
+
readonly inputs: readonly [];
|
|
23
|
+
readonly name: "AlreadyInitialized";
|
|
24
|
+
readonly type: "error";
|
|
25
|
+
}, {
|
|
26
|
+
readonly inputs: readonly [];
|
|
27
|
+
readonly name: "ConfirmExpiryOutOfBounds";
|
|
28
|
+
readonly type: "error";
|
|
29
|
+
}, {
|
|
30
|
+
readonly inputs: readonly [];
|
|
31
|
+
readonly name: "ConnectedToVaultHub";
|
|
32
|
+
readonly type: "error";
|
|
33
|
+
}, {
|
|
34
|
+
readonly inputs: readonly [];
|
|
35
|
+
readonly name: "CorrectionAfterReport";
|
|
36
|
+
readonly type: "error";
|
|
37
|
+
}, {
|
|
38
|
+
readonly inputs: readonly [];
|
|
39
|
+
readonly name: "DashboardNotAllowed";
|
|
40
|
+
readonly type: "error";
|
|
41
|
+
}, {
|
|
42
|
+
readonly inputs: readonly [{
|
|
43
|
+
readonly internalType: "address";
|
|
44
|
+
readonly name: "recipient";
|
|
45
|
+
readonly type: "address";
|
|
46
|
+
}, {
|
|
47
|
+
readonly internalType: "uint256";
|
|
48
|
+
readonly name: "amount";
|
|
49
|
+
readonly type: "uint256";
|
|
50
|
+
}];
|
|
51
|
+
readonly name: "EthTransferFailed";
|
|
52
|
+
readonly type: "error";
|
|
53
|
+
}, {
|
|
54
|
+
readonly inputs: readonly [{
|
|
55
|
+
readonly internalType: "uint256";
|
|
56
|
+
readonly name: "requestedShares";
|
|
57
|
+
readonly type: "uint256";
|
|
58
|
+
}, {
|
|
59
|
+
readonly internalType: "uint256";
|
|
60
|
+
readonly name: "remainingShares";
|
|
61
|
+
readonly type: "uint256";
|
|
62
|
+
}];
|
|
63
|
+
readonly name: "ExceedsMintingCapacity";
|
|
64
|
+
readonly type: "error";
|
|
65
|
+
}, {
|
|
66
|
+
readonly inputs: readonly [{
|
|
67
|
+
readonly internalType: "uint256";
|
|
68
|
+
readonly name: "amount";
|
|
69
|
+
readonly type: "uint256";
|
|
70
|
+
}, {
|
|
71
|
+
readonly internalType: "uint256";
|
|
72
|
+
readonly name: "withdrawableValue";
|
|
73
|
+
readonly type: "uint256";
|
|
74
|
+
}];
|
|
75
|
+
readonly name: "ExceedsWithdrawable";
|
|
76
|
+
readonly type: "error";
|
|
77
|
+
}, {
|
|
78
|
+
readonly inputs: readonly [];
|
|
79
|
+
readonly name: "FeeValueExceed100Percent";
|
|
80
|
+
readonly type: "error";
|
|
81
|
+
}, {
|
|
82
|
+
readonly inputs: readonly [];
|
|
83
|
+
readonly name: "ForbiddenByPDGPolicy";
|
|
84
|
+
readonly type: "error";
|
|
85
|
+
}, {
|
|
86
|
+
readonly inputs: readonly [];
|
|
87
|
+
readonly name: "PDGPolicyAlreadyActive";
|
|
88
|
+
readonly type: "error";
|
|
89
|
+
}, {
|
|
90
|
+
readonly inputs: readonly [];
|
|
91
|
+
readonly name: "ReportStale";
|
|
92
|
+
readonly type: "error";
|
|
93
|
+
}, {
|
|
94
|
+
readonly inputs: readonly [{
|
|
95
|
+
readonly internalType: "uint8";
|
|
96
|
+
readonly name: "bits";
|
|
97
|
+
readonly type: "uint8";
|
|
98
|
+
}, {
|
|
99
|
+
readonly internalType: "int256";
|
|
100
|
+
readonly name: "value";
|
|
101
|
+
readonly type: "int256";
|
|
102
|
+
}];
|
|
103
|
+
readonly name: "SafeCastOverflowedIntDowncast";
|
|
104
|
+
readonly type: "error";
|
|
105
|
+
}, {
|
|
106
|
+
readonly inputs: readonly [{
|
|
107
|
+
readonly internalType: "address";
|
|
108
|
+
readonly name: "token";
|
|
109
|
+
readonly type: "address";
|
|
110
|
+
}];
|
|
111
|
+
readonly name: "SafeERC20FailedOperation";
|
|
112
|
+
readonly type: "error";
|
|
113
|
+
}, {
|
|
114
|
+
readonly inputs: readonly [];
|
|
115
|
+
readonly name: "SameRecipient";
|
|
116
|
+
readonly type: "error";
|
|
117
|
+
}, {
|
|
118
|
+
readonly inputs: readonly [];
|
|
119
|
+
readonly name: "SameSettledGrowth";
|
|
120
|
+
readonly type: "error";
|
|
121
|
+
}, {
|
|
122
|
+
readonly inputs: readonly [];
|
|
123
|
+
readonly name: "SenderNotMember";
|
|
124
|
+
readonly type: "error";
|
|
125
|
+
}, {
|
|
126
|
+
readonly inputs: readonly [];
|
|
127
|
+
readonly name: "SettledGrowthMismatch";
|
|
128
|
+
readonly type: "error";
|
|
129
|
+
}, {
|
|
130
|
+
readonly inputs: readonly [];
|
|
131
|
+
readonly name: "TierChangeNotConfirmed";
|
|
132
|
+
readonly type: "error";
|
|
133
|
+
}, {
|
|
134
|
+
readonly inputs: readonly [];
|
|
135
|
+
readonly name: "UnexpectedFeeExemptionAmount";
|
|
136
|
+
readonly type: "error";
|
|
137
|
+
}, {
|
|
138
|
+
readonly inputs: readonly [];
|
|
139
|
+
readonly name: "UnexpectedSettledGrowth";
|
|
140
|
+
readonly type: "error";
|
|
141
|
+
}, {
|
|
142
|
+
readonly inputs: readonly [];
|
|
143
|
+
readonly name: "VaultQuarantined";
|
|
144
|
+
readonly type: "error";
|
|
145
|
+
}, {
|
|
146
|
+
readonly inputs: readonly [];
|
|
147
|
+
readonly name: "ZeroAddress";
|
|
148
|
+
readonly type: "error";
|
|
149
|
+
}, {
|
|
150
|
+
readonly inputs: readonly [];
|
|
151
|
+
readonly name: "ZeroArgument";
|
|
152
|
+
readonly type: "error";
|
|
153
|
+
}, {
|
|
154
|
+
readonly inputs: readonly [];
|
|
155
|
+
readonly name: "ZeroConfirmingRoles";
|
|
156
|
+
readonly type: "error";
|
|
157
|
+
}];
|
|
158
|
+
export declare const DashboardAbi: readonly [{
|
|
159
|
+
readonly inputs: readonly [];
|
|
160
|
+
readonly name: "AbnormallyHighFee";
|
|
161
|
+
readonly type: "error";
|
|
162
|
+
}, {
|
|
163
|
+
readonly inputs: readonly [];
|
|
164
|
+
readonly name: "AccessControlBadConfirmation";
|
|
165
|
+
readonly type: "error";
|
|
166
|
+
}, {
|
|
167
|
+
readonly inputs: readonly [{
|
|
168
|
+
readonly internalType: "address";
|
|
169
|
+
readonly name: "account";
|
|
170
|
+
readonly type: "address";
|
|
171
|
+
}, {
|
|
172
|
+
readonly internalType: "bytes32";
|
|
173
|
+
readonly name: "neededRole";
|
|
174
|
+
readonly type: "bytes32";
|
|
175
|
+
}];
|
|
176
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
177
|
+
readonly type: "error";
|
|
178
|
+
}, {
|
|
179
|
+
readonly inputs: readonly [];
|
|
180
|
+
readonly name: "AlreadyInitialized";
|
|
181
|
+
readonly type: "error";
|
|
182
|
+
}, {
|
|
183
|
+
readonly inputs: readonly [];
|
|
184
|
+
readonly name: "ConfirmExpiryOutOfBounds";
|
|
185
|
+
readonly type: "error";
|
|
186
|
+
}, {
|
|
187
|
+
readonly inputs: readonly [];
|
|
188
|
+
readonly name: "ConnectedToVaultHub";
|
|
189
|
+
readonly type: "error";
|
|
190
|
+
}, {
|
|
191
|
+
readonly inputs: readonly [];
|
|
192
|
+
readonly name: "CorrectionAfterReport";
|
|
193
|
+
readonly type: "error";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [];
|
|
196
|
+
readonly name: "DashboardNotAllowed";
|
|
197
|
+
readonly type: "error";
|
|
198
|
+
}, {
|
|
199
|
+
readonly inputs: readonly [{
|
|
200
|
+
readonly internalType: "address";
|
|
201
|
+
readonly name: "recipient";
|
|
202
|
+
readonly type: "address";
|
|
203
|
+
}, {
|
|
204
|
+
readonly internalType: "uint256";
|
|
205
|
+
readonly name: "amount";
|
|
206
|
+
readonly type: "uint256";
|
|
207
|
+
}];
|
|
208
|
+
readonly name: "EthTransferFailed";
|
|
209
|
+
readonly type: "error";
|
|
210
|
+
}, {
|
|
211
|
+
readonly inputs: readonly [{
|
|
212
|
+
readonly internalType: "uint256";
|
|
213
|
+
readonly name: "requestedShares";
|
|
214
|
+
readonly type: "uint256";
|
|
215
|
+
}, {
|
|
216
|
+
readonly internalType: "uint256";
|
|
217
|
+
readonly name: "remainingShares";
|
|
218
|
+
readonly type: "uint256";
|
|
219
|
+
}];
|
|
220
|
+
readonly name: "ExceedsMintingCapacity";
|
|
221
|
+
readonly type: "error";
|
|
222
|
+
}, {
|
|
223
|
+
readonly inputs: readonly [{
|
|
224
|
+
readonly internalType: "uint256";
|
|
225
|
+
readonly name: "amount";
|
|
226
|
+
readonly type: "uint256";
|
|
227
|
+
}, {
|
|
228
|
+
readonly internalType: "uint256";
|
|
229
|
+
readonly name: "withdrawableValue";
|
|
230
|
+
readonly type: "uint256";
|
|
231
|
+
}];
|
|
232
|
+
readonly name: "ExceedsWithdrawable";
|
|
233
|
+
readonly type: "error";
|
|
234
|
+
}, {
|
|
235
|
+
readonly inputs: readonly [];
|
|
236
|
+
readonly name: "FeeValueExceed100Percent";
|
|
237
|
+
readonly type: "error";
|
|
238
|
+
}, {
|
|
239
|
+
readonly inputs: readonly [];
|
|
240
|
+
readonly name: "ForbiddenByPDGPolicy";
|
|
241
|
+
readonly type: "error";
|
|
242
|
+
}, {
|
|
243
|
+
readonly inputs: readonly [];
|
|
244
|
+
readonly name: "PDGPolicyAlreadyActive";
|
|
245
|
+
readonly type: "error";
|
|
246
|
+
}, {
|
|
247
|
+
readonly inputs: readonly [];
|
|
248
|
+
readonly name: "ReportStale";
|
|
249
|
+
readonly type: "error";
|
|
250
|
+
}, {
|
|
251
|
+
readonly inputs: readonly [{
|
|
252
|
+
readonly internalType: "uint8";
|
|
253
|
+
readonly name: "bits";
|
|
254
|
+
readonly type: "uint8";
|
|
255
|
+
}, {
|
|
256
|
+
readonly internalType: "int256";
|
|
257
|
+
readonly name: "value";
|
|
258
|
+
readonly type: "int256";
|
|
259
|
+
}];
|
|
260
|
+
readonly name: "SafeCastOverflowedIntDowncast";
|
|
261
|
+
readonly type: "error";
|
|
262
|
+
}, {
|
|
263
|
+
readonly inputs: readonly [{
|
|
264
|
+
readonly internalType: "address";
|
|
265
|
+
readonly name: "token";
|
|
266
|
+
readonly type: "address";
|
|
267
|
+
}];
|
|
268
|
+
readonly name: "SafeERC20FailedOperation";
|
|
269
|
+
readonly type: "error";
|
|
270
|
+
}, {
|
|
271
|
+
readonly inputs: readonly [];
|
|
272
|
+
readonly name: "SameRecipient";
|
|
273
|
+
readonly type: "error";
|
|
274
|
+
}, {
|
|
275
|
+
readonly inputs: readonly [];
|
|
276
|
+
readonly name: "SameSettledGrowth";
|
|
277
|
+
readonly type: "error";
|
|
278
|
+
}, {
|
|
279
|
+
readonly inputs: readonly [];
|
|
280
|
+
readonly name: "SenderNotMember";
|
|
281
|
+
readonly type: "error";
|
|
282
|
+
}, {
|
|
283
|
+
readonly inputs: readonly [];
|
|
284
|
+
readonly name: "SettledGrowthMismatch";
|
|
285
|
+
readonly type: "error";
|
|
286
|
+
}, {
|
|
287
|
+
readonly inputs: readonly [];
|
|
288
|
+
readonly name: "TierChangeNotConfirmed";
|
|
289
|
+
readonly type: "error";
|
|
290
|
+
}, {
|
|
291
|
+
readonly inputs: readonly [];
|
|
292
|
+
readonly name: "UnexpectedFeeExemptionAmount";
|
|
293
|
+
readonly type: "error";
|
|
294
|
+
}, {
|
|
295
|
+
readonly inputs: readonly [];
|
|
296
|
+
readonly name: "UnexpectedSettledGrowth";
|
|
297
|
+
readonly type: "error";
|
|
298
|
+
}, {
|
|
299
|
+
readonly inputs: readonly [];
|
|
300
|
+
readonly name: "VaultQuarantined";
|
|
301
|
+
readonly type: "error";
|
|
302
|
+
}, {
|
|
303
|
+
readonly inputs: readonly [];
|
|
304
|
+
readonly name: "ZeroAddress";
|
|
305
|
+
readonly type: "error";
|
|
306
|
+
}, {
|
|
307
|
+
readonly inputs: readonly [];
|
|
308
|
+
readonly name: "ZeroArgument";
|
|
309
|
+
readonly type: "error";
|
|
310
|
+
}, {
|
|
311
|
+
readonly inputs: readonly [];
|
|
312
|
+
readonly name: "ZeroConfirmingRoles";
|
|
313
|
+
readonly type: "error";
|
|
314
|
+
}, {
|
|
315
|
+
readonly inputs: readonly [];
|
|
316
|
+
readonly name: "AlreadyOssified";
|
|
317
|
+
readonly type: "error";
|
|
318
|
+
}, {
|
|
319
|
+
readonly inputs: readonly [];
|
|
320
|
+
readonly name: "BeaconChainDepositsAlreadyPaused";
|
|
321
|
+
readonly type: "error";
|
|
322
|
+
}, {
|
|
323
|
+
readonly inputs: readonly [];
|
|
324
|
+
readonly name: "BeaconChainDepositsAlreadyResumed";
|
|
325
|
+
readonly type: "error";
|
|
326
|
+
}, {
|
|
327
|
+
readonly inputs: readonly [];
|
|
328
|
+
readonly name: "BeaconChainDepositsOnPause";
|
|
329
|
+
readonly type: "error";
|
|
330
|
+
}, {
|
|
331
|
+
readonly inputs: readonly [];
|
|
332
|
+
readonly name: "EthCollectionNotAllowed";
|
|
333
|
+
readonly type: "error";
|
|
334
|
+
}, {
|
|
335
|
+
readonly inputs: readonly [{
|
|
336
|
+
readonly internalType: "uint256";
|
|
337
|
+
readonly name: "_balance";
|
|
338
|
+
readonly type: "uint256";
|
|
339
|
+
}, {
|
|
340
|
+
readonly internalType: "uint256";
|
|
341
|
+
readonly name: "_required";
|
|
342
|
+
readonly type: "uint256";
|
|
343
|
+
}];
|
|
344
|
+
readonly name: "InsufficientBalance";
|
|
345
|
+
readonly type: "error";
|
|
346
|
+
}, {
|
|
347
|
+
readonly inputs: readonly [{
|
|
348
|
+
readonly internalType: "uint256";
|
|
349
|
+
readonly name: "_staged";
|
|
350
|
+
readonly type: "uint256";
|
|
351
|
+
}, {
|
|
352
|
+
readonly internalType: "uint256";
|
|
353
|
+
readonly name: "_requested";
|
|
354
|
+
readonly type: "uint256";
|
|
355
|
+
}];
|
|
356
|
+
readonly name: "InsufficientStaged";
|
|
357
|
+
readonly type: "error";
|
|
358
|
+
}, {
|
|
359
|
+
readonly inputs: readonly [{
|
|
360
|
+
readonly internalType: "uint256";
|
|
361
|
+
readonly name: "_passed";
|
|
362
|
+
readonly type: "uint256";
|
|
363
|
+
}, {
|
|
364
|
+
readonly internalType: "uint256";
|
|
365
|
+
readonly name: "_required";
|
|
366
|
+
readonly type: "uint256";
|
|
367
|
+
}];
|
|
368
|
+
readonly name: "InsufficientValidatorWithdrawalFee";
|
|
369
|
+
readonly type: "error";
|
|
370
|
+
}, {
|
|
371
|
+
readonly inputs: readonly [];
|
|
372
|
+
readonly name: "InvalidInitialization";
|
|
373
|
+
readonly type: "error";
|
|
374
|
+
}, {
|
|
375
|
+
readonly inputs: readonly [];
|
|
376
|
+
readonly name: "InvalidPubkeysLength";
|
|
377
|
+
readonly type: "error";
|
|
378
|
+
}, {
|
|
379
|
+
readonly inputs: readonly [];
|
|
380
|
+
readonly name: "MalformedPubkeysArray";
|
|
381
|
+
readonly type: "error";
|
|
382
|
+
}, {
|
|
383
|
+
readonly inputs: readonly [{
|
|
384
|
+
readonly internalType: "uint256";
|
|
385
|
+
readonly name: "keysCount";
|
|
386
|
+
readonly type: "uint256";
|
|
387
|
+
}, {
|
|
388
|
+
readonly internalType: "uint256";
|
|
389
|
+
readonly name: "amountsCount";
|
|
390
|
+
readonly type: "uint256";
|
|
391
|
+
}];
|
|
392
|
+
readonly name: "MismatchedArrayLengths";
|
|
393
|
+
readonly type: "error";
|
|
394
|
+
}, {
|
|
395
|
+
readonly inputs: readonly [];
|
|
396
|
+
readonly name: "NewDepositorSameAsPrevious";
|
|
397
|
+
readonly type: "error";
|
|
398
|
+
}, {
|
|
399
|
+
readonly inputs: readonly [];
|
|
400
|
+
readonly name: "NoWithdrawalRequests";
|
|
401
|
+
readonly type: "error";
|
|
402
|
+
}, {
|
|
403
|
+
readonly inputs: readonly [];
|
|
404
|
+
readonly name: "NotInitializing";
|
|
405
|
+
readonly type: "error";
|
|
406
|
+
}, {
|
|
407
|
+
readonly inputs: readonly [{
|
|
408
|
+
readonly internalType: "address";
|
|
409
|
+
readonly name: "owner";
|
|
410
|
+
readonly type: "address";
|
|
411
|
+
}];
|
|
412
|
+
readonly name: "OwnableInvalidOwner";
|
|
413
|
+
readonly type: "error";
|
|
414
|
+
}, {
|
|
415
|
+
readonly inputs: readonly [{
|
|
416
|
+
readonly internalType: "address";
|
|
417
|
+
readonly name: "account";
|
|
418
|
+
readonly type: "address";
|
|
419
|
+
}];
|
|
420
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
421
|
+
readonly type: "error";
|
|
422
|
+
}, {
|
|
423
|
+
readonly inputs: readonly [];
|
|
424
|
+
readonly name: "RenouncementNotAllowed";
|
|
425
|
+
readonly type: "error";
|
|
426
|
+
}, {
|
|
427
|
+
readonly inputs: readonly [{
|
|
428
|
+
readonly internalType: "address";
|
|
429
|
+
readonly name: "token";
|
|
430
|
+
readonly type: "address";
|
|
431
|
+
}];
|
|
432
|
+
readonly name: "SafeERC20FailedOperation";
|
|
433
|
+
readonly type: "error";
|
|
434
|
+
}, {
|
|
435
|
+
readonly inputs: readonly [];
|
|
436
|
+
readonly name: "SenderNotDepositor";
|
|
437
|
+
readonly type: "error";
|
|
438
|
+
}, {
|
|
439
|
+
readonly inputs: readonly [];
|
|
440
|
+
readonly name: "SenderNotNodeOperator";
|
|
441
|
+
readonly type: "error";
|
|
442
|
+
}, {
|
|
443
|
+
readonly inputs: readonly [{
|
|
444
|
+
readonly internalType: "address";
|
|
445
|
+
readonly name: "recipient";
|
|
446
|
+
readonly type: "address";
|
|
447
|
+
}, {
|
|
448
|
+
readonly internalType: "uint256";
|
|
449
|
+
readonly name: "amount";
|
|
450
|
+
readonly type: "uint256";
|
|
451
|
+
}];
|
|
452
|
+
readonly name: "TransferFailed";
|
|
453
|
+
readonly type: "error";
|
|
454
|
+
}, {
|
|
455
|
+
readonly inputs: readonly [];
|
|
456
|
+
readonly name: "WithdrawalFeeInvalidData";
|
|
457
|
+
readonly type: "error";
|
|
458
|
+
}, {
|
|
459
|
+
readonly inputs: readonly [];
|
|
460
|
+
readonly name: "WithdrawalFeeReadFailed";
|
|
461
|
+
readonly type: "error";
|
|
462
|
+
}, {
|
|
463
|
+
readonly inputs: readonly [{
|
|
464
|
+
readonly internalType: "bytes";
|
|
465
|
+
readonly name: "callData";
|
|
466
|
+
readonly type: "bytes";
|
|
467
|
+
}];
|
|
468
|
+
readonly name: "WithdrawalRequestAdditionFailed";
|
|
469
|
+
readonly type: "error";
|
|
470
|
+
}, {
|
|
471
|
+
readonly inputs: readonly [{
|
|
472
|
+
readonly internalType: "string";
|
|
473
|
+
readonly name: "name";
|
|
474
|
+
readonly type: "string";
|
|
475
|
+
}];
|
|
476
|
+
readonly name: "ZeroArgument";
|
|
477
|
+
readonly type: "error";
|
|
478
|
+
}, {
|
|
479
|
+
readonly inputs: readonly [];
|
|
480
|
+
readonly name: "AccessControlBadConfirmation";
|
|
481
|
+
readonly type: "error";
|
|
482
|
+
}, {
|
|
483
|
+
readonly inputs: readonly [{
|
|
484
|
+
readonly internalType: "address";
|
|
485
|
+
readonly name: "account";
|
|
486
|
+
readonly type: "address";
|
|
487
|
+
}, {
|
|
488
|
+
readonly internalType: "bytes32";
|
|
489
|
+
readonly name: "neededRole";
|
|
490
|
+
readonly type: "bytes32";
|
|
491
|
+
}];
|
|
492
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
493
|
+
readonly type: "error";
|
|
494
|
+
}, {
|
|
495
|
+
readonly inputs: readonly [];
|
|
496
|
+
readonly name: "ArrayLengthMismatch";
|
|
497
|
+
readonly type: "error";
|
|
498
|
+
}, {
|
|
499
|
+
readonly inputs: readonly [];
|
|
500
|
+
readonly name: "CannotChangeToDefaultTier";
|
|
501
|
+
readonly type: "error";
|
|
502
|
+
}, {
|
|
503
|
+
readonly inputs: readonly [];
|
|
504
|
+
readonly name: "ConfirmExpiryOutOfBounds";
|
|
505
|
+
readonly type: "error";
|
|
506
|
+
}, {
|
|
507
|
+
readonly inputs: readonly [{
|
|
508
|
+
readonly internalType: "uint256";
|
|
509
|
+
readonly name: "tierId";
|
|
510
|
+
readonly type: "uint256";
|
|
511
|
+
}, {
|
|
512
|
+
readonly internalType: "uint256";
|
|
513
|
+
readonly name: "forcedRebalanceThresholdBP";
|
|
514
|
+
readonly type: "uint256";
|
|
515
|
+
}, {
|
|
516
|
+
readonly internalType: "uint256";
|
|
517
|
+
readonly name: "reserveRatioBP";
|
|
518
|
+
readonly type: "uint256";
|
|
519
|
+
}];
|
|
520
|
+
readonly name: "ForcedRebalanceThresholdTooHigh";
|
|
521
|
+
readonly type: "error";
|
|
522
|
+
}, {
|
|
523
|
+
readonly inputs: readonly [];
|
|
524
|
+
readonly name: "GroupExists";
|
|
525
|
+
readonly type: "error";
|
|
526
|
+
}, {
|
|
527
|
+
readonly inputs: readonly [];
|
|
528
|
+
readonly name: "GroupLimitExceeded";
|
|
529
|
+
readonly type: "error";
|
|
530
|
+
}, {
|
|
531
|
+
readonly inputs: readonly [];
|
|
532
|
+
readonly name: "GroupNotExists";
|
|
533
|
+
readonly type: "error";
|
|
534
|
+
}, {
|
|
535
|
+
readonly inputs: readonly [{
|
|
536
|
+
readonly internalType: "uint256";
|
|
537
|
+
readonly name: "tierId";
|
|
538
|
+
readonly type: "uint256";
|
|
539
|
+
}, {
|
|
540
|
+
readonly internalType: "uint256";
|
|
541
|
+
readonly name: "infraFeeBP";
|
|
542
|
+
readonly type: "uint256";
|
|
543
|
+
}, {
|
|
544
|
+
readonly internalType: "uint256";
|
|
545
|
+
readonly name: "maxInfraFeeBP";
|
|
546
|
+
readonly type: "uint256";
|
|
547
|
+
}];
|
|
548
|
+
readonly name: "InfraFeeTooHigh";
|
|
549
|
+
readonly type: "error";
|
|
550
|
+
}, {
|
|
551
|
+
readonly inputs: readonly [{
|
|
552
|
+
readonly internalType: "uint256";
|
|
553
|
+
readonly name: "valueBP";
|
|
554
|
+
readonly type: "uint256";
|
|
555
|
+
}, {
|
|
556
|
+
readonly internalType: "uint256";
|
|
557
|
+
readonly name: "maxValueBP";
|
|
558
|
+
readonly type: "uint256";
|
|
559
|
+
}];
|
|
560
|
+
readonly name: "InvalidBasisPoints";
|
|
561
|
+
readonly type: "error";
|
|
562
|
+
}, {
|
|
563
|
+
readonly inputs: readonly [];
|
|
564
|
+
readonly name: "InvalidInitialization";
|
|
565
|
+
readonly type: "error";
|
|
566
|
+
}, {
|
|
567
|
+
readonly inputs: readonly [{
|
|
568
|
+
readonly internalType: "uint256";
|
|
569
|
+
readonly name: "tierId";
|
|
570
|
+
readonly type: "uint256";
|
|
571
|
+
}, {
|
|
572
|
+
readonly internalType: "uint256";
|
|
573
|
+
readonly name: "liquidityFeeBP";
|
|
574
|
+
readonly type: "uint256";
|
|
575
|
+
}, {
|
|
576
|
+
readonly internalType: "uint256";
|
|
577
|
+
readonly name: "maxLiquidityFeeBP";
|
|
578
|
+
readonly type: "uint256";
|
|
579
|
+
}];
|
|
580
|
+
readonly name: "LiquidityFeeTooHigh";
|
|
581
|
+
readonly type: "error";
|
|
582
|
+
}, {
|
|
583
|
+
readonly inputs: readonly [];
|
|
584
|
+
readonly name: "NodeOperatorNotExists";
|
|
585
|
+
readonly type: "error";
|
|
586
|
+
}, {
|
|
587
|
+
readonly inputs: readonly [{
|
|
588
|
+
readonly internalType: "string";
|
|
589
|
+
readonly name: "operation";
|
|
590
|
+
readonly type: "string";
|
|
591
|
+
}, {
|
|
592
|
+
readonly internalType: "address";
|
|
593
|
+
readonly name: "sender";
|
|
594
|
+
readonly type: "address";
|
|
595
|
+
}];
|
|
596
|
+
readonly name: "NotAuthorized";
|
|
597
|
+
readonly type: "error";
|
|
598
|
+
}, {
|
|
599
|
+
readonly inputs: readonly [];
|
|
600
|
+
readonly name: "NotInitializing";
|
|
601
|
+
readonly type: "error";
|
|
602
|
+
}, {
|
|
603
|
+
readonly inputs: readonly [{
|
|
604
|
+
readonly internalType: "uint256";
|
|
605
|
+
readonly name: "requestedShareLimit";
|
|
606
|
+
readonly type: "uint256";
|
|
607
|
+
}, {
|
|
608
|
+
readonly internalType: "uint256";
|
|
609
|
+
readonly name: "tierShareLimit";
|
|
610
|
+
readonly type: "uint256";
|
|
611
|
+
}];
|
|
612
|
+
readonly name: "RequestedShareLimitTooHigh";
|
|
613
|
+
readonly type: "error";
|
|
614
|
+
}, {
|
|
615
|
+
readonly inputs: readonly [{
|
|
616
|
+
readonly internalType: "uint256";
|
|
617
|
+
readonly name: "tierId";
|
|
618
|
+
readonly type: "uint256";
|
|
619
|
+
}, {
|
|
620
|
+
readonly internalType: "uint256";
|
|
621
|
+
readonly name: "reservationFeeBP";
|
|
622
|
+
readonly type: "uint256";
|
|
623
|
+
}, {
|
|
624
|
+
readonly internalType: "uint256";
|
|
625
|
+
readonly name: "maxReservationFeeBP";
|
|
626
|
+
readonly type: "uint256";
|
|
627
|
+
}];
|
|
628
|
+
readonly name: "ReservationFeeTooHigh";
|
|
629
|
+
readonly type: "error";
|
|
630
|
+
}, {
|
|
631
|
+
readonly inputs: readonly [{
|
|
632
|
+
readonly internalType: "uint256";
|
|
633
|
+
readonly name: "tierId";
|
|
634
|
+
readonly type: "uint256";
|
|
635
|
+
}, {
|
|
636
|
+
readonly internalType: "uint256";
|
|
637
|
+
readonly name: "reserveRatioBP";
|
|
638
|
+
readonly type: "uint256";
|
|
639
|
+
}, {
|
|
640
|
+
readonly internalType: "uint256";
|
|
641
|
+
readonly name: "maxReserveRatioBP";
|
|
642
|
+
readonly type: "uint256";
|
|
643
|
+
}];
|
|
644
|
+
readonly name: "ReserveRatioTooHigh";
|
|
645
|
+
readonly type: "error";
|
|
646
|
+
}, {
|
|
647
|
+
readonly inputs: readonly [{
|
|
648
|
+
readonly internalType: "uint8";
|
|
649
|
+
readonly name: "bits";
|
|
650
|
+
readonly type: "uint8";
|
|
651
|
+
}, {
|
|
652
|
+
readonly internalType: "uint256";
|
|
653
|
+
readonly name: "value";
|
|
654
|
+
readonly type: "uint256";
|
|
655
|
+
}];
|
|
656
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
657
|
+
readonly type: "error";
|
|
658
|
+
}, {
|
|
659
|
+
readonly inputs: readonly [];
|
|
660
|
+
readonly name: "SenderNotMember";
|
|
661
|
+
readonly type: "error";
|
|
662
|
+
}, {
|
|
663
|
+
readonly inputs: readonly [];
|
|
664
|
+
readonly name: "ShareLimitAlreadySet";
|
|
665
|
+
readonly type: "error";
|
|
666
|
+
}, {
|
|
667
|
+
readonly inputs: readonly [];
|
|
668
|
+
readonly name: "TierAlreadySet";
|
|
669
|
+
readonly type: "error";
|
|
670
|
+
}, {
|
|
671
|
+
readonly inputs: readonly [];
|
|
672
|
+
readonly name: "TierLimitExceeded";
|
|
673
|
+
readonly type: "error";
|
|
674
|
+
}, {
|
|
675
|
+
readonly inputs: readonly [];
|
|
676
|
+
readonly name: "TierNotExists";
|
|
677
|
+
readonly type: "error";
|
|
678
|
+
}, {
|
|
679
|
+
readonly inputs: readonly [];
|
|
680
|
+
readonly name: "TierNotInOperatorGroup";
|
|
681
|
+
readonly type: "error";
|
|
682
|
+
}, {
|
|
683
|
+
readonly inputs: readonly [];
|
|
684
|
+
readonly name: "VaultAlreadySyncedWithTier";
|
|
685
|
+
readonly type: "error";
|
|
686
|
+
}, {
|
|
687
|
+
readonly inputs: readonly [];
|
|
688
|
+
readonly name: "VaultInJail";
|
|
689
|
+
readonly type: "error";
|
|
690
|
+
}, {
|
|
691
|
+
readonly inputs: readonly [];
|
|
692
|
+
readonly name: "VaultInJailAlreadySet";
|
|
693
|
+
readonly type: "error";
|
|
694
|
+
}, {
|
|
695
|
+
readonly inputs: readonly [];
|
|
696
|
+
readonly name: "VaultNotConnected";
|
|
697
|
+
readonly type: "error";
|
|
698
|
+
}, {
|
|
699
|
+
readonly inputs: readonly [{
|
|
700
|
+
readonly internalType: "string";
|
|
701
|
+
readonly name: "argument";
|
|
702
|
+
readonly type: "string";
|
|
703
|
+
}];
|
|
704
|
+
readonly name: "ZeroArgument";
|
|
705
|
+
readonly type: "error";
|
|
706
|
+
}, {
|
|
707
|
+
readonly inputs: readonly [];
|
|
708
|
+
readonly name: "ZeroConfirmingRoles";
|
|
709
|
+
readonly type: "error";
|
|
710
|
+
}, {
|
|
711
|
+
readonly inputs: readonly [];
|
|
712
|
+
readonly name: "AccessControlBadConfirmation";
|
|
713
|
+
readonly type: "error";
|
|
714
|
+
}, {
|
|
715
|
+
readonly inputs: readonly [{
|
|
716
|
+
readonly internalType: "address";
|
|
717
|
+
readonly name: "account";
|
|
718
|
+
readonly type: "address";
|
|
719
|
+
}, {
|
|
720
|
+
readonly internalType: "bytes32";
|
|
721
|
+
readonly name: "neededRole";
|
|
722
|
+
readonly type: "bytes32";
|
|
723
|
+
}];
|
|
724
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
725
|
+
readonly type: "error";
|
|
726
|
+
}, {
|
|
727
|
+
readonly inputs: readonly [{
|
|
728
|
+
readonly internalType: "address";
|
|
729
|
+
readonly name: "vault";
|
|
730
|
+
readonly type: "address";
|
|
731
|
+
}, {
|
|
732
|
+
readonly internalType: "uint256";
|
|
733
|
+
readonly name: "index";
|
|
734
|
+
readonly type: "uint256";
|
|
735
|
+
}];
|
|
736
|
+
readonly name: "AlreadyConnected";
|
|
737
|
+
readonly type: "error";
|
|
738
|
+
}, {
|
|
739
|
+
readonly inputs: readonly [{
|
|
740
|
+
readonly internalType: "address";
|
|
741
|
+
readonly name: "vault";
|
|
742
|
+
readonly type: "address";
|
|
743
|
+
}, {
|
|
744
|
+
readonly internalType: "uint256";
|
|
745
|
+
readonly name: "totalValue";
|
|
746
|
+
readonly type: "uint256";
|
|
747
|
+
}, {
|
|
748
|
+
readonly internalType: "uint256";
|
|
749
|
+
readonly name: "withdrawAmount";
|
|
750
|
+
readonly type: "uint256";
|
|
751
|
+
}];
|
|
752
|
+
readonly name: "AmountExceedsTotalValue";
|
|
753
|
+
readonly type: "error";
|
|
754
|
+
}, {
|
|
755
|
+
readonly inputs: readonly [{
|
|
756
|
+
readonly internalType: "address";
|
|
757
|
+
readonly name: "vault";
|
|
758
|
+
readonly type: "address";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "withdrawable";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}, {
|
|
764
|
+
readonly internalType: "uint256";
|
|
765
|
+
readonly name: "requested";
|
|
766
|
+
readonly type: "uint256";
|
|
767
|
+
}];
|
|
768
|
+
readonly name: "AmountExceedsWithdrawableValue";
|
|
769
|
+
readonly type: "error";
|
|
770
|
+
}, {
|
|
771
|
+
readonly inputs: readonly [];
|
|
772
|
+
readonly name: "BadDebtSocializationNotAllowed";
|
|
773
|
+
readonly type: "error";
|
|
774
|
+
}, {
|
|
775
|
+
readonly inputs: readonly [];
|
|
776
|
+
readonly name: "ForcedValidatorExitNotAllowed";
|
|
777
|
+
readonly type: "error";
|
|
778
|
+
}, {
|
|
779
|
+
readonly inputs: readonly [{
|
|
780
|
+
readonly internalType: "address";
|
|
781
|
+
readonly name: "vault";
|
|
782
|
+
readonly type: "address";
|
|
783
|
+
}, {
|
|
784
|
+
readonly internalType: "uint256";
|
|
785
|
+
readonly name: "amount";
|
|
786
|
+
readonly type: "uint256";
|
|
787
|
+
}];
|
|
788
|
+
readonly name: "InsufficientSharesToBurn";
|
|
789
|
+
readonly type: "error";
|
|
790
|
+
}, {
|
|
791
|
+
readonly inputs: readonly [{
|
|
792
|
+
readonly internalType: "address";
|
|
793
|
+
readonly name: "vault";
|
|
794
|
+
readonly type: "address";
|
|
795
|
+
}];
|
|
796
|
+
readonly name: "InsufficientStagedBalance";
|
|
797
|
+
readonly type: "error";
|
|
798
|
+
}, {
|
|
799
|
+
readonly inputs: readonly [{
|
|
800
|
+
readonly internalType: "address";
|
|
801
|
+
readonly name: "vault";
|
|
802
|
+
readonly type: "address";
|
|
803
|
+
}, {
|
|
804
|
+
readonly internalType: "uint256";
|
|
805
|
+
readonly name: "etherToLock";
|
|
806
|
+
readonly type: "uint256";
|
|
807
|
+
}, {
|
|
808
|
+
readonly internalType: "uint256";
|
|
809
|
+
readonly name: "maxLockableValue";
|
|
810
|
+
readonly type: "uint256";
|
|
811
|
+
}];
|
|
812
|
+
readonly name: "InsufficientValue";
|
|
813
|
+
readonly type: "error";
|
|
814
|
+
}, {
|
|
815
|
+
readonly inputs: readonly [{
|
|
816
|
+
readonly internalType: "uint256";
|
|
817
|
+
readonly name: "valueBP";
|
|
818
|
+
readonly type: "uint256";
|
|
819
|
+
}, {
|
|
820
|
+
readonly internalType: "uint256";
|
|
821
|
+
readonly name: "maxValueBP";
|
|
822
|
+
readonly type: "uint256";
|
|
823
|
+
}];
|
|
824
|
+
readonly name: "InvalidBasisPoints";
|
|
825
|
+
readonly type: "error";
|
|
826
|
+
}, {
|
|
827
|
+
readonly inputs: readonly [];
|
|
828
|
+
readonly name: "InvalidInitialization";
|
|
829
|
+
readonly type: "error";
|
|
830
|
+
}, {
|
|
831
|
+
readonly inputs: readonly [{
|
|
832
|
+
readonly internalType: "address";
|
|
833
|
+
readonly name: "vault";
|
|
834
|
+
readonly type: "address";
|
|
835
|
+
}];
|
|
836
|
+
readonly name: "NoFundsForForceRebalance";
|
|
837
|
+
readonly type: "error";
|
|
838
|
+
}, {
|
|
839
|
+
readonly inputs: readonly [{
|
|
840
|
+
readonly internalType: "address";
|
|
841
|
+
readonly name: "vault";
|
|
842
|
+
readonly type: "address";
|
|
843
|
+
}, {
|
|
844
|
+
readonly internalType: "uint256";
|
|
845
|
+
readonly name: "unsettledLidoFees";
|
|
846
|
+
readonly type: "uint256";
|
|
847
|
+
}];
|
|
848
|
+
readonly name: "NoFundsToSettleLidoFees";
|
|
849
|
+
readonly type: "error";
|
|
850
|
+
}, {
|
|
851
|
+
readonly inputs: readonly [{
|
|
852
|
+
readonly internalType: "address";
|
|
853
|
+
readonly name: "vault";
|
|
854
|
+
readonly type: "address";
|
|
855
|
+
}, {
|
|
856
|
+
readonly internalType: "uint256";
|
|
857
|
+
readonly name: "liabilityShares";
|
|
858
|
+
readonly type: "uint256";
|
|
859
|
+
}];
|
|
860
|
+
readonly name: "NoLiabilitySharesShouldBeLeft";
|
|
861
|
+
readonly type: "error";
|
|
862
|
+
}, {
|
|
863
|
+
readonly inputs: readonly [{
|
|
864
|
+
readonly internalType: "address";
|
|
865
|
+
readonly name: "vault";
|
|
866
|
+
readonly type: "address";
|
|
867
|
+
}];
|
|
868
|
+
readonly name: "NoReasonForForceRebalance";
|
|
869
|
+
readonly type: "error";
|
|
870
|
+
}, {
|
|
871
|
+
readonly inputs: readonly [{
|
|
872
|
+
readonly internalType: "address";
|
|
873
|
+
readonly name: "vault";
|
|
874
|
+
readonly type: "address";
|
|
875
|
+
}, {
|
|
876
|
+
readonly internalType: "uint256";
|
|
877
|
+
readonly name: "unsettledLidoFees";
|
|
878
|
+
readonly type: "uint256";
|
|
879
|
+
}];
|
|
880
|
+
readonly name: "NoUnsettledLidoFeesShouldBeLeft";
|
|
881
|
+
readonly type: "error";
|
|
882
|
+
}, {
|
|
883
|
+
readonly inputs: readonly [{
|
|
884
|
+
readonly internalType: "address";
|
|
885
|
+
readonly name: "vault";
|
|
886
|
+
readonly type: "address";
|
|
887
|
+
}];
|
|
888
|
+
readonly name: "NoUnsettledLidoFeesToSettle";
|
|
889
|
+
readonly type: "error";
|
|
890
|
+
}, {
|
|
891
|
+
readonly inputs: readonly [];
|
|
892
|
+
readonly name: "NotAuthorized";
|
|
893
|
+
readonly type: "error";
|
|
894
|
+
}, {
|
|
895
|
+
readonly inputs: readonly [{
|
|
896
|
+
readonly internalType: "address";
|
|
897
|
+
readonly name: "vault";
|
|
898
|
+
readonly type: "address";
|
|
899
|
+
}];
|
|
900
|
+
readonly name: "NotConnectedToHub";
|
|
901
|
+
readonly type: "error";
|
|
902
|
+
}, {
|
|
903
|
+
readonly inputs: readonly [];
|
|
904
|
+
readonly name: "NotInitializing";
|
|
905
|
+
readonly type: "error";
|
|
906
|
+
}, {
|
|
907
|
+
readonly inputs: readonly [{
|
|
908
|
+
readonly internalType: "address";
|
|
909
|
+
readonly name: "vault";
|
|
910
|
+
readonly type: "address";
|
|
911
|
+
}];
|
|
912
|
+
readonly name: "PDGNotDepositor";
|
|
913
|
+
readonly type: "error";
|
|
914
|
+
}, {
|
|
915
|
+
readonly inputs: readonly [];
|
|
916
|
+
readonly name: "PartialValidatorWithdrawalNotAllowed";
|
|
917
|
+
readonly type: "error";
|
|
918
|
+
}, {
|
|
919
|
+
readonly inputs: readonly [];
|
|
920
|
+
readonly name: "PauseIntentAlreadySet";
|
|
921
|
+
readonly type: "error";
|
|
922
|
+
}, {
|
|
923
|
+
readonly inputs: readonly [];
|
|
924
|
+
readonly name: "PauseIntentAlreadyUnset";
|
|
925
|
+
readonly type: "error";
|
|
926
|
+
}, {
|
|
927
|
+
readonly inputs: readonly [];
|
|
928
|
+
readonly name: "PauseUntilMustBeInFuture";
|
|
929
|
+
readonly type: "error";
|
|
930
|
+
}, {
|
|
931
|
+
readonly inputs: readonly [];
|
|
932
|
+
readonly name: "PausedExpected";
|
|
933
|
+
readonly type: "error";
|
|
934
|
+
}, {
|
|
935
|
+
readonly inputs: readonly [];
|
|
936
|
+
readonly name: "ResumedExpected";
|
|
937
|
+
readonly type: "error";
|
|
938
|
+
}, {
|
|
939
|
+
readonly inputs: readonly [{
|
|
940
|
+
readonly internalType: "int256";
|
|
941
|
+
readonly name: "value";
|
|
942
|
+
readonly type: "int256";
|
|
943
|
+
}];
|
|
944
|
+
readonly name: "SafeCastOverflowedIntToUint";
|
|
945
|
+
readonly type: "error";
|
|
946
|
+
}, {
|
|
947
|
+
readonly inputs: readonly [{
|
|
948
|
+
readonly internalType: "uint8";
|
|
949
|
+
readonly name: "bits";
|
|
950
|
+
readonly type: "uint8";
|
|
951
|
+
}, {
|
|
952
|
+
readonly internalType: "uint256";
|
|
953
|
+
readonly name: "value";
|
|
954
|
+
readonly type: "uint256";
|
|
955
|
+
}];
|
|
956
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
957
|
+
readonly type: "error";
|
|
958
|
+
}, {
|
|
959
|
+
readonly inputs: readonly [{
|
|
960
|
+
readonly internalType: "address";
|
|
961
|
+
readonly name: "vault";
|
|
962
|
+
readonly type: "address";
|
|
963
|
+
}, {
|
|
964
|
+
readonly internalType: "uint256";
|
|
965
|
+
readonly name: "expectedSharesAfterMint";
|
|
966
|
+
readonly type: "uint256";
|
|
967
|
+
}, {
|
|
968
|
+
readonly internalType: "uint256";
|
|
969
|
+
readonly name: "shareLimit";
|
|
970
|
+
readonly type: "uint256";
|
|
971
|
+
}];
|
|
972
|
+
readonly name: "ShareLimitExceeded";
|
|
973
|
+
readonly type: "error";
|
|
974
|
+
}, {
|
|
975
|
+
readonly inputs: readonly [{
|
|
976
|
+
readonly internalType: "uint256";
|
|
977
|
+
readonly name: "shareLimit";
|
|
978
|
+
readonly type: "uint256";
|
|
979
|
+
}, {
|
|
980
|
+
readonly internalType: "uint256";
|
|
981
|
+
readonly name: "maxShareLimit";
|
|
982
|
+
readonly type: "uint256";
|
|
983
|
+
}];
|
|
984
|
+
readonly name: "ShareLimitTooHigh";
|
|
985
|
+
readonly type: "error";
|
|
986
|
+
}, {
|
|
987
|
+
readonly inputs: readonly [{
|
|
988
|
+
readonly internalType: "address";
|
|
989
|
+
readonly name: "vault";
|
|
990
|
+
readonly type: "address";
|
|
991
|
+
}];
|
|
992
|
+
readonly name: "VaultHubNotPendingOwner";
|
|
993
|
+
readonly type: "error";
|
|
994
|
+
}, {
|
|
995
|
+
readonly inputs: readonly [{
|
|
996
|
+
readonly internalType: "address";
|
|
997
|
+
readonly name: "vault";
|
|
998
|
+
readonly type: "address";
|
|
999
|
+
}, {
|
|
1000
|
+
readonly internalType: "uint256";
|
|
1001
|
+
readonly name: "currentBalance";
|
|
1002
|
+
readonly type: "uint256";
|
|
1003
|
+
}, {
|
|
1004
|
+
readonly internalType: "uint256";
|
|
1005
|
+
readonly name: "expectedBalance";
|
|
1006
|
+
readonly type: "uint256";
|
|
1007
|
+
}];
|
|
1008
|
+
readonly name: "VaultInsufficientBalance";
|
|
1009
|
+
readonly type: "error";
|
|
1010
|
+
}, {
|
|
1011
|
+
readonly inputs: readonly [{
|
|
1012
|
+
readonly internalType: "address";
|
|
1013
|
+
readonly name: "vault";
|
|
1014
|
+
readonly type: "address";
|
|
1015
|
+
}];
|
|
1016
|
+
readonly name: "VaultIsDisconnecting";
|
|
1017
|
+
readonly type: "error";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly inputs: readonly [{
|
|
1020
|
+
readonly internalType: "address";
|
|
1021
|
+
readonly name: "vault";
|
|
1022
|
+
readonly type: "address";
|
|
1023
|
+
}, {
|
|
1024
|
+
readonly internalType: "uint256";
|
|
1025
|
+
readonly name: "totalValue";
|
|
1026
|
+
readonly type: "uint256";
|
|
1027
|
+
}, {
|
|
1028
|
+
readonly internalType: "uint256";
|
|
1029
|
+
readonly name: "liabilityShares";
|
|
1030
|
+
readonly type: "uint256";
|
|
1031
|
+
}, {
|
|
1032
|
+
readonly internalType: "uint256";
|
|
1033
|
+
readonly name: "newRebalanceThresholdBP";
|
|
1034
|
+
readonly type: "uint256";
|
|
1035
|
+
}];
|
|
1036
|
+
readonly name: "VaultMintingCapacityExceeded";
|
|
1037
|
+
readonly type: "error";
|
|
1038
|
+
}, {
|
|
1039
|
+
readonly inputs: readonly [{
|
|
1040
|
+
readonly internalType: "address";
|
|
1041
|
+
readonly name: "vault";
|
|
1042
|
+
readonly type: "address";
|
|
1043
|
+
}];
|
|
1044
|
+
readonly name: "VaultNotFactoryDeployed";
|
|
1045
|
+
readonly type: "error";
|
|
1046
|
+
}, {
|
|
1047
|
+
readonly inputs: readonly [{
|
|
1048
|
+
readonly internalType: "address";
|
|
1049
|
+
readonly name: "vault";
|
|
1050
|
+
readonly type: "address";
|
|
1051
|
+
}];
|
|
1052
|
+
readonly name: "VaultOssified";
|
|
1053
|
+
readonly type: "error";
|
|
1054
|
+
}, {
|
|
1055
|
+
readonly inputs: readonly [{
|
|
1056
|
+
readonly internalType: "address";
|
|
1057
|
+
readonly name: "vault";
|
|
1058
|
+
readonly type: "address";
|
|
1059
|
+
}];
|
|
1060
|
+
readonly name: "VaultReportStale";
|
|
1061
|
+
readonly type: "error";
|
|
1062
|
+
}, {
|
|
1063
|
+
readonly inputs: readonly [];
|
|
1064
|
+
readonly name: "ZeroAddress";
|
|
1065
|
+
readonly type: "error";
|
|
1066
|
+
}, {
|
|
1067
|
+
readonly inputs: readonly [];
|
|
1068
|
+
readonly name: "ZeroArgument";
|
|
1069
|
+
readonly type: "error";
|
|
1070
|
+
}, {
|
|
1071
|
+
readonly inputs: readonly [];
|
|
1072
|
+
readonly name: "ZeroPauseDuration";
|
|
1073
|
+
readonly type: "error";
|
|
1074
|
+
}, {
|
|
1075
|
+
readonly inputs: readonly [{
|
|
1076
|
+
readonly internalType: "address";
|
|
1077
|
+
readonly name: "_stETH";
|
|
1078
|
+
readonly type: "address";
|
|
1079
|
+
}, {
|
|
1080
|
+
readonly internalType: "address";
|
|
1081
|
+
readonly name: "_wstETH";
|
|
1082
|
+
readonly type: "address";
|
|
1083
|
+
}, {
|
|
1084
|
+
readonly internalType: "address";
|
|
1085
|
+
readonly name: "_vaultHub";
|
|
1086
|
+
readonly type: "address";
|
|
1087
|
+
}, {
|
|
1088
|
+
readonly internalType: "address";
|
|
1089
|
+
readonly name: "_lidoLocator";
|
|
1090
|
+
readonly type: "address";
|
|
1091
|
+
}];
|
|
1092
|
+
readonly stateMutability: "nonpayable";
|
|
1093
|
+
readonly type: "constructor";
|
|
1094
|
+
}, {
|
|
1095
|
+
readonly anonymous: false;
|
|
1096
|
+
readonly inputs: readonly [{
|
|
1097
|
+
readonly indexed: true;
|
|
1098
|
+
readonly internalType: "address";
|
|
1099
|
+
readonly name: "to";
|
|
1100
|
+
readonly type: "address";
|
|
1101
|
+
}, {
|
|
1102
|
+
readonly indexed: true;
|
|
1103
|
+
readonly internalType: "address";
|
|
1104
|
+
readonly name: "assetAddress";
|
|
1105
|
+
readonly type: "address";
|
|
1106
|
+
}, {
|
|
1107
|
+
readonly indexed: false;
|
|
1108
|
+
readonly internalType: "uint256";
|
|
1109
|
+
readonly name: "amount";
|
|
1110
|
+
readonly type: "uint256";
|
|
1111
|
+
}];
|
|
1112
|
+
readonly name: "AssetsRecovered";
|
|
1113
|
+
readonly type: "event";
|
|
1114
|
+
}, {
|
|
1115
|
+
readonly anonymous: false;
|
|
1116
|
+
readonly inputs: readonly [{
|
|
1117
|
+
readonly indexed: true;
|
|
1118
|
+
readonly internalType: "address";
|
|
1119
|
+
readonly name: "sender";
|
|
1120
|
+
readonly type: "address";
|
|
1121
|
+
}, {
|
|
1122
|
+
readonly indexed: false;
|
|
1123
|
+
readonly internalType: "uint256";
|
|
1124
|
+
readonly name: "oldConfirmExpiry";
|
|
1125
|
+
readonly type: "uint256";
|
|
1126
|
+
}, {
|
|
1127
|
+
readonly indexed: false;
|
|
1128
|
+
readonly internalType: "uint256";
|
|
1129
|
+
readonly name: "newConfirmExpiry";
|
|
1130
|
+
readonly type: "uint256";
|
|
1131
|
+
}];
|
|
1132
|
+
readonly name: "ConfirmExpirySet";
|
|
1133
|
+
readonly type: "event";
|
|
1134
|
+
}, {
|
|
1135
|
+
readonly anonymous: false;
|
|
1136
|
+
readonly inputs: readonly [{
|
|
1137
|
+
readonly indexed: false;
|
|
1138
|
+
readonly internalType: "uint256";
|
|
1139
|
+
readonly name: "timestamp";
|
|
1140
|
+
readonly type: "uint256";
|
|
1141
|
+
}];
|
|
1142
|
+
readonly name: "CorrectionTimestampUpdated";
|
|
1143
|
+
readonly type: "event";
|
|
1144
|
+
}, {
|
|
1145
|
+
readonly anonymous: false;
|
|
1146
|
+
readonly inputs: readonly [{
|
|
1147
|
+
readonly indexed: true;
|
|
1148
|
+
readonly internalType: "address";
|
|
1149
|
+
readonly name: "sender";
|
|
1150
|
+
readonly type: "address";
|
|
1151
|
+
}, {
|
|
1152
|
+
readonly indexed: false;
|
|
1153
|
+
readonly internalType: "uint256";
|
|
1154
|
+
readonly name: "fee";
|
|
1155
|
+
readonly type: "uint256";
|
|
1156
|
+
}];
|
|
1157
|
+
readonly name: "FeeDisbursed";
|
|
1158
|
+
readonly type: "event";
|
|
1159
|
+
}, {
|
|
1160
|
+
readonly anonymous: false;
|
|
1161
|
+
readonly inputs: readonly [{
|
|
1162
|
+
readonly indexed: true;
|
|
1163
|
+
readonly internalType: "address";
|
|
1164
|
+
readonly name: "sender";
|
|
1165
|
+
readonly type: "address";
|
|
1166
|
+
}, {
|
|
1167
|
+
readonly indexed: false;
|
|
1168
|
+
readonly internalType: "uint256";
|
|
1169
|
+
readonly name: "oldFeeRate";
|
|
1170
|
+
readonly type: "uint256";
|
|
1171
|
+
}, {
|
|
1172
|
+
readonly indexed: false;
|
|
1173
|
+
readonly internalType: "uint256";
|
|
1174
|
+
readonly name: "newFeeRate";
|
|
1175
|
+
readonly type: "uint256";
|
|
1176
|
+
}];
|
|
1177
|
+
readonly name: "FeeRateSet";
|
|
1178
|
+
readonly type: "event";
|
|
1179
|
+
}, {
|
|
1180
|
+
readonly anonymous: false;
|
|
1181
|
+
readonly inputs: readonly [{
|
|
1182
|
+
readonly indexed: true;
|
|
1183
|
+
readonly internalType: "address";
|
|
1184
|
+
readonly name: "sender";
|
|
1185
|
+
readonly type: "address";
|
|
1186
|
+
}, {
|
|
1187
|
+
readonly indexed: false;
|
|
1188
|
+
readonly internalType: "address";
|
|
1189
|
+
readonly name: "oldFeeRecipient";
|
|
1190
|
+
readonly type: "address";
|
|
1191
|
+
}, {
|
|
1192
|
+
readonly indexed: false;
|
|
1193
|
+
readonly internalType: "address";
|
|
1194
|
+
readonly name: "newFeeRecipient";
|
|
1195
|
+
readonly type: "address";
|
|
1196
|
+
}];
|
|
1197
|
+
readonly name: "FeeRecipientSet";
|
|
1198
|
+
readonly type: "event";
|
|
1199
|
+
}, {
|
|
1200
|
+
readonly anonymous: false;
|
|
1201
|
+
readonly inputs: readonly [];
|
|
1202
|
+
readonly name: "Initialized";
|
|
1203
|
+
readonly type: "event";
|
|
1204
|
+
}, {
|
|
1205
|
+
readonly anonymous: false;
|
|
1206
|
+
readonly inputs: readonly [{
|
|
1207
|
+
readonly indexed: false;
|
|
1208
|
+
readonly internalType: "enum Dashboard.PDGPolicy";
|
|
1209
|
+
readonly name: "pdgPolicy";
|
|
1210
|
+
readonly type: "uint8";
|
|
1211
|
+
}];
|
|
1212
|
+
readonly name: "PDGPolicyEnacted";
|
|
1213
|
+
readonly type: "event";
|
|
1214
|
+
}, {
|
|
1215
|
+
readonly anonymous: false;
|
|
1216
|
+
readonly inputs: readonly [{
|
|
1217
|
+
readonly indexed: true;
|
|
1218
|
+
readonly internalType: "bytes32";
|
|
1219
|
+
readonly name: "role";
|
|
1220
|
+
readonly type: "bytes32";
|
|
1221
|
+
}, {
|
|
1222
|
+
readonly indexed: true;
|
|
1223
|
+
readonly internalType: "bytes32";
|
|
1224
|
+
readonly name: "previousAdminRole";
|
|
1225
|
+
readonly type: "bytes32";
|
|
1226
|
+
}, {
|
|
1227
|
+
readonly indexed: true;
|
|
1228
|
+
readonly internalType: "bytes32";
|
|
1229
|
+
readonly name: "newAdminRole";
|
|
1230
|
+
readonly type: "bytes32";
|
|
1231
|
+
}];
|
|
1232
|
+
readonly name: "RoleAdminChanged";
|
|
1233
|
+
readonly type: "event";
|
|
1234
|
+
}, {
|
|
1235
|
+
readonly anonymous: false;
|
|
1236
|
+
readonly inputs: readonly [{
|
|
1237
|
+
readonly indexed: true;
|
|
1238
|
+
readonly internalType: "bytes32";
|
|
1239
|
+
readonly name: "role";
|
|
1240
|
+
readonly type: "bytes32";
|
|
1241
|
+
}, {
|
|
1242
|
+
readonly indexed: true;
|
|
1243
|
+
readonly internalType: "address";
|
|
1244
|
+
readonly name: "account";
|
|
1245
|
+
readonly type: "address";
|
|
1246
|
+
}, {
|
|
1247
|
+
readonly indexed: true;
|
|
1248
|
+
readonly internalType: "address";
|
|
1249
|
+
readonly name: "sender";
|
|
1250
|
+
readonly type: "address";
|
|
1251
|
+
}];
|
|
1252
|
+
readonly name: "RoleGranted";
|
|
1253
|
+
readonly type: "event";
|
|
1254
|
+
}, {
|
|
1255
|
+
readonly anonymous: false;
|
|
1256
|
+
readonly inputs: readonly [{
|
|
1257
|
+
readonly indexed: true;
|
|
1258
|
+
readonly internalType: "address";
|
|
1259
|
+
readonly name: "member";
|
|
1260
|
+
readonly type: "address";
|
|
1261
|
+
}, {
|
|
1262
|
+
readonly indexed: true;
|
|
1263
|
+
readonly internalType: "bytes32";
|
|
1264
|
+
readonly name: "roleOrAddress";
|
|
1265
|
+
readonly type: "bytes32";
|
|
1266
|
+
}, {
|
|
1267
|
+
readonly indexed: false;
|
|
1268
|
+
readonly internalType: "uint256";
|
|
1269
|
+
readonly name: "confirmTimestamp";
|
|
1270
|
+
readonly type: "uint256";
|
|
1271
|
+
}, {
|
|
1272
|
+
readonly indexed: false;
|
|
1273
|
+
readonly internalType: "uint256";
|
|
1274
|
+
readonly name: "expiryTimestamp";
|
|
1275
|
+
readonly type: "uint256";
|
|
1276
|
+
}, {
|
|
1277
|
+
readonly indexed: false;
|
|
1278
|
+
readonly internalType: "bytes";
|
|
1279
|
+
readonly name: "data";
|
|
1280
|
+
readonly type: "bytes";
|
|
1281
|
+
}];
|
|
1282
|
+
readonly name: "RoleMemberConfirmed";
|
|
1283
|
+
readonly type: "event";
|
|
1284
|
+
}, {
|
|
1285
|
+
readonly anonymous: false;
|
|
1286
|
+
readonly inputs: readonly [{
|
|
1287
|
+
readonly indexed: true;
|
|
1288
|
+
readonly internalType: "bytes32";
|
|
1289
|
+
readonly name: "role";
|
|
1290
|
+
readonly type: "bytes32";
|
|
1291
|
+
}, {
|
|
1292
|
+
readonly indexed: true;
|
|
1293
|
+
readonly internalType: "address";
|
|
1294
|
+
readonly name: "account";
|
|
1295
|
+
readonly type: "address";
|
|
1296
|
+
}, {
|
|
1297
|
+
readonly indexed: true;
|
|
1298
|
+
readonly internalType: "address";
|
|
1299
|
+
readonly name: "sender";
|
|
1300
|
+
readonly type: "address";
|
|
1301
|
+
}];
|
|
1302
|
+
readonly name: "RoleRevoked";
|
|
1303
|
+
readonly type: "event";
|
|
1304
|
+
}, {
|
|
1305
|
+
readonly anonymous: false;
|
|
1306
|
+
readonly inputs: readonly [{
|
|
1307
|
+
readonly indexed: false;
|
|
1308
|
+
readonly internalType: "int128";
|
|
1309
|
+
readonly name: "oldSettledGrowth";
|
|
1310
|
+
readonly type: "int128";
|
|
1311
|
+
}, {
|
|
1312
|
+
readonly indexed: false;
|
|
1313
|
+
readonly internalType: "int128";
|
|
1314
|
+
readonly name: "newSettledGrowth";
|
|
1315
|
+
readonly type: "int128";
|
|
1316
|
+
}];
|
|
1317
|
+
readonly name: "SettledGrowthSet";
|
|
1318
|
+
readonly type: "event";
|
|
1319
|
+
}, {
|
|
1320
|
+
readonly anonymous: false;
|
|
1321
|
+
readonly inputs: readonly [{
|
|
1322
|
+
readonly indexed: true;
|
|
1323
|
+
readonly internalType: "address";
|
|
1324
|
+
readonly name: "stakingVault";
|
|
1325
|
+
readonly type: "address";
|
|
1326
|
+
}, {
|
|
1327
|
+
readonly indexed: false;
|
|
1328
|
+
readonly internalType: "uint256";
|
|
1329
|
+
readonly name: "deposits";
|
|
1330
|
+
readonly type: "uint256";
|
|
1331
|
+
}, {
|
|
1332
|
+
readonly indexed: false;
|
|
1333
|
+
readonly internalType: "uint256";
|
|
1334
|
+
readonly name: "totalAmount";
|
|
1335
|
+
readonly type: "uint256";
|
|
1336
|
+
}];
|
|
1337
|
+
readonly name: "UnguaranteedDeposits";
|
|
1338
|
+
readonly type: "event";
|
|
1339
|
+
}, {
|
|
1340
|
+
readonly inputs: readonly [];
|
|
1341
|
+
readonly name: "BURN_ROLE";
|
|
1342
|
+
readonly outputs: readonly [{
|
|
1343
|
+
readonly internalType: "bytes32";
|
|
1344
|
+
readonly name: "";
|
|
1345
|
+
readonly type: "bytes32";
|
|
1346
|
+
}];
|
|
1347
|
+
readonly stateMutability: "view";
|
|
1348
|
+
readonly type: "function";
|
|
1349
|
+
}, {
|
|
1350
|
+
readonly inputs: readonly [];
|
|
1351
|
+
readonly name: "COLLECT_VAULT_ERC20_ROLE";
|
|
1352
|
+
readonly outputs: readonly [{
|
|
1353
|
+
readonly internalType: "bytes32";
|
|
1354
|
+
readonly name: "";
|
|
1355
|
+
readonly type: "bytes32";
|
|
1356
|
+
}];
|
|
1357
|
+
readonly stateMutability: "view";
|
|
1358
|
+
readonly type: "function";
|
|
1359
|
+
}, {
|
|
1360
|
+
readonly inputs: readonly [];
|
|
1361
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
1362
|
+
readonly outputs: readonly [{
|
|
1363
|
+
readonly internalType: "bytes32";
|
|
1364
|
+
readonly name: "";
|
|
1365
|
+
readonly type: "bytes32";
|
|
1366
|
+
}];
|
|
1367
|
+
readonly stateMutability: "view";
|
|
1368
|
+
readonly type: "function";
|
|
1369
|
+
}, {
|
|
1370
|
+
readonly inputs: readonly [];
|
|
1371
|
+
readonly name: "FUND_ON_RECEIVE_FLAG_SLOT";
|
|
1372
|
+
readonly outputs: readonly [{
|
|
1373
|
+
readonly internalType: "bytes32";
|
|
1374
|
+
readonly name: "";
|
|
1375
|
+
readonly type: "bytes32";
|
|
1376
|
+
}];
|
|
1377
|
+
readonly stateMutability: "view";
|
|
1378
|
+
readonly type: "function";
|
|
1379
|
+
}, {
|
|
1380
|
+
readonly inputs: readonly [];
|
|
1381
|
+
readonly name: "FUND_ROLE";
|
|
1382
|
+
readonly outputs: readonly [{
|
|
1383
|
+
readonly internalType: "bytes32";
|
|
1384
|
+
readonly name: "";
|
|
1385
|
+
readonly type: "bytes32";
|
|
1386
|
+
}];
|
|
1387
|
+
readonly stateMutability: "view";
|
|
1388
|
+
readonly type: "function";
|
|
1389
|
+
}, {
|
|
1390
|
+
readonly inputs: readonly [];
|
|
1391
|
+
readonly name: "LIDO_LOCATOR";
|
|
1392
|
+
readonly outputs: readonly [{
|
|
1393
|
+
readonly internalType: "contract ILidoLocator";
|
|
1394
|
+
readonly name: "";
|
|
1395
|
+
readonly type: "address";
|
|
1396
|
+
}];
|
|
1397
|
+
readonly stateMutability: "view";
|
|
1398
|
+
readonly type: "function";
|
|
1399
|
+
}, {
|
|
1400
|
+
readonly inputs: readonly [];
|
|
1401
|
+
readonly name: "MAX_CONFIRM_EXPIRY";
|
|
1402
|
+
readonly outputs: readonly [{
|
|
1403
|
+
readonly internalType: "uint256";
|
|
1404
|
+
readonly name: "";
|
|
1405
|
+
readonly type: "uint256";
|
|
1406
|
+
}];
|
|
1407
|
+
readonly stateMutability: "view";
|
|
1408
|
+
readonly type: "function";
|
|
1409
|
+
}, {
|
|
1410
|
+
readonly inputs: readonly [];
|
|
1411
|
+
readonly name: "MINT_ROLE";
|
|
1412
|
+
readonly outputs: readonly [{
|
|
1413
|
+
readonly internalType: "bytes32";
|
|
1414
|
+
readonly name: "";
|
|
1415
|
+
readonly type: "bytes32";
|
|
1416
|
+
}];
|
|
1417
|
+
readonly stateMutability: "view";
|
|
1418
|
+
readonly type: "function";
|
|
1419
|
+
}, {
|
|
1420
|
+
readonly inputs: readonly [];
|
|
1421
|
+
readonly name: "MIN_CONFIRM_EXPIRY";
|
|
1422
|
+
readonly outputs: readonly [{
|
|
1423
|
+
readonly internalType: "uint256";
|
|
1424
|
+
readonly name: "";
|
|
1425
|
+
readonly type: "uint256";
|
|
1426
|
+
}];
|
|
1427
|
+
readonly stateMutability: "view";
|
|
1428
|
+
readonly type: "function";
|
|
1429
|
+
}, {
|
|
1430
|
+
readonly inputs: readonly [];
|
|
1431
|
+
readonly name: "NODE_OPERATOR_FEE_EXEMPT_ROLE";
|
|
1432
|
+
readonly outputs: readonly [{
|
|
1433
|
+
readonly internalType: "bytes32";
|
|
1434
|
+
readonly name: "";
|
|
1435
|
+
readonly type: "bytes32";
|
|
1436
|
+
}];
|
|
1437
|
+
readonly stateMutability: "view";
|
|
1438
|
+
readonly type: "function";
|
|
1439
|
+
}, {
|
|
1440
|
+
readonly inputs: readonly [];
|
|
1441
|
+
readonly name: "NODE_OPERATOR_MANAGER_ROLE";
|
|
1442
|
+
readonly outputs: readonly [{
|
|
1443
|
+
readonly internalType: "bytes32";
|
|
1444
|
+
readonly name: "";
|
|
1445
|
+
readonly type: "bytes32";
|
|
1446
|
+
}];
|
|
1447
|
+
readonly stateMutability: "view";
|
|
1448
|
+
readonly type: "function";
|
|
1449
|
+
}, {
|
|
1450
|
+
readonly inputs: readonly [];
|
|
1451
|
+
readonly name: "NODE_OPERATOR_PROVE_UNKNOWN_VALIDATOR_ROLE";
|
|
1452
|
+
readonly outputs: readonly [{
|
|
1453
|
+
readonly internalType: "bytes32";
|
|
1454
|
+
readonly name: "";
|
|
1455
|
+
readonly type: "bytes32";
|
|
1456
|
+
}];
|
|
1457
|
+
readonly stateMutability: "view";
|
|
1458
|
+
readonly type: "function";
|
|
1459
|
+
}, {
|
|
1460
|
+
readonly inputs: readonly [];
|
|
1461
|
+
readonly name: "NODE_OPERATOR_UNGUARANTEED_DEPOSIT_ROLE";
|
|
1462
|
+
readonly outputs: readonly [{
|
|
1463
|
+
readonly internalType: "bytes32";
|
|
1464
|
+
readonly name: "";
|
|
1465
|
+
readonly type: "bytes32";
|
|
1466
|
+
}];
|
|
1467
|
+
readonly stateMutability: "view";
|
|
1468
|
+
readonly type: "function";
|
|
1469
|
+
}, {
|
|
1470
|
+
readonly inputs: readonly [];
|
|
1471
|
+
readonly name: "PAUSE_BEACON_CHAIN_DEPOSITS_ROLE";
|
|
1472
|
+
readonly outputs: readonly [{
|
|
1473
|
+
readonly internalType: "bytes32";
|
|
1474
|
+
readonly name: "";
|
|
1475
|
+
readonly type: "bytes32";
|
|
1476
|
+
}];
|
|
1477
|
+
readonly stateMutability: "view";
|
|
1478
|
+
readonly type: "function";
|
|
1479
|
+
}, {
|
|
1480
|
+
readonly inputs: readonly [];
|
|
1481
|
+
readonly name: "REBALANCE_ROLE";
|
|
1482
|
+
readonly outputs: readonly [{
|
|
1483
|
+
readonly internalType: "bytes32";
|
|
1484
|
+
readonly name: "";
|
|
1485
|
+
readonly type: "bytes32";
|
|
1486
|
+
}];
|
|
1487
|
+
readonly stateMutability: "view";
|
|
1488
|
+
readonly type: "function";
|
|
1489
|
+
}, {
|
|
1490
|
+
readonly inputs: readonly [];
|
|
1491
|
+
readonly name: "REQUEST_VALIDATOR_EXIT_ROLE";
|
|
1492
|
+
readonly outputs: readonly [{
|
|
1493
|
+
readonly internalType: "bytes32";
|
|
1494
|
+
readonly name: "";
|
|
1495
|
+
readonly type: "bytes32";
|
|
1496
|
+
}];
|
|
1497
|
+
readonly stateMutability: "view";
|
|
1498
|
+
readonly type: "function";
|
|
1499
|
+
}, {
|
|
1500
|
+
readonly inputs: readonly [];
|
|
1501
|
+
readonly name: "RESUME_BEACON_CHAIN_DEPOSITS_ROLE";
|
|
1502
|
+
readonly outputs: readonly [{
|
|
1503
|
+
readonly internalType: "bytes32";
|
|
1504
|
+
readonly name: "";
|
|
1505
|
+
readonly type: "bytes32";
|
|
1506
|
+
}];
|
|
1507
|
+
readonly stateMutability: "view";
|
|
1508
|
+
readonly type: "function";
|
|
1509
|
+
}, {
|
|
1510
|
+
readonly inputs: readonly [];
|
|
1511
|
+
readonly name: "STETH";
|
|
1512
|
+
readonly outputs: readonly [{
|
|
1513
|
+
readonly internalType: "contract ILido";
|
|
1514
|
+
readonly name: "";
|
|
1515
|
+
readonly type: "address";
|
|
1516
|
+
}];
|
|
1517
|
+
readonly stateMutability: "view";
|
|
1518
|
+
readonly type: "function";
|
|
1519
|
+
}, {
|
|
1520
|
+
readonly inputs: readonly [];
|
|
1521
|
+
readonly name: "TRIGGER_VALIDATOR_WITHDRAWAL_ROLE";
|
|
1522
|
+
readonly outputs: readonly [{
|
|
1523
|
+
readonly internalType: "bytes32";
|
|
1524
|
+
readonly name: "";
|
|
1525
|
+
readonly type: "bytes32";
|
|
1526
|
+
}];
|
|
1527
|
+
readonly stateMutability: "view";
|
|
1528
|
+
readonly type: "function";
|
|
1529
|
+
}, {
|
|
1530
|
+
readonly inputs: readonly [];
|
|
1531
|
+
readonly name: "VAULT_CONFIGURATION_ROLE";
|
|
1532
|
+
readonly outputs: readonly [{
|
|
1533
|
+
readonly internalType: "bytes32";
|
|
1534
|
+
readonly name: "";
|
|
1535
|
+
readonly type: "bytes32";
|
|
1536
|
+
}];
|
|
1537
|
+
readonly stateMutability: "view";
|
|
1538
|
+
readonly type: "function";
|
|
1539
|
+
}, {
|
|
1540
|
+
readonly inputs: readonly [];
|
|
1541
|
+
readonly name: "VAULT_HUB";
|
|
1542
|
+
readonly outputs: readonly [{
|
|
1543
|
+
readonly internalType: "contract VaultHub";
|
|
1544
|
+
readonly name: "";
|
|
1545
|
+
readonly type: "address";
|
|
1546
|
+
}];
|
|
1547
|
+
readonly stateMutability: "view";
|
|
1548
|
+
readonly type: "function";
|
|
1549
|
+
}, {
|
|
1550
|
+
readonly inputs: readonly [];
|
|
1551
|
+
readonly name: "VOLUNTARY_DISCONNECT_ROLE";
|
|
1552
|
+
readonly outputs: readonly [{
|
|
1553
|
+
readonly internalType: "bytes32";
|
|
1554
|
+
readonly name: "";
|
|
1555
|
+
readonly type: "bytes32";
|
|
1556
|
+
}];
|
|
1557
|
+
readonly stateMutability: "view";
|
|
1558
|
+
readonly type: "function";
|
|
1559
|
+
}, {
|
|
1560
|
+
readonly inputs: readonly [];
|
|
1561
|
+
readonly name: "WITHDRAW_ROLE";
|
|
1562
|
+
readonly outputs: readonly [{
|
|
1563
|
+
readonly internalType: "bytes32";
|
|
1564
|
+
readonly name: "";
|
|
1565
|
+
readonly type: "bytes32";
|
|
1566
|
+
}];
|
|
1567
|
+
readonly stateMutability: "view";
|
|
1568
|
+
readonly type: "function";
|
|
1569
|
+
}, {
|
|
1570
|
+
readonly inputs: readonly [];
|
|
1571
|
+
readonly name: "WSTETH";
|
|
1572
|
+
readonly outputs: readonly [{
|
|
1573
|
+
readonly internalType: "contract IWstETH";
|
|
1574
|
+
readonly name: "";
|
|
1575
|
+
readonly type: "address";
|
|
1576
|
+
}];
|
|
1577
|
+
readonly stateMutability: "view";
|
|
1578
|
+
readonly type: "function";
|
|
1579
|
+
}, {
|
|
1580
|
+
readonly inputs: readonly [{
|
|
1581
|
+
readonly internalType: "address";
|
|
1582
|
+
readonly name: "_newOwner";
|
|
1583
|
+
readonly type: "address";
|
|
1584
|
+
}];
|
|
1585
|
+
readonly name: "abandonDashboard";
|
|
1586
|
+
readonly outputs: readonly [];
|
|
1587
|
+
readonly stateMutability: "nonpayable";
|
|
1588
|
+
readonly type: "function";
|
|
1589
|
+
}, {
|
|
1590
|
+
readonly inputs: readonly [];
|
|
1591
|
+
readonly name: "accruedFee";
|
|
1592
|
+
readonly outputs: readonly [{
|
|
1593
|
+
readonly internalType: "uint256";
|
|
1594
|
+
readonly name: "fee";
|
|
1595
|
+
readonly type: "uint256";
|
|
1596
|
+
}];
|
|
1597
|
+
readonly stateMutability: "view";
|
|
1598
|
+
readonly type: "function";
|
|
1599
|
+
}, {
|
|
1600
|
+
readonly inputs: readonly [{
|
|
1601
|
+
readonly internalType: "uint256";
|
|
1602
|
+
readonly name: "_exemptedAmount";
|
|
1603
|
+
readonly type: "uint256";
|
|
1604
|
+
}];
|
|
1605
|
+
readonly name: "addFeeExemption";
|
|
1606
|
+
readonly outputs: readonly [];
|
|
1607
|
+
readonly stateMutability: "nonpayable";
|
|
1608
|
+
readonly type: "function";
|
|
1609
|
+
}, {
|
|
1610
|
+
readonly inputs: readonly [{
|
|
1611
|
+
readonly internalType: "uint256";
|
|
1612
|
+
readonly name: "_amountOfShares";
|
|
1613
|
+
readonly type: "uint256";
|
|
1614
|
+
}];
|
|
1615
|
+
readonly name: "burnShares";
|
|
1616
|
+
readonly outputs: readonly [];
|
|
1617
|
+
readonly stateMutability: "nonpayable";
|
|
1618
|
+
readonly type: "function";
|
|
1619
|
+
}, {
|
|
1620
|
+
readonly inputs: readonly [{
|
|
1621
|
+
readonly internalType: "uint256";
|
|
1622
|
+
readonly name: "_amountOfStETH";
|
|
1623
|
+
readonly type: "uint256";
|
|
1624
|
+
}];
|
|
1625
|
+
readonly name: "burnStETH";
|
|
1626
|
+
readonly outputs: readonly [];
|
|
1627
|
+
readonly stateMutability: "nonpayable";
|
|
1628
|
+
readonly type: "function";
|
|
1629
|
+
}, {
|
|
1630
|
+
readonly inputs: readonly [{
|
|
1631
|
+
readonly internalType: "uint256";
|
|
1632
|
+
readonly name: "_amountOfWstETH";
|
|
1633
|
+
readonly type: "uint256";
|
|
1634
|
+
}];
|
|
1635
|
+
readonly name: "burnWstETH";
|
|
1636
|
+
readonly outputs: readonly [];
|
|
1637
|
+
readonly stateMutability: "nonpayable";
|
|
1638
|
+
readonly type: "function";
|
|
1639
|
+
}, {
|
|
1640
|
+
readonly inputs: readonly [{
|
|
1641
|
+
readonly internalType: "uint256";
|
|
1642
|
+
readonly name: "_tierId";
|
|
1643
|
+
readonly type: "uint256";
|
|
1644
|
+
}, {
|
|
1645
|
+
readonly internalType: "uint256";
|
|
1646
|
+
readonly name: "_requestedShareLimit";
|
|
1647
|
+
readonly type: "uint256";
|
|
1648
|
+
}];
|
|
1649
|
+
readonly name: "changeTier";
|
|
1650
|
+
readonly outputs: readonly [{
|
|
1651
|
+
readonly internalType: "bool";
|
|
1652
|
+
readonly name: "";
|
|
1653
|
+
readonly type: "bool";
|
|
1654
|
+
}];
|
|
1655
|
+
readonly stateMutability: "nonpayable";
|
|
1656
|
+
readonly type: "function";
|
|
1657
|
+
}, {
|
|
1658
|
+
readonly inputs: readonly [{
|
|
1659
|
+
readonly internalType: "address";
|
|
1660
|
+
readonly name: "_token";
|
|
1661
|
+
readonly type: "address";
|
|
1662
|
+
}, {
|
|
1663
|
+
readonly internalType: "address";
|
|
1664
|
+
readonly name: "_recipient";
|
|
1665
|
+
readonly type: "address";
|
|
1666
|
+
}, {
|
|
1667
|
+
readonly internalType: "uint256";
|
|
1668
|
+
readonly name: "_amount";
|
|
1669
|
+
readonly type: "uint256";
|
|
1670
|
+
}];
|
|
1671
|
+
readonly name: "collectERC20FromVault";
|
|
1672
|
+
readonly outputs: readonly [];
|
|
1673
|
+
readonly stateMutability: "nonpayable";
|
|
1674
|
+
readonly type: "function";
|
|
1675
|
+
}, {
|
|
1676
|
+
readonly inputs: readonly [{
|
|
1677
|
+
readonly internalType: "bytes";
|
|
1678
|
+
readonly name: "_callData";
|
|
1679
|
+
readonly type: "bytes";
|
|
1680
|
+
}, {
|
|
1681
|
+
readonly internalType: "bytes32";
|
|
1682
|
+
readonly name: "_role";
|
|
1683
|
+
readonly type: "bytes32";
|
|
1684
|
+
}];
|
|
1685
|
+
readonly name: "confirmation";
|
|
1686
|
+
readonly outputs: readonly [{
|
|
1687
|
+
readonly internalType: "uint256";
|
|
1688
|
+
readonly name: "";
|
|
1689
|
+
readonly type: "uint256";
|
|
1690
|
+
}];
|
|
1691
|
+
readonly stateMutability: "view";
|
|
1692
|
+
readonly type: "function";
|
|
1693
|
+
}, {
|
|
1694
|
+
readonly inputs: readonly [];
|
|
1695
|
+
readonly name: "confirmingRoles";
|
|
1696
|
+
readonly outputs: readonly [{
|
|
1697
|
+
readonly internalType: "bytes32[]";
|
|
1698
|
+
readonly name: "roles";
|
|
1699
|
+
readonly type: "bytes32[]";
|
|
1700
|
+
}];
|
|
1701
|
+
readonly stateMutability: "pure";
|
|
1702
|
+
readonly type: "function";
|
|
1703
|
+
}, {
|
|
1704
|
+
readonly inputs: readonly [{
|
|
1705
|
+
readonly internalType: "uint256";
|
|
1706
|
+
readonly name: "_tierId";
|
|
1707
|
+
readonly type: "uint256";
|
|
1708
|
+
}, {
|
|
1709
|
+
readonly internalType: "uint256";
|
|
1710
|
+
readonly name: "_requestedShareLimit";
|
|
1711
|
+
readonly type: "uint256";
|
|
1712
|
+
}, {
|
|
1713
|
+
readonly internalType: "uint256";
|
|
1714
|
+
readonly name: "_currentSettledGrowth";
|
|
1715
|
+
readonly type: "uint256";
|
|
1716
|
+
}];
|
|
1717
|
+
readonly name: "connectAndAcceptTier";
|
|
1718
|
+
readonly outputs: readonly [];
|
|
1719
|
+
readonly stateMutability: "payable";
|
|
1720
|
+
readonly type: "function";
|
|
1721
|
+
}, {
|
|
1722
|
+
readonly inputs: readonly [{
|
|
1723
|
+
readonly internalType: "uint256";
|
|
1724
|
+
readonly name: "_currentSettledGrowth";
|
|
1725
|
+
readonly type: "uint256";
|
|
1726
|
+
}];
|
|
1727
|
+
readonly name: "connectToVaultHub";
|
|
1728
|
+
readonly outputs: readonly [];
|
|
1729
|
+
readonly stateMutability: "payable";
|
|
1730
|
+
readonly type: "function";
|
|
1731
|
+
}, {
|
|
1732
|
+
readonly inputs: readonly [{
|
|
1733
|
+
readonly internalType: "int256";
|
|
1734
|
+
readonly name: "_newSettledGrowth";
|
|
1735
|
+
readonly type: "int256";
|
|
1736
|
+
}, {
|
|
1737
|
+
readonly internalType: "int256";
|
|
1738
|
+
readonly name: "_expectedSettledGrowth";
|
|
1739
|
+
readonly type: "int256";
|
|
1740
|
+
}];
|
|
1741
|
+
readonly name: "correctSettledGrowth";
|
|
1742
|
+
readonly outputs: readonly [{
|
|
1743
|
+
readonly internalType: "bool";
|
|
1744
|
+
readonly name: "";
|
|
1745
|
+
readonly type: "bool";
|
|
1746
|
+
}];
|
|
1747
|
+
readonly stateMutability: "nonpayable";
|
|
1748
|
+
readonly type: "function";
|
|
1749
|
+
}, {
|
|
1750
|
+
readonly inputs: readonly [];
|
|
1751
|
+
readonly name: "disburseAbnormallyHighFee";
|
|
1752
|
+
readonly outputs: readonly [];
|
|
1753
|
+
readonly stateMutability: "nonpayable";
|
|
1754
|
+
readonly type: "function";
|
|
1755
|
+
}, {
|
|
1756
|
+
readonly inputs: readonly [];
|
|
1757
|
+
readonly name: "disburseFee";
|
|
1758
|
+
readonly outputs: readonly [];
|
|
1759
|
+
readonly stateMutability: "nonpayable";
|
|
1760
|
+
readonly type: "function";
|
|
1761
|
+
}, {
|
|
1762
|
+
readonly inputs: readonly [];
|
|
1763
|
+
readonly name: "feeRate";
|
|
1764
|
+
readonly outputs: readonly [{
|
|
1765
|
+
readonly internalType: "uint16";
|
|
1766
|
+
readonly name: "";
|
|
1767
|
+
readonly type: "uint16";
|
|
1768
|
+
}];
|
|
1769
|
+
readonly stateMutability: "view";
|
|
1770
|
+
readonly type: "function";
|
|
1771
|
+
}, {
|
|
1772
|
+
readonly inputs: readonly [];
|
|
1773
|
+
readonly name: "feeRecipient";
|
|
1774
|
+
readonly outputs: readonly [{
|
|
1775
|
+
readonly internalType: "address";
|
|
1776
|
+
readonly name: "";
|
|
1777
|
+
readonly type: "address";
|
|
1778
|
+
}];
|
|
1779
|
+
readonly stateMutability: "view";
|
|
1780
|
+
readonly type: "function";
|
|
1781
|
+
}, {
|
|
1782
|
+
readonly inputs: readonly [];
|
|
1783
|
+
readonly name: "fund";
|
|
1784
|
+
readonly outputs: readonly [];
|
|
1785
|
+
readonly stateMutability: "payable";
|
|
1786
|
+
readonly type: "function";
|
|
1787
|
+
}, {
|
|
1788
|
+
readonly inputs: readonly [];
|
|
1789
|
+
readonly name: "getConfirmExpiry";
|
|
1790
|
+
readonly outputs: readonly [{
|
|
1791
|
+
readonly internalType: "uint256";
|
|
1792
|
+
readonly name: "";
|
|
1793
|
+
readonly type: "uint256";
|
|
1794
|
+
}];
|
|
1795
|
+
readonly stateMutability: "view";
|
|
1796
|
+
readonly type: "function";
|
|
1797
|
+
}, {
|
|
1798
|
+
readonly inputs: readonly [{
|
|
1799
|
+
readonly internalType: "bytes32";
|
|
1800
|
+
readonly name: "role";
|
|
1801
|
+
readonly type: "bytes32";
|
|
1802
|
+
}];
|
|
1803
|
+
readonly name: "getRoleAdmin";
|
|
1804
|
+
readonly outputs: readonly [{
|
|
1805
|
+
readonly internalType: "bytes32";
|
|
1806
|
+
readonly name: "";
|
|
1807
|
+
readonly type: "bytes32";
|
|
1808
|
+
}];
|
|
1809
|
+
readonly stateMutability: "view";
|
|
1810
|
+
readonly type: "function";
|
|
1811
|
+
}, {
|
|
1812
|
+
readonly inputs: readonly [{
|
|
1813
|
+
readonly internalType: "bytes32";
|
|
1814
|
+
readonly name: "role";
|
|
1815
|
+
readonly type: "bytes32";
|
|
1816
|
+
}, {
|
|
1817
|
+
readonly internalType: "uint256";
|
|
1818
|
+
readonly name: "index";
|
|
1819
|
+
readonly type: "uint256";
|
|
1820
|
+
}];
|
|
1821
|
+
readonly name: "getRoleMember";
|
|
1822
|
+
readonly outputs: readonly [{
|
|
1823
|
+
readonly internalType: "address";
|
|
1824
|
+
readonly name: "";
|
|
1825
|
+
readonly type: "address";
|
|
1826
|
+
}];
|
|
1827
|
+
readonly stateMutability: "view";
|
|
1828
|
+
readonly type: "function";
|
|
1829
|
+
}, {
|
|
1830
|
+
readonly inputs: readonly [{
|
|
1831
|
+
readonly internalType: "bytes32";
|
|
1832
|
+
readonly name: "role";
|
|
1833
|
+
readonly type: "bytes32";
|
|
1834
|
+
}];
|
|
1835
|
+
readonly name: "getRoleMemberCount";
|
|
1836
|
+
readonly outputs: readonly [{
|
|
1837
|
+
readonly internalType: "uint256";
|
|
1838
|
+
readonly name: "";
|
|
1839
|
+
readonly type: "uint256";
|
|
1840
|
+
}];
|
|
1841
|
+
readonly stateMutability: "view";
|
|
1842
|
+
readonly type: "function";
|
|
1843
|
+
}, {
|
|
1844
|
+
readonly inputs: readonly [{
|
|
1845
|
+
readonly internalType: "bytes32";
|
|
1846
|
+
readonly name: "role";
|
|
1847
|
+
readonly type: "bytes32";
|
|
1848
|
+
}];
|
|
1849
|
+
readonly name: "getRoleMembers";
|
|
1850
|
+
readonly outputs: readonly [{
|
|
1851
|
+
readonly internalType: "address[]";
|
|
1852
|
+
readonly name: "";
|
|
1853
|
+
readonly type: "address[]";
|
|
1854
|
+
}];
|
|
1855
|
+
readonly stateMutability: "view";
|
|
1856
|
+
readonly type: "function";
|
|
1857
|
+
}, {
|
|
1858
|
+
readonly inputs: readonly [{
|
|
1859
|
+
readonly internalType: "bytes32";
|
|
1860
|
+
readonly name: "role";
|
|
1861
|
+
readonly type: "bytes32";
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly internalType: "address";
|
|
1864
|
+
readonly name: "account";
|
|
1865
|
+
readonly type: "address";
|
|
1866
|
+
}];
|
|
1867
|
+
readonly name: "grantRole";
|
|
1868
|
+
readonly outputs: readonly [];
|
|
1869
|
+
readonly stateMutability: "nonpayable";
|
|
1870
|
+
readonly type: "function";
|
|
1871
|
+
}, {
|
|
1872
|
+
readonly inputs: readonly [{
|
|
1873
|
+
readonly components: readonly [{
|
|
1874
|
+
readonly internalType: "address";
|
|
1875
|
+
readonly name: "account";
|
|
1876
|
+
readonly type: "address";
|
|
1877
|
+
}, {
|
|
1878
|
+
readonly internalType: "bytes32";
|
|
1879
|
+
readonly name: "role";
|
|
1880
|
+
readonly type: "bytes32";
|
|
1881
|
+
}];
|
|
1882
|
+
readonly internalType: "struct Permissions.RoleAssignment[]";
|
|
1883
|
+
readonly name: "_assignments";
|
|
1884
|
+
readonly type: "tuple[]";
|
|
1885
|
+
}];
|
|
1886
|
+
readonly name: "grantRoles";
|
|
1887
|
+
readonly outputs: readonly [];
|
|
1888
|
+
readonly stateMutability: "nonpayable";
|
|
1889
|
+
readonly type: "function";
|
|
1890
|
+
}, {
|
|
1891
|
+
readonly inputs: readonly [{
|
|
1892
|
+
readonly internalType: "bytes32";
|
|
1893
|
+
readonly name: "role";
|
|
1894
|
+
readonly type: "bytes32";
|
|
1895
|
+
}, {
|
|
1896
|
+
readonly internalType: "address";
|
|
1897
|
+
readonly name: "account";
|
|
1898
|
+
readonly type: "address";
|
|
1899
|
+
}];
|
|
1900
|
+
readonly name: "hasRole";
|
|
1901
|
+
readonly outputs: readonly [{
|
|
1902
|
+
readonly internalType: "bool";
|
|
1903
|
+
readonly name: "";
|
|
1904
|
+
readonly type: "bool";
|
|
1905
|
+
}];
|
|
1906
|
+
readonly stateMutability: "view";
|
|
1907
|
+
readonly type: "function";
|
|
1908
|
+
}, {
|
|
1909
|
+
readonly inputs: readonly [];
|
|
1910
|
+
readonly name: "healthShortfallShares";
|
|
1911
|
+
readonly outputs: readonly [{
|
|
1912
|
+
readonly internalType: "uint256";
|
|
1913
|
+
readonly name: "";
|
|
1914
|
+
readonly type: "uint256";
|
|
1915
|
+
}];
|
|
1916
|
+
readonly stateMutability: "view";
|
|
1917
|
+
readonly type: "function";
|
|
1918
|
+
}, {
|
|
1919
|
+
readonly inputs: readonly [{
|
|
1920
|
+
readonly internalType: "address";
|
|
1921
|
+
readonly name: "_defaultAdmin";
|
|
1922
|
+
readonly type: "address";
|
|
1923
|
+
}, {
|
|
1924
|
+
readonly internalType: "address";
|
|
1925
|
+
readonly name: "_nodeOperatorManager";
|
|
1926
|
+
readonly type: "address";
|
|
1927
|
+
}, {
|
|
1928
|
+
readonly internalType: "address";
|
|
1929
|
+
readonly name: "_nodeOperatorFeeRecipient";
|
|
1930
|
+
readonly type: "address";
|
|
1931
|
+
}, {
|
|
1932
|
+
readonly internalType: "uint256";
|
|
1933
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
1934
|
+
readonly type: "uint256";
|
|
1935
|
+
}, {
|
|
1936
|
+
readonly internalType: "uint256";
|
|
1937
|
+
readonly name: "_confirmExpiry";
|
|
1938
|
+
readonly type: "uint256";
|
|
1939
|
+
}];
|
|
1940
|
+
readonly name: "initialize";
|
|
1941
|
+
readonly outputs: readonly [];
|
|
1942
|
+
readonly stateMutability: "nonpayable";
|
|
1943
|
+
readonly type: "function";
|
|
1944
|
+
}, {
|
|
1945
|
+
readonly inputs: readonly [];
|
|
1946
|
+
readonly name: "initialized";
|
|
1947
|
+
readonly outputs: readonly [{
|
|
1948
|
+
readonly internalType: "bool";
|
|
1949
|
+
readonly name: "";
|
|
1950
|
+
readonly type: "bool";
|
|
1951
|
+
}];
|
|
1952
|
+
readonly stateMutability: "view";
|
|
1953
|
+
readonly type: "function";
|
|
1954
|
+
}, {
|
|
1955
|
+
readonly inputs: readonly [];
|
|
1956
|
+
readonly name: "latestCorrectionTimestamp";
|
|
1957
|
+
readonly outputs: readonly [{
|
|
1958
|
+
readonly internalType: "uint64";
|
|
1959
|
+
readonly name: "";
|
|
1960
|
+
readonly type: "uint64";
|
|
1961
|
+
}];
|
|
1962
|
+
readonly stateMutability: "view";
|
|
1963
|
+
readonly type: "function";
|
|
1964
|
+
}, {
|
|
1965
|
+
readonly inputs: readonly [];
|
|
1966
|
+
readonly name: "latestReport";
|
|
1967
|
+
readonly outputs: readonly [{
|
|
1968
|
+
readonly components: readonly [{
|
|
1969
|
+
readonly internalType: "uint104";
|
|
1970
|
+
readonly name: "totalValue";
|
|
1971
|
+
readonly type: "uint104";
|
|
1972
|
+
}, {
|
|
1973
|
+
readonly internalType: "int104";
|
|
1974
|
+
readonly name: "inOutDelta";
|
|
1975
|
+
readonly type: "int104";
|
|
1976
|
+
}, {
|
|
1977
|
+
readonly internalType: "uint48";
|
|
1978
|
+
readonly name: "timestamp";
|
|
1979
|
+
readonly type: "uint48";
|
|
1980
|
+
}];
|
|
1981
|
+
readonly internalType: "struct VaultHub.Report";
|
|
1982
|
+
readonly name: "";
|
|
1983
|
+
readonly type: "tuple";
|
|
1984
|
+
}];
|
|
1985
|
+
readonly stateMutability: "view";
|
|
1986
|
+
readonly type: "function";
|
|
1987
|
+
}, {
|
|
1988
|
+
readonly inputs: readonly [];
|
|
1989
|
+
readonly name: "liabilityShares";
|
|
1990
|
+
readonly outputs: readonly [{
|
|
1991
|
+
readonly internalType: "uint256";
|
|
1992
|
+
readonly name: "";
|
|
1993
|
+
readonly type: "uint256";
|
|
1994
|
+
}];
|
|
1995
|
+
readonly stateMutability: "view";
|
|
1996
|
+
readonly type: "function";
|
|
1997
|
+
}, {
|
|
1998
|
+
readonly inputs: readonly [];
|
|
1999
|
+
readonly name: "locked";
|
|
2000
|
+
readonly outputs: readonly [{
|
|
2001
|
+
readonly internalType: "uint256";
|
|
2002
|
+
readonly name: "";
|
|
2003
|
+
readonly type: "uint256";
|
|
2004
|
+
}];
|
|
2005
|
+
readonly stateMutability: "view";
|
|
2006
|
+
readonly type: "function";
|
|
2007
|
+
}, {
|
|
2008
|
+
readonly inputs: readonly [];
|
|
2009
|
+
readonly name: "maxLockableValue";
|
|
2010
|
+
readonly outputs: readonly [{
|
|
2011
|
+
readonly internalType: "uint256";
|
|
2012
|
+
readonly name: "";
|
|
2013
|
+
readonly type: "uint256";
|
|
2014
|
+
}];
|
|
2015
|
+
readonly stateMutability: "view";
|
|
2016
|
+
readonly type: "function";
|
|
2017
|
+
}, {
|
|
2018
|
+
readonly inputs: readonly [];
|
|
2019
|
+
readonly name: "minimalReserve";
|
|
2020
|
+
readonly outputs: readonly [{
|
|
2021
|
+
readonly internalType: "uint256";
|
|
2022
|
+
readonly name: "";
|
|
2023
|
+
readonly type: "uint256";
|
|
2024
|
+
}];
|
|
2025
|
+
readonly stateMutability: "view";
|
|
2026
|
+
readonly type: "function";
|
|
2027
|
+
}, {
|
|
2028
|
+
readonly inputs: readonly [{
|
|
2029
|
+
readonly internalType: "address";
|
|
2030
|
+
readonly name: "_recipient";
|
|
2031
|
+
readonly type: "address";
|
|
2032
|
+
}, {
|
|
2033
|
+
readonly internalType: "uint256";
|
|
2034
|
+
readonly name: "_amountOfShares";
|
|
2035
|
+
readonly type: "uint256";
|
|
2036
|
+
}];
|
|
2037
|
+
readonly name: "mintShares";
|
|
2038
|
+
readonly outputs: readonly [];
|
|
2039
|
+
readonly stateMutability: "payable";
|
|
2040
|
+
readonly type: "function";
|
|
2041
|
+
}, {
|
|
2042
|
+
readonly inputs: readonly [{
|
|
2043
|
+
readonly internalType: "address";
|
|
2044
|
+
readonly name: "_recipient";
|
|
2045
|
+
readonly type: "address";
|
|
2046
|
+
}, {
|
|
2047
|
+
readonly internalType: "uint256";
|
|
2048
|
+
readonly name: "_amountOfStETH";
|
|
2049
|
+
readonly type: "uint256";
|
|
2050
|
+
}];
|
|
2051
|
+
readonly name: "mintStETH";
|
|
2052
|
+
readonly outputs: readonly [];
|
|
2053
|
+
readonly stateMutability: "payable";
|
|
2054
|
+
readonly type: "function";
|
|
2055
|
+
}, {
|
|
2056
|
+
readonly inputs: readonly [{
|
|
2057
|
+
readonly internalType: "address";
|
|
2058
|
+
readonly name: "_recipient";
|
|
2059
|
+
readonly type: "address";
|
|
2060
|
+
}, {
|
|
2061
|
+
readonly internalType: "uint256";
|
|
2062
|
+
readonly name: "_amountOfWstETH";
|
|
2063
|
+
readonly type: "uint256";
|
|
2064
|
+
}];
|
|
2065
|
+
readonly name: "mintWstETH";
|
|
2066
|
+
readonly outputs: readonly [];
|
|
2067
|
+
readonly stateMutability: "payable";
|
|
2068
|
+
readonly type: "function";
|
|
2069
|
+
}, {
|
|
2070
|
+
readonly inputs: readonly [];
|
|
2071
|
+
readonly name: "obligations";
|
|
2072
|
+
readonly outputs: readonly [{
|
|
2073
|
+
readonly internalType: "uint256";
|
|
2074
|
+
readonly name: "sharesToBurn";
|
|
2075
|
+
readonly type: "uint256";
|
|
2076
|
+
}, {
|
|
2077
|
+
readonly internalType: "uint256";
|
|
2078
|
+
readonly name: "feesToSettle";
|
|
2079
|
+
readonly type: "uint256";
|
|
2080
|
+
}];
|
|
2081
|
+
readonly stateMutability: "view";
|
|
2082
|
+
readonly type: "function";
|
|
2083
|
+
}, {
|
|
2084
|
+
readonly inputs: readonly [];
|
|
2085
|
+
readonly name: "obligationsShortfallValue";
|
|
2086
|
+
readonly outputs: readonly [{
|
|
2087
|
+
readonly internalType: "uint256";
|
|
2088
|
+
readonly name: "";
|
|
2089
|
+
readonly type: "uint256";
|
|
2090
|
+
}];
|
|
2091
|
+
readonly stateMutability: "view";
|
|
2092
|
+
readonly type: "function";
|
|
2093
|
+
}, {
|
|
2094
|
+
readonly inputs: readonly [];
|
|
2095
|
+
readonly name: "pauseBeaconChainDeposits";
|
|
2096
|
+
readonly outputs: readonly [];
|
|
2097
|
+
readonly stateMutability: "nonpayable";
|
|
2098
|
+
readonly type: "function";
|
|
2099
|
+
}, {
|
|
2100
|
+
readonly inputs: readonly [];
|
|
2101
|
+
readonly name: "pdgPolicy";
|
|
2102
|
+
readonly outputs: readonly [{
|
|
2103
|
+
readonly internalType: "enum Dashboard.PDGPolicy";
|
|
2104
|
+
readonly name: "";
|
|
2105
|
+
readonly type: "uint8";
|
|
2106
|
+
}];
|
|
2107
|
+
readonly stateMutability: "view";
|
|
2108
|
+
readonly type: "function";
|
|
2109
|
+
}, {
|
|
2110
|
+
readonly inputs: readonly [{
|
|
2111
|
+
readonly components: readonly [{
|
|
2112
|
+
readonly internalType: "bytes32[]";
|
|
2113
|
+
readonly name: "proof";
|
|
2114
|
+
readonly type: "bytes32[]";
|
|
2115
|
+
}, {
|
|
2116
|
+
readonly internalType: "bytes";
|
|
2117
|
+
readonly name: "pubkey";
|
|
2118
|
+
readonly type: "bytes";
|
|
2119
|
+
}, {
|
|
2120
|
+
readonly internalType: "uint256";
|
|
2121
|
+
readonly name: "validatorIndex";
|
|
2122
|
+
readonly type: "uint256";
|
|
2123
|
+
}, {
|
|
2124
|
+
readonly internalType: "uint64";
|
|
2125
|
+
readonly name: "childBlockTimestamp";
|
|
2126
|
+
readonly type: "uint64";
|
|
2127
|
+
}, {
|
|
2128
|
+
readonly internalType: "uint64";
|
|
2129
|
+
readonly name: "slot";
|
|
2130
|
+
readonly type: "uint64";
|
|
2131
|
+
}, {
|
|
2132
|
+
readonly internalType: "uint64";
|
|
2133
|
+
readonly name: "proposerIndex";
|
|
2134
|
+
readonly type: "uint64";
|
|
2135
|
+
}];
|
|
2136
|
+
readonly internalType: "struct IPredepositGuarantee.ValidatorWitness[]";
|
|
2137
|
+
readonly name: "_witnesses";
|
|
2138
|
+
readonly type: "tuple[]";
|
|
2139
|
+
}];
|
|
2140
|
+
readonly name: "proveUnknownValidatorsToPDG";
|
|
2141
|
+
readonly outputs: readonly [];
|
|
2142
|
+
readonly stateMutability: "nonpayable";
|
|
2143
|
+
readonly type: "function";
|
|
2144
|
+
}, {
|
|
2145
|
+
readonly inputs: readonly [{
|
|
2146
|
+
readonly internalType: "uint256";
|
|
2147
|
+
readonly name: "_ether";
|
|
2148
|
+
readonly type: "uint256";
|
|
2149
|
+
}];
|
|
2150
|
+
readonly name: "rebalanceVaultWithEther";
|
|
2151
|
+
readonly outputs: readonly [];
|
|
2152
|
+
readonly stateMutability: "payable";
|
|
2153
|
+
readonly type: "function";
|
|
2154
|
+
}, {
|
|
2155
|
+
readonly inputs: readonly [{
|
|
2156
|
+
readonly internalType: "uint256";
|
|
2157
|
+
readonly name: "_shares";
|
|
2158
|
+
readonly type: "uint256";
|
|
2159
|
+
}];
|
|
2160
|
+
readonly name: "rebalanceVaultWithShares";
|
|
2161
|
+
readonly outputs: readonly [];
|
|
2162
|
+
readonly stateMutability: "nonpayable";
|
|
2163
|
+
readonly type: "function";
|
|
2164
|
+
}, {
|
|
2165
|
+
readonly inputs: readonly [{
|
|
2166
|
+
readonly internalType: "uint256";
|
|
2167
|
+
readonly name: "_currentSettledGrowth";
|
|
2168
|
+
readonly type: "uint256";
|
|
2169
|
+
}];
|
|
2170
|
+
readonly name: "reconnectToVaultHub";
|
|
2171
|
+
readonly outputs: readonly [];
|
|
2172
|
+
readonly stateMutability: "nonpayable";
|
|
2173
|
+
readonly type: "function";
|
|
2174
|
+
}, {
|
|
2175
|
+
readonly inputs: readonly [{
|
|
2176
|
+
readonly internalType: "address";
|
|
2177
|
+
readonly name: "_token";
|
|
2178
|
+
readonly type: "address";
|
|
2179
|
+
}, {
|
|
2180
|
+
readonly internalType: "address";
|
|
2181
|
+
readonly name: "_recipient";
|
|
2182
|
+
readonly type: "address";
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly internalType: "uint256";
|
|
2185
|
+
readonly name: "_amount";
|
|
2186
|
+
readonly type: "uint256";
|
|
2187
|
+
}];
|
|
2188
|
+
readonly name: "recoverERC20";
|
|
2189
|
+
readonly outputs: readonly [];
|
|
2190
|
+
readonly stateMutability: "nonpayable";
|
|
2191
|
+
readonly type: "function";
|
|
2192
|
+
}, {
|
|
2193
|
+
readonly inputs: readonly [{
|
|
2194
|
+
readonly internalType: "uint256";
|
|
2195
|
+
readonly name: "_etherToFund";
|
|
2196
|
+
readonly type: "uint256";
|
|
2197
|
+
}];
|
|
2198
|
+
readonly name: "remainingMintingCapacityShares";
|
|
2199
|
+
readonly outputs: readonly [{
|
|
2200
|
+
readonly internalType: "uint256";
|
|
2201
|
+
readonly name: "";
|
|
2202
|
+
readonly type: "uint256";
|
|
2203
|
+
}];
|
|
2204
|
+
readonly stateMutability: "view";
|
|
2205
|
+
readonly type: "function";
|
|
2206
|
+
}, {
|
|
2207
|
+
readonly inputs: readonly [{
|
|
2208
|
+
readonly internalType: "bytes32";
|
|
2209
|
+
readonly name: "role";
|
|
2210
|
+
readonly type: "bytes32";
|
|
2211
|
+
}, {
|
|
2212
|
+
readonly internalType: "address";
|
|
2213
|
+
readonly name: "callerConfirmation";
|
|
2214
|
+
readonly type: "address";
|
|
2215
|
+
}];
|
|
2216
|
+
readonly name: "renounceRole";
|
|
2217
|
+
readonly outputs: readonly [];
|
|
2218
|
+
readonly stateMutability: "nonpayable";
|
|
2219
|
+
readonly type: "function";
|
|
2220
|
+
}, {
|
|
2221
|
+
readonly inputs: readonly [{
|
|
2222
|
+
readonly internalType: "bytes";
|
|
2223
|
+
readonly name: "_pubkeys";
|
|
2224
|
+
readonly type: "bytes";
|
|
2225
|
+
}];
|
|
2226
|
+
readonly name: "requestValidatorExit";
|
|
2227
|
+
readonly outputs: readonly [];
|
|
2228
|
+
readonly stateMutability: "nonpayable";
|
|
2229
|
+
readonly type: "function";
|
|
2230
|
+
}, {
|
|
2231
|
+
readonly inputs: readonly [];
|
|
2232
|
+
readonly name: "resumeBeaconChainDeposits";
|
|
2233
|
+
readonly outputs: readonly [];
|
|
2234
|
+
readonly stateMutability: "nonpayable";
|
|
2235
|
+
readonly type: "function";
|
|
2236
|
+
}, {
|
|
2237
|
+
readonly inputs: readonly [{
|
|
2238
|
+
readonly internalType: "bytes32";
|
|
2239
|
+
readonly name: "role";
|
|
2240
|
+
readonly type: "bytes32";
|
|
2241
|
+
}, {
|
|
2242
|
+
readonly internalType: "address";
|
|
2243
|
+
readonly name: "account";
|
|
2244
|
+
readonly type: "address";
|
|
2245
|
+
}];
|
|
2246
|
+
readonly name: "revokeRole";
|
|
2247
|
+
readonly outputs: readonly [];
|
|
2248
|
+
readonly stateMutability: "nonpayable";
|
|
2249
|
+
readonly type: "function";
|
|
2250
|
+
}, {
|
|
2251
|
+
readonly inputs: readonly [{
|
|
2252
|
+
readonly components: readonly [{
|
|
2253
|
+
readonly internalType: "address";
|
|
2254
|
+
readonly name: "account";
|
|
2255
|
+
readonly type: "address";
|
|
2256
|
+
}, {
|
|
2257
|
+
readonly internalType: "bytes32";
|
|
2258
|
+
readonly name: "role";
|
|
2259
|
+
readonly type: "bytes32";
|
|
2260
|
+
}];
|
|
2261
|
+
readonly internalType: "struct Permissions.RoleAssignment[]";
|
|
2262
|
+
readonly name: "_assignments";
|
|
2263
|
+
readonly type: "tuple[]";
|
|
2264
|
+
}];
|
|
2265
|
+
readonly name: "revokeRoles";
|
|
2266
|
+
readonly outputs: readonly [];
|
|
2267
|
+
readonly stateMutability: "nonpayable";
|
|
2268
|
+
readonly type: "function";
|
|
2269
|
+
}, {
|
|
2270
|
+
readonly inputs: readonly [{
|
|
2271
|
+
readonly internalType: "uint256";
|
|
2272
|
+
readonly name: "_newConfirmExpiry";
|
|
2273
|
+
readonly type: "uint256";
|
|
2274
|
+
}];
|
|
2275
|
+
readonly name: "setConfirmExpiry";
|
|
2276
|
+
readonly outputs: readonly [{
|
|
2277
|
+
readonly internalType: "bool";
|
|
2278
|
+
readonly name: "";
|
|
2279
|
+
readonly type: "bool";
|
|
2280
|
+
}];
|
|
2281
|
+
readonly stateMutability: "nonpayable";
|
|
2282
|
+
readonly type: "function";
|
|
2283
|
+
}, {
|
|
2284
|
+
readonly inputs: readonly [{
|
|
2285
|
+
readonly internalType: "uint256";
|
|
2286
|
+
readonly name: "_newFeeRate";
|
|
2287
|
+
readonly type: "uint256";
|
|
2288
|
+
}];
|
|
2289
|
+
readonly name: "setFeeRate";
|
|
2290
|
+
readonly outputs: readonly [{
|
|
2291
|
+
readonly internalType: "bool";
|
|
2292
|
+
readonly name: "";
|
|
2293
|
+
readonly type: "bool";
|
|
2294
|
+
}];
|
|
2295
|
+
readonly stateMutability: "nonpayable";
|
|
2296
|
+
readonly type: "function";
|
|
2297
|
+
}, {
|
|
2298
|
+
readonly inputs: readonly [{
|
|
2299
|
+
readonly internalType: "address";
|
|
2300
|
+
readonly name: "_newFeeRecipient";
|
|
2301
|
+
readonly type: "address";
|
|
2302
|
+
}];
|
|
2303
|
+
readonly name: "setFeeRecipient";
|
|
2304
|
+
readonly outputs: readonly [];
|
|
2305
|
+
readonly stateMutability: "nonpayable";
|
|
2306
|
+
readonly type: "function";
|
|
2307
|
+
}, {
|
|
2308
|
+
readonly inputs: readonly [{
|
|
2309
|
+
readonly internalType: "enum Dashboard.PDGPolicy";
|
|
2310
|
+
readonly name: "_pdgPolicy";
|
|
2311
|
+
readonly type: "uint8";
|
|
2312
|
+
}];
|
|
2313
|
+
readonly name: "setPDGPolicy";
|
|
2314
|
+
readonly outputs: readonly [];
|
|
2315
|
+
readonly stateMutability: "nonpayable";
|
|
2316
|
+
readonly type: "function";
|
|
2317
|
+
}, {
|
|
2318
|
+
readonly inputs: readonly [];
|
|
2319
|
+
readonly name: "settledGrowth";
|
|
2320
|
+
readonly outputs: readonly [{
|
|
2321
|
+
readonly internalType: "int128";
|
|
2322
|
+
readonly name: "";
|
|
2323
|
+
readonly type: "int128";
|
|
2324
|
+
}];
|
|
2325
|
+
readonly stateMutability: "view";
|
|
2326
|
+
readonly type: "function";
|
|
2327
|
+
}, {
|
|
2328
|
+
readonly inputs: readonly [];
|
|
2329
|
+
readonly name: "stakingVault";
|
|
2330
|
+
readonly outputs: readonly [{
|
|
2331
|
+
readonly internalType: "contract IStakingVault";
|
|
2332
|
+
readonly name: "";
|
|
2333
|
+
readonly type: "address";
|
|
2334
|
+
}];
|
|
2335
|
+
readonly stateMutability: "view";
|
|
2336
|
+
readonly type: "function";
|
|
2337
|
+
}, {
|
|
2338
|
+
readonly inputs: readonly [{
|
|
2339
|
+
readonly internalType: "bytes4";
|
|
2340
|
+
readonly name: "interfaceId";
|
|
2341
|
+
readonly type: "bytes4";
|
|
2342
|
+
}];
|
|
2343
|
+
readonly name: "supportsInterface";
|
|
2344
|
+
readonly outputs: readonly [{
|
|
2345
|
+
readonly internalType: "bool";
|
|
2346
|
+
readonly name: "";
|
|
2347
|
+
readonly type: "bool";
|
|
2348
|
+
}];
|
|
2349
|
+
readonly stateMutability: "view";
|
|
2350
|
+
readonly type: "function";
|
|
2351
|
+
}, {
|
|
2352
|
+
readonly inputs: readonly [];
|
|
2353
|
+
readonly name: "syncTier";
|
|
2354
|
+
readonly outputs: readonly [{
|
|
2355
|
+
readonly internalType: "bool";
|
|
2356
|
+
readonly name: "";
|
|
2357
|
+
readonly type: "bool";
|
|
2358
|
+
}];
|
|
2359
|
+
readonly stateMutability: "nonpayable";
|
|
2360
|
+
readonly type: "function";
|
|
2361
|
+
}, {
|
|
2362
|
+
readonly inputs: readonly [];
|
|
2363
|
+
readonly name: "totalMintingCapacityShares";
|
|
2364
|
+
readonly outputs: readonly [{
|
|
2365
|
+
readonly internalType: "uint256";
|
|
2366
|
+
readonly name: "";
|
|
2367
|
+
readonly type: "uint256";
|
|
2368
|
+
}];
|
|
2369
|
+
readonly stateMutability: "view";
|
|
2370
|
+
readonly type: "function";
|
|
2371
|
+
}, {
|
|
2372
|
+
readonly inputs: readonly [];
|
|
2373
|
+
readonly name: "totalValue";
|
|
2374
|
+
readonly outputs: readonly [{
|
|
2375
|
+
readonly internalType: "uint256";
|
|
2376
|
+
readonly name: "";
|
|
2377
|
+
readonly type: "uint256";
|
|
2378
|
+
}];
|
|
2379
|
+
readonly stateMutability: "view";
|
|
2380
|
+
readonly type: "function";
|
|
2381
|
+
}, {
|
|
2382
|
+
readonly inputs: readonly [{
|
|
2383
|
+
readonly internalType: "address";
|
|
2384
|
+
readonly name: "_newOwner";
|
|
2385
|
+
readonly type: "address";
|
|
2386
|
+
}];
|
|
2387
|
+
readonly name: "transferVaultOwnership";
|
|
2388
|
+
readonly outputs: readonly [{
|
|
2389
|
+
readonly internalType: "bool";
|
|
2390
|
+
readonly name: "";
|
|
2391
|
+
readonly type: "bool";
|
|
2392
|
+
}];
|
|
2393
|
+
readonly stateMutability: "nonpayable";
|
|
2394
|
+
readonly type: "function";
|
|
2395
|
+
}, {
|
|
2396
|
+
readonly inputs: readonly [{
|
|
2397
|
+
readonly internalType: "bytes";
|
|
2398
|
+
readonly name: "_pubkeys";
|
|
2399
|
+
readonly type: "bytes";
|
|
2400
|
+
}, {
|
|
2401
|
+
readonly internalType: "uint64[]";
|
|
2402
|
+
readonly name: "_amountsInGwei";
|
|
2403
|
+
readonly type: "uint64[]";
|
|
2404
|
+
}, {
|
|
2405
|
+
readonly internalType: "address";
|
|
2406
|
+
readonly name: "_refundRecipient";
|
|
2407
|
+
readonly type: "address";
|
|
2408
|
+
}];
|
|
2409
|
+
readonly name: "triggerValidatorWithdrawals";
|
|
2410
|
+
readonly outputs: readonly [];
|
|
2411
|
+
readonly stateMutability: "payable";
|
|
2412
|
+
readonly type: "function";
|
|
2413
|
+
}, {
|
|
2414
|
+
readonly inputs: readonly [{
|
|
2415
|
+
readonly components: readonly [{
|
|
2416
|
+
readonly internalType: "bytes";
|
|
2417
|
+
readonly name: "pubkey";
|
|
2418
|
+
readonly type: "bytes";
|
|
2419
|
+
}, {
|
|
2420
|
+
readonly internalType: "bytes";
|
|
2421
|
+
readonly name: "signature";
|
|
2422
|
+
readonly type: "bytes";
|
|
2423
|
+
}, {
|
|
2424
|
+
readonly internalType: "uint256";
|
|
2425
|
+
readonly name: "amount";
|
|
2426
|
+
readonly type: "uint256";
|
|
2427
|
+
}, {
|
|
2428
|
+
readonly internalType: "bytes32";
|
|
2429
|
+
readonly name: "depositDataRoot";
|
|
2430
|
+
readonly type: "bytes32";
|
|
2431
|
+
}];
|
|
2432
|
+
readonly internalType: "struct IStakingVault.Deposit[]";
|
|
2433
|
+
readonly name: "_deposits";
|
|
2434
|
+
readonly type: "tuple[]";
|
|
2435
|
+
}];
|
|
2436
|
+
readonly name: "unguaranteedDepositToBeaconChain";
|
|
2437
|
+
readonly outputs: readonly [{
|
|
2438
|
+
readonly internalType: "uint256";
|
|
2439
|
+
readonly name: "totalAmount";
|
|
2440
|
+
readonly type: "uint256";
|
|
2441
|
+
}];
|
|
2442
|
+
readonly stateMutability: "nonpayable";
|
|
2443
|
+
readonly type: "function";
|
|
2444
|
+
}, {
|
|
2445
|
+
readonly inputs: readonly [{
|
|
2446
|
+
readonly internalType: "uint256";
|
|
2447
|
+
readonly name: "_requestedShareLimit";
|
|
2448
|
+
readonly type: "uint256";
|
|
2449
|
+
}];
|
|
2450
|
+
readonly name: "updateShareLimit";
|
|
2451
|
+
readonly outputs: readonly [{
|
|
2452
|
+
readonly internalType: "bool";
|
|
2453
|
+
readonly name: "";
|
|
2454
|
+
readonly type: "bool";
|
|
2455
|
+
}];
|
|
2456
|
+
readonly stateMutability: "nonpayable";
|
|
2457
|
+
readonly type: "function";
|
|
2458
|
+
}, {
|
|
2459
|
+
readonly inputs: readonly [];
|
|
2460
|
+
readonly name: "vaultConnection";
|
|
2461
|
+
readonly outputs: readonly [{
|
|
2462
|
+
readonly components: readonly [{
|
|
2463
|
+
readonly internalType: "address";
|
|
2464
|
+
readonly name: "owner";
|
|
2465
|
+
readonly type: "address";
|
|
2466
|
+
}, {
|
|
2467
|
+
readonly internalType: "uint96";
|
|
2468
|
+
readonly name: "shareLimit";
|
|
2469
|
+
readonly type: "uint96";
|
|
2470
|
+
}, {
|
|
2471
|
+
readonly internalType: "uint96";
|
|
2472
|
+
readonly name: "vaultIndex";
|
|
2473
|
+
readonly type: "uint96";
|
|
2474
|
+
}, {
|
|
2475
|
+
readonly internalType: "uint48";
|
|
2476
|
+
readonly name: "disconnectInitiatedTs";
|
|
2477
|
+
readonly type: "uint48";
|
|
2478
|
+
}, {
|
|
2479
|
+
readonly internalType: "uint16";
|
|
2480
|
+
readonly name: "reserveRatioBP";
|
|
2481
|
+
readonly type: "uint16";
|
|
2482
|
+
}, {
|
|
2483
|
+
readonly internalType: "uint16";
|
|
2484
|
+
readonly name: "forcedRebalanceThresholdBP";
|
|
2485
|
+
readonly type: "uint16";
|
|
2486
|
+
}, {
|
|
2487
|
+
readonly internalType: "uint16";
|
|
2488
|
+
readonly name: "infraFeeBP";
|
|
2489
|
+
readonly type: "uint16";
|
|
2490
|
+
}, {
|
|
2491
|
+
readonly internalType: "uint16";
|
|
2492
|
+
readonly name: "liquidityFeeBP";
|
|
2493
|
+
readonly type: "uint16";
|
|
2494
|
+
}, {
|
|
2495
|
+
readonly internalType: "uint16";
|
|
2496
|
+
readonly name: "reservationFeeBP";
|
|
2497
|
+
readonly type: "uint16";
|
|
2498
|
+
}, {
|
|
2499
|
+
readonly internalType: "bool";
|
|
2500
|
+
readonly name: "beaconChainDepositsPauseIntent";
|
|
2501
|
+
readonly type: "bool";
|
|
2502
|
+
}];
|
|
2503
|
+
readonly internalType: "struct VaultHub.VaultConnection";
|
|
2504
|
+
readonly name: "";
|
|
2505
|
+
readonly type: "tuple";
|
|
2506
|
+
}];
|
|
2507
|
+
readonly stateMutability: "view";
|
|
2508
|
+
readonly type: "function";
|
|
2509
|
+
}, {
|
|
2510
|
+
readonly inputs: readonly [];
|
|
2511
|
+
readonly name: "voluntaryDisconnect";
|
|
2512
|
+
readonly outputs: readonly [];
|
|
2513
|
+
readonly stateMutability: "nonpayable";
|
|
2514
|
+
readonly type: "function";
|
|
2515
|
+
}, {
|
|
2516
|
+
readonly inputs: readonly [{
|
|
2517
|
+
readonly internalType: "address";
|
|
2518
|
+
readonly name: "_recipient";
|
|
2519
|
+
readonly type: "address";
|
|
2520
|
+
}, {
|
|
2521
|
+
readonly internalType: "uint256";
|
|
2522
|
+
readonly name: "_ether";
|
|
2523
|
+
readonly type: "uint256";
|
|
2524
|
+
}];
|
|
2525
|
+
readonly name: "withdraw";
|
|
2526
|
+
readonly outputs: readonly [];
|
|
2527
|
+
readonly stateMutability: "nonpayable";
|
|
2528
|
+
readonly type: "function";
|
|
2529
|
+
}, {
|
|
2530
|
+
readonly inputs: readonly [];
|
|
2531
|
+
readonly name: "withdrawableValue";
|
|
2532
|
+
readonly outputs: readonly [{
|
|
2533
|
+
readonly internalType: "uint256";
|
|
2534
|
+
readonly name: "";
|
|
2535
|
+
readonly type: "uint256";
|
|
2536
|
+
}];
|
|
2537
|
+
readonly stateMutability: "view";
|
|
2538
|
+
readonly type: "function";
|
|
2539
|
+
}, {
|
|
2540
|
+
readonly stateMutability: "payable";
|
|
2541
|
+
readonly type: "receive";
|
|
2542
|
+
}];
|