@lidofinance/lsv-cli 1.0.0-alpha.53 → 1.0.0-alpha.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/abi/AccessControlConfirmable.d.ts +331 -0
- package/dist/abi/AccessControlConfirmable.js +430 -0
- package/dist/abi/AccessControlConfirmable.js.map +1 -0
- package/dist/abi/Dashboard.d.ts +813 -374
- package/dist/abi/Dashboard.js +458 -277
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +604 -0
- package/dist/abi/LazyOracle.js +782 -0
- package/dist/abi/LazyOracle.js.map +1 -0
- package/dist/abi/LidoLocator.d.ts +28 -0
- package/dist/abi/LidoLocator.js +36 -0
- package/dist/abi/LidoLocator.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +340 -169
- package/dist/abi/OperatorGrid.js +344 -164
- package/dist/abi/OperatorGrid.js.map +1 -1
- package/dist/abi/PredepositGuarantee.d.ts +371 -56
- package/dist/abi/PredepositGuarantee.js +290 -69
- package/dist/abi/PredepositGuarantee.js.map +1 -1
- package/dist/abi/StakingVault.d.ts +97 -425
- package/dist/abi/StakingVault.js +94 -419
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +209 -134
- package/dist/abi/VaultFactory.js +66 -10
- package/dist/abi/VaultFactory.js.map +1 -1
- package/dist/abi/VaultHub.d.ts +1109 -445
- package/dist/abi/VaultHub.js +1502 -559
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +308 -1
- package/dist/abi/VaultViewer.js +399 -1
- package/dist/abi/VaultViewer.js.map +1 -1
- package/dist/abi/index.d.ts +2 -3
- package/dist/abi/index.js +2 -4
- package/dist/abi/index.js.map +1 -1
- package/dist/command/index.js +1 -1
- package/dist/command/index.js.map +1 -1
- package/dist/contracts/index.d.ts +1 -4
- package/dist/contracts/index.js +1 -4
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/lazy-oracle.d.ts +3 -0
- package/dist/contracts/lazy-oracle.js +18 -0
- package/dist/contracts/lazy-oracle.js.map +1 -0
- package/dist/contracts/locator.d.ts +1342 -38
- package/dist/contracts/operator-grid.d.ts +1 -0
- package/dist/contracts/pdg.d.ts +1 -0
- package/dist/contracts/vault-factory.d.ts +8849 -3187
- package/dist/contracts/vault-viewer.d.ts +6467 -73
- package/dist/contracts/vault-viewer.js +1 -1
- package/dist/contracts/vault.d.ts +1 -0
- package/dist/features/dashboard.js +5 -250
- package/dist/features/dashboard.js.map +1 -1
- package/dist/features/deposits/check-bls-deposits.d.ts +3 -0
- package/dist/features/deposits/check-bls-deposits.js +15 -0
- package/dist/features/deposits/check-bls-deposits.js.map +1 -0
- package/dist/features/deposits/index.d.ts +3 -0
- package/dist/features/deposits/index.js +4 -0
- package/dist/features/deposits/index.js.map +1 -0
- package/dist/features/deposits/make-pdg-proof.d.ts +3 -0
- package/dist/features/deposits/make-pdg-proof.js +52 -0
- package/dist/features/deposits/make-pdg-proof.js.map +1 -0
- package/dist/features/deposits/no-pdg.d.ts +21 -0
- package/dist/features/deposits/no-pdg.js +92 -0
- package/dist/features/deposits/no-pdg.js.map +1 -0
- package/dist/features/index.d.ts +4 -0
- package/dist/features/index.js +4 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/mint-burn/allowance.d.ts +2 -0
- package/dist/features/mint-burn/allowance.js +49 -0
- package/dist/features/mint-burn/allowance.js.map +1 -0
- package/dist/features/mint-burn/burn-shares.d.ts +3 -0
- package/dist/features/mint-burn/burn-shares.js +33 -0
- package/dist/features/mint-burn/burn-shares.js.map +1 -0
- package/dist/features/mint-burn/burn-steth.d.ts +3 -0
- package/dist/features/mint-burn/burn-steth.js +35 -0
- package/dist/features/mint-burn/burn-steth.js.map +1 -0
- package/dist/features/mint-burn/index.d.ts +5 -0
- package/dist/features/mint-burn/index.js +6 -0
- package/dist/features/mint-burn/index.js.map +1 -0
- package/dist/features/mint-burn/mint-shares.d.ts +3 -0
- package/dist/features/mint-burn/mint-shares.js +37 -0
- package/dist/features/mint-burn/mint-shares.js.map +1 -0
- package/dist/features/mint-burn/mint-steth.d.ts +3 -0
- package/dist/features/mint-burn/mint-steth.js +39 -0
- package/dist/features/mint-burn/mint-steth.js.map +1 -0
- package/dist/features/pdg.js +17 -23
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/utils/get-address.d.ts +2 -0
- package/dist/features/utils/get-address.js +16 -0
- package/dist/features/utils/get-address.js.map +1 -0
- package/dist/features/utils/index.d.ts +4 -0
- package/dist/features/utils/index.js +5 -0
- package/dist/features/utils/index.js.map +1 -0
- package/dist/features/utils/liability-shares.d.ts +2 -0
- package/dist/features/utils/liability-shares.js +10 -0
- package/dist/features/utils/liability-shares.js.map +1 -0
- package/dist/features/utils/minting-capacity.d.ts +2 -0
- package/dist/features/utils/minting-capacity.js +11 -0
- package/dist/features/utils/minting-capacity.js.map +1 -0
- package/dist/features/utils/report-fresh.d.ts +2 -0
- package/dist/features/utils/report-fresh.js +18 -0
- package/dist/features/utils/report-fresh.js.map +1 -0
- package/dist/features/vault-factory.d.ts +17 -1
- package/dist/features/vault-factory.js +44 -8
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-hub.js +6 -6
- package/dist/features/vault-hub.js.map +1 -1
- package/dist/features/vault-operations/create-vault.d.ts +2 -0
- package/dist/features/vault-operations/create-vault.js +58 -0
- package/dist/features/vault-operations/create-vault.js.map +1 -0
- package/dist/features/vault-operations/dashboard-by-vault.d.ts +11 -0
- package/dist/features/vault-operations/dashboard-by-vault.js +34 -0
- package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -0
- package/dist/features/vault-operations/index.d.ts +7 -0
- package/dist/features/vault-operations/index.js +8 -0
- package/dist/features/vault-operations/index.js.map +1 -0
- package/dist/features/vault-operations/vault-health.d.ts +2 -0
- package/dist/features/vault-operations/vault-health.js +24 -0
- package/dist/features/vault-operations/vault-health.js.map +1 -0
- package/dist/features/vault-operations/vault-info.d.ts +2 -0
- package/dist/features/vault-operations/vault-info.js +107 -0
- package/dist/features/vault-operations/vault-info.js.map +1 -0
- package/dist/features/vault-operations/vault-overview.d.ts +2 -0
- package/dist/features/vault-operations/vault-overview.js +107 -0
- package/dist/features/vault-operations/vault-overview.js.map +1 -0
- package/dist/features/vault-operations/vault-roles.d.ts +6 -0
- package/dist/features/vault-operations/vault-roles.js +62 -0
- package/dist/features/vault-operations/vault-roles.js.map +1 -0
- package/dist/features/vault-operations/vaults-by-role.d.ts +3 -0
- package/dist/features/vault-operations/vaults-by-role.js +45 -0
- package/dist/features/vault-operations/vaults-by-role.js.map +1 -0
- package/dist/features/vault.js +6 -14
- package/dist/features/vault.js.map +1 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/programs/account/read.js +5 -1
- package/dist/programs/account/read.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.d.ts +3 -0
- package/dist/programs/{dashboard → contracts/dashboard}/config.js +43 -35
- package/dist/programs/contracts/dashboard/config.js.map +1 -0
- package/dist/programs/contracts/dashboard/index.js.map +1 -0
- package/dist/programs/contracts/dashboard/main.js +5 -0
- package/dist/programs/contracts/dashboard/main.js.map +1 -0
- package/dist/programs/{dashboard → contracts/dashboard}/read.js +6 -33
- package/dist/programs/contracts/dashboard/read.js.map +1 -0
- package/dist/programs/{dashboard → contracts/dashboard}/write.js +109 -130
- package/dist/programs/contracts/dashboard/write.js.map +1 -0
- package/dist/programs/contracts/hub/config.d.ts +3 -0
- package/dist/programs/contracts/hub/config.js +165 -0
- package/dist/programs/contracts/hub/config.js.map +1 -0
- package/dist/programs/contracts/hub/index.js.map +1 -0
- package/dist/programs/contracts/hub/main.js +5 -0
- package/dist/programs/contracts/hub/main.js.map +1 -0
- package/dist/programs/{hub → contracts/hub}/read.js +13 -18
- package/dist/programs/contracts/hub/read.js.map +1 -0
- package/dist/programs/contracts/hub/write.js +425 -0
- package/dist/programs/contracts/hub/write.js.map +1 -0
- package/dist/programs/contracts/index.d.ts +8 -0
- package/dist/programs/contracts/index.js +9 -0
- package/dist/programs/contracts/index.js.map +1 -0
- package/dist/programs/contracts/main.d.ts +1 -0
- package/dist/programs/contracts/main.js +6 -0
- package/dist/programs/contracts/main.js.map +1 -0
- package/dist/programs/contracts/operator-grid/config.d.ts +3 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/config.js +40 -34
- package/dist/programs/contracts/operator-grid/config.js.map +1 -0
- package/dist/programs/contracts/operator-grid/index.js.map +1 -0
- package/dist/programs/contracts/operator-grid/main.js +5 -0
- package/dist/programs/contracts/operator-grid/main.js.map +1 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/read.js +4 -4
- package/dist/programs/contracts/operator-grid/read.js.map +1 -0
- package/dist/programs/{operator-grid → contracts/operator-grid}/write.js +27 -32
- package/dist/programs/contracts/operator-grid/write.js.map +1 -0
- package/dist/programs/contracts/pdg/config.d.ts +3 -0
- package/dist/programs/{pdg → contracts/pdg}/config.js +53 -27
- package/dist/programs/contracts/pdg/config.js.map +1 -0
- package/dist/programs/contracts/pdg/index.js.map +1 -0
- package/dist/programs/contracts/pdg/main.js +5 -0
- package/dist/programs/contracts/pdg/main.js.map +1 -0
- package/dist/programs/{pdg → contracts/pdg}/read.js +4 -4
- package/dist/programs/contracts/pdg/read.js.map +1 -0
- package/dist/programs/{pdg → contracts/pdg}/write.js +38 -20
- package/dist/programs/contracts/pdg/write.js.map +1 -0
- package/dist/programs/contracts/vault/config.d.ts +3 -0
- package/dist/programs/{vault → contracts/vault}/config.js +0 -28
- package/dist/programs/contracts/vault/config.js.map +1 -0
- package/dist/programs/contracts/vault/index.js.map +1 -0
- package/dist/programs/contracts/vault/main.js +3 -0
- package/dist/programs/contracts/vault/main.js.map +1 -0
- package/dist/programs/{vault → contracts/vault}/read.js +4 -4
- package/dist/programs/contracts/vault/read.js.map +1 -0
- package/dist/programs/{vault → contracts/vault}/write.js +37 -70
- package/dist/programs/contracts/vault/write.js.map +1 -0
- package/dist/programs/contracts/vault-factory/config.d.ts +3 -0
- package/dist/programs/contracts/vault-factory/config.js.map +1 -0
- package/dist/programs/contracts/vault-factory/index.js.map +1 -0
- package/dist/programs/contracts/vault-factory/main.js +5 -0
- package/dist/programs/contracts/vault-factory/main.js.map +1 -0
- package/dist/programs/{vault-factory → contracts/vault-factory}/read.js +4 -4
- package/dist/programs/contracts/vault-factory/read.js.map +1 -0
- package/dist/programs/contracts/vault-factory/write.js +126 -0
- package/dist/programs/contracts/vault-factory/write.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/config.d.ts +3 -0
- package/dist/programs/contracts/vault-viewer/config.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/index.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/main.js +5 -0
- package/dist/programs/contracts/vault-viewer/main.js.map +1 -0
- package/dist/programs/contracts/vault-viewer/read.d.ts +1 -0
- package/dist/programs/{vault-viewer → contracts/vault-viewer}/read.js +20 -10
- package/dist/programs/contracts/vault-viewer/read.js.map +1 -0
- package/dist/programs/index.d.ts +2 -9
- package/dist/programs/index.js +2 -9
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/pdg-helpers.js +46 -10
- package/dist/programs/pdg-helpers.js.map +1 -1
- package/dist/programs/use-cases/deposits/index.js.map +1 -0
- package/dist/programs/use-cases/deposits/main.d.ts +1 -0
- package/dist/programs/use-cases/deposits/main.js +6 -0
- package/dist/programs/use-cases/deposits/main.js.map +1 -0
- package/dist/programs/use-cases/deposits/read.js +13 -0
- package/dist/programs/use-cases/deposits/read.js.map +1 -0
- package/dist/programs/use-cases/deposits/write.js +211 -0
- package/dist/programs/use-cases/deposits/write.js.map +1 -0
- package/dist/programs/use-cases/index.d.ts +4 -0
- package/dist/programs/use-cases/index.js +5 -0
- package/dist/programs/use-cases/index.js.map +1 -0
- package/dist/programs/use-cases/metrics/index.js.map +1 -0
- package/dist/programs/use-cases/metrics/main.js +6 -0
- package/dist/programs/use-cases/metrics/main.js.map +1 -0
- package/dist/programs/{metrics → use-cases/metrics}/read.js +29 -23
- package/dist/programs/use-cases/metrics/read.js.map +1 -0
- package/dist/programs/use-cases/report/index.d.ts +3 -0
- package/dist/programs/use-cases/report/index.js +4 -0
- package/dist/programs/use-cases/report/index.js.map +1 -0
- package/dist/programs/use-cases/report/main.js +6 -0
- package/dist/programs/use-cases/report/main.js.map +1 -0
- package/dist/programs/{report → use-cases/report}/read.js +32 -41
- package/dist/programs/use-cases/report/read.js.map +1 -0
- package/dist/programs/{report → use-cases/report}/write.js +33 -42
- package/dist/programs/use-cases/report/write.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/create-vault.js +129 -0
- package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/index.d.ts +4 -0
- package/dist/programs/use-cases/vault-operations/index.js +5 -0
- package/dist/programs/use-cases/vault-operations/index.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/main.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/main.js +6 -0
- package/dist/programs/use-cases/vault-operations/main.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/read.js +46 -0
- package/dist/programs/use-cases/vault-operations/read.js.map +1 -0
- package/dist/programs/use-cases/vault-operations/write.d.ts +1 -0
- package/dist/programs/use-cases/vault-operations/write.js +148 -0
- package/dist/programs/use-cases/vault-operations/write.js.map +1 -0
- package/dist/providers/wallet.d.ts +10 -10
- package/dist/tests/utils/error-handler.test.js +0 -8
- package/dist/tests/utils/error-handler.test.js.map +1 -1
- package/dist/tests/utils/ipfs.test.js +2 -2
- package/dist/tests/utils/ipfs.test.js.map +1 -1
- package/dist/types/common.d.ts +6 -2
- package/dist/utils/arguments.d.ts +1 -0
- package/dist/utils/arguments.js +3 -0
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/cache.d.ts +2 -2
- package/dist/utils/cache.js +7 -7
- package/dist/utils/cache.js.map +1 -1
- package/dist/utils/calculate-overview-v2.d.ts +2 -1
- package/dist/utils/calculate-overview-v2.js +2 -4
- package/dist/utils/calculate-overview-v2.js.map +1 -1
- package/dist/utils/calculate-overview.d.ts +0 -1
- package/dist/utils/calculate-overview.js +1 -3
- package/dist/utils/calculate-overview.js.map +1 -1
- package/dist/utils/charts/blessed/charts-apr.js +6 -3
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
- package/dist/utils/charts/blessed/charts-rewards.js +3 -3
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js +4 -4
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js.map +1 -1
- package/dist/utils/charts/simple/simple-charts.js +5 -5
- package/dist/utils/charts/simple/simple-charts.js.map +1 -1
- package/dist/utils/commands/confirmations.d.ts +20 -8
- package/dist/utils/commands/confirmations.js +30 -14
- package/dist/utils/commands/confirmations.js.map +1 -1
- package/dist/utils/commands/index.d.ts +0 -2
- package/dist/utils/commands/index.js +0 -2
- package/dist/utils/commands/index.js.map +1 -1
- package/dist/utils/commands/report.d.ts +1 -1
- package/dist/utils/commands/report.js +18 -25
- package/dist/utils/commands/report.js.map +1 -1
- package/dist/utils/consts.d.ts +3 -0
- package/dist/utils/consts.js +4 -0
- package/dist/utils/consts.js.map +1 -0
- package/dist/utils/contract.d.ts +2 -0
- package/dist/utils/contract.js +3 -1
- package/dist/utils/contract.js.map +1 -1
- package/dist/utils/fetchCL.d.ts +22 -0
- package/dist/utils/fetchCL.js +12 -0
- package/dist/utils/fetchCL.js.map +1 -1
- package/dist/utils/index.d.ts +2 -1
- package/dist/utils/index.js +2 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/prompts/confirmations.js +2 -2
- package/dist/utils/prompts/confirmations.js.map +1 -1
- package/dist/utils/prompts/default.d.ts +2 -0
- package/dist/utils/prompts/default.js +7 -0
- package/dist/utils/prompts/default.js.map +1 -1
- package/dist/utils/prompts/index.d.ts +1 -1
- package/dist/utils/prompts/index.js +1 -1
- package/dist/utils/prompts/index.js.map +1 -1
- package/dist/utils/prompts/mint-burn/confirm-burn.d.ts +17 -0
- package/dist/utils/prompts/mint-burn/confirm-burn.js +23 -0
- package/dist/utils/prompts/mint-burn/confirm-burn.js.map +1 -0
- package/dist/utils/prompts/{dashboard.d.ts → mint-burn/confirm-mint.d.ts} +0 -15
- package/dist/utils/prompts/mint-burn/confirm-mint.js +23 -0
- package/dist/utils/prompts/mint-burn/confirm-mint.js.map +1 -0
- package/dist/utils/prompts/mint-burn/constants.d.ts +2 -0
- package/dist/utils/prompts/mint-burn/constants.js +6 -0
- package/dist/utils/prompts/mint-burn/constants.js.map +1 -0
- package/dist/utils/prompts/mint-burn/index.d.ts +2 -0
- package/dist/utils/prompts/mint-burn/index.js +3 -0
- package/dist/utils/prompts/mint-burn/index.js.map +1 -0
- package/dist/utils/prompts/operations.d.ts +1 -1
- package/dist/utils/prompts/operations.js +3 -3
- package/dist/utils/prompts/operations.js.map +1 -1
- package/dist/utils/prompts/predeposit-guarantee.d.ts +2 -2
- package/dist/utils/prompts/predeposit-guarantee.js.map +1 -1
- package/dist/utils/proof/create-proof.d.ts +4 -0
- package/dist/utils/proof/create-proof.js +2 -0
- package/dist/utils/proof/create-proof.js.map +1 -1
- package/dist/utils/proof/index.d.ts +0 -1
- package/dist/utils/proof/index.js +0 -1
- package/dist/utils/proof/index.js.map +1 -1
- package/dist/utils/read-programs-by-abi.d.ts +11 -4
- package/dist/utils/read-programs-by-abi.js +4 -3
- package/dist/utils/read-programs-by-abi.js.map +1 -1
- package/dist/utils/report/index.d.ts +2 -1
- package/dist/utils/report/index.js +2 -1
- package/dist/utils/report/index.js.map +1 -1
- package/dist/utils/report/report-proof.d.ts +42 -0
- package/dist/utils/report/report-proof.js +38 -0
- package/dist/utils/report/report-proof.js.map +1 -0
- package/dist/utils/report/report.d.ts +3 -60
- package/dist/utils/report/report.js +14 -8
- package/dist/utils/report/report.js.map +1 -1
- package/dist/utils/report/statistic-data.d.ts +1 -1
- package/dist/utils/report/statistic-data.js +5 -6
- package/dist/utils/report/statistic-data.js.map +1 -1
- package/dist/utils/report/types.d.ts +69 -0
- package/dist/utils/report/types.js +2 -0
- package/dist/utils/report/types.js.map +1 -0
- package/dist/utils/statistic/index.d.ts +1 -0
- package/dist/utils/statistic/index.js +2 -0
- package/dist/utils/statistic/index.js.map +1 -0
- package/dist/utils/{report → statistic}/report-statistic.d.ts +3 -3
- package/dist/utils/{report → statistic}/report-statistic.js +16 -19
- package/dist/utils/statistic/report-statistic.js.map +1 -0
- package/dist/version/index.js +1 -1
- package/package.json +2 -1
- package/dist/abi/BlsHarness.d.ts +0 -178
- package/dist/abi/BlsHarness.js +0 -232
- package/dist/abi/BlsHarness.js.map +0 -1
- package/dist/abi/CLProofVerifier.d.ts +0 -188
- package/dist/abi/CLProofVerifier.js +0 -247
- package/dist/abi/CLProofVerifier.js.map +0 -1
- package/dist/abi/ReportChecker.d.ts +0 -83
- package/dist/abi/ReportChecker.js +0 -109
- package/dist/abi/ReportChecker.js.map +0 -1
- package/dist/contracts/blsHarness.d.ts +0 -947
- package/dist/contracts/blsHarness.js +0 -24
- package/dist/contracts/blsHarness.js.map +0 -1
- package/dist/contracts/clProofVerifier.d.ts +0 -2647
- package/dist/contracts/clProofVerifier.js +0 -23
- package/dist/contracts/clProofVerifier.js.map +0 -1
- package/dist/contracts/reportChecker.d.ts +0 -758
- package/dist/contracts/reportChecker.js +0 -23
- package/dist/contracts/reportChecker.js.map +0 -1
- package/dist/contracts/voting.d.ts +0 -6
- package/dist/contracts/voting.js +0 -19
- package/dist/contracts/voting.js.map +0 -1
- package/dist/programs/dashboard/config.d.ts +0 -2
- package/dist/programs/dashboard/config.js.map +0 -1
- package/dist/programs/dashboard/index.js.map +0 -1
- package/dist/programs/dashboard/main.js +0 -5
- package/dist/programs/dashboard/main.js.map +0 -1
- package/dist/programs/dashboard/read.js.map +0 -1
- package/dist/programs/dashboard/write.js.map +0 -1
- package/dist/programs/hub/config.d.ts +0 -2
- package/dist/programs/hub/config.js +0 -123
- package/dist/programs/hub/config.js.map +0 -1
- package/dist/programs/hub/index.js.map +0 -1
- package/dist/programs/hub/main.js +0 -5
- package/dist/programs/hub/main.js.map +0 -1
- package/dist/programs/hub/read.js.map +0 -1
- package/dist/programs/hub/write.js +0 -246
- package/dist/programs/hub/write.js.map +0 -1
- package/dist/programs/metrics/index.js.map +0 -1
- package/dist/programs/metrics/main.js +0 -3
- package/dist/programs/metrics/main.js.map +0 -1
- package/dist/programs/metrics/read.js.map +0 -1
- package/dist/programs/operator-grid/config.d.ts +0 -2
- package/dist/programs/operator-grid/config.js.map +0 -1
- package/dist/programs/operator-grid/index.js.map +0 -1
- package/dist/programs/operator-grid/main.js +0 -5
- package/dist/programs/operator-grid/main.js.map +0 -1
- package/dist/programs/operator-grid/read.js.map +0 -1
- package/dist/programs/operator-grid/write.js.map +0 -1
- package/dist/programs/pdg/config.d.ts +0 -2
- package/dist/programs/pdg/config.js.map +0 -1
- package/dist/programs/pdg/index.js.map +0 -1
- package/dist/programs/pdg/main.js +0 -5
- package/dist/programs/pdg/main.js.map +0 -1
- package/dist/programs/pdg/read.js.map +0 -1
- package/dist/programs/pdg/write.js.map +0 -1
- package/dist/programs/report/index.js.map +0 -1
- package/dist/programs/report/main.js +0 -3
- package/dist/programs/report/main.js.map +0 -1
- package/dist/programs/report/read.js.map +0 -1
- package/dist/programs/report/write.js.map +0 -1
- package/dist/programs/vault/config.d.ts +0 -2
- package/dist/programs/vault/config.js.map +0 -1
- package/dist/programs/vault/index.js.map +0 -1
- package/dist/programs/vault/main.js +0 -3
- package/dist/programs/vault/main.js.map +0 -1
- package/dist/programs/vault/read.js.map +0 -1
- package/dist/programs/vault/write.js.map +0 -1
- package/dist/programs/vault-factory/config.d.ts +0 -2
- package/dist/programs/vault-factory/config.js.map +0 -1
- package/dist/programs/vault-factory/index.js.map +0 -1
- package/dist/programs/vault-factory/main.js +0 -5
- package/dist/programs/vault-factory/main.js.map +0 -1
- package/dist/programs/vault-factory/read.js.map +0 -1
- package/dist/programs/vault-factory/write.js +0 -86
- package/dist/programs/vault-factory/write.js.map +0 -1
- package/dist/programs/vault-viewer/config.d.ts +0 -2
- package/dist/programs/vault-viewer/config.js.map +0 -1
- package/dist/programs/vault-viewer/index.js.map +0 -1
- package/dist/programs/vault-viewer/main.js +0 -10
- package/dist/programs/vault-viewer/main.js.map +0 -1
- package/dist/programs/vault-viewer/read.js.map +0 -1
- package/dist/tests/__mocks__/@lodestar/types.js +0 -6
- package/dist/tests/__mocks__/@lodestar/types.js.map +0 -1
- package/dist/tests/utils/fetchCL.test.js +0 -57
- package/dist/tests/utils/fetchCL.test.js.map +0 -1
- package/dist/tests/utils/report-proof.test.js +0 -29
- package/dist/tests/utils/report-proof.test.js.map +0 -1
- package/dist/tests/utils/report-statistic.test.d.ts +0 -1
- package/dist/tests/utils/report-statistic.test.js +0 -247
- package/dist/tests/utils/report-statistic.test.js.map +0 -1
- package/dist/tests/utils/required-lock.test.d.ts +0 -1
- package/dist/tests/utils/required-lock.test.js +0 -26
- package/dist/tests/utils/required-lock.test.js.map +0 -1
- package/dist/utils/commands/dashboard.d.ts +0 -6
- package/dist/utils/commands/dashboard.js +0 -145
- package/dist/utils/commands/dashboard.js.map +0 -1
- package/dist/utils/commands/utils.d.ts +0 -6
- package/dist/utils/commands/utils.js +0 -57
- package/dist/utils/commands/utils.js.map +0 -1
- package/dist/utils/prompts/dashboard.js +0 -45
- package/dist/utils/prompts/dashboard.js.map +0 -1
- package/dist/utils/proof/report-proof.d.ts +0 -5
- package/dist/utils/proof/report-proof.js +0 -26
- package/dist/utils/proof/report-proof.js.map +0 -1
- package/dist/utils/report/report-statistic.js.map +0 -1
- package/dist/utils/required-lock.d.ts +0 -5
- package/dist/utils/required-lock.js +0 -21
- package/dist/utils/required-lock.js.map +0 -1
- /package/dist/programs/{dashboard → contracts/dashboard}/index.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/index.js +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/main.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/read.d.ts +0 -0
- /package/dist/programs/{dashboard → contracts/dashboard}/write.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/index.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/index.js +0 -0
- /package/dist/programs/{hub → contracts/hub}/main.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/read.d.ts +0 -0
- /package/dist/programs/{hub → contracts/hub}/write.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/index.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/index.js +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/main.d.ts +0 -0
- /package/dist/programs/{metrics → contracts/operator-grid}/read.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/operator-grid}/write.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/index.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/index.js +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/main.d.ts +0 -0
- /package/dist/programs/{operator-grid → contracts/pdg}/read.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/pdg}/write.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/index.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/index.js +0 -0
- /package/dist/programs/{vault → contracts/vault}/main.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault}/read.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault}/write.d.ts +0 -0
- /package/dist/programs/{vault-factory → contracts/vault-factory}/config.js +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/index.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/index.js +0 -0
- /package/dist/programs/{vault-factory → contracts/vault-factory}/main.d.ts +0 -0
- /package/dist/programs/{pdg → contracts/vault-factory}/read.d.ts +0 -0
- /package/dist/programs/{report → contracts/vault-factory}/write.d.ts +0 -0
- /package/dist/programs/{vault-viewer → contracts/vault-viewer}/config.js +0 -0
- /package/dist/programs/{metrics → contracts/vault-viewer}/index.d.ts +0 -0
- /package/dist/programs/{metrics → contracts/vault-viewer}/index.js +0 -0
- /package/dist/programs/{vault-viewer → contracts/vault-viewer}/main.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/index.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/index.js +0 -0
- /package/dist/programs/{vault-factory → use-cases/deposits}/read.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/deposits}/write.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/index.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/index.js +0 -0
- /package/dist/programs/{metrics → use-cases/metrics}/main.d.ts +0 -0
- /package/dist/programs/{vault-viewer → use-cases/metrics}/read.d.ts +0 -0
- /package/dist/programs/{report → use-cases/report}/main.d.ts +0 -0
- /package/dist/programs/{vault → use-cases/report}/read.d.ts +0 -0
- /package/dist/{tests/__mocks__/@lodestar/types.d.ts → programs/use-cases/report/write.d.ts} +0 -0
- /package/dist/{tests/utils/fetchCL.test.d.ts → programs/use-cases/vault-operations/create-vault.d.ts} +0 -0
- /package/dist/{tests/utils/report-proof.test.d.ts → programs/use-cases/vault-operations/read.d.ts} +0 -0
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
export declare const CLProofVerifierAbi: readonly [{
|
|
2
|
-
readonly inputs: readonly [{
|
|
3
|
-
readonly internalType: "GIndex";
|
|
4
|
-
readonly name: "_gIFirstValidator";
|
|
5
|
-
readonly type: "bytes32";
|
|
6
|
-
}, {
|
|
7
|
-
readonly internalType: "GIndex";
|
|
8
|
-
readonly name: "_gIFirstValidatorAfterChange";
|
|
9
|
-
readonly type: "bytes32";
|
|
10
|
-
}, {
|
|
11
|
-
readonly internalType: "uint64";
|
|
12
|
-
readonly name: "_changeSlot";
|
|
13
|
-
readonly type: "uint64";
|
|
14
|
-
}];
|
|
15
|
-
readonly stateMutability: "nonpayable";
|
|
16
|
-
readonly type: "constructor";
|
|
17
|
-
}, {
|
|
18
|
-
readonly inputs: readonly [];
|
|
19
|
-
readonly name: "IndexOutOfRange";
|
|
20
|
-
readonly type: "error";
|
|
21
|
-
}, {
|
|
22
|
-
readonly inputs: readonly [];
|
|
23
|
-
readonly name: "InvalidPubkeyLength";
|
|
24
|
-
readonly type: "error";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [];
|
|
27
|
-
readonly name: "RootNotFound";
|
|
28
|
-
readonly type: "error";
|
|
29
|
-
}, {
|
|
30
|
-
readonly inputs: readonly [];
|
|
31
|
-
readonly name: "BEACON_ROOTS";
|
|
32
|
-
readonly outputs: readonly [{
|
|
33
|
-
readonly internalType: "address";
|
|
34
|
-
readonly name: "";
|
|
35
|
-
readonly type: "address";
|
|
36
|
-
}];
|
|
37
|
-
readonly stateMutability: "view";
|
|
38
|
-
readonly type: "function";
|
|
39
|
-
}, {
|
|
40
|
-
readonly inputs: readonly [];
|
|
41
|
-
readonly name: "GI_FIRST_VALIDATOR";
|
|
42
|
-
readonly outputs: readonly [{
|
|
43
|
-
readonly internalType: "GIndex";
|
|
44
|
-
readonly name: "";
|
|
45
|
-
readonly type: "bytes32";
|
|
46
|
-
}];
|
|
47
|
-
readonly stateMutability: "view";
|
|
48
|
-
readonly type: "function";
|
|
49
|
-
}, {
|
|
50
|
-
readonly inputs: readonly [];
|
|
51
|
-
readonly name: "GI_FIRST_VALIDATOR_AFTER_CHANGE";
|
|
52
|
-
readonly outputs: readonly [{
|
|
53
|
-
readonly internalType: "GIndex";
|
|
54
|
-
readonly name: "";
|
|
55
|
-
readonly type: "bytes32";
|
|
56
|
-
}];
|
|
57
|
-
readonly stateMutability: "view";
|
|
58
|
-
readonly type: "function";
|
|
59
|
-
}, {
|
|
60
|
-
readonly inputs: readonly [];
|
|
61
|
-
readonly name: "GI_PUBKEY_WC_PARENT";
|
|
62
|
-
readonly outputs: readonly [{
|
|
63
|
-
readonly internalType: "GIndex";
|
|
64
|
-
readonly name: "";
|
|
65
|
-
readonly type: "bytes32";
|
|
66
|
-
}];
|
|
67
|
-
readonly stateMutability: "view";
|
|
68
|
-
readonly type: "function";
|
|
69
|
-
}, {
|
|
70
|
-
readonly inputs: readonly [];
|
|
71
|
-
readonly name: "GI_STATE_ROOT";
|
|
72
|
-
readonly outputs: readonly [{
|
|
73
|
-
readonly internalType: "GIndex";
|
|
74
|
-
readonly name: "";
|
|
75
|
-
readonly type: "bytes32";
|
|
76
|
-
}];
|
|
77
|
-
readonly stateMutability: "view";
|
|
78
|
-
readonly type: "function";
|
|
79
|
-
}, {
|
|
80
|
-
readonly inputs: readonly [];
|
|
81
|
-
readonly name: "SLOT_CHANGE_GI_FIRST_VALIDATOR";
|
|
82
|
-
readonly outputs: readonly [{
|
|
83
|
-
readonly internalType: "uint64";
|
|
84
|
-
readonly name: "";
|
|
85
|
-
readonly type: "uint64";
|
|
86
|
-
}];
|
|
87
|
-
readonly stateMutability: "view";
|
|
88
|
-
readonly type: "function";
|
|
89
|
-
}, {
|
|
90
|
-
readonly inputs: readonly [];
|
|
91
|
-
readonly name: "STATE_ROOT_DEPTH";
|
|
92
|
-
readonly outputs: readonly [{
|
|
93
|
-
readonly internalType: "uint8";
|
|
94
|
-
readonly name: "";
|
|
95
|
-
readonly type: "uint8";
|
|
96
|
-
}];
|
|
97
|
-
readonly stateMutability: "view";
|
|
98
|
-
readonly type: "function";
|
|
99
|
-
}, {
|
|
100
|
-
readonly inputs: readonly [];
|
|
101
|
-
readonly name: "STATE_ROOT_POSITION";
|
|
102
|
-
readonly outputs: readonly [{
|
|
103
|
-
readonly internalType: "uint256";
|
|
104
|
-
readonly name: "";
|
|
105
|
-
readonly type: "uint256";
|
|
106
|
-
}];
|
|
107
|
-
readonly stateMutability: "view";
|
|
108
|
-
readonly type: "function";
|
|
109
|
-
}, {
|
|
110
|
-
readonly inputs: readonly [{
|
|
111
|
-
readonly internalType: "uint64";
|
|
112
|
-
readonly name: "parentBlockTimestamp";
|
|
113
|
-
readonly type: "uint64";
|
|
114
|
-
}];
|
|
115
|
-
readonly name: "TEST_getParentBlockRoot";
|
|
116
|
-
readonly outputs: readonly [{
|
|
117
|
-
readonly internalType: "bytes32";
|
|
118
|
-
readonly name: "";
|
|
119
|
-
readonly type: "bytes32";
|
|
120
|
-
}];
|
|
121
|
-
readonly stateMutability: "view";
|
|
122
|
-
readonly type: "function";
|
|
123
|
-
}, {
|
|
124
|
-
readonly inputs: readonly [{
|
|
125
|
-
readonly internalType: "uint256";
|
|
126
|
-
readonly name: "offset";
|
|
127
|
-
readonly type: "uint256";
|
|
128
|
-
}];
|
|
129
|
-
readonly name: "TEST_getValidatorGI";
|
|
130
|
-
readonly outputs: readonly [{
|
|
131
|
-
readonly internalType: "GIndex";
|
|
132
|
-
readonly name: "";
|
|
133
|
-
readonly type: "bytes32";
|
|
134
|
-
}];
|
|
135
|
-
readonly stateMutability: "view";
|
|
136
|
-
readonly type: "function";
|
|
137
|
-
}, {
|
|
138
|
-
readonly inputs: readonly [{
|
|
139
|
-
readonly components: readonly [{
|
|
140
|
-
readonly internalType: "bytes32[]";
|
|
141
|
-
readonly name: "proof";
|
|
142
|
-
readonly type: "bytes32[]";
|
|
143
|
-
}, {
|
|
144
|
-
readonly internalType: "bytes";
|
|
145
|
-
readonly name: "pubkey";
|
|
146
|
-
readonly type: "bytes";
|
|
147
|
-
}, {
|
|
148
|
-
readonly internalType: "uint256";
|
|
149
|
-
readonly name: "validatorIndex";
|
|
150
|
-
readonly type: "uint256";
|
|
151
|
-
}, {
|
|
152
|
-
readonly internalType: "uint64";
|
|
153
|
-
readonly name: "childBlockTimestamp";
|
|
154
|
-
readonly type: "uint64";
|
|
155
|
-
}];
|
|
156
|
-
readonly internalType: "struct IPredepositGuarantee.ValidatorWitness";
|
|
157
|
-
readonly name: "_witness";
|
|
158
|
-
readonly type: "tuple";
|
|
159
|
-
}, {
|
|
160
|
-
readonly internalType: "bytes32";
|
|
161
|
-
readonly name: "_withdrawalCredentials";
|
|
162
|
-
readonly type: "bytes32";
|
|
163
|
-
}];
|
|
164
|
-
readonly name: "TEST_validatePubKeyWCProof";
|
|
165
|
-
readonly outputs: readonly [];
|
|
166
|
-
readonly stateMutability: "view";
|
|
167
|
-
readonly type: "function";
|
|
168
|
-
}, {
|
|
169
|
-
readonly inputs: readonly [];
|
|
170
|
-
readonly name: "WC_PUBKEY_PARENT_DEPTH";
|
|
171
|
-
readonly outputs: readonly [{
|
|
172
|
-
readonly internalType: "uint8";
|
|
173
|
-
readonly name: "";
|
|
174
|
-
readonly type: "uint8";
|
|
175
|
-
}];
|
|
176
|
-
readonly stateMutability: "view";
|
|
177
|
-
readonly type: "function";
|
|
178
|
-
}, {
|
|
179
|
-
readonly inputs: readonly [];
|
|
180
|
-
readonly name: "WC_PUBKEY_PARENT_POSITION";
|
|
181
|
-
readonly outputs: readonly [{
|
|
182
|
-
readonly internalType: "uint256";
|
|
183
|
-
readonly name: "";
|
|
184
|
-
readonly type: "uint256";
|
|
185
|
-
}];
|
|
186
|
-
readonly stateMutability: "view";
|
|
187
|
-
readonly type: "function";
|
|
188
|
-
}];
|
|
@@ -1,247 +0,0 @@
|
|
|
1
|
-
export const CLProofVerifierAbi = [
|
|
2
|
-
{
|
|
3
|
-
inputs: [
|
|
4
|
-
{
|
|
5
|
-
internalType: 'GIndex',
|
|
6
|
-
name: '_gIFirstValidator',
|
|
7
|
-
type: 'bytes32',
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
internalType: 'GIndex',
|
|
11
|
-
name: '_gIFirstValidatorAfterChange',
|
|
12
|
-
type: 'bytes32',
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
internalType: 'uint64',
|
|
16
|
-
name: '_changeSlot',
|
|
17
|
-
type: 'uint64',
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
stateMutability: 'nonpayable',
|
|
21
|
-
type: 'constructor',
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
inputs: [],
|
|
25
|
-
name: 'IndexOutOfRange',
|
|
26
|
-
type: 'error',
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
inputs: [],
|
|
30
|
-
name: 'InvalidPubkeyLength',
|
|
31
|
-
type: 'error',
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
inputs: [],
|
|
35
|
-
name: 'RootNotFound',
|
|
36
|
-
type: 'error',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
inputs: [],
|
|
40
|
-
name: 'BEACON_ROOTS',
|
|
41
|
-
outputs: [
|
|
42
|
-
{
|
|
43
|
-
internalType: 'address',
|
|
44
|
-
name: '',
|
|
45
|
-
type: 'address',
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
stateMutability: 'view',
|
|
49
|
-
type: 'function',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
inputs: [],
|
|
53
|
-
name: 'GI_FIRST_VALIDATOR',
|
|
54
|
-
outputs: [
|
|
55
|
-
{
|
|
56
|
-
internalType: 'GIndex',
|
|
57
|
-
name: '',
|
|
58
|
-
type: 'bytes32',
|
|
59
|
-
},
|
|
60
|
-
],
|
|
61
|
-
stateMutability: 'view',
|
|
62
|
-
type: 'function',
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
inputs: [],
|
|
66
|
-
name: 'GI_FIRST_VALIDATOR_AFTER_CHANGE',
|
|
67
|
-
outputs: [
|
|
68
|
-
{
|
|
69
|
-
internalType: 'GIndex',
|
|
70
|
-
name: '',
|
|
71
|
-
type: 'bytes32',
|
|
72
|
-
},
|
|
73
|
-
],
|
|
74
|
-
stateMutability: 'view',
|
|
75
|
-
type: 'function',
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
inputs: [],
|
|
79
|
-
name: 'GI_PUBKEY_WC_PARENT',
|
|
80
|
-
outputs: [
|
|
81
|
-
{
|
|
82
|
-
internalType: 'GIndex',
|
|
83
|
-
name: '',
|
|
84
|
-
type: 'bytes32',
|
|
85
|
-
},
|
|
86
|
-
],
|
|
87
|
-
stateMutability: 'view',
|
|
88
|
-
type: 'function',
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
inputs: [],
|
|
92
|
-
name: 'GI_STATE_ROOT',
|
|
93
|
-
outputs: [
|
|
94
|
-
{
|
|
95
|
-
internalType: 'GIndex',
|
|
96
|
-
name: '',
|
|
97
|
-
type: 'bytes32',
|
|
98
|
-
},
|
|
99
|
-
],
|
|
100
|
-
stateMutability: 'view',
|
|
101
|
-
type: 'function',
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
inputs: [],
|
|
105
|
-
name: 'SLOT_CHANGE_GI_FIRST_VALIDATOR',
|
|
106
|
-
outputs: [
|
|
107
|
-
{
|
|
108
|
-
internalType: 'uint64',
|
|
109
|
-
name: '',
|
|
110
|
-
type: 'uint64',
|
|
111
|
-
},
|
|
112
|
-
],
|
|
113
|
-
stateMutability: 'view',
|
|
114
|
-
type: 'function',
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
inputs: [],
|
|
118
|
-
name: 'STATE_ROOT_DEPTH',
|
|
119
|
-
outputs: [
|
|
120
|
-
{
|
|
121
|
-
internalType: 'uint8',
|
|
122
|
-
name: '',
|
|
123
|
-
type: 'uint8',
|
|
124
|
-
},
|
|
125
|
-
],
|
|
126
|
-
stateMutability: 'view',
|
|
127
|
-
type: 'function',
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
inputs: [],
|
|
131
|
-
name: 'STATE_ROOT_POSITION',
|
|
132
|
-
outputs: [
|
|
133
|
-
{
|
|
134
|
-
internalType: 'uint256',
|
|
135
|
-
name: '',
|
|
136
|
-
type: 'uint256',
|
|
137
|
-
},
|
|
138
|
-
],
|
|
139
|
-
stateMutability: 'view',
|
|
140
|
-
type: 'function',
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
inputs: [
|
|
144
|
-
{
|
|
145
|
-
internalType: 'uint64',
|
|
146
|
-
name: 'parentBlockTimestamp',
|
|
147
|
-
type: 'uint64',
|
|
148
|
-
},
|
|
149
|
-
],
|
|
150
|
-
name: 'TEST_getParentBlockRoot',
|
|
151
|
-
outputs: [
|
|
152
|
-
{
|
|
153
|
-
internalType: 'bytes32',
|
|
154
|
-
name: '',
|
|
155
|
-
type: 'bytes32',
|
|
156
|
-
},
|
|
157
|
-
],
|
|
158
|
-
stateMutability: 'view',
|
|
159
|
-
type: 'function',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
inputs: [
|
|
163
|
-
{
|
|
164
|
-
internalType: 'uint256',
|
|
165
|
-
name: 'offset',
|
|
166
|
-
type: 'uint256',
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
name: 'TEST_getValidatorGI',
|
|
170
|
-
outputs: [
|
|
171
|
-
{
|
|
172
|
-
internalType: 'GIndex',
|
|
173
|
-
name: '',
|
|
174
|
-
type: 'bytes32',
|
|
175
|
-
},
|
|
176
|
-
],
|
|
177
|
-
stateMutability: 'view',
|
|
178
|
-
type: 'function',
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
inputs: [
|
|
182
|
-
{
|
|
183
|
-
components: [
|
|
184
|
-
{
|
|
185
|
-
internalType: 'bytes32[]',
|
|
186
|
-
name: 'proof',
|
|
187
|
-
type: 'bytes32[]',
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
internalType: 'bytes',
|
|
191
|
-
name: 'pubkey',
|
|
192
|
-
type: 'bytes',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
internalType: 'uint256',
|
|
196
|
-
name: 'validatorIndex',
|
|
197
|
-
type: 'uint256',
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
internalType: 'uint64',
|
|
201
|
-
name: 'childBlockTimestamp',
|
|
202
|
-
type: 'uint64',
|
|
203
|
-
},
|
|
204
|
-
],
|
|
205
|
-
internalType: 'struct IPredepositGuarantee.ValidatorWitness',
|
|
206
|
-
name: '_witness',
|
|
207
|
-
type: 'tuple',
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
internalType: 'bytes32',
|
|
211
|
-
name: '_withdrawalCredentials',
|
|
212
|
-
type: 'bytes32',
|
|
213
|
-
},
|
|
214
|
-
],
|
|
215
|
-
name: 'TEST_validatePubKeyWCProof',
|
|
216
|
-
outputs: [],
|
|
217
|
-
stateMutability: 'view',
|
|
218
|
-
type: 'function',
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
inputs: [],
|
|
222
|
-
name: 'WC_PUBKEY_PARENT_DEPTH',
|
|
223
|
-
outputs: [
|
|
224
|
-
{
|
|
225
|
-
internalType: 'uint8',
|
|
226
|
-
name: '',
|
|
227
|
-
type: 'uint8',
|
|
228
|
-
},
|
|
229
|
-
],
|
|
230
|
-
stateMutability: 'view',
|
|
231
|
-
type: 'function',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
inputs: [],
|
|
235
|
-
name: 'WC_PUBKEY_PARENT_POSITION',
|
|
236
|
-
outputs: [
|
|
237
|
-
{
|
|
238
|
-
internalType: 'uint256',
|
|
239
|
-
name: '',
|
|
240
|
-
type: 'uint256',
|
|
241
|
-
},
|
|
242
|
-
],
|
|
243
|
-
stateMutability: 'view',
|
|
244
|
-
type: 'function',
|
|
245
|
-
},
|
|
246
|
-
];
|
|
247
|
-
//# sourceMappingURL=CLProofVerifier.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CLProofVerifier.js","sourceRoot":"","sources":["../../abi/CLProofVerifier.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
export declare const ReportCheckerAbi: readonly [{
|
|
2
|
-
readonly inputs: readonly [];
|
|
3
|
-
readonly stateMutability: "nonpayable";
|
|
4
|
-
readonly type: "constructor";
|
|
5
|
-
}, {
|
|
6
|
-
readonly inputs: readonly [{
|
|
7
|
-
readonly internalType: "bytes32";
|
|
8
|
-
readonly name: "leaf";
|
|
9
|
-
readonly type: "bytes32";
|
|
10
|
-
}, {
|
|
11
|
-
readonly internalType: "bytes32";
|
|
12
|
-
readonly name: "root";
|
|
13
|
-
readonly type: "bytes32";
|
|
14
|
-
}];
|
|
15
|
-
readonly name: "InvalidProof";
|
|
16
|
-
readonly type: "error";
|
|
17
|
-
}, {
|
|
18
|
-
readonly inputs: readonly [{
|
|
19
|
-
readonly internalType: "string";
|
|
20
|
-
readonly name: "argName";
|
|
21
|
-
readonly type: "string";
|
|
22
|
-
}];
|
|
23
|
-
readonly name: "ZeroArgument";
|
|
24
|
-
readonly type: "error";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [{
|
|
27
|
-
readonly internalType: "address";
|
|
28
|
-
readonly name: "_vault";
|
|
29
|
-
readonly type: "address";
|
|
30
|
-
}, {
|
|
31
|
-
readonly internalType: "uint256";
|
|
32
|
-
readonly name: "_valuation";
|
|
33
|
-
readonly type: "uint256";
|
|
34
|
-
}, {
|
|
35
|
-
readonly internalType: "int256";
|
|
36
|
-
readonly name: "_inOutDelta";
|
|
37
|
-
readonly type: "int256";
|
|
38
|
-
}, {
|
|
39
|
-
readonly internalType: "uint256";
|
|
40
|
-
readonly name: "_fees";
|
|
41
|
-
readonly type: "uint256";
|
|
42
|
-
}, {
|
|
43
|
-
readonly internalType: "uint256";
|
|
44
|
-
readonly name: "_sharesMinted";
|
|
45
|
-
readonly type: "uint256";
|
|
46
|
-
}, {
|
|
47
|
-
readonly internalType: "bytes32[]";
|
|
48
|
-
readonly name: "_proof";
|
|
49
|
-
readonly type: "bytes32[]";
|
|
50
|
-
}];
|
|
51
|
-
readonly name: "checkReport";
|
|
52
|
-
readonly outputs: readonly [];
|
|
53
|
-
readonly stateMutability: "view";
|
|
54
|
-
readonly type: "function";
|
|
55
|
-
}, {
|
|
56
|
-
readonly inputs: readonly [];
|
|
57
|
-
readonly name: "getReportCheckerData";
|
|
58
|
-
readonly outputs: readonly [{
|
|
59
|
-
readonly internalType: "bytes32";
|
|
60
|
-
readonly name: "";
|
|
61
|
-
readonly type: "bytes32";
|
|
62
|
-
}, {
|
|
63
|
-
readonly internalType: "string";
|
|
64
|
-
readonly name: "";
|
|
65
|
-
readonly type: "string";
|
|
66
|
-
}];
|
|
67
|
-
readonly stateMutability: "view";
|
|
68
|
-
readonly type: "function";
|
|
69
|
-
}, {
|
|
70
|
-
readonly inputs: readonly [{
|
|
71
|
-
readonly internalType: "bytes32";
|
|
72
|
-
readonly name: "_vaultsDataTreeRoot";
|
|
73
|
-
readonly type: "bytes32";
|
|
74
|
-
}, {
|
|
75
|
-
readonly internalType: "string";
|
|
76
|
-
readonly name: "_vaultsDataTreeCid";
|
|
77
|
-
readonly type: "string";
|
|
78
|
-
}];
|
|
79
|
-
readonly name: "updateReportCheckerData";
|
|
80
|
-
readonly outputs: readonly [];
|
|
81
|
-
readonly stateMutability: "nonpayable";
|
|
82
|
-
readonly type: "function";
|
|
83
|
-
}];
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
export const ReportCheckerAbi = [
|
|
2
|
-
{
|
|
3
|
-
inputs: [],
|
|
4
|
-
stateMutability: 'nonpayable',
|
|
5
|
-
type: 'constructor',
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
inputs: [
|
|
9
|
-
{
|
|
10
|
-
internalType: 'bytes32',
|
|
11
|
-
name: 'leaf',
|
|
12
|
-
type: 'bytes32',
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
internalType: 'bytes32',
|
|
16
|
-
name: 'root',
|
|
17
|
-
type: 'bytes32',
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
name: 'InvalidProof',
|
|
21
|
-
type: 'error',
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
inputs: [
|
|
25
|
-
{
|
|
26
|
-
internalType: 'string',
|
|
27
|
-
name: 'argName',
|
|
28
|
-
type: 'string',
|
|
29
|
-
},
|
|
30
|
-
],
|
|
31
|
-
name: 'ZeroArgument',
|
|
32
|
-
type: 'error',
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
inputs: [
|
|
36
|
-
{
|
|
37
|
-
internalType: 'address',
|
|
38
|
-
name: '_vault',
|
|
39
|
-
type: 'address',
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
internalType: 'uint256',
|
|
43
|
-
name: '_valuation',
|
|
44
|
-
type: 'uint256',
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
internalType: 'int256',
|
|
48
|
-
name: '_inOutDelta',
|
|
49
|
-
type: 'int256',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
internalType: 'uint256',
|
|
53
|
-
name: '_fees',
|
|
54
|
-
type: 'uint256',
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
internalType: 'uint256',
|
|
58
|
-
name: '_sharesMinted',
|
|
59
|
-
type: 'uint256',
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
internalType: 'bytes32[]',
|
|
63
|
-
name: '_proof',
|
|
64
|
-
type: 'bytes32[]',
|
|
65
|
-
},
|
|
66
|
-
],
|
|
67
|
-
name: 'checkReport',
|
|
68
|
-
outputs: [],
|
|
69
|
-
stateMutability: 'view',
|
|
70
|
-
type: 'function',
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
inputs: [],
|
|
74
|
-
name: 'getReportCheckerData',
|
|
75
|
-
outputs: [
|
|
76
|
-
{
|
|
77
|
-
internalType: 'bytes32',
|
|
78
|
-
name: '',
|
|
79
|
-
type: 'bytes32',
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
internalType: 'string',
|
|
83
|
-
name: '',
|
|
84
|
-
type: 'string',
|
|
85
|
-
},
|
|
86
|
-
],
|
|
87
|
-
stateMutability: 'view',
|
|
88
|
-
type: 'function',
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
inputs: [
|
|
92
|
-
{
|
|
93
|
-
internalType: 'bytes32',
|
|
94
|
-
name: '_vaultsDataTreeRoot',
|
|
95
|
-
type: 'bytes32',
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
internalType: 'string',
|
|
99
|
-
name: '_vaultsDataTreeCid',
|
|
100
|
-
type: 'string',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
103
|
-
name: 'updateReportCheckerData',
|
|
104
|
-
outputs: [],
|
|
105
|
-
stateMutability: 'nonpayable',
|
|
106
|
-
type: 'function',
|
|
107
|
-
},
|
|
108
|
-
];
|
|
109
|
-
//# sourceMappingURL=ReportChecker.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReportChecker.js","sourceRoot":"","sources":["../../abi/ReportChecker.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B;QACE,MAAM,EAAE,EAAE;QACV,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,aAAa;KACpB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,OAAO;KACd;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;aACf;SACF;QACD,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,OAAO;KACd;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;aACf;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,eAAe;gBACrB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,WAAW;aAClB;SACF;QACD,IAAI,EAAE,aAAa;QACnB,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,sBAAsB;QAC5B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,QAAQ;aACf;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,oBAAoB;gBAC1B,IAAI,EAAE,QAAQ;aACf;SACF;QACD,IAAI,EAAE,yBAAyB;QAC/B,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;CACO,CAAC"}
|