@lidofinance/lsv-cli 1.0.0 → 1.2.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/dist/abi/AccessControlConfirmable.d.ts +3 -2
- package/dist/abi/AccessControlConfirmable.js +3 -1
- package/dist/abi/AccessControlConfirmable.js.map +1 -1
- package/dist/abi/Dashboard.d.ts +87 -30
- package/dist/abi/Dashboard.js +46 -32
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +408 -3
- package/dist/abi/LazyOracle.js +59 -3
- package/dist/abi/LazyOracle.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +52 -0
- package/dist/abi/OperatorGrid.js +16 -0
- package/dist/abi/OperatorGrid.js.map +1 -1
- package/dist/abi/PredepositGuarantee.d.ts +28 -0
- package/dist/abi/StakingVault.d.ts +56 -0
- package/dist/abi/StakingVault.js +2 -0
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/ValidatorConsolidationRequests.d.ts +121 -0
- package/dist/abi/ValidatorConsolidationRequests.js +159 -0
- package/dist/abi/ValidatorConsolidationRequests.js.map +1 -0
- package/dist/abi/VaultFactory.d.ts +48 -4
- package/dist/abi/VaultHub.d.ts +38 -0
- package/dist/abi/VaultHub.js +13 -0
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +130 -196
- package/dist/abi/VaultViewer.js +169 -257
- package/dist/abi/VaultViewer.js.map +1 -1
- package/dist/abi/defi-wrapper/Distributor.d.ts +486 -0
- package/dist/abi/defi-wrapper/Distributor.js +633 -0
- package/dist/abi/defi-wrapper/Distributor.js.map +1 -0
- package/dist/abi/defi-wrapper/Factory.d.ts +1184 -0
- package/dist/abi/defi-wrapper/Factory.js +932 -0
- package/dist/abi/defi-wrapper/Factory.js.map +1 -0
- package/dist/abi/defi-wrapper/StvPool.d.ts +1079 -0
- package/dist/abi/defi-wrapper/StvPool.js +1410 -0
- package/dist/abi/defi-wrapper/StvPool.js.map +1 -0
- package/dist/abi/defi-wrapper/StvStETHPool.d.ts +1772 -0
- package/dist/abi/defi-wrapper/StvStETHPool.js +2316 -0
- package/dist/abi/defi-wrapper/StvStETHPool.js.map +1 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.d.ts +1265 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.js +1647 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.js.map +1 -0
- package/dist/abi/defi-wrapper/index.d.ts +5 -0
- package/dist/abi/defi-wrapper/index.js +6 -0
- package/dist/abi/defi-wrapper/index.js.map +1 -0
- package/dist/abi/index.d.ts +1 -0
- package/dist/abi/index.js +1 -0
- package/dist/abi/index.js.map +1 -1
- package/dist/configs/constants.d.ts +44 -2
- package/dist/configs/constants.js +2 -2
- package/dist/configs/constants.js.map +1 -1
- package/dist/configs/deployed.d.ts +2 -2
- package/dist/configs/deployed.js +48 -6
- package/dist/configs/deployed.js.map +1 -1
- package/dist/configs/utils.d.ts +2 -0
- package/dist/configs/utils.js +12 -0
- package/dist/configs/utils.js.map +1 -1
- package/dist/contracts/dashboard-impl.d.ts +4 -0
- package/dist/contracts/dashboard-impl.js +17 -0
- package/dist/contracts/dashboard-impl.js.map +1 -0
- package/dist/contracts/dashboard.d.ts +2 -2
- package/dist/contracts/dashboard.js +3 -2
- package/dist/contracts/dashboard.js.map +1 -1
- package/dist/contracts/defi-wrapper/distributor.d.ts +4 -0
- package/dist/contracts/defi-wrapper/distributor.js +12 -0
- package/dist/contracts/defi-wrapper/distributor.js.map +1 -0
- package/dist/contracts/defi-wrapper/factory.d.ts +4 -0
- package/dist/contracts/defi-wrapper/factory.js +12 -0
- package/dist/contracts/defi-wrapper/factory.js.map +1 -0
- package/dist/contracts/defi-wrapper/index.d.ts +5 -0
- package/dist/contracts/defi-wrapper/index.js +6 -0
- package/dist/contracts/defi-wrapper/index.js.map +1 -0
- package/dist/contracts/defi-wrapper/stv-pool.d.ts +4 -0
- package/dist/contracts/defi-wrapper/stv-pool.js +12 -0
- package/dist/contracts/defi-wrapper/stv-pool.js.map +1 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.d.ts +4 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.js +12 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.js.map +1 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.d.ts +4 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.js +12 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.js.map +1 -0
- package/dist/contracts/index.d.ts +2 -0
- package/dist/contracts/index.js +2 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/lazy-oracle.js +3 -2
- package/dist/contracts/lazy-oracle.js.map +1 -1
- package/dist/contracts/locator.d.ts +3 -9655
- package/dist/contracts/locator.js +4 -3
- package/dist/contracts/locator.js.map +1 -1
- package/dist/contracts/operator-grid.d.ts +1 -1
- package/dist/contracts/operator-grid.js +3 -2
- package/dist/contracts/operator-grid.js.map +1 -1
- package/dist/contracts/pdg.js +3 -2
- package/dist/contracts/pdg.js.map +1 -1
- package/dist/contracts/steth.d.ts +54 -54
- package/dist/contracts/steth.js +3 -2
- package/dist/contracts/steth.js.map +1 -1
- package/dist/contracts/validator-consolidation-requests.d.ts +5 -0
- package/dist/contracts/validator-consolidation-requests.js +13 -0
- package/dist/contracts/validator-consolidation-requests.js.map +1 -0
- package/dist/contracts/vault-factory.d.ts +3 -27674
- package/dist/contracts/vault-factory.js +4 -3
- package/dist/contracts/vault-factory.js.map +1 -1
- package/dist/contracts/vault-hub.js +3 -2
- package/dist/contracts/vault-hub.js.map +1 -1
- package/dist/contracts/vault-viewer.d.ts +3 -11789
- package/dist/contracts/vault-viewer.js +9 -7
- package/dist/contracts/vault-viewer.js.map +1 -1
- package/dist/contracts/vault.d.ts +2 -2
- package/dist/contracts/vault.js +3 -2
- package/dist/contracts/vault.js.map +1 -1
- package/dist/contracts/wsteth.d.ts +3 -24690
- package/dist/contracts/wsteth.js +4 -3
- package/dist/contracts/wsteth.js.map +1 -1
- package/dist/features/consolidation.d.ts +18 -0
- package/dist/features/consolidation.js +199 -0
- package/dist/features/consolidation.js.map +1 -0
- package/dist/features/defi-wrapper/create-vault.d.ts +17 -0
- package/dist/features/defi-wrapper/create-vault.js +137 -0
- package/dist/features/defi-wrapper/create-vault.js.map +1 -0
- package/dist/features/defi-wrapper/defi-wrapper-factory.d.ts +112 -0
- package/dist/features/defi-wrapper/defi-wrapper-factory.js +228 -0
- package/dist/features/defi-wrapper/defi-wrapper-factory.js.map +1 -0
- package/dist/features/defi-wrapper/index.d.ts +3 -0
- package/dist/features/defi-wrapper/index.js +4 -0
- package/dist/features/defi-wrapper/index.js.map +1 -0
- package/dist/features/defi-wrapper/pool-info.d.ts +35 -0
- package/dist/features/defi-wrapper/pool-info.js +97 -0
- package/dist/features/defi-wrapper/pool-info.js.map +1 -0
- package/dist/features/deposits/check-bls-deposits.d.ts +2 -1
- package/dist/features/deposits/check-bls-deposits.js +11 -2
- package/dist/features/deposits/check-bls-deposits.js.map +1 -1
- package/dist/features/deposits/index.d.ts +1 -0
- package/dist/features/deposits/index.js +1 -0
- package/dist/features/deposits/index.js.map +1 -1
- package/dist/features/deposits/make-pdg-proof.d.ts +8 -0
- package/dist/features/deposits/make-pdg-proof.js +17 -1
- package/dist/features/deposits/make-pdg-proof.js.map +1 -1
- package/dist/features/deposits/no-pdg.d.ts +1 -1
- package/dist/features/deposits/no-pdg.js +6 -3
- package/dist/features/deposits/no-pdg.js.map +1 -1
- package/dist/features/deposits/pdg.d.ts +2 -0
- package/dist/features/deposits/pdg.js +18 -0
- package/dist/features/deposits/pdg.js.map +1 -0
- package/dist/features/dev-tools/impersonate.d.ts +14 -0
- package/dist/features/dev-tools/impersonate.js +64 -0
- package/dist/features/dev-tools/impersonate.js.map +1 -0
- package/dist/features/dev-tools/index.d.ts +1 -0
- package/dist/features/dev-tools/index.js +2 -0
- package/dist/features/dev-tools/index.js.map +1 -0
- package/dist/features/index.d.ts +4 -0
- package/dist/features/index.js +4 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/metrics.d.ts +4 -0
- package/dist/features/metrics.js +48 -0
- package/dist/features/metrics.js.map +1 -0
- package/dist/features/mint-burn/allowance.js +1 -1
- package/dist/features/mint-burn/allowance.js.map +1 -1
- package/dist/features/pdg.d.ts +7 -0
- package/dist/features/pdg.js +9 -5
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/utils/get-boolean.d.ts +1 -0
- package/dist/features/utils/get-boolean.js +13 -0
- package/dist/features/utils/get-boolean.js.map +1 -0
- package/dist/features/utils/index.d.ts +1 -0
- package/dist/features/utils/index.js +1 -0
- package/dist/features/utils/index.js.map +1 -1
- package/dist/features/utils/quarantine.d.ts +2 -0
- package/dist/features/utils/quarantine.js +2 -0
- package/dist/features/utils/quarantine.js.map +1 -1
- package/dist/features/utils/report-fresh.js +19 -3
- package/dist/features/utils/report-fresh.js.map +1 -1
- package/dist/features/vault-factory.d.ts +2 -2
- package/dist/features/vault-factory.js +8 -3
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-operations/create-vault.d.ts +4 -2
- package/dist/features/vault-operations/create-vault.js +13 -5
- package/dist/features/vault-operations/create-vault.js.map +1 -1
- package/dist/features/vault-operations/dashboard-by-vault.js +4 -4
- package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -1
- package/dist/features/vault-operations/vault-info.js +2 -2
- package/dist/features/vault-operations/vault-info.js.map +1 -1
- package/dist/features/vault-operations/vault-overview.js +10 -12
- package/dist/features/vault-operations/vault-overview.js.map +1 -1
- package/dist/features/vault-operations/vault-roles.d.ts +2 -1
- package/dist/features/vault-operations/vault-roles.js +25 -23
- package/dist/features/vault-operations/vault-roles.js.map +1 -1
- package/dist/features/vault-operations/vaults-by-role.d.ts +5 -0
- package/dist/features/vault-operations/vaults-by-role.js +123 -36
- package/dist/features/vault-operations/vaults-by-role.js.map +1 -1
- package/dist/features/vault.js +4 -2
- package/dist/features/vault.js.map +1 -1
- package/dist/index.js +13 -4
- package/dist/index.js.map +1 -1
- package/dist/programs/account/read.js +1 -1
- package/dist/programs/account/read.js.map +1 -1
- package/dist/programs/account/write.js +14 -0
- package/dist/programs/account/write.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.js +4 -0
- package/dist/programs/contracts/dashboard/config.js.map +1 -1
- package/dist/programs/contracts/dashboard/read.js +7 -7
- package/dist/programs/contracts/dashboard/read.js.map +1 -1
- package/dist/programs/contracts/dashboard/write.js +85 -61
- package/dist/programs/contracts/dashboard/write.js.map +1 -1
- package/dist/programs/contracts/hub/config.js +0 -10
- package/dist/programs/contracts/hub/config.js.map +1 -1
- package/dist/programs/contracts/hub/read.js +63 -2
- package/dist/programs/contracts/hub/read.js.map +1 -1
- package/dist/programs/contracts/hub/write.js +1 -1
- package/dist/programs/contracts/hub/write.js.map +1 -1
- package/dist/programs/contracts/lazy-oracle/config.js +33 -0
- package/dist/programs/contracts/lazy-oracle/config.js.map +1 -1
- package/dist/programs/contracts/operator-grid/write.js +2 -75
- package/dist/programs/contracts/operator-grid/write.js.map +1 -1
- package/dist/programs/contracts/pdg/read.js +4 -6
- package/dist/programs/contracts/pdg/read.js.map +1 -1
- package/dist/programs/contracts/pdg/write.js +76 -10
- package/dist/programs/contracts/pdg/write.js.map +1 -1
- package/dist/programs/contracts/vault/write.js +34 -23
- package/dist/programs/contracts/vault/write.js.map +1 -1
- package/dist/programs/contracts/vault-factory/write.js +25 -15
- package/dist/programs/contracts/vault-factory/write.js.map +1 -1
- package/dist/programs/contracts/vault-viewer/config.js +102 -59
- package/dist/programs/contracts/vault-viewer/config.js.map +1 -1
- package/dist/programs/contracts/vault-viewer/read.js +22 -76
- package/dist/programs/contracts/vault-viewer/read.js.map +1 -1
- package/dist/programs/defi-wrapper/contracts/distributor/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/distributor/config.js +44 -0
- package/dist/programs/defi-wrapper/contracts/distributor/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.js +5 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.js +40 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.js +70 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.js +2 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.js +50 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.js +144 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/index.d.ts +6 -0
- package/dist/programs/defi-wrapper/contracts/index.js +7 -0
- package/dist/programs/defi-wrapper/contracts/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.js +73 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.js +70 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.js +138 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js +120 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js +70 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js +173 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js +66 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js +65 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js +171 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js.map +1 -0
- package/dist/programs/defi-wrapper/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/index.js +4 -0
- package/dist/programs/defi-wrapper/index.js.map +1 -0
- package/dist/programs/defi-wrapper/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/main.js +6 -0
- package/dist/programs/defi-wrapper/main.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/use-cases/health/index.js +4 -0
- package/dist/programs/defi-wrapper/use-cases/health/index.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/main.js +6 -0
- package/dist/programs/defi-wrapper/use-cases/health/main.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/read.js +338 -0
- package/dist/programs/defi-wrapper/use-cases/health/read.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/utils.d.ts +56 -0
- package/dist/programs/defi-wrapper/use-cases/health/utils.js +389 -0
- package/dist/programs/defi-wrapper/use-cases/health/utils.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/health/write.js +254 -0
- package/dist/programs/defi-wrapper/use-cases/health/write.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/use-cases/index.js +4 -0
- package/dist/programs/defi-wrapper/use-cases/index.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/main.js +6 -0
- package/dist/programs/defi-wrapper/use-cases/main.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.js +143 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.js +5 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.js +6 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.js +130 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.js.map +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.js +13 -0
- package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.js.map +1 -0
- package/dist/programs/dev-tools/anvil/index.d.ts +2 -0
- package/dist/programs/dev-tools/anvil/index.js +3 -0
- package/dist/programs/dev-tools/anvil/index.js.map +1 -0
- package/dist/programs/dev-tools/anvil/main.d.ts +1 -0
- package/dist/programs/dev-tools/anvil/main.js +5 -0
- package/dist/programs/dev-tools/anvil/main.js.map +1 -0
- package/dist/programs/dev-tools/anvil/write.d.ts +1 -0
- package/dist/programs/dev-tools/anvil/write.js +122 -0
- package/dist/programs/dev-tools/anvil/write.js.map +1 -0
- package/dist/programs/dev-tools/defi-wrapper/index.d.ts +2 -0
- package/dist/programs/dev-tools/defi-wrapper/index.js +3 -0
- package/dist/programs/dev-tools/defi-wrapper/index.js.map +1 -0
- package/dist/programs/dev-tools/defi-wrapper/main.d.ts +1 -0
- package/dist/programs/dev-tools/defi-wrapper/main.js +6 -0
- package/dist/programs/dev-tools/defi-wrapper/main.js.map +1 -0
- package/dist/programs/dev-tools/defi-wrapper/write.d.ts +1 -0
- package/dist/programs/dev-tools/defi-wrapper/write.js +77 -0
- package/dist/programs/dev-tools/defi-wrapper/write.js.map +1 -0
- package/dist/programs/dev-tools/index.d.ts +3 -0
- package/dist/programs/dev-tools/index.js +4 -0
- package/dist/programs/dev-tools/index.js.map +1 -0
- package/dist/programs/dev-tools/main.d.ts +1 -0
- package/dist/programs/dev-tools/main.js +6 -0
- package/dist/programs/dev-tools/main.js.map +1 -0
- package/dist/programs/index.d.ts +2 -0
- package/dist/programs/index.js +2 -0
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/pdg-helpers.js +22 -18
- package/dist/programs/pdg-helpers.js.map +1 -1
- package/dist/programs/use-cases/consolidation/index.d.ts +2 -0
- package/dist/programs/use-cases/consolidation/index.js +3 -0
- package/dist/programs/use-cases/consolidation/index.js.map +1 -0
- package/dist/programs/use-cases/consolidation/main.d.ts +1 -0
- package/dist/programs/use-cases/consolidation/main.js +5 -0
- package/dist/programs/use-cases/consolidation/main.js.map +1 -0
- package/dist/programs/use-cases/consolidation/write.d.ts +1 -0
- package/dist/programs/use-cases/consolidation/write.js +78 -0
- package/dist/programs/use-cases/consolidation/write.js.map +1 -0
- package/dist/programs/use-cases/deposits/read.js +8 -4
- package/dist/programs/use-cases/deposits/read.js.map +1 -1
- package/dist/programs/use-cases/deposits/write.js +141 -16
- package/dist/programs/use-cases/deposits/write.js.map +1 -1
- package/dist/programs/use-cases/index.d.ts +1 -0
- package/dist/programs/use-cases/index.js +1 -0
- package/dist/programs/use-cases/index.js.map +1 -1
- package/dist/programs/use-cases/metrics/read.js +38 -33
- package/dist/programs/use-cases/metrics/read.js.map +1 -1
- package/dist/programs/use-cases/report/write.js +3 -0
- package/dist/programs/use-cases/report/write.js.map +1 -1
- package/dist/programs/use-cases/vault-operations/create-vault.js +13 -7
- package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -1
- package/dist/providers/wallet.d.ts +6986 -171
- package/dist/providers/wallet.js +15 -5
- package/dist/providers/wallet.js.map +1 -1
- package/dist/tests/utils/bigInt.test.d.ts +1 -0
- package/dist/tests/utils/bigInt.test.js +61 -0
- package/dist/tests/utils/bigInt.test.js.map +1 -0
- package/dist/types/config.d.ts +1 -0
- package/dist/utils/arguments.d.ts +8 -0
- package/dist/utils/arguments.js +56 -4
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/bigInt.d.ts +2 -0
- package/dist/utils/bigInt.js +3 -0
- package/dist/utils/bigInt.js.map +1 -0
- package/dist/utils/bls.d.ts +2 -2
- package/dist/utils/bls.js +8 -7
- package/dist/utils/bls.js.map +1 -1
- package/dist/utils/cache.d.ts +30 -0
- package/dist/utils/cache.js +140 -3
- package/dist/utils/cache.js.map +1 -1
- package/dist/utils/calculate-overview-v2.js +1 -2
- package/dist/utils/calculate-overview-v2.js.map +1 -1
- package/dist/utils/calculate-overview.js +1 -2
- package/dist/utils/calculate-overview.js.map +1 -1
- package/dist/utils/charts/blessed/charts-apr.js +8 -18
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
- package/dist/utils/charts/blessed/charts-rewards.js +7 -17
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
- package/dist/utils/charts/blessed/datasets/prepare-metrics.d.ts +5 -5
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js +11 -11
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js.map +1 -1
- package/dist/utils/charts/simple/simple-charts.js +8 -18
- package/dist/utils/charts/simple/simple-charts.js.map +1 -1
- package/dist/utils/commands/confirmations.js +1 -1
- package/dist/utils/commands/confirmations.js.map +1 -1
- package/dist/utils/commands/report.d.ts +1 -1
- package/dist/utils/commands/report.js +3 -2
- package/dist/utils/commands/report.js.map +1 -1
- package/dist/utils/consolidation/checks.d.ts +7 -0
- package/dist/utils/consolidation/checks.js +40 -0
- package/dist/utils/consolidation/checks.js.map +1 -0
- package/dist/utils/consolidation/confirms.d.ts +4 -0
- package/dist/utils/consolidation/confirms.js +41 -0
- package/dist/utils/consolidation/confirms.js.map +1 -0
- package/dist/utils/consolidation/index.d.ts +6 -0
- package/dist/utils/consolidation/index.js +7 -0
- package/dist/utils/consolidation/index.js.map +1 -0
- package/dist/utils/consolidation/logs.d.ts +3 -0
- package/dist/utils/consolidation/logs.js +41 -0
- package/dist/utils/consolidation/logs.js.map +1 -0
- package/dist/utils/consolidation/pubkeys.d.ts +8 -0
- package/dist/utils/consolidation/pubkeys.js +40 -0
- package/dist/utils/consolidation/pubkeys.js.map +1 -0
- package/dist/utils/consolidation/types.d.ts +11 -0
- package/dist/utils/consolidation/types.js +2 -0
- package/dist/utils/consolidation/types.js.map +1 -0
- package/dist/utils/consolidation/validator-info.d.ts +4 -0
- package/dist/utils/consolidation/validator-info.js +34 -0
- package/dist/utils/consolidation/validator-info.js.map +1 -0
- package/dist/utils/consolidation/validators-checks.d.ts +10 -0
- package/dist/utils/consolidation/validators-checks.js +58 -0
- package/dist/utils/consolidation/validators-checks.js.map +1 -0
- package/dist/utils/fetchCL.d.ts +36 -19
- package/dist/utils/fetchCL.js +82 -11
- package/dist/utils/fetchCL.js.map +1 -1
- package/dist/utils/health/health-utils.d.ts +54 -54
- package/dist/utils/health/health-utils.js +1 -1
- package/dist/utils/health/health-utils.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/proof/constants.d.ts +6 -0
- package/dist/utils/proof/constants.js +7 -0
- package/dist/utils/proof/constants.js.map +1 -0
- package/dist/utils/proof/first-validator-gindex.js +0 -4
- package/dist/utils/proof/first-validator-gindex.js.map +1 -1
- package/dist/utils/proof/proofs.d.ts +7 -8
- package/dist/utils/proof/proofs.js +36 -28
- package/dist/utils/proof/proofs.js.map +1 -1
- package/dist/utils/read-programs-by-abi.d.ts +1 -1
- package/dist/utils/read-programs-by-abi.js +4 -18
- package/dist/utils/read-programs-by-abi.js.map +1 -1
- package/dist/utils/report/report.js +1 -1
- package/dist/utils/report/report.js.map +1 -1
- package/dist/utils/report/statistic-data.js +3 -3
- package/dist/utils/report/statistic-data.js.map +1 -1
- package/dist/utils/statistic/report-statistic.d.ts +6 -5
- package/dist/utils/statistic/report-statistic.js +15 -16
- package/dist/utils/statistic/report-statistic.js.map +1 -1
- package/dist/utils/transactions/tx-private-key.d.ts +2 -2
- package/dist/utils/transactions/tx-private-key.js +14 -9
- package/dist/utils/transactions/tx-private-key.js.map +1 -1
- package/dist/utils/transactions/tx-wc.d.ts +32 -2
- package/dist/utils/transactions/tx-wc.js +61 -33
- package/dist/utils/transactions/tx-wc.js.map +1 -1
- package/dist/utils/transactions/types.d.ts +4 -2
- package/dist/utils/wallet-connect.d.ts +4 -7664
- package/dist/utils/wallet-connect.js +17 -5
- package/dist/utils/wallet-connect.js.map +1 -1
- package/dist/version/index.js +1 -1
- package/package.json +5 -6
|
@@ -0,0 +1,1265 @@
|
|
|
1
|
+
export declare const WithdrawalQueueAbi: readonly [{
|
|
2
|
+
readonly type: "constructor";
|
|
3
|
+
readonly inputs: readonly [{
|
|
4
|
+
readonly name: "_pool";
|
|
5
|
+
readonly type: "address";
|
|
6
|
+
readonly internalType: "address";
|
|
7
|
+
}, {
|
|
8
|
+
readonly name: "_dashboard";
|
|
9
|
+
readonly type: "address";
|
|
10
|
+
readonly internalType: "address";
|
|
11
|
+
}, {
|
|
12
|
+
readonly name: "_vaultHub";
|
|
13
|
+
readonly type: "address";
|
|
14
|
+
readonly internalType: "address";
|
|
15
|
+
}, {
|
|
16
|
+
readonly name: "_steth";
|
|
17
|
+
readonly type: "address";
|
|
18
|
+
readonly internalType: "address";
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "_vault";
|
|
21
|
+
readonly type: "address";
|
|
22
|
+
readonly internalType: "address";
|
|
23
|
+
}, {
|
|
24
|
+
readonly name: "_lazyOracle";
|
|
25
|
+
readonly type: "address";
|
|
26
|
+
readonly internalType: "address";
|
|
27
|
+
}, {
|
|
28
|
+
readonly name: "_minWithdrawalDelayTimeInSeconds";
|
|
29
|
+
readonly type: "uint256";
|
|
30
|
+
readonly internalType: "uint256";
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "_isRebalancingSupported";
|
|
33
|
+
readonly type: "bool";
|
|
34
|
+
readonly internalType: "bool";
|
|
35
|
+
}];
|
|
36
|
+
readonly stateMutability: "nonpayable";
|
|
37
|
+
}, {
|
|
38
|
+
readonly type: "receive";
|
|
39
|
+
readonly stateMutability: "payable";
|
|
40
|
+
}, {
|
|
41
|
+
readonly type: "function";
|
|
42
|
+
readonly name: "DASHBOARD";
|
|
43
|
+
readonly inputs: readonly [];
|
|
44
|
+
readonly outputs: readonly [{
|
|
45
|
+
readonly name: "";
|
|
46
|
+
readonly type: "address";
|
|
47
|
+
readonly internalType: "contract IDashboard";
|
|
48
|
+
}];
|
|
49
|
+
readonly stateMutability: "view";
|
|
50
|
+
}, {
|
|
51
|
+
readonly type: "function";
|
|
52
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
53
|
+
readonly inputs: readonly [];
|
|
54
|
+
readonly outputs: readonly [{
|
|
55
|
+
readonly name: "";
|
|
56
|
+
readonly type: "bytes32";
|
|
57
|
+
readonly internalType: "bytes32";
|
|
58
|
+
}];
|
|
59
|
+
readonly stateMutability: "view";
|
|
60
|
+
}, {
|
|
61
|
+
readonly type: "function";
|
|
62
|
+
readonly name: "E27_PRECISION_BASE";
|
|
63
|
+
readonly inputs: readonly [];
|
|
64
|
+
readonly outputs: readonly [{
|
|
65
|
+
readonly name: "";
|
|
66
|
+
readonly type: "uint256";
|
|
67
|
+
readonly internalType: "uint256";
|
|
68
|
+
}];
|
|
69
|
+
readonly stateMutability: "view";
|
|
70
|
+
}, {
|
|
71
|
+
readonly type: "function";
|
|
72
|
+
readonly name: "E36_PRECISION_BASE";
|
|
73
|
+
readonly inputs: readonly [];
|
|
74
|
+
readonly outputs: readonly [{
|
|
75
|
+
readonly name: "";
|
|
76
|
+
readonly type: "uint256";
|
|
77
|
+
readonly internalType: "uint256";
|
|
78
|
+
}];
|
|
79
|
+
readonly stateMutability: "view";
|
|
80
|
+
}, {
|
|
81
|
+
readonly type: "function";
|
|
82
|
+
readonly name: "FINALIZE_FEATURE";
|
|
83
|
+
readonly inputs: readonly [];
|
|
84
|
+
readonly outputs: readonly [{
|
|
85
|
+
readonly name: "";
|
|
86
|
+
readonly type: "bytes32";
|
|
87
|
+
readonly internalType: "bytes32";
|
|
88
|
+
}];
|
|
89
|
+
readonly stateMutability: "view";
|
|
90
|
+
}, {
|
|
91
|
+
readonly type: "function";
|
|
92
|
+
readonly name: "FINALIZE_PAUSE_ROLE";
|
|
93
|
+
readonly inputs: readonly [];
|
|
94
|
+
readonly outputs: readonly [{
|
|
95
|
+
readonly name: "";
|
|
96
|
+
readonly type: "bytes32";
|
|
97
|
+
readonly internalType: "bytes32";
|
|
98
|
+
}];
|
|
99
|
+
readonly stateMutability: "view";
|
|
100
|
+
}, {
|
|
101
|
+
readonly type: "function";
|
|
102
|
+
readonly name: "FINALIZE_RESUME_ROLE";
|
|
103
|
+
readonly inputs: readonly [];
|
|
104
|
+
readonly outputs: readonly [{
|
|
105
|
+
readonly name: "";
|
|
106
|
+
readonly type: "bytes32";
|
|
107
|
+
readonly internalType: "bytes32";
|
|
108
|
+
}];
|
|
109
|
+
readonly stateMutability: "view";
|
|
110
|
+
}, {
|
|
111
|
+
readonly type: "function";
|
|
112
|
+
readonly name: "FINALIZE_ROLE";
|
|
113
|
+
readonly inputs: readonly [];
|
|
114
|
+
readonly outputs: readonly [{
|
|
115
|
+
readonly name: "";
|
|
116
|
+
readonly type: "bytes32";
|
|
117
|
+
readonly internalType: "bytes32";
|
|
118
|
+
}];
|
|
119
|
+
readonly stateMutability: "view";
|
|
120
|
+
}, {
|
|
121
|
+
readonly type: "function";
|
|
122
|
+
readonly name: "IS_REBALANCING_SUPPORTED";
|
|
123
|
+
readonly inputs: readonly [];
|
|
124
|
+
readonly outputs: readonly [{
|
|
125
|
+
readonly name: "";
|
|
126
|
+
readonly type: "bool";
|
|
127
|
+
readonly internalType: "bool";
|
|
128
|
+
}];
|
|
129
|
+
readonly stateMutability: "view";
|
|
130
|
+
}, {
|
|
131
|
+
readonly type: "function";
|
|
132
|
+
readonly name: "LAZY_ORACLE";
|
|
133
|
+
readonly inputs: readonly [];
|
|
134
|
+
readonly outputs: readonly [{
|
|
135
|
+
readonly name: "";
|
|
136
|
+
readonly type: "address";
|
|
137
|
+
readonly internalType: "contract ILazyOracle";
|
|
138
|
+
}];
|
|
139
|
+
readonly stateMutability: "view";
|
|
140
|
+
}, {
|
|
141
|
+
readonly type: "function";
|
|
142
|
+
readonly name: "MAX_GAS_COST_COVERAGE";
|
|
143
|
+
readonly inputs: readonly [];
|
|
144
|
+
readonly outputs: readonly [{
|
|
145
|
+
readonly name: "";
|
|
146
|
+
readonly type: "uint256";
|
|
147
|
+
readonly internalType: "uint256";
|
|
148
|
+
}];
|
|
149
|
+
readonly stateMutability: "view";
|
|
150
|
+
}, {
|
|
151
|
+
readonly type: "function";
|
|
152
|
+
readonly name: "MAX_WITHDRAWAL_ASSETS";
|
|
153
|
+
readonly inputs: readonly [];
|
|
154
|
+
readonly outputs: readonly [{
|
|
155
|
+
readonly name: "";
|
|
156
|
+
readonly type: "uint256";
|
|
157
|
+
readonly internalType: "uint256";
|
|
158
|
+
}];
|
|
159
|
+
readonly stateMutability: "view";
|
|
160
|
+
}, {
|
|
161
|
+
readonly type: "function";
|
|
162
|
+
readonly name: "MIN_WITHDRAWAL_DELAY_TIME_IN_SECONDS";
|
|
163
|
+
readonly inputs: readonly [];
|
|
164
|
+
readonly outputs: readonly [{
|
|
165
|
+
readonly name: "";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
readonly internalType: "uint256";
|
|
168
|
+
}];
|
|
169
|
+
readonly stateMutability: "view";
|
|
170
|
+
}, {
|
|
171
|
+
readonly type: "function";
|
|
172
|
+
readonly name: "MIN_WITHDRAWAL_VALUE";
|
|
173
|
+
readonly inputs: readonly [];
|
|
174
|
+
readonly outputs: readonly [{
|
|
175
|
+
readonly name: "";
|
|
176
|
+
readonly type: "uint256";
|
|
177
|
+
readonly internalType: "uint256";
|
|
178
|
+
}];
|
|
179
|
+
readonly stateMutability: "view";
|
|
180
|
+
}, {
|
|
181
|
+
readonly type: "function";
|
|
182
|
+
readonly name: "POOL";
|
|
183
|
+
readonly inputs: readonly [];
|
|
184
|
+
readonly outputs: readonly [{
|
|
185
|
+
readonly name: "";
|
|
186
|
+
readonly type: "address";
|
|
187
|
+
readonly internalType: "contract IStvStETHPool";
|
|
188
|
+
}];
|
|
189
|
+
readonly stateMutability: "view";
|
|
190
|
+
}, {
|
|
191
|
+
readonly type: "function";
|
|
192
|
+
readonly name: "STETH";
|
|
193
|
+
readonly inputs: readonly [];
|
|
194
|
+
readonly outputs: readonly [{
|
|
195
|
+
readonly name: "";
|
|
196
|
+
readonly type: "address";
|
|
197
|
+
readonly internalType: "contract IStETH";
|
|
198
|
+
}];
|
|
199
|
+
readonly stateMutability: "view";
|
|
200
|
+
}, {
|
|
201
|
+
readonly type: "function";
|
|
202
|
+
readonly name: "VAULT";
|
|
203
|
+
readonly inputs: readonly [];
|
|
204
|
+
readonly outputs: readonly [{
|
|
205
|
+
readonly name: "";
|
|
206
|
+
readonly type: "address";
|
|
207
|
+
readonly internalType: "contract IStakingVault";
|
|
208
|
+
}];
|
|
209
|
+
readonly stateMutability: "view";
|
|
210
|
+
}, {
|
|
211
|
+
readonly type: "function";
|
|
212
|
+
readonly name: "VAULT_HUB";
|
|
213
|
+
readonly inputs: readonly [];
|
|
214
|
+
readonly outputs: readonly [{
|
|
215
|
+
readonly name: "";
|
|
216
|
+
readonly type: "address";
|
|
217
|
+
readonly internalType: "contract IVaultHub";
|
|
218
|
+
}];
|
|
219
|
+
readonly stateMutability: "view";
|
|
220
|
+
}, {
|
|
221
|
+
readonly type: "function";
|
|
222
|
+
readonly name: "WITHDRAWALS_FEATURE";
|
|
223
|
+
readonly inputs: readonly [];
|
|
224
|
+
readonly outputs: readonly [{
|
|
225
|
+
readonly name: "";
|
|
226
|
+
readonly type: "bytes32";
|
|
227
|
+
readonly internalType: "bytes32";
|
|
228
|
+
}];
|
|
229
|
+
readonly stateMutability: "view";
|
|
230
|
+
}, {
|
|
231
|
+
readonly type: "function";
|
|
232
|
+
readonly name: "WITHDRAWALS_PAUSE_ROLE";
|
|
233
|
+
readonly inputs: readonly [];
|
|
234
|
+
readonly outputs: readonly [{
|
|
235
|
+
readonly name: "";
|
|
236
|
+
readonly type: "bytes32";
|
|
237
|
+
readonly internalType: "bytes32";
|
|
238
|
+
}];
|
|
239
|
+
readonly stateMutability: "view";
|
|
240
|
+
}, {
|
|
241
|
+
readonly type: "function";
|
|
242
|
+
readonly name: "WITHDRAWALS_RESUME_ROLE";
|
|
243
|
+
readonly inputs: readonly [];
|
|
244
|
+
readonly outputs: readonly [{
|
|
245
|
+
readonly name: "";
|
|
246
|
+
readonly type: "bytes32";
|
|
247
|
+
readonly internalType: "bytes32";
|
|
248
|
+
}];
|
|
249
|
+
readonly stateMutability: "view";
|
|
250
|
+
}, {
|
|
251
|
+
readonly type: "function";
|
|
252
|
+
readonly name: "calculateCurrentStethShareRate";
|
|
253
|
+
readonly inputs: readonly [];
|
|
254
|
+
readonly outputs: readonly [{
|
|
255
|
+
readonly name: "stethShareRate";
|
|
256
|
+
readonly type: "uint256";
|
|
257
|
+
readonly internalType: "uint256";
|
|
258
|
+
}];
|
|
259
|
+
readonly stateMutability: "view";
|
|
260
|
+
}, {
|
|
261
|
+
readonly type: "function";
|
|
262
|
+
readonly name: "calculateCurrentStvRate";
|
|
263
|
+
readonly inputs: readonly [];
|
|
264
|
+
readonly outputs: readonly [{
|
|
265
|
+
readonly name: "stvRate";
|
|
266
|
+
readonly type: "uint256";
|
|
267
|
+
readonly internalType: "uint256";
|
|
268
|
+
}];
|
|
269
|
+
readonly stateMutability: "view";
|
|
270
|
+
}, {
|
|
271
|
+
readonly type: "function";
|
|
272
|
+
readonly name: "claimWithdrawal";
|
|
273
|
+
readonly inputs: readonly [{
|
|
274
|
+
readonly name: "_recipient";
|
|
275
|
+
readonly type: "address";
|
|
276
|
+
readonly internalType: "address";
|
|
277
|
+
}, {
|
|
278
|
+
readonly name: "_requestId";
|
|
279
|
+
readonly type: "uint256";
|
|
280
|
+
readonly internalType: "uint256";
|
|
281
|
+
}];
|
|
282
|
+
readonly outputs: readonly [{
|
|
283
|
+
readonly name: "claimedEth";
|
|
284
|
+
readonly type: "uint256";
|
|
285
|
+
readonly internalType: "uint256";
|
|
286
|
+
}];
|
|
287
|
+
readonly stateMutability: "nonpayable";
|
|
288
|
+
}, {
|
|
289
|
+
readonly type: "function";
|
|
290
|
+
readonly name: "claimWithdrawalBatch";
|
|
291
|
+
readonly inputs: readonly [{
|
|
292
|
+
readonly name: "_recipient";
|
|
293
|
+
readonly type: "address";
|
|
294
|
+
readonly internalType: "address";
|
|
295
|
+
}, {
|
|
296
|
+
readonly name: "_requestIds";
|
|
297
|
+
readonly type: "uint256[]";
|
|
298
|
+
readonly internalType: "uint256[]";
|
|
299
|
+
}, {
|
|
300
|
+
readonly name: "_hints";
|
|
301
|
+
readonly type: "uint256[]";
|
|
302
|
+
readonly internalType: "uint256[]";
|
|
303
|
+
}];
|
|
304
|
+
readonly outputs: readonly [{
|
|
305
|
+
readonly name: "claimedAmounts";
|
|
306
|
+
readonly type: "uint256[]";
|
|
307
|
+
readonly internalType: "uint256[]";
|
|
308
|
+
}];
|
|
309
|
+
readonly stateMutability: "nonpayable";
|
|
310
|
+
}, {
|
|
311
|
+
readonly type: "function";
|
|
312
|
+
readonly name: "finalize";
|
|
313
|
+
readonly inputs: readonly [{
|
|
314
|
+
readonly name: "_maxRequests";
|
|
315
|
+
readonly type: "uint256";
|
|
316
|
+
readonly internalType: "uint256";
|
|
317
|
+
}, {
|
|
318
|
+
readonly name: "_gasCostCoverageRecipient";
|
|
319
|
+
readonly type: "address";
|
|
320
|
+
readonly internalType: "address";
|
|
321
|
+
}];
|
|
322
|
+
readonly outputs: readonly [{
|
|
323
|
+
readonly name: "finalizedRequests";
|
|
324
|
+
readonly type: "uint256";
|
|
325
|
+
readonly internalType: "uint256";
|
|
326
|
+
}];
|
|
327
|
+
readonly stateMutability: "nonpayable";
|
|
328
|
+
}, {
|
|
329
|
+
readonly type: "function";
|
|
330
|
+
readonly name: "findCheckpointHint";
|
|
331
|
+
readonly inputs: readonly [{
|
|
332
|
+
readonly name: "_requestId";
|
|
333
|
+
readonly type: "uint256";
|
|
334
|
+
readonly internalType: "uint256";
|
|
335
|
+
}, {
|
|
336
|
+
readonly name: "_start";
|
|
337
|
+
readonly type: "uint256";
|
|
338
|
+
readonly internalType: "uint256";
|
|
339
|
+
}, {
|
|
340
|
+
readonly name: "_end";
|
|
341
|
+
readonly type: "uint256";
|
|
342
|
+
readonly internalType: "uint256";
|
|
343
|
+
}];
|
|
344
|
+
readonly outputs: readonly [{
|
|
345
|
+
readonly name: "";
|
|
346
|
+
readonly type: "uint256";
|
|
347
|
+
readonly internalType: "uint256";
|
|
348
|
+
}];
|
|
349
|
+
readonly stateMutability: "view";
|
|
350
|
+
}, {
|
|
351
|
+
readonly type: "function";
|
|
352
|
+
readonly name: "findCheckpointHintBatch";
|
|
353
|
+
readonly inputs: readonly [{
|
|
354
|
+
readonly name: "_requestIds";
|
|
355
|
+
readonly type: "uint256[]";
|
|
356
|
+
readonly internalType: "uint256[]";
|
|
357
|
+
}, {
|
|
358
|
+
readonly name: "_firstIndex";
|
|
359
|
+
readonly type: "uint256";
|
|
360
|
+
readonly internalType: "uint256";
|
|
361
|
+
}, {
|
|
362
|
+
readonly name: "_lastIndex";
|
|
363
|
+
readonly type: "uint256";
|
|
364
|
+
readonly internalType: "uint256";
|
|
365
|
+
}];
|
|
366
|
+
readonly outputs: readonly [{
|
|
367
|
+
readonly name: "hintIds";
|
|
368
|
+
readonly type: "uint256[]";
|
|
369
|
+
readonly internalType: "uint256[]";
|
|
370
|
+
}];
|
|
371
|
+
readonly stateMutability: "view";
|
|
372
|
+
}, {
|
|
373
|
+
readonly type: "function";
|
|
374
|
+
readonly name: "getClaimableEther";
|
|
375
|
+
readonly inputs: readonly [{
|
|
376
|
+
readonly name: "_requestId";
|
|
377
|
+
readonly type: "uint256";
|
|
378
|
+
readonly internalType: "uint256";
|
|
379
|
+
}];
|
|
380
|
+
readonly outputs: readonly [{
|
|
381
|
+
readonly name: "claimableEth";
|
|
382
|
+
readonly type: "uint256";
|
|
383
|
+
readonly internalType: "uint256";
|
|
384
|
+
}];
|
|
385
|
+
readonly stateMutability: "view";
|
|
386
|
+
}, {
|
|
387
|
+
readonly type: "function";
|
|
388
|
+
readonly name: "getClaimableEtherBatch";
|
|
389
|
+
readonly inputs: readonly [{
|
|
390
|
+
readonly name: "_requestIds";
|
|
391
|
+
readonly type: "uint256[]";
|
|
392
|
+
readonly internalType: "uint256[]";
|
|
393
|
+
}, {
|
|
394
|
+
readonly name: "_hints";
|
|
395
|
+
readonly type: "uint256[]";
|
|
396
|
+
readonly internalType: "uint256[]";
|
|
397
|
+
}];
|
|
398
|
+
readonly outputs: readonly [{
|
|
399
|
+
readonly name: "claimableEthValues";
|
|
400
|
+
readonly type: "uint256[]";
|
|
401
|
+
readonly internalType: "uint256[]";
|
|
402
|
+
}];
|
|
403
|
+
readonly stateMutability: "view";
|
|
404
|
+
}, {
|
|
405
|
+
readonly type: "function";
|
|
406
|
+
readonly name: "getFinalizationGasCostCoverage";
|
|
407
|
+
readonly inputs: readonly [];
|
|
408
|
+
readonly outputs: readonly [{
|
|
409
|
+
readonly name: "coverage";
|
|
410
|
+
readonly type: "uint256";
|
|
411
|
+
readonly internalType: "uint256";
|
|
412
|
+
}];
|
|
413
|
+
readonly stateMutability: "view";
|
|
414
|
+
}, {
|
|
415
|
+
readonly type: "function";
|
|
416
|
+
readonly name: "getLastCheckpointIndex";
|
|
417
|
+
readonly inputs: readonly [];
|
|
418
|
+
readonly outputs: readonly [{
|
|
419
|
+
readonly name: "index";
|
|
420
|
+
readonly type: "uint256";
|
|
421
|
+
readonly internalType: "uint256";
|
|
422
|
+
}];
|
|
423
|
+
readonly stateMutability: "view";
|
|
424
|
+
}, {
|
|
425
|
+
readonly type: "function";
|
|
426
|
+
readonly name: "getLastFinalizedRequestId";
|
|
427
|
+
readonly inputs: readonly [];
|
|
428
|
+
readonly outputs: readonly [{
|
|
429
|
+
readonly name: "requestId";
|
|
430
|
+
readonly type: "uint256";
|
|
431
|
+
readonly internalType: "uint256";
|
|
432
|
+
}];
|
|
433
|
+
readonly stateMutability: "view";
|
|
434
|
+
}, {
|
|
435
|
+
readonly type: "function";
|
|
436
|
+
readonly name: "getLastRequestId";
|
|
437
|
+
readonly inputs: readonly [];
|
|
438
|
+
readonly outputs: readonly [{
|
|
439
|
+
readonly name: "requestId";
|
|
440
|
+
readonly type: "uint256";
|
|
441
|
+
readonly internalType: "uint256";
|
|
442
|
+
}];
|
|
443
|
+
readonly stateMutability: "view";
|
|
444
|
+
}, {
|
|
445
|
+
readonly type: "function";
|
|
446
|
+
readonly name: "getRoleAdmin";
|
|
447
|
+
readonly inputs: readonly [{
|
|
448
|
+
readonly name: "role";
|
|
449
|
+
readonly type: "bytes32";
|
|
450
|
+
readonly internalType: "bytes32";
|
|
451
|
+
}];
|
|
452
|
+
readonly outputs: readonly [{
|
|
453
|
+
readonly name: "";
|
|
454
|
+
readonly type: "bytes32";
|
|
455
|
+
readonly internalType: "bytes32";
|
|
456
|
+
}];
|
|
457
|
+
readonly stateMutability: "view";
|
|
458
|
+
}, {
|
|
459
|
+
readonly type: "function";
|
|
460
|
+
readonly name: "getRoleMember";
|
|
461
|
+
readonly inputs: readonly [{
|
|
462
|
+
readonly name: "role";
|
|
463
|
+
readonly type: "bytes32";
|
|
464
|
+
readonly internalType: "bytes32";
|
|
465
|
+
}, {
|
|
466
|
+
readonly name: "index";
|
|
467
|
+
readonly type: "uint256";
|
|
468
|
+
readonly internalType: "uint256";
|
|
469
|
+
}];
|
|
470
|
+
readonly outputs: readonly [{
|
|
471
|
+
readonly name: "";
|
|
472
|
+
readonly type: "address";
|
|
473
|
+
readonly internalType: "address";
|
|
474
|
+
}];
|
|
475
|
+
readonly stateMutability: "view";
|
|
476
|
+
}, {
|
|
477
|
+
readonly type: "function";
|
|
478
|
+
readonly name: "getRoleMemberCount";
|
|
479
|
+
readonly inputs: readonly [{
|
|
480
|
+
readonly name: "role";
|
|
481
|
+
readonly type: "bytes32";
|
|
482
|
+
readonly internalType: "bytes32";
|
|
483
|
+
}];
|
|
484
|
+
readonly outputs: readonly [{
|
|
485
|
+
readonly name: "";
|
|
486
|
+
readonly type: "uint256";
|
|
487
|
+
readonly internalType: "uint256";
|
|
488
|
+
}];
|
|
489
|
+
readonly stateMutability: "view";
|
|
490
|
+
}, {
|
|
491
|
+
readonly type: "function";
|
|
492
|
+
readonly name: "getRoleMembers";
|
|
493
|
+
readonly inputs: readonly [{
|
|
494
|
+
readonly name: "role";
|
|
495
|
+
readonly type: "bytes32";
|
|
496
|
+
readonly internalType: "bytes32";
|
|
497
|
+
}];
|
|
498
|
+
readonly outputs: readonly [{
|
|
499
|
+
readonly name: "";
|
|
500
|
+
readonly type: "address[]";
|
|
501
|
+
readonly internalType: "address[]";
|
|
502
|
+
}];
|
|
503
|
+
readonly stateMutability: "view";
|
|
504
|
+
}, {
|
|
505
|
+
readonly type: "function";
|
|
506
|
+
readonly name: "getWithdrawalStatus";
|
|
507
|
+
readonly inputs: readonly [{
|
|
508
|
+
readonly name: "_requestId";
|
|
509
|
+
readonly type: "uint256";
|
|
510
|
+
readonly internalType: "uint256";
|
|
511
|
+
}];
|
|
512
|
+
readonly outputs: readonly [{
|
|
513
|
+
readonly name: "status";
|
|
514
|
+
readonly type: "tuple";
|
|
515
|
+
readonly internalType: "struct WithdrawalQueue.WithdrawalRequestStatus";
|
|
516
|
+
readonly components: readonly [{
|
|
517
|
+
readonly name: "amountOfStv";
|
|
518
|
+
readonly type: "uint256";
|
|
519
|
+
readonly internalType: "uint256";
|
|
520
|
+
}, {
|
|
521
|
+
readonly name: "amountOfStethShares";
|
|
522
|
+
readonly type: "uint256";
|
|
523
|
+
readonly internalType: "uint256";
|
|
524
|
+
}, {
|
|
525
|
+
readonly name: "amountOfAssets";
|
|
526
|
+
readonly type: "uint256";
|
|
527
|
+
readonly internalType: "uint256";
|
|
528
|
+
}, {
|
|
529
|
+
readonly name: "owner";
|
|
530
|
+
readonly type: "address";
|
|
531
|
+
readonly internalType: "address";
|
|
532
|
+
}, {
|
|
533
|
+
readonly name: "timestamp";
|
|
534
|
+
readonly type: "uint256";
|
|
535
|
+
readonly internalType: "uint256";
|
|
536
|
+
}, {
|
|
537
|
+
readonly name: "isFinalized";
|
|
538
|
+
readonly type: "bool";
|
|
539
|
+
readonly internalType: "bool";
|
|
540
|
+
}, {
|
|
541
|
+
readonly name: "isClaimed";
|
|
542
|
+
readonly type: "bool";
|
|
543
|
+
readonly internalType: "bool";
|
|
544
|
+
}];
|
|
545
|
+
}];
|
|
546
|
+
readonly stateMutability: "view";
|
|
547
|
+
}, {
|
|
548
|
+
readonly type: "function";
|
|
549
|
+
readonly name: "getWithdrawalStatusBatch";
|
|
550
|
+
readonly inputs: readonly [{
|
|
551
|
+
readonly name: "_requestIds";
|
|
552
|
+
readonly type: "uint256[]";
|
|
553
|
+
readonly internalType: "uint256[]";
|
|
554
|
+
}];
|
|
555
|
+
readonly outputs: readonly [{
|
|
556
|
+
readonly name: "statuses";
|
|
557
|
+
readonly type: "tuple[]";
|
|
558
|
+
readonly internalType: "struct WithdrawalQueue.WithdrawalRequestStatus[]";
|
|
559
|
+
readonly components: readonly [{
|
|
560
|
+
readonly name: "amountOfStv";
|
|
561
|
+
readonly type: "uint256";
|
|
562
|
+
readonly internalType: "uint256";
|
|
563
|
+
}, {
|
|
564
|
+
readonly name: "amountOfStethShares";
|
|
565
|
+
readonly type: "uint256";
|
|
566
|
+
readonly internalType: "uint256";
|
|
567
|
+
}, {
|
|
568
|
+
readonly name: "amountOfAssets";
|
|
569
|
+
readonly type: "uint256";
|
|
570
|
+
readonly internalType: "uint256";
|
|
571
|
+
}, {
|
|
572
|
+
readonly name: "owner";
|
|
573
|
+
readonly type: "address";
|
|
574
|
+
readonly internalType: "address";
|
|
575
|
+
}, {
|
|
576
|
+
readonly name: "timestamp";
|
|
577
|
+
readonly type: "uint256";
|
|
578
|
+
readonly internalType: "uint256";
|
|
579
|
+
}, {
|
|
580
|
+
readonly name: "isFinalized";
|
|
581
|
+
readonly type: "bool";
|
|
582
|
+
readonly internalType: "bool";
|
|
583
|
+
}, {
|
|
584
|
+
readonly name: "isClaimed";
|
|
585
|
+
readonly type: "bool";
|
|
586
|
+
readonly internalType: "bool";
|
|
587
|
+
}];
|
|
588
|
+
}];
|
|
589
|
+
readonly stateMutability: "view";
|
|
590
|
+
}, {
|
|
591
|
+
readonly type: "function";
|
|
592
|
+
readonly name: "grantRole";
|
|
593
|
+
readonly inputs: readonly [{
|
|
594
|
+
readonly name: "role";
|
|
595
|
+
readonly type: "bytes32";
|
|
596
|
+
readonly internalType: "bytes32";
|
|
597
|
+
}, {
|
|
598
|
+
readonly name: "account";
|
|
599
|
+
readonly type: "address";
|
|
600
|
+
readonly internalType: "address";
|
|
601
|
+
}];
|
|
602
|
+
readonly outputs: readonly [];
|
|
603
|
+
readonly stateMutability: "nonpayable";
|
|
604
|
+
}, {
|
|
605
|
+
readonly type: "function";
|
|
606
|
+
readonly name: "hasRole";
|
|
607
|
+
readonly inputs: readonly [{
|
|
608
|
+
readonly name: "role";
|
|
609
|
+
readonly type: "bytes32";
|
|
610
|
+
readonly internalType: "bytes32";
|
|
611
|
+
}, {
|
|
612
|
+
readonly name: "account";
|
|
613
|
+
readonly type: "address";
|
|
614
|
+
readonly internalType: "address";
|
|
615
|
+
}];
|
|
616
|
+
readonly outputs: readonly [{
|
|
617
|
+
readonly name: "";
|
|
618
|
+
readonly type: "bool";
|
|
619
|
+
readonly internalType: "bool";
|
|
620
|
+
}];
|
|
621
|
+
readonly stateMutability: "view";
|
|
622
|
+
}, {
|
|
623
|
+
readonly type: "function";
|
|
624
|
+
readonly name: "initialize";
|
|
625
|
+
readonly inputs: readonly [{
|
|
626
|
+
readonly name: "_admin";
|
|
627
|
+
readonly type: "address";
|
|
628
|
+
readonly internalType: "address";
|
|
629
|
+
}, {
|
|
630
|
+
readonly name: "_finalizer";
|
|
631
|
+
readonly type: "address";
|
|
632
|
+
readonly internalType: "address";
|
|
633
|
+
}, {
|
|
634
|
+
readonly name: "_withdrawalsPauser";
|
|
635
|
+
readonly type: "address";
|
|
636
|
+
readonly internalType: "address";
|
|
637
|
+
}, {
|
|
638
|
+
readonly name: "_finalizePauser";
|
|
639
|
+
readonly type: "address";
|
|
640
|
+
readonly internalType: "address";
|
|
641
|
+
}];
|
|
642
|
+
readonly outputs: readonly [];
|
|
643
|
+
readonly stateMutability: "nonpayable";
|
|
644
|
+
}, {
|
|
645
|
+
readonly type: "function";
|
|
646
|
+
readonly name: "isFeaturePaused";
|
|
647
|
+
readonly inputs: readonly [{
|
|
648
|
+
readonly name: "_featureId";
|
|
649
|
+
readonly type: "bytes32";
|
|
650
|
+
readonly internalType: "bytes32";
|
|
651
|
+
}];
|
|
652
|
+
readonly outputs: readonly [{
|
|
653
|
+
readonly name: "isPaused";
|
|
654
|
+
readonly type: "bool";
|
|
655
|
+
readonly internalType: "bool";
|
|
656
|
+
}];
|
|
657
|
+
readonly stateMutability: "view";
|
|
658
|
+
}, {
|
|
659
|
+
readonly type: "function";
|
|
660
|
+
readonly name: "pauseFinalization";
|
|
661
|
+
readonly inputs: readonly [];
|
|
662
|
+
readonly outputs: readonly [];
|
|
663
|
+
readonly stateMutability: "nonpayable";
|
|
664
|
+
}, {
|
|
665
|
+
readonly type: "function";
|
|
666
|
+
readonly name: "pauseWithdrawals";
|
|
667
|
+
readonly inputs: readonly [];
|
|
668
|
+
readonly outputs: readonly [];
|
|
669
|
+
readonly stateMutability: "nonpayable";
|
|
670
|
+
}, {
|
|
671
|
+
readonly type: "function";
|
|
672
|
+
readonly name: "renounceRole";
|
|
673
|
+
readonly inputs: readonly [{
|
|
674
|
+
readonly name: "role";
|
|
675
|
+
readonly type: "bytes32";
|
|
676
|
+
readonly internalType: "bytes32";
|
|
677
|
+
}, {
|
|
678
|
+
readonly name: "callerConfirmation";
|
|
679
|
+
readonly type: "address";
|
|
680
|
+
readonly internalType: "address";
|
|
681
|
+
}];
|
|
682
|
+
readonly outputs: readonly [];
|
|
683
|
+
readonly stateMutability: "nonpayable";
|
|
684
|
+
}, {
|
|
685
|
+
readonly type: "function";
|
|
686
|
+
readonly name: "requestWithdrawal";
|
|
687
|
+
readonly inputs: readonly [{
|
|
688
|
+
readonly name: "_owner";
|
|
689
|
+
readonly type: "address";
|
|
690
|
+
readonly internalType: "address";
|
|
691
|
+
}, {
|
|
692
|
+
readonly name: "_stvToWithdraw";
|
|
693
|
+
readonly type: "uint256";
|
|
694
|
+
readonly internalType: "uint256";
|
|
695
|
+
}, {
|
|
696
|
+
readonly name: "_stethSharesToRebalance";
|
|
697
|
+
readonly type: "uint256";
|
|
698
|
+
readonly internalType: "uint256";
|
|
699
|
+
}];
|
|
700
|
+
readonly outputs: readonly [{
|
|
701
|
+
readonly name: "requestId";
|
|
702
|
+
readonly type: "uint256";
|
|
703
|
+
readonly internalType: "uint256";
|
|
704
|
+
}];
|
|
705
|
+
readonly stateMutability: "nonpayable";
|
|
706
|
+
}, {
|
|
707
|
+
readonly type: "function";
|
|
708
|
+
readonly name: "requestWithdrawalBatch";
|
|
709
|
+
readonly inputs: readonly [{
|
|
710
|
+
readonly name: "_owner";
|
|
711
|
+
readonly type: "address";
|
|
712
|
+
readonly internalType: "address";
|
|
713
|
+
}, {
|
|
714
|
+
readonly name: "_stvToWithdraw";
|
|
715
|
+
readonly type: "uint256[]";
|
|
716
|
+
readonly internalType: "uint256[]";
|
|
717
|
+
}, {
|
|
718
|
+
readonly name: "_stethSharesToRebalance";
|
|
719
|
+
readonly type: "uint256[]";
|
|
720
|
+
readonly internalType: "uint256[]";
|
|
721
|
+
}];
|
|
722
|
+
readonly outputs: readonly [{
|
|
723
|
+
readonly name: "requestIds";
|
|
724
|
+
readonly type: "uint256[]";
|
|
725
|
+
readonly internalType: "uint256[]";
|
|
726
|
+
}];
|
|
727
|
+
readonly stateMutability: "nonpayable";
|
|
728
|
+
}, {
|
|
729
|
+
readonly type: "function";
|
|
730
|
+
readonly name: "resumeFinalization";
|
|
731
|
+
readonly inputs: readonly [];
|
|
732
|
+
readonly outputs: readonly [];
|
|
733
|
+
readonly stateMutability: "nonpayable";
|
|
734
|
+
}, {
|
|
735
|
+
readonly type: "function";
|
|
736
|
+
readonly name: "resumeWithdrawals";
|
|
737
|
+
readonly inputs: readonly [];
|
|
738
|
+
readonly outputs: readonly [];
|
|
739
|
+
readonly stateMutability: "nonpayable";
|
|
740
|
+
}, {
|
|
741
|
+
readonly type: "function";
|
|
742
|
+
readonly name: "revokeRole";
|
|
743
|
+
readonly inputs: readonly [{
|
|
744
|
+
readonly name: "role";
|
|
745
|
+
readonly type: "bytes32";
|
|
746
|
+
readonly internalType: "bytes32";
|
|
747
|
+
}, {
|
|
748
|
+
readonly name: "account";
|
|
749
|
+
readonly type: "address";
|
|
750
|
+
readonly internalType: "address";
|
|
751
|
+
}];
|
|
752
|
+
readonly outputs: readonly [];
|
|
753
|
+
readonly stateMutability: "nonpayable";
|
|
754
|
+
}, {
|
|
755
|
+
readonly type: "function";
|
|
756
|
+
readonly name: "setFinalizationGasCostCoverage";
|
|
757
|
+
readonly inputs: readonly [{
|
|
758
|
+
readonly name: "_coverage";
|
|
759
|
+
readonly type: "uint256";
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
}];
|
|
762
|
+
readonly outputs: readonly [];
|
|
763
|
+
readonly stateMutability: "nonpayable";
|
|
764
|
+
}, {
|
|
765
|
+
readonly type: "function";
|
|
766
|
+
readonly name: "supportsInterface";
|
|
767
|
+
readonly inputs: readonly [{
|
|
768
|
+
readonly name: "interfaceId";
|
|
769
|
+
readonly type: "bytes4";
|
|
770
|
+
readonly internalType: "bytes4";
|
|
771
|
+
}];
|
|
772
|
+
readonly outputs: readonly [{
|
|
773
|
+
readonly name: "";
|
|
774
|
+
readonly type: "bool";
|
|
775
|
+
readonly internalType: "bool";
|
|
776
|
+
}];
|
|
777
|
+
readonly stateMutability: "view";
|
|
778
|
+
}, {
|
|
779
|
+
readonly type: "function";
|
|
780
|
+
readonly name: "unfinalizedAssets";
|
|
781
|
+
readonly inputs: readonly [];
|
|
782
|
+
readonly outputs: readonly [{
|
|
783
|
+
readonly name: "assets";
|
|
784
|
+
readonly type: "uint256";
|
|
785
|
+
readonly internalType: "uint256";
|
|
786
|
+
}];
|
|
787
|
+
readonly stateMutability: "view";
|
|
788
|
+
}, {
|
|
789
|
+
readonly type: "function";
|
|
790
|
+
readonly name: "unfinalizedRequestsNumber";
|
|
791
|
+
readonly inputs: readonly [];
|
|
792
|
+
readonly outputs: readonly [{
|
|
793
|
+
readonly name: "requestsNumber";
|
|
794
|
+
readonly type: "uint256";
|
|
795
|
+
readonly internalType: "uint256";
|
|
796
|
+
}];
|
|
797
|
+
readonly stateMutability: "view";
|
|
798
|
+
}, {
|
|
799
|
+
readonly type: "function";
|
|
800
|
+
readonly name: "unfinalizedStethShares";
|
|
801
|
+
readonly inputs: readonly [];
|
|
802
|
+
readonly outputs: readonly [{
|
|
803
|
+
readonly name: "stethShares";
|
|
804
|
+
readonly type: "uint256";
|
|
805
|
+
readonly internalType: "uint256";
|
|
806
|
+
}];
|
|
807
|
+
readonly stateMutability: "view";
|
|
808
|
+
}, {
|
|
809
|
+
readonly type: "function";
|
|
810
|
+
readonly name: "unfinalizedStv";
|
|
811
|
+
readonly inputs: readonly [];
|
|
812
|
+
readonly outputs: readonly [{
|
|
813
|
+
readonly name: "stv";
|
|
814
|
+
readonly type: "uint256";
|
|
815
|
+
readonly internalType: "uint256";
|
|
816
|
+
}];
|
|
817
|
+
readonly stateMutability: "view";
|
|
818
|
+
}, {
|
|
819
|
+
readonly type: "function";
|
|
820
|
+
readonly name: "withdrawalRequestsInRangeOf";
|
|
821
|
+
readonly inputs: readonly [{
|
|
822
|
+
readonly name: "_owner";
|
|
823
|
+
readonly type: "address";
|
|
824
|
+
readonly internalType: "address";
|
|
825
|
+
}, {
|
|
826
|
+
readonly name: "_start";
|
|
827
|
+
readonly type: "uint256";
|
|
828
|
+
readonly internalType: "uint256";
|
|
829
|
+
}, {
|
|
830
|
+
readonly name: "_end";
|
|
831
|
+
readonly type: "uint256";
|
|
832
|
+
readonly internalType: "uint256";
|
|
833
|
+
}];
|
|
834
|
+
readonly outputs: readonly [{
|
|
835
|
+
readonly name: "requestIds";
|
|
836
|
+
readonly type: "uint256[]";
|
|
837
|
+
readonly internalType: "uint256[]";
|
|
838
|
+
}];
|
|
839
|
+
readonly stateMutability: "view";
|
|
840
|
+
}, {
|
|
841
|
+
readonly type: "function";
|
|
842
|
+
readonly name: "withdrawalRequestsLengthOf";
|
|
843
|
+
readonly inputs: readonly [{
|
|
844
|
+
readonly name: "_owner";
|
|
845
|
+
readonly type: "address";
|
|
846
|
+
readonly internalType: "address";
|
|
847
|
+
}];
|
|
848
|
+
readonly outputs: readonly [{
|
|
849
|
+
readonly name: "length";
|
|
850
|
+
readonly type: "uint256";
|
|
851
|
+
readonly internalType: "uint256";
|
|
852
|
+
}];
|
|
853
|
+
readonly stateMutability: "view";
|
|
854
|
+
}, {
|
|
855
|
+
readonly type: "function";
|
|
856
|
+
readonly name: "withdrawalRequestsOf";
|
|
857
|
+
readonly inputs: readonly [{
|
|
858
|
+
readonly name: "_owner";
|
|
859
|
+
readonly type: "address";
|
|
860
|
+
readonly internalType: "address";
|
|
861
|
+
}];
|
|
862
|
+
readonly outputs: readonly [{
|
|
863
|
+
readonly name: "requestIds";
|
|
864
|
+
readonly type: "uint256[]";
|
|
865
|
+
readonly internalType: "uint256[]";
|
|
866
|
+
}];
|
|
867
|
+
readonly stateMutability: "view";
|
|
868
|
+
}, {
|
|
869
|
+
readonly type: "event";
|
|
870
|
+
readonly name: "FeaturePaused";
|
|
871
|
+
readonly inputs: readonly [{
|
|
872
|
+
readonly name: "featureId";
|
|
873
|
+
readonly type: "bytes32";
|
|
874
|
+
readonly indexed: true;
|
|
875
|
+
readonly internalType: "bytes32";
|
|
876
|
+
}, {
|
|
877
|
+
readonly name: "account";
|
|
878
|
+
readonly type: "address";
|
|
879
|
+
readonly indexed: true;
|
|
880
|
+
readonly internalType: "address";
|
|
881
|
+
}];
|
|
882
|
+
readonly anonymous: false;
|
|
883
|
+
}, {
|
|
884
|
+
readonly type: "event";
|
|
885
|
+
readonly name: "FeatureUnpaused";
|
|
886
|
+
readonly inputs: readonly [{
|
|
887
|
+
readonly name: "featureId";
|
|
888
|
+
readonly type: "bytes32";
|
|
889
|
+
readonly indexed: true;
|
|
890
|
+
readonly internalType: "bytes32";
|
|
891
|
+
}, {
|
|
892
|
+
readonly name: "account";
|
|
893
|
+
readonly type: "address";
|
|
894
|
+
readonly indexed: true;
|
|
895
|
+
readonly internalType: "address";
|
|
896
|
+
}];
|
|
897
|
+
readonly anonymous: false;
|
|
898
|
+
}, {
|
|
899
|
+
readonly type: "event";
|
|
900
|
+
readonly name: "GasCostCoverageSet";
|
|
901
|
+
readonly inputs: readonly [{
|
|
902
|
+
readonly name: "newCoverage";
|
|
903
|
+
readonly type: "uint256";
|
|
904
|
+
readonly indexed: false;
|
|
905
|
+
readonly internalType: "uint256";
|
|
906
|
+
}];
|
|
907
|
+
readonly anonymous: false;
|
|
908
|
+
}, {
|
|
909
|
+
readonly type: "event";
|
|
910
|
+
readonly name: "Initialized";
|
|
911
|
+
readonly inputs: readonly [{
|
|
912
|
+
readonly name: "version";
|
|
913
|
+
readonly type: "uint64";
|
|
914
|
+
readonly indexed: false;
|
|
915
|
+
readonly internalType: "uint64";
|
|
916
|
+
}];
|
|
917
|
+
readonly anonymous: false;
|
|
918
|
+
}, {
|
|
919
|
+
readonly type: "event";
|
|
920
|
+
readonly name: "Initialized";
|
|
921
|
+
readonly inputs: readonly [{
|
|
922
|
+
readonly name: "admin";
|
|
923
|
+
readonly type: "address";
|
|
924
|
+
readonly indexed: true;
|
|
925
|
+
readonly internalType: "address";
|
|
926
|
+
}, {
|
|
927
|
+
readonly name: "finalizer";
|
|
928
|
+
readonly type: "address";
|
|
929
|
+
readonly indexed: true;
|
|
930
|
+
readonly internalType: "address";
|
|
931
|
+
}];
|
|
932
|
+
readonly anonymous: false;
|
|
933
|
+
}, {
|
|
934
|
+
readonly type: "event";
|
|
935
|
+
readonly name: "RoleAdminChanged";
|
|
936
|
+
readonly inputs: readonly [{
|
|
937
|
+
readonly name: "role";
|
|
938
|
+
readonly type: "bytes32";
|
|
939
|
+
readonly indexed: true;
|
|
940
|
+
readonly internalType: "bytes32";
|
|
941
|
+
}, {
|
|
942
|
+
readonly name: "previousAdminRole";
|
|
943
|
+
readonly type: "bytes32";
|
|
944
|
+
readonly indexed: true;
|
|
945
|
+
readonly internalType: "bytes32";
|
|
946
|
+
}, {
|
|
947
|
+
readonly name: "newAdminRole";
|
|
948
|
+
readonly type: "bytes32";
|
|
949
|
+
readonly indexed: true;
|
|
950
|
+
readonly internalType: "bytes32";
|
|
951
|
+
}];
|
|
952
|
+
readonly anonymous: false;
|
|
953
|
+
}, {
|
|
954
|
+
readonly type: "event";
|
|
955
|
+
readonly name: "RoleGranted";
|
|
956
|
+
readonly inputs: readonly [{
|
|
957
|
+
readonly name: "role";
|
|
958
|
+
readonly type: "bytes32";
|
|
959
|
+
readonly indexed: true;
|
|
960
|
+
readonly internalType: "bytes32";
|
|
961
|
+
}, {
|
|
962
|
+
readonly name: "account";
|
|
963
|
+
readonly type: "address";
|
|
964
|
+
readonly indexed: true;
|
|
965
|
+
readonly internalType: "address";
|
|
966
|
+
}, {
|
|
967
|
+
readonly name: "sender";
|
|
968
|
+
readonly type: "address";
|
|
969
|
+
readonly indexed: true;
|
|
970
|
+
readonly internalType: "address";
|
|
971
|
+
}];
|
|
972
|
+
readonly anonymous: false;
|
|
973
|
+
}, {
|
|
974
|
+
readonly type: "event";
|
|
975
|
+
readonly name: "RoleRevoked";
|
|
976
|
+
readonly inputs: readonly [{
|
|
977
|
+
readonly name: "role";
|
|
978
|
+
readonly type: "bytes32";
|
|
979
|
+
readonly indexed: true;
|
|
980
|
+
readonly internalType: "bytes32";
|
|
981
|
+
}, {
|
|
982
|
+
readonly name: "account";
|
|
983
|
+
readonly type: "address";
|
|
984
|
+
readonly indexed: true;
|
|
985
|
+
readonly internalType: "address";
|
|
986
|
+
}, {
|
|
987
|
+
readonly name: "sender";
|
|
988
|
+
readonly type: "address";
|
|
989
|
+
readonly indexed: true;
|
|
990
|
+
readonly internalType: "address";
|
|
991
|
+
}];
|
|
992
|
+
readonly anonymous: false;
|
|
993
|
+
}, {
|
|
994
|
+
readonly type: "event";
|
|
995
|
+
readonly name: "WithdrawalClaimed";
|
|
996
|
+
readonly inputs: readonly [{
|
|
997
|
+
readonly name: "requestId";
|
|
998
|
+
readonly type: "uint256";
|
|
999
|
+
readonly indexed: true;
|
|
1000
|
+
readonly internalType: "uint256";
|
|
1001
|
+
}, {
|
|
1002
|
+
readonly name: "owner";
|
|
1003
|
+
readonly type: "address";
|
|
1004
|
+
readonly indexed: true;
|
|
1005
|
+
readonly internalType: "address";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly name: "recipient";
|
|
1008
|
+
readonly type: "address";
|
|
1009
|
+
readonly indexed: true;
|
|
1010
|
+
readonly internalType: "address";
|
|
1011
|
+
}, {
|
|
1012
|
+
readonly name: "amountOfETH";
|
|
1013
|
+
readonly type: "uint256";
|
|
1014
|
+
readonly indexed: false;
|
|
1015
|
+
readonly internalType: "uint256";
|
|
1016
|
+
}];
|
|
1017
|
+
readonly anonymous: false;
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly type: "event";
|
|
1020
|
+
readonly name: "WithdrawalRequested";
|
|
1021
|
+
readonly inputs: readonly [{
|
|
1022
|
+
readonly name: "requestId";
|
|
1023
|
+
readonly type: "uint256";
|
|
1024
|
+
readonly indexed: true;
|
|
1025
|
+
readonly internalType: "uint256";
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly name: "owner";
|
|
1028
|
+
readonly type: "address";
|
|
1029
|
+
readonly indexed: true;
|
|
1030
|
+
readonly internalType: "address";
|
|
1031
|
+
}, {
|
|
1032
|
+
readonly name: "amountOfStv";
|
|
1033
|
+
readonly type: "uint256";
|
|
1034
|
+
readonly indexed: false;
|
|
1035
|
+
readonly internalType: "uint256";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly name: "amountOfStethShares";
|
|
1038
|
+
readonly type: "uint256";
|
|
1039
|
+
readonly indexed: false;
|
|
1040
|
+
readonly internalType: "uint256";
|
|
1041
|
+
}, {
|
|
1042
|
+
readonly name: "amountOfAssets";
|
|
1043
|
+
readonly type: "uint256";
|
|
1044
|
+
readonly indexed: false;
|
|
1045
|
+
readonly internalType: "uint256";
|
|
1046
|
+
}];
|
|
1047
|
+
readonly anonymous: false;
|
|
1048
|
+
}, {
|
|
1049
|
+
readonly type: "event";
|
|
1050
|
+
readonly name: "WithdrawalsFinalized";
|
|
1051
|
+
readonly inputs: readonly [{
|
|
1052
|
+
readonly name: "from";
|
|
1053
|
+
readonly type: "uint256";
|
|
1054
|
+
readonly indexed: true;
|
|
1055
|
+
readonly internalType: "uint256";
|
|
1056
|
+
}, {
|
|
1057
|
+
readonly name: "to";
|
|
1058
|
+
readonly type: "uint256";
|
|
1059
|
+
readonly indexed: true;
|
|
1060
|
+
readonly internalType: "uint256";
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly name: "ethLocked";
|
|
1063
|
+
readonly type: "uint256";
|
|
1064
|
+
readonly indexed: false;
|
|
1065
|
+
readonly internalType: "uint256";
|
|
1066
|
+
}, {
|
|
1067
|
+
readonly name: "ethForGasCoverage";
|
|
1068
|
+
readonly type: "uint256";
|
|
1069
|
+
readonly indexed: false;
|
|
1070
|
+
readonly internalType: "uint256";
|
|
1071
|
+
}, {
|
|
1072
|
+
readonly name: "stvBurned";
|
|
1073
|
+
readonly type: "uint256";
|
|
1074
|
+
readonly indexed: false;
|
|
1075
|
+
readonly internalType: "uint256";
|
|
1076
|
+
}, {
|
|
1077
|
+
readonly name: "stvRebalanced";
|
|
1078
|
+
readonly type: "uint256";
|
|
1079
|
+
readonly indexed: false;
|
|
1080
|
+
readonly internalType: "uint256";
|
|
1081
|
+
}, {
|
|
1082
|
+
readonly name: "stethSharesRebalanced";
|
|
1083
|
+
readonly type: "uint256";
|
|
1084
|
+
readonly indexed: false;
|
|
1085
|
+
readonly internalType: "uint256";
|
|
1086
|
+
}, {
|
|
1087
|
+
readonly name: "timestamp";
|
|
1088
|
+
readonly type: "uint256";
|
|
1089
|
+
readonly indexed: false;
|
|
1090
|
+
readonly internalType: "uint256";
|
|
1091
|
+
}];
|
|
1092
|
+
readonly anonymous: false;
|
|
1093
|
+
}, {
|
|
1094
|
+
readonly type: "error";
|
|
1095
|
+
readonly name: "AccessControlBadConfirmation";
|
|
1096
|
+
readonly inputs: readonly [];
|
|
1097
|
+
}, {
|
|
1098
|
+
readonly type: "error";
|
|
1099
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
1100
|
+
readonly inputs: readonly [{
|
|
1101
|
+
readonly name: "account";
|
|
1102
|
+
readonly type: "address";
|
|
1103
|
+
readonly internalType: "address";
|
|
1104
|
+
}, {
|
|
1105
|
+
readonly name: "neededRole";
|
|
1106
|
+
readonly type: "bytes32";
|
|
1107
|
+
readonly internalType: "bytes32";
|
|
1108
|
+
}];
|
|
1109
|
+
}, {
|
|
1110
|
+
readonly type: "error";
|
|
1111
|
+
readonly name: "ArraysLengthMismatch";
|
|
1112
|
+
readonly inputs: readonly [{
|
|
1113
|
+
readonly name: "firstArrayLength";
|
|
1114
|
+
readonly type: "uint256";
|
|
1115
|
+
readonly internalType: "uint256";
|
|
1116
|
+
}, {
|
|
1117
|
+
readonly name: "secondArrayLength";
|
|
1118
|
+
readonly type: "uint256";
|
|
1119
|
+
readonly internalType: "uint256";
|
|
1120
|
+
}];
|
|
1121
|
+
}, {
|
|
1122
|
+
readonly type: "error";
|
|
1123
|
+
readonly name: "CantSendValueRecipientMayHaveReverted";
|
|
1124
|
+
readonly inputs: readonly [];
|
|
1125
|
+
}, {
|
|
1126
|
+
readonly type: "error";
|
|
1127
|
+
readonly name: "FeaturePauseEnforced";
|
|
1128
|
+
readonly inputs: readonly [{
|
|
1129
|
+
readonly name: "featureId";
|
|
1130
|
+
readonly type: "bytes32";
|
|
1131
|
+
readonly internalType: "bytes32";
|
|
1132
|
+
}];
|
|
1133
|
+
}, {
|
|
1134
|
+
readonly type: "error";
|
|
1135
|
+
readonly name: "FeaturePauseExpected";
|
|
1136
|
+
readonly inputs: readonly [{
|
|
1137
|
+
readonly name: "featureId";
|
|
1138
|
+
readonly type: "bytes32";
|
|
1139
|
+
readonly internalType: "bytes32";
|
|
1140
|
+
}];
|
|
1141
|
+
}, {
|
|
1142
|
+
readonly type: "error";
|
|
1143
|
+
readonly name: "GasCostCoverageTooLarge";
|
|
1144
|
+
readonly inputs: readonly [{
|
|
1145
|
+
readonly name: "amount";
|
|
1146
|
+
readonly type: "uint256";
|
|
1147
|
+
readonly internalType: "uint256";
|
|
1148
|
+
}];
|
|
1149
|
+
}, {
|
|
1150
|
+
readonly type: "error";
|
|
1151
|
+
readonly name: "InvalidHint";
|
|
1152
|
+
readonly inputs: readonly [{
|
|
1153
|
+
readonly name: "hint";
|
|
1154
|
+
readonly type: "uint256";
|
|
1155
|
+
readonly internalType: "uint256";
|
|
1156
|
+
}];
|
|
1157
|
+
}, {
|
|
1158
|
+
readonly type: "error";
|
|
1159
|
+
readonly name: "InvalidInitialization";
|
|
1160
|
+
readonly inputs: readonly [];
|
|
1161
|
+
}, {
|
|
1162
|
+
readonly type: "error";
|
|
1163
|
+
readonly name: "InvalidRange";
|
|
1164
|
+
readonly inputs: readonly [{
|
|
1165
|
+
readonly name: "start";
|
|
1166
|
+
readonly type: "uint256";
|
|
1167
|
+
readonly internalType: "uint256";
|
|
1168
|
+
}, {
|
|
1169
|
+
readonly name: "end";
|
|
1170
|
+
readonly type: "uint256";
|
|
1171
|
+
readonly internalType: "uint256";
|
|
1172
|
+
}];
|
|
1173
|
+
}, {
|
|
1174
|
+
readonly type: "error";
|
|
1175
|
+
readonly name: "InvalidRequestId";
|
|
1176
|
+
readonly inputs: readonly [{
|
|
1177
|
+
readonly name: "requestId";
|
|
1178
|
+
readonly type: "uint256";
|
|
1179
|
+
readonly internalType: "uint256";
|
|
1180
|
+
}];
|
|
1181
|
+
}, {
|
|
1182
|
+
readonly type: "error";
|
|
1183
|
+
readonly name: "InvalidWithdrawalDelay";
|
|
1184
|
+
readonly inputs: readonly [];
|
|
1185
|
+
}, {
|
|
1186
|
+
readonly type: "error";
|
|
1187
|
+
readonly name: "NoRequestsToFinalize";
|
|
1188
|
+
readonly inputs: readonly [];
|
|
1189
|
+
}, {
|
|
1190
|
+
readonly type: "error";
|
|
1191
|
+
readonly name: "NotInitializing";
|
|
1192
|
+
readonly inputs: readonly [];
|
|
1193
|
+
}, {
|
|
1194
|
+
readonly type: "error";
|
|
1195
|
+
readonly name: "NotOwner";
|
|
1196
|
+
readonly inputs: readonly [{
|
|
1197
|
+
readonly name: "_requestor";
|
|
1198
|
+
readonly type: "address";
|
|
1199
|
+
readonly internalType: "address";
|
|
1200
|
+
}, {
|
|
1201
|
+
readonly name: "_owner";
|
|
1202
|
+
readonly type: "address";
|
|
1203
|
+
readonly internalType: "address";
|
|
1204
|
+
}];
|
|
1205
|
+
}, {
|
|
1206
|
+
readonly type: "error";
|
|
1207
|
+
readonly name: "RebalancingIsNotSupported";
|
|
1208
|
+
readonly inputs: readonly [];
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly type: "error";
|
|
1211
|
+
readonly name: "RequestAlreadyClaimed";
|
|
1212
|
+
readonly inputs: readonly [{
|
|
1213
|
+
readonly name: "requestId";
|
|
1214
|
+
readonly type: "uint256";
|
|
1215
|
+
readonly internalType: "uint256";
|
|
1216
|
+
}];
|
|
1217
|
+
}, {
|
|
1218
|
+
readonly type: "error";
|
|
1219
|
+
readonly name: "RequestAssetsTooLarge";
|
|
1220
|
+
readonly inputs: readonly [{
|
|
1221
|
+
readonly name: "amount";
|
|
1222
|
+
readonly type: "uint256";
|
|
1223
|
+
readonly internalType: "uint256";
|
|
1224
|
+
}];
|
|
1225
|
+
}, {
|
|
1226
|
+
readonly type: "error";
|
|
1227
|
+
readonly name: "RequestIdsNotSorted";
|
|
1228
|
+
readonly inputs: readonly [];
|
|
1229
|
+
}, {
|
|
1230
|
+
readonly type: "error";
|
|
1231
|
+
readonly name: "RequestNotFoundOrNotFinalized";
|
|
1232
|
+
readonly inputs: readonly [{
|
|
1233
|
+
readonly name: "requestId";
|
|
1234
|
+
readonly type: "uint256";
|
|
1235
|
+
readonly internalType: "uint256";
|
|
1236
|
+
}];
|
|
1237
|
+
}, {
|
|
1238
|
+
readonly type: "error";
|
|
1239
|
+
readonly name: "RequestValueTooSmall";
|
|
1240
|
+
readonly inputs: readonly [{
|
|
1241
|
+
readonly name: "amount";
|
|
1242
|
+
readonly type: "uint256";
|
|
1243
|
+
readonly internalType: "uint256";
|
|
1244
|
+
}];
|
|
1245
|
+
}, {
|
|
1246
|
+
readonly type: "error";
|
|
1247
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
1248
|
+
readonly inputs: readonly [{
|
|
1249
|
+
readonly name: "bits";
|
|
1250
|
+
readonly type: "uint8";
|
|
1251
|
+
readonly internalType: "uint8";
|
|
1252
|
+
}, {
|
|
1253
|
+
readonly name: "value";
|
|
1254
|
+
readonly type: "uint256";
|
|
1255
|
+
readonly internalType: "uint256";
|
|
1256
|
+
}];
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly type: "error";
|
|
1259
|
+
readonly name: "VaultReportStale";
|
|
1260
|
+
readonly inputs: readonly [];
|
|
1261
|
+
}, {
|
|
1262
|
+
readonly type: "error";
|
|
1263
|
+
readonly name: "ZeroAddress";
|
|
1264
|
+
readonly inputs: readonly [];
|
|
1265
|
+
}];
|