@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
|
@@ -14,10 +14,18 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
14
14
|
}];
|
|
15
15
|
readonly name: "AccessControlUnauthorizedAccount";
|
|
16
16
|
readonly type: "error";
|
|
17
|
+
}, {
|
|
18
|
+
readonly inputs: readonly [];
|
|
19
|
+
readonly name: "ArrayLengthMismatch";
|
|
20
|
+
readonly type: "error";
|
|
17
21
|
}, {
|
|
18
22
|
readonly inputs: readonly [];
|
|
19
23
|
readonly name: "CannotChangeToDefaultTier";
|
|
20
24
|
readonly type: "error";
|
|
25
|
+
}, {
|
|
26
|
+
readonly inputs: readonly [];
|
|
27
|
+
readonly name: "ConfirmExpiryOutOfBounds";
|
|
28
|
+
readonly type: "error";
|
|
21
29
|
}, {
|
|
22
30
|
readonly inputs: readonly [{
|
|
23
31
|
readonly internalType: "uint256";
|
|
@@ -44,11 +52,23 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
44
52
|
readonly type: "error";
|
|
45
53
|
}, {
|
|
46
54
|
readonly inputs: readonly [];
|
|
47
|
-
readonly name: "
|
|
55
|
+
readonly name: "GroupNotExists";
|
|
48
56
|
readonly type: "error";
|
|
49
57
|
}, {
|
|
50
|
-
readonly inputs: readonly [
|
|
51
|
-
|
|
58
|
+
readonly inputs: readonly [{
|
|
59
|
+
readonly internalType: "uint256";
|
|
60
|
+
readonly name: "tierId";
|
|
61
|
+
readonly type: "uint256";
|
|
62
|
+
}, {
|
|
63
|
+
readonly internalType: "uint256";
|
|
64
|
+
readonly name: "infraFeeBP";
|
|
65
|
+
readonly type: "uint256";
|
|
66
|
+
}, {
|
|
67
|
+
readonly internalType: "uint256";
|
|
68
|
+
readonly name: "maxInfraFeeBP";
|
|
69
|
+
readonly type: "uint256";
|
|
70
|
+
}];
|
|
71
|
+
readonly name: "InfraFeeTooHigh";
|
|
52
72
|
readonly type: "error";
|
|
53
73
|
}, {
|
|
54
74
|
readonly inputs: readonly [];
|
|
@@ -57,14 +77,18 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
57
77
|
}, {
|
|
58
78
|
readonly inputs: readonly [{
|
|
59
79
|
readonly internalType: "uint256";
|
|
60
|
-
readonly name: "
|
|
80
|
+
readonly name: "tierId";
|
|
81
|
+
readonly type: "uint256";
|
|
82
|
+
}, {
|
|
83
|
+
readonly internalType: "uint256";
|
|
84
|
+
readonly name: "liquidityFeeBP";
|
|
61
85
|
readonly type: "uint256";
|
|
62
86
|
}, {
|
|
63
87
|
readonly internalType: "uint256";
|
|
64
|
-
readonly name: "
|
|
88
|
+
readonly name: "maxLiquidityFeeBP";
|
|
65
89
|
readonly type: "uint256";
|
|
66
90
|
}];
|
|
67
|
-
readonly name: "
|
|
91
|
+
readonly name: "LiquidityFeeTooHigh";
|
|
68
92
|
readonly type: "error";
|
|
69
93
|
}, {
|
|
70
94
|
readonly inputs: readonly [];
|
|
@@ -86,6 +110,34 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
86
110
|
readonly inputs: readonly [];
|
|
87
111
|
readonly name: "NotInitializing";
|
|
88
112
|
readonly type: "error";
|
|
113
|
+
}, {
|
|
114
|
+
readonly inputs: readonly [{
|
|
115
|
+
readonly internalType: "uint256";
|
|
116
|
+
readonly name: "requestedShareLimit";
|
|
117
|
+
readonly type: "uint256";
|
|
118
|
+
}, {
|
|
119
|
+
readonly internalType: "uint256";
|
|
120
|
+
readonly name: "tierShareLimit";
|
|
121
|
+
readonly type: "uint256";
|
|
122
|
+
}];
|
|
123
|
+
readonly name: "RequestedShareLimitTooHigh";
|
|
124
|
+
readonly type: "error";
|
|
125
|
+
}, {
|
|
126
|
+
readonly inputs: readonly [{
|
|
127
|
+
readonly internalType: "uint256";
|
|
128
|
+
readonly name: "tierId";
|
|
129
|
+
readonly type: "uint256";
|
|
130
|
+
}, {
|
|
131
|
+
readonly internalType: "uint256";
|
|
132
|
+
readonly name: "reservationFeeBP";
|
|
133
|
+
readonly type: "uint256";
|
|
134
|
+
}, {
|
|
135
|
+
readonly internalType: "uint256";
|
|
136
|
+
readonly name: "maxReservationFeeBP";
|
|
137
|
+
readonly type: "uint256";
|
|
138
|
+
}];
|
|
139
|
+
readonly name: "ReservationFeeTooHigh";
|
|
140
|
+
readonly type: "error";
|
|
89
141
|
}, {
|
|
90
142
|
readonly inputs: readonly [{
|
|
91
143
|
readonly internalType: "uint256";
|
|
@@ -104,24 +156,16 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
104
156
|
readonly type: "error";
|
|
105
157
|
}, {
|
|
106
158
|
readonly inputs: readonly [];
|
|
107
|
-
readonly name: "
|
|
159
|
+
readonly name: "SenderNotMember";
|
|
108
160
|
readonly type: "error";
|
|
109
161
|
}, {
|
|
110
162
|
readonly inputs: readonly [];
|
|
111
163
|
readonly name: "TierAlreadySet";
|
|
112
164
|
readonly type: "error";
|
|
113
|
-
}, {
|
|
114
|
-
readonly inputs: readonly [];
|
|
115
|
-
readonly name: "TierExists";
|
|
116
|
-
readonly type: "error";
|
|
117
165
|
}, {
|
|
118
166
|
readonly inputs: readonly [];
|
|
119
167
|
readonly name: "TierLimitExceeded";
|
|
120
168
|
readonly type: "error";
|
|
121
|
-
}, {
|
|
122
|
-
readonly inputs: readonly [];
|
|
123
|
-
readonly name: "TierMintedSharesUnderflow";
|
|
124
|
-
readonly type: "error";
|
|
125
169
|
}, {
|
|
126
170
|
readonly inputs: readonly [];
|
|
127
171
|
readonly name: "TierNotExists";
|
|
@@ -130,26 +174,6 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
130
174
|
readonly inputs: readonly [];
|
|
131
175
|
readonly name: "TierNotInOperatorGroup";
|
|
132
176
|
readonly type: "error";
|
|
133
|
-
}, {
|
|
134
|
-
readonly inputs: readonly [];
|
|
135
|
-
readonly name: "TiersNotAvailable";
|
|
136
|
-
readonly type: "error";
|
|
137
|
-
}, {
|
|
138
|
-
readonly inputs: readonly [{
|
|
139
|
-
readonly internalType: "uint256";
|
|
140
|
-
readonly name: "tierId";
|
|
141
|
-
readonly type: "uint256";
|
|
142
|
-
}, {
|
|
143
|
-
readonly internalType: "uint256";
|
|
144
|
-
readonly name: "treasuryFeeBP";
|
|
145
|
-
readonly type: "uint256";
|
|
146
|
-
}, {
|
|
147
|
-
readonly internalType: "uint256";
|
|
148
|
-
readonly name: "maxTreasuryFeeBP";
|
|
149
|
-
readonly type: "uint256";
|
|
150
|
-
}];
|
|
151
|
-
readonly name: "TreasuryFeeTooHigh";
|
|
152
|
-
readonly type: "error";
|
|
153
177
|
}, {
|
|
154
178
|
readonly inputs: readonly [{
|
|
155
179
|
readonly internalType: "string";
|
|
@@ -158,6 +182,10 @@ export declare const OperatorGridErrorsAbi: readonly [{
|
|
|
158
182
|
}];
|
|
159
183
|
readonly name: "ZeroArgument";
|
|
160
184
|
readonly type: "error";
|
|
185
|
+
}, {
|
|
186
|
+
readonly inputs: readonly [];
|
|
187
|
+
readonly name: "ZeroConfirmingRoles";
|
|
188
|
+
readonly type: "error";
|
|
161
189
|
}];
|
|
162
190
|
export declare const OperatorGridAbi: readonly [{
|
|
163
191
|
readonly inputs: readonly [];
|
|
@@ -175,10 +203,18 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
175
203
|
}];
|
|
176
204
|
readonly name: "AccessControlUnauthorizedAccount";
|
|
177
205
|
readonly type: "error";
|
|
206
|
+
}, {
|
|
207
|
+
readonly inputs: readonly [];
|
|
208
|
+
readonly name: "ArrayLengthMismatch";
|
|
209
|
+
readonly type: "error";
|
|
178
210
|
}, {
|
|
179
211
|
readonly inputs: readonly [];
|
|
180
212
|
readonly name: "CannotChangeToDefaultTier";
|
|
181
213
|
readonly type: "error";
|
|
214
|
+
}, {
|
|
215
|
+
readonly inputs: readonly [];
|
|
216
|
+
readonly name: "ConfirmExpiryOutOfBounds";
|
|
217
|
+
readonly type: "error";
|
|
182
218
|
}, {
|
|
183
219
|
readonly inputs: readonly [{
|
|
184
220
|
readonly internalType: "uint256";
|
|
@@ -205,11 +241,23 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
205
241
|
readonly type: "error";
|
|
206
242
|
}, {
|
|
207
243
|
readonly inputs: readonly [];
|
|
208
|
-
readonly name: "
|
|
244
|
+
readonly name: "GroupNotExists";
|
|
209
245
|
readonly type: "error";
|
|
210
246
|
}, {
|
|
211
|
-
readonly inputs: readonly [
|
|
212
|
-
|
|
247
|
+
readonly inputs: readonly [{
|
|
248
|
+
readonly internalType: "uint256";
|
|
249
|
+
readonly name: "tierId";
|
|
250
|
+
readonly type: "uint256";
|
|
251
|
+
}, {
|
|
252
|
+
readonly internalType: "uint256";
|
|
253
|
+
readonly name: "infraFeeBP";
|
|
254
|
+
readonly type: "uint256";
|
|
255
|
+
}, {
|
|
256
|
+
readonly internalType: "uint256";
|
|
257
|
+
readonly name: "maxInfraFeeBP";
|
|
258
|
+
readonly type: "uint256";
|
|
259
|
+
}];
|
|
260
|
+
readonly name: "InfraFeeTooHigh";
|
|
213
261
|
readonly type: "error";
|
|
214
262
|
}, {
|
|
215
263
|
readonly inputs: readonly [];
|
|
@@ -218,14 +266,18 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
218
266
|
}, {
|
|
219
267
|
readonly inputs: readonly [{
|
|
220
268
|
readonly internalType: "uint256";
|
|
221
|
-
readonly name: "
|
|
269
|
+
readonly name: "tierId";
|
|
270
|
+
readonly type: "uint256";
|
|
271
|
+
}, {
|
|
272
|
+
readonly internalType: "uint256";
|
|
273
|
+
readonly name: "liquidityFeeBP";
|
|
222
274
|
readonly type: "uint256";
|
|
223
275
|
}, {
|
|
224
276
|
readonly internalType: "uint256";
|
|
225
|
-
readonly name: "
|
|
277
|
+
readonly name: "maxLiquidityFeeBP";
|
|
226
278
|
readonly type: "uint256";
|
|
227
279
|
}];
|
|
228
|
-
readonly name: "
|
|
280
|
+
readonly name: "LiquidityFeeTooHigh";
|
|
229
281
|
readonly type: "error";
|
|
230
282
|
}, {
|
|
231
283
|
readonly inputs: readonly [];
|
|
@@ -247,6 +299,34 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
247
299
|
readonly inputs: readonly [];
|
|
248
300
|
readonly name: "NotInitializing";
|
|
249
301
|
readonly type: "error";
|
|
302
|
+
}, {
|
|
303
|
+
readonly inputs: readonly [{
|
|
304
|
+
readonly internalType: "uint256";
|
|
305
|
+
readonly name: "requestedShareLimit";
|
|
306
|
+
readonly type: "uint256";
|
|
307
|
+
}, {
|
|
308
|
+
readonly internalType: "uint256";
|
|
309
|
+
readonly name: "tierShareLimit";
|
|
310
|
+
readonly type: "uint256";
|
|
311
|
+
}];
|
|
312
|
+
readonly name: "RequestedShareLimitTooHigh";
|
|
313
|
+
readonly type: "error";
|
|
314
|
+
}, {
|
|
315
|
+
readonly inputs: readonly [{
|
|
316
|
+
readonly internalType: "uint256";
|
|
317
|
+
readonly name: "tierId";
|
|
318
|
+
readonly type: "uint256";
|
|
319
|
+
}, {
|
|
320
|
+
readonly internalType: "uint256";
|
|
321
|
+
readonly name: "reservationFeeBP";
|
|
322
|
+
readonly type: "uint256";
|
|
323
|
+
}, {
|
|
324
|
+
readonly internalType: "uint256";
|
|
325
|
+
readonly name: "maxReservationFeeBP";
|
|
326
|
+
readonly type: "uint256";
|
|
327
|
+
}];
|
|
328
|
+
readonly name: "ReservationFeeTooHigh";
|
|
329
|
+
readonly type: "error";
|
|
250
330
|
}, {
|
|
251
331
|
readonly inputs: readonly [{
|
|
252
332
|
readonly internalType: "uint256";
|
|
@@ -265,24 +345,16 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
265
345
|
readonly type: "error";
|
|
266
346
|
}, {
|
|
267
347
|
readonly inputs: readonly [];
|
|
268
|
-
readonly name: "
|
|
348
|
+
readonly name: "SenderNotMember";
|
|
269
349
|
readonly type: "error";
|
|
270
350
|
}, {
|
|
271
351
|
readonly inputs: readonly [];
|
|
272
352
|
readonly name: "TierAlreadySet";
|
|
273
353
|
readonly type: "error";
|
|
274
|
-
}, {
|
|
275
|
-
readonly inputs: readonly [];
|
|
276
|
-
readonly name: "TierExists";
|
|
277
|
-
readonly type: "error";
|
|
278
354
|
}, {
|
|
279
355
|
readonly inputs: readonly [];
|
|
280
356
|
readonly name: "TierLimitExceeded";
|
|
281
357
|
readonly type: "error";
|
|
282
|
-
}, {
|
|
283
|
-
readonly inputs: readonly [];
|
|
284
|
-
readonly name: "TierMintedSharesUnderflow";
|
|
285
|
-
readonly type: "error";
|
|
286
358
|
}, {
|
|
287
359
|
readonly inputs: readonly [];
|
|
288
360
|
readonly name: "TierNotExists";
|
|
@@ -291,26 +363,6 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
291
363
|
readonly inputs: readonly [];
|
|
292
364
|
readonly name: "TierNotInOperatorGroup";
|
|
293
365
|
readonly type: "error";
|
|
294
|
-
}, {
|
|
295
|
-
readonly inputs: readonly [];
|
|
296
|
-
readonly name: "TiersNotAvailable";
|
|
297
|
-
readonly type: "error";
|
|
298
|
-
}, {
|
|
299
|
-
readonly inputs: readonly [{
|
|
300
|
-
readonly internalType: "uint256";
|
|
301
|
-
readonly name: "tierId";
|
|
302
|
-
readonly type: "uint256";
|
|
303
|
-
}, {
|
|
304
|
-
readonly internalType: "uint256";
|
|
305
|
-
readonly name: "treasuryFeeBP";
|
|
306
|
-
readonly type: "uint256";
|
|
307
|
-
}, {
|
|
308
|
-
readonly internalType: "uint256";
|
|
309
|
-
readonly name: "maxTreasuryFeeBP";
|
|
310
|
-
readonly type: "uint256";
|
|
311
|
-
}];
|
|
312
|
-
readonly name: "TreasuryFeeTooHigh";
|
|
313
|
-
readonly type: "error";
|
|
314
366
|
}, {
|
|
315
367
|
readonly inputs: readonly [{
|
|
316
368
|
readonly internalType: "string";
|
|
@@ -319,6 +371,10 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
319
371
|
}];
|
|
320
372
|
readonly name: "ZeroArgument";
|
|
321
373
|
readonly type: "error";
|
|
374
|
+
}, {
|
|
375
|
+
readonly inputs: readonly [];
|
|
376
|
+
readonly name: "ZeroConfirmingRoles";
|
|
377
|
+
readonly type: "error";
|
|
322
378
|
}, {
|
|
323
379
|
readonly inputs: readonly [{
|
|
324
380
|
readonly internalType: "contract ILidoLocator";
|
|
@@ -327,6 +383,26 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
327
383
|
}];
|
|
328
384
|
readonly stateMutability: "nonpayable";
|
|
329
385
|
readonly type: "constructor";
|
|
386
|
+
}, {
|
|
387
|
+
readonly anonymous: false;
|
|
388
|
+
readonly inputs: readonly [{
|
|
389
|
+
readonly indexed: true;
|
|
390
|
+
readonly internalType: "address";
|
|
391
|
+
readonly name: "sender";
|
|
392
|
+
readonly type: "address";
|
|
393
|
+
}, {
|
|
394
|
+
readonly indexed: false;
|
|
395
|
+
readonly internalType: "uint256";
|
|
396
|
+
readonly name: "oldConfirmExpiry";
|
|
397
|
+
readonly type: "uint256";
|
|
398
|
+
}, {
|
|
399
|
+
readonly indexed: false;
|
|
400
|
+
readonly internalType: "uint256";
|
|
401
|
+
readonly name: "newConfirmExpiry";
|
|
402
|
+
readonly type: "uint256";
|
|
403
|
+
}];
|
|
404
|
+
readonly name: "ConfirmExpirySet";
|
|
405
|
+
readonly type: "event";
|
|
330
406
|
}, {
|
|
331
407
|
readonly anonymous: false;
|
|
332
408
|
readonly inputs: readonly [{
|
|
@@ -407,6 +483,36 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
407
483
|
}];
|
|
408
484
|
readonly name: "RoleGranted";
|
|
409
485
|
readonly type: "event";
|
|
486
|
+
}, {
|
|
487
|
+
readonly anonymous: false;
|
|
488
|
+
readonly inputs: readonly [{
|
|
489
|
+
readonly indexed: true;
|
|
490
|
+
readonly internalType: "address";
|
|
491
|
+
readonly name: "member";
|
|
492
|
+
readonly type: "address";
|
|
493
|
+
}, {
|
|
494
|
+
readonly indexed: true;
|
|
495
|
+
readonly internalType: "bytes32";
|
|
496
|
+
readonly name: "role";
|
|
497
|
+
readonly type: "bytes32";
|
|
498
|
+
}, {
|
|
499
|
+
readonly indexed: false;
|
|
500
|
+
readonly internalType: "uint256";
|
|
501
|
+
readonly name: "confirmTimestamp";
|
|
502
|
+
readonly type: "uint256";
|
|
503
|
+
}, {
|
|
504
|
+
readonly indexed: false;
|
|
505
|
+
readonly internalType: "uint256";
|
|
506
|
+
readonly name: "expiryTimestamp";
|
|
507
|
+
readonly type: "uint256";
|
|
508
|
+
}, {
|
|
509
|
+
readonly indexed: false;
|
|
510
|
+
readonly internalType: "bytes";
|
|
511
|
+
readonly name: "data";
|
|
512
|
+
readonly type: "bytes";
|
|
513
|
+
}];
|
|
514
|
+
readonly name: "RoleMemberConfirmed";
|
|
515
|
+
readonly type: "event";
|
|
410
516
|
}, {
|
|
411
517
|
readonly anonymous: false;
|
|
412
518
|
readonly inputs: readonly [{
|
|
@@ -457,30 +563,20 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
457
563
|
}, {
|
|
458
564
|
readonly indexed: false;
|
|
459
565
|
readonly internalType: "uint256";
|
|
460
|
-
readonly name: "
|
|
566
|
+
readonly name: "infraFeeBP";
|
|
461
567
|
readonly type: "uint256";
|
|
462
|
-
}];
|
|
463
|
-
readonly name: "TierAdded";
|
|
464
|
-
readonly type: "event";
|
|
465
|
-
}, {
|
|
466
|
-
readonly anonymous: false;
|
|
467
|
-
readonly inputs: readonly [{
|
|
468
|
-
readonly indexed: true;
|
|
469
|
-
readonly internalType: "address";
|
|
470
|
-
readonly name: "vault";
|
|
471
|
-
readonly type: "address";
|
|
472
568
|
}, {
|
|
473
|
-
readonly indexed:
|
|
569
|
+
readonly indexed: false;
|
|
474
570
|
readonly internalType: "uint256";
|
|
475
|
-
readonly name: "
|
|
571
|
+
readonly name: "liquidityFeeBP";
|
|
476
572
|
readonly type: "uint256";
|
|
477
573
|
}, {
|
|
478
|
-
readonly indexed:
|
|
574
|
+
readonly indexed: false;
|
|
479
575
|
readonly internalType: "uint256";
|
|
480
|
-
readonly name: "
|
|
576
|
+
readonly name: "reservationFeeBP";
|
|
481
577
|
readonly type: "uint256";
|
|
482
578
|
}];
|
|
483
|
-
readonly name: "
|
|
579
|
+
readonly name: "TierAdded";
|
|
484
580
|
readonly type: "event";
|
|
485
581
|
}, {
|
|
486
582
|
readonly anonymous: false;
|
|
@@ -494,6 +590,11 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
494
590
|
readonly internalType: "uint256";
|
|
495
591
|
readonly name: "tierId";
|
|
496
592
|
readonly type: "uint256";
|
|
593
|
+
}, {
|
|
594
|
+
readonly indexed: false;
|
|
595
|
+
readonly internalType: "uint256";
|
|
596
|
+
readonly name: "shareLimit";
|
|
597
|
+
readonly type: "uint256";
|
|
497
598
|
}];
|
|
498
599
|
readonly name: "TierChanged";
|
|
499
600
|
readonly type: "event";
|
|
@@ -522,21 +623,21 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
522
623
|
}, {
|
|
523
624
|
readonly indexed: false;
|
|
524
625
|
readonly internalType: "uint256";
|
|
525
|
-
readonly name: "
|
|
626
|
+
readonly name: "infraFeeBP";
|
|
627
|
+
readonly type: "uint256";
|
|
628
|
+
}, {
|
|
629
|
+
readonly indexed: false;
|
|
630
|
+
readonly internalType: "uint256";
|
|
631
|
+
readonly name: "liquidityFeeBP";
|
|
632
|
+
readonly type: "uint256";
|
|
633
|
+
}, {
|
|
634
|
+
readonly indexed: false;
|
|
635
|
+
readonly internalType: "uint256";
|
|
636
|
+
readonly name: "reservationFeeBP";
|
|
526
637
|
readonly type: "uint256";
|
|
527
638
|
}];
|
|
528
639
|
readonly name: "TierUpdated";
|
|
529
640
|
readonly type: "event";
|
|
530
|
-
}, {
|
|
531
|
-
readonly anonymous: false;
|
|
532
|
-
readonly inputs: readonly [{
|
|
533
|
-
readonly indexed: true;
|
|
534
|
-
readonly internalType: "address";
|
|
535
|
-
readonly name: "vault";
|
|
536
|
-
readonly type: "address";
|
|
537
|
-
}];
|
|
538
|
-
readonly name: "VaultAdded";
|
|
539
|
-
readonly type: "event";
|
|
540
641
|
}, {
|
|
541
642
|
readonly inputs: readonly [];
|
|
542
643
|
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
@@ -577,6 +678,26 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
577
678
|
}];
|
|
578
679
|
readonly stateMutability: "view";
|
|
579
680
|
readonly type: "function";
|
|
681
|
+
}, {
|
|
682
|
+
readonly inputs: readonly [];
|
|
683
|
+
readonly name: "MAX_CONFIRM_EXPIRY";
|
|
684
|
+
readonly outputs: readonly [{
|
|
685
|
+
readonly internalType: "uint256";
|
|
686
|
+
readonly name: "";
|
|
687
|
+
readonly type: "uint256";
|
|
688
|
+
}];
|
|
689
|
+
readonly stateMutability: "view";
|
|
690
|
+
readonly type: "function";
|
|
691
|
+
}, {
|
|
692
|
+
readonly inputs: readonly [];
|
|
693
|
+
readonly name: "MIN_CONFIRM_EXPIRY";
|
|
694
|
+
readonly outputs: readonly [{
|
|
695
|
+
readonly internalType: "uint256";
|
|
696
|
+
readonly name: "";
|
|
697
|
+
readonly type: "uint256";
|
|
698
|
+
}];
|
|
699
|
+
readonly stateMutability: "view";
|
|
700
|
+
readonly type: "function";
|
|
580
701
|
}, {
|
|
581
702
|
readonly inputs: readonly [];
|
|
582
703
|
readonly name: "REGISTRY_ROLE";
|
|
@@ -589,9 +710,9 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
589
710
|
readonly type: "function";
|
|
590
711
|
}, {
|
|
591
712
|
readonly inputs: readonly [{
|
|
592
|
-
readonly internalType: "uint256";
|
|
593
|
-
readonly name: "
|
|
594
|
-
readonly type: "uint256";
|
|
713
|
+
readonly internalType: "uint256[]";
|
|
714
|
+
readonly name: "_tierIds";
|
|
715
|
+
readonly type: "uint256[]";
|
|
595
716
|
}, {
|
|
596
717
|
readonly components: readonly [{
|
|
597
718
|
readonly internalType: "uint256";
|
|
@@ -607,14 +728,22 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
607
728
|
readonly type: "uint256";
|
|
608
729
|
}, {
|
|
609
730
|
readonly internalType: "uint256";
|
|
610
|
-
readonly name: "
|
|
731
|
+
readonly name: "infraFeeBP";
|
|
732
|
+
readonly type: "uint256";
|
|
733
|
+
}, {
|
|
734
|
+
readonly internalType: "uint256";
|
|
735
|
+
readonly name: "liquidityFeeBP";
|
|
736
|
+
readonly type: "uint256";
|
|
737
|
+
}, {
|
|
738
|
+
readonly internalType: "uint256";
|
|
739
|
+
readonly name: "reservationFeeBP";
|
|
611
740
|
readonly type: "uint256";
|
|
612
741
|
}];
|
|
613
|
-
readonly internalType: "struct TierParams";
|
|
742
|
+
readonly internalType: "struct TierParams[]";
|
|
614
743
|
readonly name: "_tierParams";
|
|
615
|
-
readonly type: "tuple";
|
|
744
|
+
readonly type: "tuple[]";
|
|
616
745
|
}];
|
|
617
|
-
readonly name: "
|
|
746
|
+
readonly name: "alterTiers";
|
|
618
747
|
readonly outputs: readonly [];
|
|
619
748
|
readonly stateMutability: "nonpayable";
|
|
620
749
|
readonly type: "function";
|
|
@@ -625,13 +754,63 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
625
754
|
readonly type: "address";
|
|
626
755
|
}, {
|
|
627
756
|
readonly internalType: "uint256";
|
|
628
|
-
readonly name: "
|
|
757
|
+
readonly name: "_requestedTierId";
|
|
758
|
+
readonly type: "uint256";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "_requestedShareLimit";
|
|
629
762
|
readonly type: "uint256";
|
|
630
763
|
}];
|
|
631
|
-
readonly name: "
|
|
632
|
-
readonly outputs: readonly [
|
|
764
|
+
readonly name: "changeTier";
|
|
765
|
+
readonly outputs: readonly [{
|
|
766
|
+
readonly internalType: "bool";
|
|
767
|
+
readonly name: "";
|
|
768
|
+
readonly type: "bool";
|
|
769
|
+
}];
|
|
633
770
|
readonly stateMutability: "nonpayable";
|
|
634
771
|
readonly type: "function";
|
|
772
|
+
}, {
|
|
773
|
+
readonly inputs: readonly [{
|
|
774
|
+
readonly internalType: "bytes";
|
|
775
|
+
readonly name: "_callData";
|
|
776
|
+
readonly type: "bytes";
|
|
777
|
+
}, {
|
|
778
|
+
readonly internalType: "bytes32";
|
|
779
|
+
readonly name: "_role";
|
|
780
|
+
readonly type: "bytes32";
|
|
781
|
+
}];
|
|
782
|
+
readonly name: "confirmation";
|
|
783
|
+
readonly outputs: readonly [{
|
|
784
|
+
readonly internalType: "uint256";
|
|
785
|
+
readonly name: "";
|
|
786
|
+
readonly type: "uint256";
|
|
787
|
+
}];
|
|
788
|
+
readonly stateMutability: "view";
|
|
789
|
+
readonly type: "function";
|
|
790
|
+
}, {
|
|
791
|
+
readonly inputs: readonly [{
|
|
792
|
+
readonly internalType: "address";
|
|
793
|
+
readonly name: "_vault";
|
|
794
|
+
readonly type: "address";
|
|
795
|
+
}];
|
|
796
|
+
readonly name: "effectiveShareLimit";
|
|
797
|
+
readonly outputs: readonly [{
|
|
798
|
+
readonly internalType: "uint256";
|
|
799
|
+
readonly name: "";
|
|
800
|
+
readonly type: "uint256";
|
|
801
|
+
}];
|
|
802
|
+
readonly stateMutability: "view";
|
|
803
|
+
readonly type: "function";
|
|
804
|
+
}, {
|
|
805
|
+
readonly inputs: readonly [];
|
|
806
|
+
readonly name: "getConfirmExpiry";
|
|
807
|
+
readonly outputs: readonly [{
|
|
808
|
+
readonly internalType: "uint256";
|
|
809
|
+
readonly name: "";
|
|
810
|
+
readonly type: "uint256";
|
|
811
|
+
}];
|
|
812
|
+
readonly stateMutability: "view";
|
|
813
|
+
readonly type: "function";
|
|
635
814
|
}, {
|
|
636
815
|
readonly inputs: readonly [{
|
|
637
816
|
readonly internalType: "bytes32";
|
|
@@ -727,9 +906,9 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
727
906
|
readonly name: "liabilityShares";
|
|
728
907
|
readonly type: "uint96";
|
|
729
908
|
}, {
|
|
730
|
-
readonly internalType: "
|
|
909
|
+
readonly internalType: "uint256[]";
|
|
731
910
|
readonly name: "tierIds";
|
|
732
|
-
readonly type: "
|
|
911
|
+
readonly type: "uint256[]";
|
|
733
912
|
}];
|
|
734
913
|
readonly internalType: "struct OperatorGrid.Group";
|
|
735
914
|
readonly name: "";
|
|
@@ -775,7 +954,15 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
775
954
|
readonly type: "uint256";
|
|
776
955
|
}, {
|
|
777
956
|
readonly internalType: "uint256";
|
|
778
|
-
readonly name: "
|
|
957
|
+
readonly name: "infraFeeBP";
|
|
958
|
+
readonly type: "uint256";
|
|
959
|
+
}, {
|
|
960
|
+
readonly internalType: "uint256";
|
|
961
|
+
readonly name: "liquidityFeeBP";
|
|
962
|
+
readonly type: "uint256";
|
|
963
|
+
}, {
|
|
964
|
+
readonly internalType: "uint256";
|
|
965
|
+
readonly name: "reservationFeeBP";
|
|
779
966
|
readonly type: "uint256";
|
|
780
967
|
}];
|
|
781
968
|
readonly internalType: "struct TierParams";
|
|
@@ -813,11 +1000,11 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
813
1000
|
}, {
|
|
814
1001
|
readonly inputs: readonly [{
|
|
815
1002
|
readonly internalType: "address";
|
|
816
|
-
readonly name: "
|
|
1003
|
+
readonly name: "_vault";
|
|
817
1004
|
readonly type: "address";
|
|
818
1005
|
}, {
|
|
819
1006
|
readonly internalType: "uint256";
|
|
820
|
-
readonly name: "
|
|
1007
|
+
readonly name: "_amount";
|
|
821
1008
|
readonly type: "uint256";
|
|
822
1009
|
}];
|
|
823
1010
|
readonly name: "onBurnedShares";
|
|
@@ -827,63 +1014,17 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
827
1014
|
}, {
|
|
828
1015
|
readonly inputs: readonly [{
|
|
829
1016
|
readonly internalType: "address";
|
|
830
|
-
readonly name: "
|
|
1017
|
+
readonly name: "_vault";
|
|
831
1018
|
readonly type: "address";
|
|
832
1019
|
}, {
|
|
833
1020
|
readonly internalType: "uint256";
|
|
834
|
-
readonly name: "
|
|
1021
|
+
readonly name: "_amount";
|
|
835
1022
|
readonly type: "uint256";
|
|
836
1023
|
}];
|
|
837
1024
|
readonly name: "onMintedShares";
|
|
838
1025
|
readonly outputs: readonly [];
|
|
839
1026
|
readonly stateMutability: "nonpayable";
|
|
840
1027
|
readonly type: "function";
|
|
841
|
-
}, {
|
|
842
|
-
readonly inputs: readonly [{
|
|
843
|
-
readonly internalType: "address";
|
|
844
|
-
readonly name: "_nodeOperator";
|
|
845
|
-
readonly type: "address";
|
|
846
|
-
}, {
|
|
847
|
-
readonly internalType: "uint256";
|
|
848
|
-
readonly name: "_index";
|
|
849
|
-
readonly type: "uint256";
|
|
850
|
-
}];
|
|
851
|
-
readonly name: "pendingRequest";
|
|
852
|
-
readonly outputs: readonly [{
|
|
853
|
-
readonly internalType: "address";
|
|
854
|
-
readonly name: "";
|
|
855
|
-
readonly type: "address";
|
|
856
|
-
}];
|
|
857
|
-
readonly stateMutability: "view";
|
|
858
|
-
readonly type: "function";
|
|
859
|
-
}, {
|
|
860
|
-
readonly inputs: readonly [{
|
|
861
|
-
readonly internalType: "address";
|
|
862
|
-
readonly name: "_nodeOperator";
|
|
863
|
-
readonly type: "address";
|
|
864
|
-
}];
|
|
865
|
-
readonly name: "pendingRequests";
|
|
866
|
-
readonly outputs: readonly [{
|
|
867
|
-
readonly internalType: "address[]";
|
|
868
|
-
readonly name: "";
|
|
869
|
-
readonly type: "address[]";
|
|
870
|
-
}];
|
|
871
|
-
readonly stateMutability: "view";
|
|
872
|
-
readonly type: "function";
|
|
873
|
-
}, {
|
|
874
|
-
readonly inputs: readonly [{
|
|
875
|
-
readonly internalType: "address";
|
|
876
|
-
readonly name: "_nodeOperator";
|
|
877
|
-
readonly type: "address";
|
|
878
|
-
}];
|
|
879
|
-
readonly name: "pendingRequestsCount";
|
|
880
|
-
readonly outputs: readonly [{
|
|
881
|
-
readonly internalType: "uint256";
|
|
882
|
-
readonly name: "";
|
|
883
|
-
readonly type: "uint256";
|
|
884
|
-
}];
|
|
885
|
-
readonly stateMutability: "view";
|
|
886
|
-
readonly type: "function";
|
|
887
1028
|
}, {
|
|
888
1029
|
readonly inputs: readonly [{
|
|
889
1030
|
readonly internalType: "address";
|
|
@@ -918,7 +1059,15 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
918
1059
|
readonly type: "uint256";
|
|
919
1060
|
}, {
|
|
920
1061
|
readonly internalType: "uint256";
|
|
921
|
-
readonly name: "
|
|
1062
|
+
readonly name: "infraFeeBP";
|
|
1063
|
+
readonly type: "uint256";
|
|
1064
|
+
}, {
|
|
1065
|
+
readonly internalType: "uint256";
|
|
1066
|
+
readonly name: "liquidityFeeBP";
|
|
1067
|
+
readonly type: "uint256";
|
|
1068
|
+
}, {
|
|
1069
|
+
readonly internalType: "uint256";
|
|
1070
|
+
readonly name: "reservationFeeBP";
|
|
922
1071
|
readonly type: "uint256";
|
|
923
1072
|
}];
|
|
924
1073
|
readonly internalType: "struct TierParams[]";
|
|
@@ -948,12 +1097,8 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
948
1097
|
readonly internalType: "address";
|
|
949
1098
|
readonly name: "_vault";
|
|
950
1099
|
readonly type: "address";
|
|
951
|
-
}, {
|
|
952
|
-
readonly internalType: "uint256";
|
|
953
|
-
readonly name: "_tierId";
|
|
954
|
-
readonly type: "uint256";
|
|
955
1100
|
}];
|
|
956
|
-
readonly name: "
|
|
1101
|
+
readonly name: "resetVaultTier";
|
|
957
1102
|
readonly outputs: readonly [];
|
|
958
1103
|
readonly stateMutability: "nonpayable";
|
|
959
1104
|
readonly type: "function";
|
|
@@ -1015,7 +1160,15 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
1015
1160
|
readonly type: "uint16";
|
|
1016
1161
|
}, {
|
|
1017
1162
|
readonly internalType: "uint16";
|
|
1018
|
-
readonly name: "
|
|
1163
|
+
readonly name: "infraFeeBP";
|
|
1164
|
+
readonly type: "uint16";
|
|
1165
|
+
}, {
|
|
1166
|
+
readonly internalType: "uint16";
|
|
1167
|
+
readonly name: "liquidityFeeBP";
|
|
1168
|
+
readonly type: "uint16";
|
|
1169
|
+
}, {
|
|
1170
|
+
readonly internalType: "uint16";
|
|
1171
|
+
readonly name: "reservationFeeBP";
|
|
1019
1172
|
readonly type: "uint16";
|
|
1020
1173
|
}];
|
|
1021
1174
|
readonly internalType: "struct OperatorGrid.Tier";
|
|
@@ -1024,6 +1177,16 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
1024
1177
|
}];
|
|
1025
1178
|
readonly stateMutability: "view";
|
|
1026
1179
|
readonly type: "function";
|
|
1180
|
+
}, {
|
|
1181
|
+
readonly inputs: readonly [];
|
|
1182
|
+
readonly name: "tiersCount";
|
|
1183
|
+
readonly outputs: readonly [{
|
|
1184
|
+
readonly internalType: "uint256";
|
|
1185
|
+
readonly name: "";
|
|
1186
|
+
readonly type: "uint256";
|
|
1187
|
+
}];
|
|
1188
|
+
readonly stateMutability: "view";
|
|
1189
|
+
readonly type: "function";
|
|
1027
1190
|
}, {
|
|
1028
1191
|
readonly inputs: readonly [{
|
|
1029
1192
|
readonly internalType: "address";
|
|
@@ -1041,7 +1204,7 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
1041
1204
|
}, {
|
|
1042
1205
|
readonly inputs: readonly [{
|
|
1043
1206
|
readonly internalType: "address";
|
|
1044
|
-
readonly name: "
|
|
1207
|
+
readonly name: "_vault";
|
|
1045
1208
|
readonly type: "address";
|
|
1046
1209
|
}];
|
|
1047
1210
|
readonly name: "vaultInfo";
|
|
@@ -1067,7 +1230,15 @@ export declare const OperatorGridAbi: readonly [{
|
|
|
1067
1230
|
readonly type: "uint256";
|
|
1068
1231
|
}, {
|
|
1069
1232
|
readonly internalType: "uint256";
|
|
1070
|
-
readonly name: "
|
|
1233
|
+
readonly name: "infraFeeBP";
|
|
1234
|
+
readonly type: "uint256";
|
|
1235
|
+
}, {
|
|
1236
|
+
readonly internalType: "uint256";
|
|
1237
|
+
readonly name: "liquidityFeeBP";
|
|
1238
|
+
readonly type: "uint256";
|
|
1239
|
+
}, {
|
|
1240
|
+
readonly internalType: "uint256";
|
|
1241
|
+
readonly name: "reservationFeeBP";
|
|
1071
1242
|
readonly type: "uint256";
|
|
1072
1243
|
}];
|
|
1073
1244
|
readonly stateMutability: "view";
|