@lidofinance/lsv-cli 1.0.0-alpha.47 → 1.0.0-alpha.49
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 +1 -1
- package/dist/abi/Dashboard.d.ts +160 -0
- package/dist/abi/Dashboard.js +2 -0
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +166 -5
- package/dist/abi/OperatorGrid.js +15 -12
- package/dist/abi/OperatorGrid.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +504 -0
- package/dist/abi/VaultFactory.js +4 -0
- package/dist/abi/VaultFactory.js.map +1 -1
- package/dist/abi/VaultHub.d.ts +451 -106
- package/dist/abi/VaultHub.js +26 -23
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/command/index.js +2 -0
- package/dist/command/index.js.map +1 -1
- package/dist/configs/constants.d.ts +7 -9
- package/dist/contracts/vault-factory.d.ts +9414 -1350
- package/dist/features/dashboard.js +141 -111
- package/dist/features/dashboard.js.map +1 -1
- package/dist/features/index.d.ts +0 -1
- package/dist/features/index.js +0 -1
- package/dist/features/index.js.map +1 -1
- package/dist/features/operator-grid.js +13 -6
- package/dist/features/operator-grid.js.map +1 -1
- package/dist/features/pdg.d.ts +2 -0
- package/dist/features/pdg.js +43 -7
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/vault-factory.d.ts +5 -0
- package/dist/features/vault-factory.js +7 -1
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-hub.js +16 -9
- package/dist/features/vault-hub.js.map +1 -1
- package/dist/features/vault.js +9 -7
- package/dist/features/vault.js.map +1 -1
- package/dist/programs/account/index.d.ts +3 -0
- package/dist/programs/account/index.js +4 -0
- package/dist/programs/account/index.js.map +1 -0
- package/dist/programs/account/main.d.ts +1 -0
- package/dist/programs/account/main.js +5 -0
- package/dist/programs/account/main.js.map +1 -0
- package/dist/programs/account/read.js +109 -0
- package/dist/programs/account/read.js.map +1 -0
- package/dist/programs/account/write.js +65 -0
- package/dist/programs/account/write.js.map +1 -0
- package/dist/programs/dashboard/read.js +15 -6
- package/dist/programs/dashboard/read.js.map +1 -1
- package/dist/programs/dashboard/write.js +83 -11
- package/dist/programs/dashboard/write.js.map +1 -1
- package/dist/programs/hub/read.js +4 -2
- package/dist/programs/hub/read.js.map +1 -1
- package/dist/programs/index.d.ts +2 -2
- package/dist/programs/index.js +2 -2
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/metrics/index.d.ts +2 -0
- package/dist/programs/metrics/index.js +3 -0
- package/dist/programs/metrics/index.js.map +1 -0
- package/dist/programs/metrics/main.d.ts +1 -0
- package/dist/programs/metrics/main.js +3 -0
- package/dist/programs/metrics/main.js.map +1 -0
- package/dist/programs/metrics/read.d.ts +1 -0
- package/dist/programs/metrics/read.js +96 -0
- package/dist/programs/metrics/read.js.map +1 -0
- package/dist/programs/operator-grid/read.js +8 -2
- package/dist/programs/operator-grid/read.js.map +1 -1
- package/dist/programs/pdg/config.js +1 -0
- package/dist/programs/pdg/config.js.map +1 -1
- package/dist/programs/pdg/read.js +18 -4
- package/dist/programs/pdg/read.js.map +1 -1
- package/dist/programs/pdg/write.js +82 -78
- package/dist/programs/pdg/write.js.map +1 -1
- package/dist/programs/pdg-helpers.js +32 -27
- package/dist/programs/pdg-helpers.js.map +1 -1
- package/dist/programs/report/write.js +2 -37
- package/dist/programs/report/write.js.map +1 -1
- package/dist/programs/vault/write.js +13 -13
- package/dist/programs/vault/write.js.map +1 -1
- package/dist/programs/vault-factory/write.js +16 -2
- package/dist/programs/vault-factory/write.js.map +1 -1
- package/dist/programs/vault-viewer/read.js +31 -16
- package/dist/programs/vault-viewer/read.js.map +1 -1
- package/dist/providers/wallet.d.ts +11 -11
- package/dist/providers/wallet.js +3 -2
- package/dist/providers/wallet.js.map +1 -1
- package/dist/tests/__mocks__/@lodestar/types.d.ts +1 -0
- package/dist/tests/__mocks__/@lodestar/types.js +6 -0
- package/dist/tests/__mocks__/@lodestar/types.js.map +1 -0
- package/dist/tests/utils/arguments.test.d.ts +1 -0
- package/dist/tests/utils/arguments.test.js +92 -0
- package/dist/tests/utils/arguments.test.js.map +1 -0
- package/dist/tests/utils/calculate-overview.test.d.ts +1 -0
- package/dist/tests/utils/calculate-overview.test.js +30 -0
- package/dist/tests/utils/calculate-overview.test.js.map +1 -0
- package/dist/tests/utils/data-validators.test.d.ts +1 -0
- package/dist/tests/utils/data-validators.test.js +56 -0
- package/dist/tests/utils/data-validators.test.js.map +1 -0
- package/dist/tests/utils/error-handler.test.d.ts +1 -0
- package/dist/tests/utils/error-handler.test.js +51 -0
- package/dist/tests/utils/error-handler.test.js.map +1 -0
- package/dist/tests/utils/fetchCL.test.d.ts +1 -0
- package/dist/tests/utils/fetchCL.test.js +57 -0
- package/dist/tests/utils/fetchCL.test.js.map +1 -0
- package/dist/tests/utils/get-commands.test.d.ts +1 -0
- package/dist/tests/utils/get-commands.test.js +19 -0
- package/dist/tests/utils/get-commands.test.js.map +1 -0
- package/dist/tests/utils/get-deposit-data-root.test.d.ts +1 -0
- package/dist/tests/utils/get-deposit-data-root.test.js +31 -0
- package/dist/tests/utils/get-deposit-data-root.test.js.map +1 -0
- package/dist/tests/utils/get-value.test.d.ts +1 -0
- package/dist/tests/utils/get-value.test.js +13 -0
- package/dist/tests/utils/get-value.test.js.map +1 -0
- package/dist/tests/utils/health.test.d.ts +1 -0
- package/dist/tests/utils/health.test.js +22 -0
- package/dist/tests/utils/health.test.js.map +1 -0
- package/dist/tests/utils/interrupt-handler.test.d.ts +1 -0
- package/dist/tests/utils/interrupt-handler.test.js +15 -0
- package/dist/tests/utils/interrupt-handler.test.js.map +1 -0
- package/dist/tests/utils/ipfs.test.d.ts +1 -0
- package/dist/tests/utils/ipfs.test.js +98 -0
- package/dist/tests/utils/ipfs.test.js.map +1 -0
- package/dist/tests/utils/logging.test.d.ts +1 -0
- package/dist/tests/utils/logging.test.js +23 -0
- package/dist/tests/utils/logging.test.js.map +1 -0
- package/dist/tests/utils/report-proof.test.d.ts +1 -0
- package/dist/tests/utils/report-proof.test.js +29 -0
- package/dist/tests/utils/report-proof.test.js.map +1 -0
- package/dist/tests/utils/report-statistic.test.d.ts +1 -0
- package/dist/tests/utils/report-statistic.test.js +247 -0
- package/dist/tests/utils/report-statistic.test.js.map +1 -0
- package/dist/tests/utils/required-lock.test.d.ts +1 -0
- package/dist/tests/utils/required-lock.test.js +26 -0
- package/dist/tests/utils/required-lock.test.js.map +1 -0
- package/dist/tests/utils/resove-path.test.d.ts +1 -0
- package/dist/tests/utils/resove-path.test.js +18 -0
- package/dist/tests/utils/resove-path.test.js.map +1 -0
- package/dist/tests/utils/sleep.test.d.ts +1 -0
- package/dist/tests/utils/sleep.test.js +14 -0
- package/dist/tests/utils/sleep.test.js.map +1 -0
- package/dist/utils/arguments.d.ts +1 -0
- package/dist/utils/arguments.js +4 -1
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/cache.d.ts +18 -0
- package/dist/utils/cache.js +109 -0
- package/dist/utils/cache.js.map +1 -0
- package/dist/utils/calculate-overview-v2.d.ts +28 -0
- package/dist/utils/calculate-overview-v2.js +57 -0
- package/dist/utils/calculate-overview-v2.js.map +1 -0
- package/dist/utils/calculate-overview.d.ts +1 -0
- package/dist/utils/calculate-overview.js +4 -1
- package/dist/utils/calculate-overview.js.map +1 -1
- package/dist/utils/charts/blessed/charts-apr.d.ts +91 -0
- package/dist/utils/charts/blessed/charts-apr.js +119 -0
- package/dist/utils/charts/blessed/charts-apr.js.map +1 -0
- package/dist/utils/charts/blessed/charts-rewards.d.ts +67 -0
- package/dist/utils/charts/blessed/charts-rewards.js +106 -0
- package/dist/utils/charts/blessed/charts-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/constants.d.ts +22 -0
- package/dist/utils/charts/blessed/constants.js +23 -0
- package/dist/utils/charts/blessed/constants.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.d.ts +19 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.js +34 -0
- package/dist/utils/charts/blessed/datasets/bottom-line.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/efficiency.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/efficiency.js +33 -0
- package/dist/utils/charts/blessed/datasets/efficiency.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.js +33 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.d.ts +24 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.js +39 -0
- package/dist/utils/charts/blessed/datasets/gross-staking-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/index.d.ts +9 -0
- package/dist/utils/charts/blessed/datasets/index.js +10 -0
- package/dist/utils/charts/blessed/datasets/index.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.d.ts +19 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.js +34 -0
- package/dist/utils/charts/blessed/datasets/lido-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.js +33 -0
- package/dist/utils/charts/blessed/datasets/net-staking-apr.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.d.ts +18 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.js +33 -0
- package/dist/utils/charts/blessed/datasets/net-staking-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.d.ts +24 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.js +39 -0
- package/dist/utils/charts/blessed/datasets/node-operator-rewards.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.d.ts +33 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js +133 -0
- package/dist/utils/charts/blessed/datasets/prepare-metrics.js.map +1 -0
- package/dist/utils/charts/blessed/datasets/types.d.ts +4 -0
- package/dist/utils/charts/blessed/datasets/types.js +2 -0
- package/dist/utils/charts/blessed/datasets/types.js.map +1 -0
- package/dist/utils/charts/blessed/index.d.ts +3 -0
- package/dist/utils/charts/blessed/index.js +4 -0
- package/dist/utils/charts/blessed/index.js.map +1 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.d.ts +13 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.js +19 -0
- package/dist/utils/charts/blessed/net-vs-lido-apr.js.map +1 -0
- package/dist/utils/charts/blessed/utils.d.ts +62 -0
- package/dist/utils/charts/blessed/utils.js +84 -0
- package/dist/utils/charts/blessed/utils.js.map +1 -0
- package/dist/utils/charts/index.d.ts +2 -0
- package/dist/utils/charts/index.js +2 -0
- package/dist/utils/charts/index.js.map +1 -1
- package/dist/utils/charts/metrics.d.ts +16 -0
- package/dist/utils/charts/metrics.js +160 -0
- package/dist/utils/charts/metrics.js.map +1 -0
- package/dist/utils/charts/overview.js +5 -5
- package/dist/utils/charts/overview.js.map +1 -1
- package/dist/utils/charts/simple/index.d.ts +1 -0
- package/dist/utils/charts/simple/index.js +2 -0
- package/dist/utils/charts/simple/index.js.map +1 -0
- package/dist/utils/charts/simple/simple-charts.d.ts +2 -0
- package/dist/utils/charts/simple/simple-charts.js +81 -0
- package/dist/utils/charts/simple/simple-charts.js.map +1 -0
- package/dist/utils/commands/confirmations.d.ts +21 -0
- package/dist/utils/commands/confirmations.js +99 -0
- package/dist/utils/commands/confirmations.js.map +1 -0
- package/dist/utils/commands/dashboard.d.ts +2 -2
- package/dist/utils/commands/dashboard.js +84 -47
- package/dist/utils/commands/dashboard.js.map +1 -1
- package/dist/utils/commands/index.d.ts +3 -0
- package/dist/utils/commands/index.js +3 -0
- package/dist/utils/commands/index.js.map +1 -1
- package/dist/utils/commands/report.d.ts +7 -0
- package/dist/utils/commands/report.js +41 -0
- package/dist/utils/commands/report.js.map +1 -0
- package/dist/utils/commands/utils.d.ts +6 -0
- package/dist/utils/commands/utils.js +57 -0
- package/dist/utils/commands/utils.js.map +1 -0
- package/dist/utils/contract.d.ts +10 -1
- package/dist/utils/contract.js +61 -22
- package/dist/utils/contract.js.map +1 -1
- package/dist/utils/error-handler.d.ts +1 -1
- package/dist/utils/error-handler.js +2 -2
- package/dist/utils/error-handler.js.map +1 -1
- package/dist/utils/get-deposit-data-root.d.ts +1 -1
- package/dist/utils/get-deposit-data-root.js +3 -6
- package/dist/utils/get-deposit-data-root.js.map +1 -1
- package/dist/utils/health/health-utils.js +6 -6
- package/dist/utils/health/health-utils.js.map +1 -1
- package/dist/utils/index.d.ts +7 -1
- package/dist/utils/index.js +7 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/ipfs.d.ts +1 -0
- package/dist/utils/ipfs.js +29 -4
- package/dist/utils/ipfs.js.map +1 -1
- package/dist/utils/lido-apr.d.ts +2 -0
- package/dist/utils/lido-apr.js +8 -0
- package/dist/utils/lido-apr.js.map +1 -0
- package/dist/utils/logging/console.d.ts +9 -1
- package/dist/utils/logging/console.js +15 -2
- package/dist/utils/logging/console.js.map +1 -1
- package/dist/utils/logging/constants.d.ts +2 -0
- package/dist/utils/logging/constants.js +11 -5
- package/dist/utils/logging/constants.js.map +1 -1
- package/dist/utils/prompts/confirmations.d.ts +2 -0
- package/dist/utils/prompts/confirmations.js +18 -0
- package/dist/utils/prompts/confirmations.js.map +1 -0
- package/dist/utils/prompts/dashboard.d.ts +4 -0
- package/dist/utils/prompts/dashboard.js +20 -38
- package/dist/utils/prompts/dashboard.js.map +1 -1
- package/dist/utils/prompts/default.d.ts +4 -3
- package/dist/utils/prompts/default.js +3 -0
- package/dist/utils/prompts/default.js.map +1 -1
- package/dist/utils/prompts/index.d.ts +1 -0
- package/dist/utils/prompts/index.js +1 -0
- package/dist/utils/prompts/index.js.map +1 -1
- package/dist/utils/prompts/operations.js +5 -1
- package/dist/utils/prompts/operations.js.map +1 -1
- package/dist/utils/proof/first-validator-gindex.js +6 -1
- package/dist/utils/proof/first-validator-gindex.js.map +1 -1
- package/dist/utils/proof/merkle-utils.d.ts +2 -1
- package/dist/utils/proof/merkle-utils.js.map +1 -1
- package/dist/utils/proof/proofs.d.ts +5 -280
- package/dist/utils/proof/proofs.js.map +1 -1
- package/dist/utils/rebase-rewards.d.ts +8 -0
- package/dist/utils/rebase-rewards.js +6 -0
- package/dist/utils/rebase-rewards.js.map +1 -0
- package/dist/utils/report/index.d.ts +3 -0
- package/dist/utils/report/index.js +4 -0
- package/dist/utils/report/index.js.map +1 -0
- package/dist/utils/report/report-statistic.d.ts +52 -0
- package/dist/utils/report/report-statistic.js +128 -0
- package/dist/utils/report/report-statistic.js.map +1 -0
- package/dist/utils/{report.d.ts → report/report.d.ts} +13 -11
- package/dist/utils/report/report.js +146 -0
- package/dist/utils/report/report.js.map +1 -0
- package/dist/utils/report/statistic-data.d.ts +32 -0
- package/dist/utils/report/statistic-data.js +29 -0
- package/dist/utils/report/statistic-data.js.map +1 -0
- package/dist/utils/share-rate.d.ts +1 -0
- package/dist/utils/share-rate.js +16 -0
- package/dist/utils/share-rate.js.map +1 -0
- package/dist/utils/spinner/spinners.js +5 -2
- package/dist/utils/spinner/spinners.js.map +1 -1
- package/dist/utils/spinner/spinners.json +119 -0
- package/dist/version/index.js +1 -1
- package/package.json +17 -4
- package/dist/features/voting.d.ts +0 -7
- package/dist/features/voting.js +0 -133
- package/dist/features/voting.js.map +0 -1
- package/dist/programs/account.js +0 -147
- package/dist/programs/account.js.map +0 -1
- package/dist/programs/voting.js +0 -18
- package/dist/programs/voting.js.map +0 -1
- package/dist/utils/report.js +0 -73
- package/dist/utils/report.js.map +0 -1
- /package/dist/programs/{account.d.ts → account/read.d.ts} +0 -0
- /package/dist/programs/{voting.d.ts → account/write.d.ts} +0 -0
package/dist/abi/VaultHub.d.ts
CHANGED
|
@@ -1,54 +1,102 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const VaultHubErrorsAbi: readonly [{
|
|
2
2
|
readonly inputs: readonly [];
|
|
3
|
-
readonly name: "
|
|
3
|
+
readonly name: "AccessControlBadConfirmation";
|
|
4
4
|
readonly type: "error";
|
|
5
5
|
}, {
|
|
6
|
-
readonly inputs: readonly [
|
|
7
|
-
|
|
6
|
+
readonly inputs: readonly [{
|
|
7
|
+
readonly internalType: "address";
|
|
8
|
+
readonly name: "account";
|
|
9
|
+
readonly type: "address";
|
|
10
|
+
}, {
|
|
11
|
+
readonly internalType: "bytes32";
|
|
12
|
+
readonly name: "neededRole";
|
|
13
|
+
readonly type: "bytes32";
|
|
14
|
+
}];
|
|
15
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
8
16
|
readonly type: "error";
|
|
9
17
|
}, {
|
|
10
|
-
readonly inputs: readonly [
|
|
11
|
-
|
|
18
|
+
readonly inputs: readonly [{
|
|
19
|
+
readonly internalType: "address";
|
|
20
|
+
readonly name: "vault";
|
|
21
|
+
readonly type: "address";
|
|
22
|
+
}, {
|
|
23
|
+
readonly internalType: "uint256";
|
|
24
|
+
readonly name: "index";
|
|
25
|
+
readonly type: "uint256";
|
|
26
|
+
}];
|
|
27
|
+
readonly name: "AlreadyConnected";
|
|
12
28
|
readonly type: "error";
|
|
13
29
|
}, {
|
|
14
|
-
readonly inputs: readonly [
|
|
15
|
-
|
|
30
|
+
readonly inputs: readonly [{
|
|
31
|
+
readonly internalType: "bytes32";
|
|
32
|
+
readonly name: "codehash";
|
|
33
|
+
readonly type: "bytes32";
|
|
34
|
+
}];
|
|
35
|
+
readonly name: "AlreadyExists";
|
|
16
36
|
readonly type: "error";
|
|
17
37
|
}, {
|
|
18
38
|
readonly inputs: readonly [{
|
|
19
|
-
readonly internalType: "
|
|
20
|
-
readonly name: "
|
|
21
|
-
readonly type: "
|
|
39
|
+
readonly internalType: "address";
|
|
40
|
+
readonly name: "vault";
|
|
41
|
+
readonly type: "address";
|
|
22
42
|
}];
|
|
23
|
-
readonly name: "
|
|
43
|
+
readonly name: "AlreadyHealthy";
|
|
24
44
|
readonly type: "error";
|
|
25
45
|
}, {
|
|
26
46
|
readonly inputs: readonly [{
|
|
47
|
+
readonly internalType: "address";
|
|
48
|
+
readonly name: "vault";
|
|
49
|
+
readonly type: "address";
|
|
50
|
+
}, {
|
|
27
51
|
readonly internalType: "uint256";
|
|
28
|
-
readonly name: "
|
|
52
|
+
readonly name: "forcedRebalanceThresholdBP";
|
|
53
|
+
readonly type: "uint256";
|
|
54
|
+
}, {
|
|
55
|
+
readonly internalType: "uint256";
|
|
56
|
+
readonly name: "maxForcedRebalanceThresholdBP";
|
|
29
57
|
readonly type: "uint256";
|
|
30
58
|
}];
|
|
31
|
-
readonly name: "
|
|
59
|
+
readonly name: "ForcedRebalanceThresholdTooHigh";
|
|
32
60
|
readonly type: "error";
|
|
33
61
|
}, {
|
|
34
62
|
readonly inputs: readonly [{
|
|
63
|
+
readonly internalType: "address";
|
|
64
|
+
readonly name: "vault";
|
|
65
|
+
readonly type: "address";
|
|
66
|
+
}, {
|
|
35
67
|
readonly internalType: "uint256";
|
|
36
|
-
readonly name: "
|
|
68
|
+
readonly name: "amount";
|
|
37
69
|
readonly type: "uint256";
|
|
70
|
+
}];
|
|
71
|
+
readonly name: "InsufficientSharesToBurn";
|
|
72
|
+
readonly type: "error";
|
|
73
|
+
}, {
|
|
74
|
+
readonly inputs: readonly [{
|
|
75
|
+
readonly internalType: "address";
|
|
76
|
+
readonly name: "vault";
|
|
77
|
+
readonly type: "address";
|
|
38
78
|
}, {
|
|
39
79
|
readonly internalType: "uint256";
|
|
40
|
-
readonly name: "
|
|
80
|
+
readonly name: "totalValue";
|
|
41
81
|
readonly type: "uint256";
|
|
42
82
|
}];
|
|
43
|
-
readonly name: "
|
|
83
|
+
readonly name: "InsufficientTotalValueToMint";
|
|
44
84
|
readonly type: "error";
|
|
45
85
|
}, {
|
|
46
86
|
readonly inputs: readonly [{
|
|
47
87
|
readonly internalType: "address";
|
|
48
|
-
readonly name: "
|
|
88
|
+
readonly name: "vault";
|
|
49
89
|
readonly type: "address";
|
|
90
|
+
}, {
|
|
91
|
+
readonly internalType: "uint256";
|
|
92
|
+
readonly name: "newFees";
|
|
93
|
+
readonly type: "uint256";
|
|
94
|
+
}, {
|
|
95
|
+
readonly internalType: "uint256";
|
|
96
|
+
readonly name: "oldFees";
|
|
97
|
+
readonly type: "uint256";
|
|
50
98
|
}];
|
|
51
|
-
readonly name: "
|
|
99
|
+
readonly name: "InvalidFees";
|
|
52
100
|
readonly type: "error";
|
|
53
101
|
}, {
|
|
54
102
|
readonly inputs: readonly [];
|
|
@@ -56,35 +104,23 @@ export declare const VaultHubAbi: readonly [{
|
|
|
56
104
|
readonly type: "error";
|
|
57
105
|
}, {
|
|
58
106
|
readonly inputs: readonly [];
|
|
59
|
-
readonly name: "
|
|
107
|
+
readonly name: "InvalidProof";
|
|
60
108
|
readonly type: "error";
|
|
61
109
|
}, {
|
|
62
110
|
readonly inputs: readonly [];
|
|
63
|
-
readonly name: "
|
|
111
|
+
readonly name: "InvalidPubkeysLength";
|
|
64
112
|
readonly type: "error";
|
|
65
113
|
}, {
|
|
66
114
|
readonly inputs: readonly [{
|
|
67
|
-
readonly internalType: "
|
|
68
|
-
readonly name: "
|
|
69
|
-
readonly type: "
|
|
115
|
+
readonly internalType: "address";
|
|
116
|
+
readonly name: "vault";
|
|
117
|
+
readonly type: "address";
|
|
70
118
|
}, {
|
|
71
119
|
readonly internalType: "uint256";
|
|
72
|
-
readonly name: "
|
|
120
|
+
readonly name: "liabilityShares";
|
|
73
121
|
readonly type: "uint256";
|
|
74
122
|
}];
|
|
75
|
-
readonly name: "
|
|
76
|
-
readonly type: "error";
|
|
77
|
-
}, {
|
|
78
|
-
readonly inputs: readonly [];
|
|
79
|
-
readonly name: "NewLockedExceedsTotalValue";
|
|
80
|
-
readonly type: "error";
|
|
81
|
-
}, {
|
|
82
|
-
readonly inputs: readonly [];
|
|
83
|
-
readonly name: "NewLockedNotGreaterThanCurrent";
|
|
84
|
-
readonly type: "error";
|
|
85
|
-
}, {
|
|
86
|
-
readonly inputs: readonly [];
|
|
87
|
-
readonly name: "NoWithdrawalRequests";
|
|
123
|
+
readonly name: "NoLiabilitySharesShouldBeLeft";
|
|
88
124
|
readonly type: "error";
|
|
89
125
|
}, {
|
|
90
126
|
readonly inputs: readonly [{
|
|
@@ -93,148 +129,221 @@ export declare const VaultHubAbi: readonly [{
|
|
|
93
129
|
readonly type: "string";
|
|
94
130
|
}, {
|
|
95
131
|
readonly internalType: "address";
|
|
96
|
-
readonly name: "
|
|
132
|
+
readonly name: "addr";
|
|
97
133
|
readonly type: "address";
|
|
98
134
|
}];
|
|
99
135
|
readonly name: "NotAuthorized";
|
|
100
136
|
readonly type: "error";
|
|
101
|
-
}, {
|
|
102
|
-
readonly inputs: readonly [];
|
|
103
|
-
readonly name: "NotInitializing";
|
|
104
|
-
readonly type: "error";
|
|
105
137
|
}, {
|
|
106
138
|
readonly inputs: readonly [{
|
|
107
139
|
readonly internalType: "address";
|
|
108
|
-
readonly name: "
|
|
140
|
+
readonly name: "vault";
|
|
109
141
|
readonly type: "address";
|
|
110
142
|
}];
|
|
111
|
-
readonly name: "
|
|
143
|
+
readonly name: "NotConnectedToHub";
|
|
112
144
|
readonly type: "error";
|
|
113
145
|
}, {
|
|
114
|
-
readonly inputs: readonly [
|
|
115
|
-
|
|
116
|
-
readonly name: "account";
|
|
117
|
-
readonly type: "address";
|
|
118
|
-
}];
|
|
119
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
146
|
+
readonly inputs: readonly [];
|
|
147
|
+
readonly name: "NotInitializing";
|
|
120
148
|
readonly type: "error";
|
|
121
149
|
}, {
|
|
122
150
|
readonly inputs: readonly [];
|
|
123
|
-
readonly name: "
|
|
151
|
+
readonly name: "PauseUntilMustBeInFuture";
|
|
152
|
+
readonly type: "error";
|
|
153
|
+
}, {
|
|
154
|
+
readonly inputs: readonly [];
|
|
155
|
+
readonly name: "PausedExpected";
|
|
124
156
|
readonly type: "error";
|
|
125
157
|
}, {
|
|
126
158
|
readonly inputs: readonly [{
|
|
127
159
|
readonly internalType: "uint256";
|
|
128
|
-
readonly name: "
|
|
160
|
+
readonly name: "relativeShareLimitBP";
|
|
129
161
|
readonly type: "uint256";
|
|
130
162
|
}, {
|
|
131
163
|
readonly internalType: "uint256";
|
|
132
|
-
readonly name: "
|
|
164
|
+
readonly name: "totalBasisPoints";
|
|
133
165
|
readonly type: "uint256";
|
|
134
166
|
}];
|
|
135
|
-
readonly name: "
|
|
136
|
-
readonly type: "error";
|
|
137
|
-
}, {
|
|
138
|
-
readonly inputs: readonly [];
|
|
139
|
-
readonly name: "ReportStaled";
|
|
167
|
+
readonly name: "RelativeShareLimitBPTooHigh";
|
|
140
168
|
readonly type: "error";
|
|
141
169
|
}, {
|
|
142
170
|
readonly inputs: readonly [{
|
|
143
|
-
readonly internalType: "
|
|
144
|
-
readonly name: "
|
|
145
|
-
readonly type: "
|
|
171
|
+
readonly internalType: "address";
|
|
172
|
+
readonly name: "vault";
|
|
173
|
+
readonly type: "address";
|
|
146
174
|
}, {
|
|
147
|
-
readonly internalType: "
|
|
148
|
-
readonly name: "
|
|
149
|
-
readonly type: "
|
|
175
|
+
readonly internalType: "uint256";
|
|
176
|
+
readonly name: "reserveRatioBP";
|
|
177
|
+
readonly type: "uint256";
|
|
178
|
+
}, {
|
|
179
|
+
readonly internalType: "uint256";
|
|
180
|
+
readonly name: "maxReserveRatioBP";
|
|
181
|
+
readonly type: "uint256";
|
|
150
182
|
}];
|
|
151
|
-
readonly name: "
|
|
183
|
+
readonly name: "ReserveRatioTooHigh";
|
|
152
184
|
readonly type: "error";
|
|
153
185
|
}, {
|
|
154
186
|
readonly inputs: readonly [];
|
|
155
|
-
readonly name: "
|
|
187
|
+
readonly name: "ResumedExpected";
|
|
156
188
|
readonly type: "error";
|
|
157
189
|
}, {
|
|
158
190
|
readonly inputs: readonly [{
|
|
159
191
|
readonly internalType: "address";
|
|
160
|
-
readonly name: "
|
|
192
|
+
readonly name: "vault";
|
|
161
193
|
readonly type: "address";
|
|
162
194
|
}, {
|
|
163
195
|
readonly internalType: "uint256";
|
|
164
|
-
readonly name: "
|
|
196
|
+
readonly name: "shareLimit";
|
|
165
197
|
readonly type: "uint256";
|
|
166
198
|
}];
|
|
167
|
-
readonly name: "
|
|
168
|
-
readonly type: "error";
|
|
169
|
-
}, {
|
|
170
|
-
readonly inputs: readonly [];
|
|
171
|
-
readonly name: "VaultConnected";
|
|
199
|
+
readonly name: "ShareLimitExceeded";
|
|
172
200
|
readonly type: "error";
|
|
173
201
|
}, {
|
|
174
|
-
readonly inputs: readonly [
|
|
175
|
-
|
|
202
|
+
readonly inputs: readonly [{
|
|
203
|
+
readonly internalType: "address";
|
|
204
|
+
readonly name: "vault";
|
|
205
|
+
readonly type: "address";
|
|
206
|
+
}, {
|
|
207
|
+
readonly internalType: "uint256";
|
|
208
|
+
readonly name: "shareLimit";
|
|
209
|
+
readonly type: "uint256";
|
|
210
|
+
}, {
|
|
211
|
+
readonly internalType: "uint256";
|
|
212
|
+
readonly name: "maxShareLimit";
|
|
213
|
+
readonly type: "uint256";
|
|
214
|
+
}];
|
|
215
|
+
readonly name: "ShareLimitTooHigh";
|
|
176
216
|
readonly type: "error";
|
|
177
217
|
}, {
|
|
178
|
-
readonly inputs: readonly [
|
|
179
|
-
|
|
218
|
+
readonly inputs: readonly [{
|
|
219
|
+
readonly internalType: "address";
|
|
220
|
+
readonly name: "vault";
|
|
221
|
+
readonly type: "address";
|
|
222
|
+
}, {
|
|
223
|
+
readonly internalType: "uint256";
|
|
224
|
+
readonly name: "treasuryFeeBP";
|
|
225
|
+
readonly type: "uint256";
|
|
226
|
+
}, {
|
|
227
|
+
readonly internalType: "uint256";
|
|
228
|
+
readonly name: "maxTreasuryFeeBP";
|
|
229
|
+
readonly type: "uint256";
|
|
230
|
+
}];
|
|
231
|
+
readonly name: "TreasuryFeeTooHigh";
|
|
180
232
|
readonly type: "error";
|
|
181
233
|
}, {
|
|
182
|
-
readonly inputs: readonly [
|
|
183
|
-
|
|
234
|
+
readonly inputs: readonly [{
|
|
235
|
+
readonly internalType: "address";
|
|
236
|
+
readonly name: "vault";
|
|
237
|
+
readonly type: "address";
|
|
238
|
+
}];
|
|
239
|
+
readonly name: "VaultDeauthorized";
|
|
184
240
|
readonly type: "error";
|
|
185
241
|
}, {
|
|
186
|
-
readonly inputs: readonly [
|
|
187
|
-
|
|
242
|
+
readonly inputs: readonly [{
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
readonly name: "depositor";
|
|
245
|
+
readonly type: "address";
|
|
246
|
+
}];
|
|
247
|
+
readonly name: "VaultDepositorNotAllowed";
|
|
188
248
|
readonly type: "error";
|
|
189
249
|
}, {
|
|
190
|
-
readonly inputs: readonly [
|
|
191
|
-
|
|
250
|
+
readonly inputs: readonly [{
|
|
251
|
+
readonly internalType: "address";
|
|
252
|
+
readonly name: "vault";
|
|
253
|
+
readonly type: "address";
|
|
254
|
+
}, {
|
|
255
|
+
readonly internalType: "uint256";
|
|
256
|
+
readonly name: "currentBalance";
|
|
257
|
+
readonly type: "uint256";
|
|
258
|
+
}, {
|
|
259
|
+
readonly internalType: "uint256";
|
|
260
|
+
readonly name: "expectedBalance";
|
|
261
|
+
readonly type: "uint256";
|
|
262
|
+
}];
|
|
263
|
+
readonly name: "VaultInsufficientBalance";
|
|
192
264
|
readonly type: "error";
|
|
193
265
|
}, {
|
|
194
266
|
readonly inputs: readonly [{
|
|
195
267
|
readonly internalType: "address";
|
|
196
|
-
readonly name: "
|
|
268
|
+
readonly name: "vault";
|
|
197
269
|
readonly type: "address";
|
|
198
270
|
}, {
|
|
199
271
|
readonly internalType: "uint256";
|
|
200
|
-
readonly name: "
|
|
272
|
+
readonly name: "currentLocked";
|
|
273
|
+
readonly type: "uint256";
|
|
274
|
+
}, {
|
|
275
|
+
readonly internalType: "uint256";
|
|
276
|
+
readonly name: "expectedLocked";
|
|
201
277
|
readonly type: "uint256";
|
|
202
278
|
}];
|
|
203
|
-
readonly name: "
|
|
279
|
+
readonly name: "VaultInsufficientLocked";
|
|
204
280
|
readonly type: "error";
|
|
205
281
|
}, {
|
|
206
282
|
readonly inputs: readonly [{
|
|
207
|
-
readonly internalType: "
|
|
208
|
-
readonly name: "
|
|
209
|
-
readonly type: "
|
|
283
|
+
readonly internalType: "address";
|
|
284
|
+
readonly name: "vault";
|
|
285
|
+
readonly type: "address";
|
|
286
|
+
}, {
|
|
287
|
+
readonly internalType: "uint256";
|
|
288
|
+
readonly name: "totalValue";
|
|
289
|
+
readonly type: "uint256";
|
|
290
|
+
}, {
|
|
291
|
+
readonly internalType: "uint256";
|
|
292
|
+
readonly name: "liabilityShares";
|
|
293
|
+
readonly type: "uint256";
|
|
294
|
+
}, {
|
|
295
|
+
readonly internalType: "uint256";
|
|
296
|
+
readonly name: "newRebalanceThresholdBP";
|
|
297
|
+
readonly type: "uint256";
|
|
210
298
|
}];
|
|
211
|
-
readonly name: "
|
|
299
|
+
readonly name: "VaultMintingCapacityExceeded";
|
|
212
300
|
readonly type: "error";
|
|
213
301
|
}, {
|
|
214
302
|
readonly inputs: readonly [{
|
|
215
|
-
readonly internalType: "
|
|
216
|
-
readonly name: "
|
|
217
|
-
readonly type: "
|
|
303
|
+
readonly internalType: "address";
|
|
304
|
+
readonly name: "vault";
|
|
305
|
+
readonly type: "address";
|
|
218
306
|
}];
|
|
219
|
-
readonly name: "
|
|
307
|
+
readonly name: "VaultOssified";
|
|
220
308
|
readonly type: "error";
|
|
221
309
|
}, {
|
|
222
310
|
readonly inputs: readonly [{
|
|
223
|
-
readonly internalType: "
|
|
224
|
-
readonly name: "
|
|
225
|
-
readonly type: "address";
|
|
226
|
-
}, {
|
|
227
|
-
readonly internalType: "contract ILido";
|
|
228
|
-
readonly name: "_lido";
|
|
311
|
+
readonly internalType: "address";
|
|
312
|
+
readonly name: "beacon";
|
|
229
313
|
readonly type: "address";
|
|
230
314
|
}, {
|
|
231
|
-
readonly internalType: "
|
|
232
|
-
readonly name: "
|
|
233
|
-
readonly type: "
|
|
315
|
+
readonly internalType: "bytes32";
|
|
316
|
+
readonly name: "codehash";
|
|
317
|
+
readonly type: "bytes32";
|
|
318
|
+
}];
|
|
319
|
+
readonly name: "VaultProxyNotAllowed";
|
|
320
|
+
readonly type: "error";
|
|
321
|
+
}, {
|
|
322
|
+
readonly inputs: readonly [];
|
|
323
|
+
readonly name: "VaultProxyZeroCodehash";
|
|
324
|
+
readonly type: "error";
|
|
325
|
+
}, {
|
|
326
|
+
readonly inputs: readonly [{
|
|
327
|
+
readonly internalType: "address";
|
|
328
|
+
readonly name: "vault";
|
|
329
|
+
readonly type: "address";
|
|
234
330
|
}];
|
|
235
|
-
readonly
|
|
236
|
-
readonly type: "
|
|
331
|
+
readonly name: "VaultReportStaled";
|
|
332
|
+
readonly type: "error";
|
|
333
|
+
}, {
|
|
334
|
+
readonly inputs: readonly [{
|
|
335
|
+
readonly internalType: "string";
|
|
336
|
+
readonly name: "argument";
|
|
337
|
+
readonly type: "string";
|
|
338
|
+
}];
|
|
339
|
+
readonly name: "ZeroArgument";
|
|
340
|
+
readonly type: "error";
|
|
237
341
|
}, {
|
|
342
|
+
readonly inputs: readonly [];
|
|
343
|
+
readonly name: "ZeroPauseDuration";
|
|
344
|
+
readonly type: "error";
|
|
345
|
+
}];
|
|
346
|
+
export declare const VaultHubAbi: readonly [{
|
|
238
347
|
readonly inputs: readonly [];
|
|
239
348
|
readonly name: "AccessControlBadConfirmation";
|
|
240
349
|
readonly type: "error";
|
|
@@ -578,6 +687,242 @@ export declare const VaultHubAbi: readonly [{
|
|
|
578
687
|
readonly inputs: readonly [];
|
|
579
688
|
readonly name: "ZeroPauseDuration";
|
|
580
689
|
readonly type: "error";
|
|
690
|
+
}, {
|
|
691
|
+
readonly inputs: readonly [];
|
|
692
|
+
readonly name: "AlreadyOssified";
|
|
693
|
+
readonly type: "error";
|
|
694
|
+
}, {
|
|
695
|
+
readonly inputs: readonly [];
|
|
696
|
+
readonly name: "BeaconChainDepositsArePaused";
|
|
697
|
+
readonly type: "error";
|
|
698
|
+
}, {
|
|
699
|
+
readonly inputs: readonly [];
|
|
700
|
+
readonly name: "BeaconChainDepositsPauseExpected";
|
|
701
|
+
readonly type: "error";
|
|
702
|
+
}, {
|
|
703
|
+
readonly inputs: readonly [];
|
|
704
|
+
readonly name: "BeaconChainDepositsResumeExpected";
|
|
705
|
+
readonly type: "error";
|
|
706
|
+
}, {
|
|
707
|
+
readonly inputs: readonly [{
|
|
708
|
+
readonly internalType: "uint256";
|
|
709
|
+
readonly name: "balance";
|
|
710
|
+
readonly type: "uint256";
|
|
711
|
+
}];
|
|
712
|
+
readonly name: "InsufficientBalance";
|
|
713
|
+
readonly type: "error";
|
|
714
|
+
}, {
|
|
715
|
+
readonly inputs: readonly [{
|
|
716
|
+
readonly internalType: "uint256";
|
|
717
|
+
readonly name: "unlocked";
|
|
718
|
+
readonly type: "uint256";
|
|
719
|
+
}];
|
|
720
|
+
readonly name: "InsufficientUnlocked";
|
|
721
|
+
readonly type: "error";
|
|
722
|
+
}, {
|
|
723
|
+
readonly inputs: readonly [{
|
|
724
|
+
readonly internalType: "uint256";
|
|
725
|
+
readonly name: "_passed";
|
|
726
|
+
readonly type: "uint256";
|
|
727
|
+
}, {
|
|
728
|
+
readonly internalType: "uint256";
|
|
729
|
+
readonly name: "_required";
|
|
730
|
+
readonly type: "uint256";
|
|
731
|
+
}];
|
|
732
|
+
readonly name: "InsufficientValidatorWithdrawalFee";
|
|
733
|
+
readonly type: "error";
|
|
734
|
+
}, {
|
|
735
|
+
readonly inputs: readonly [{
|
|
736
|
+
readonly internalType: "address";
|
|
737
|
+
readonly name: "depositor";
|
|
738
|
+
readonly type: "address";
|
|
739
|
+
}];
|
|
740
|
+
readonly name: "InvalidDepositor";
|
|
741
|
+
readonly type: "error";
|
|
742
|
+
}, {
|
|
743
|
+
readonly inputs: readonly [];
|
|
744
|
+
readonly name: "InvalidInitialization";
|
|
745
|
+
readonly type: "error";
|
|
746
|
+
}, {
|
|
747
|
+
readonly inputs: readonly [];
|
|
748
|
+
readonly name: "InvalidPubkeysLength";
|
|
749
|
+
readonly type: "error";
|
|
750
|
+
}, {
|
|
751
|
+
readonly inputs: readonly [];
|
|
752
|
+
readonly name: "MalformedPubkeysArray";
|
|
753
|
+
readonly type: "error";
|
|
754
|
+
}, {
|
|
755
|
+
readonly inputs: readonly [{
|
|
756
|
+
readonly internalType: "uint256";
|
|
757
|
+
readonly name: "keysCount";
|
|
758
|
+
readonly type: "uint256";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "amountsCount";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}];
|
|
764
|
+
readonly name: "MismatchedArrayLengths";
|
|
765
|
+
readonly type: "error";
|
|
766
|
+
}, {
|
|
767
|
+
readonly inputs: readonly [];
|
|
768
|
+
readonly name: "NewLockedExceedsTotalValue";
|
|
769
|
+
readonly type: "error";
|
|
770
|
+
}, {
|
|
771
|
+
readonly inputs: readonly [];
|
|
772
|
+
readonly name: "NewLockedNotGreaterThanCurrent";
|
|
773
|
+
readonly type: "error";
|
|
774
|
+
}, {
|
|
775
|
+
readonly inputs: readonly [];
|
|
776
|
+
readonly name: "NoWithdrawalRequests";
|
|
777
|
+
readonly type: "error";
|
|
778
|
+
}, {
|
|
779
|
+
readonly inputs: readonly [{
|
|
780
|
+
readonly internalType: "string";
|
|
781
|
+
readonly name: "operation";
|
|
782
|
+
readonly type: "string";
|
|
783
|
+
}, {
|
|
784
|
+
readonly internalType: "address";
|
|
785
|
+
readonly name: "sender";
|
|
786
|
+
readonly type: "address";
|
|
787
|
+
}];
|
|
788
|
+
readonly name: "NotAuthorized";
|
|
789
|
+
readonly type: "error";
|
|
790
|
+
}, {
|
|
791
|
+
readonly inputs: readonly [];
|
|
792
|
+
readonly name: "NotInitializing";
|
|
793
|
+
readonly type: "error";
|
|
794
|
+
}, {
|
|
795
|
+
readonly inputs: readonly [{
|
|
796
|
+
readonly internalType: "address";
|
|
797
|
+
readonly name: "owner";
|
|
798
|
+
readonly type: "address";
|
|
799
|
+
}];
|
|
800
|
+
readonly name: "OwnableInvalidOwner";
|
|
801
|
+
readonly type: "error";
|
|
802
|
+
}, {
|
|
803
|
+
readonly inputs: readonly [{
|
|
804
|
+
readonly internalType: "address";
|
|
805
|
+
readonly name: "account";
|
|
806
|
+
readonly type: "address";
|
|
807
|
+
}];
|
|
808
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
809
|
+
readonly type: "error";
|
|
810
|
+
}, {
|
|
811
|
+
readonly inputs: readonly [];
|
|
812
|
+
readonly name: "PartialWithdrawalNotAllowed";
|
|
813
|
+
readonly type: "error";
|
|
814
|
+
}, {
|
|
815
|
+
readonly inputs: readonly [{
|
|
816
|
+
readonly internalType: "uint256";
|
|
817
|
+
readonly name: "totalValue";
|
|
818
|
+
readonly type: "uint256";
|
|
819
|
+
}, {
|
|
820
|
+
readonly internalType: "uint256";
|
|
821
|
+
readonly name: "rebalanceAmount";
|
|
822
|
+
readonly type: "uint256";
|
|
823
|
+
}];
|
|
824
|
+
readonly name: "RebalanceAmountExceedsTotalValue";
|
|
825
|
+
readonly type: "error";
|
|
826
|
+
}, {
|
|
827
|
+
readonly inputs: readonly [];
|
|
828
|
+
readonly name: "ReportStaled";
|
|
829
|
+
readonly type: "error";
|
|
830
|
+
}, {
|
|
831
|
+
readonly inputs: readonly [{
|
|
832
|
+
readonly internalType: "uint64";
|
|
833
|
+
readonly name: "currentTimestamp";
|
|
834
|
+
readonly type: "uint64";
|
|
835
|
+
}, {
|
|
836
|
+
readonly internalType: "uint64";
|
|
837
|
+
readonly name: "newTimestamp";
|
|
838
|
+
readonly type: "uint64";
|
|
839
|
+
}];
|
|
840
|
+
readonly name: "ReportTooOld";
|
|
841
|
+
readonly type: "error";
|
|
842
|
+
}, {
|
|
843
|
+
readonly inputs: readonly [];
|
|
844
|
+
readonly name: "TotalValueBelowLockedAmount";
|
|
845
|
+
readonly type: "error";
|
|
846
|
+
}, {
|
|
847
|
+
readonly inputs: readonly [{
|
|
848
|
+
readonly internalType: "address";
|
|
849
|
+
readonly name: "recipient";
|
|
850
|
+
readonly type: "address";
|
|
851
|
+
}, {
|
|
852
|
+
readonly internalType: "uint256";
|
|
853
|
+
readonly name: "amount";
|
|
854
|
+
readonly type: "uint256";
|
|
855
|
+
}];
|
|
856
|
+
readonly name: "TransferFailed";
|
|
857
|
+
readonly type: "error";
|
|
858
|
+
}, {
|
|
859
|
+
readonly inputs: readonly [];
|
|
860
|
+
readonly name: "VaultConnected";
|
|
861
|
+
readonly type: "error";
|
|
862
|
+
}, {
|
|
863
|
+
readonly inputs: readonly [];
|
|
864
|
+
readonly name: "VaultHubAuthorized";
|
|
865
|
+
readonly type: "error";
|
|
866
|
+
}, {
|
|
867
|
+
readonly inputs: readonly [];
|
|
868
|
+
readonly name: "VaultHubNotAuthorized";
|
|
869
|
+
readonly type: "error";
|
|
870
|
+
}, {
|
|
871
|
+
readonly inputs: readonly [];
|
|
872
|
+
readonly name: "VaultOssified";
|
|
873
|
+
readonly type: "error";
|
|
874
|
+
}, {
|
|
875
|
+
readonly inputs: readonly [];
|
|
876
|
+
readonly name: "WithdrawalFeeInvalidData";
|
|
877
|
+
readonly type: "error";
|
|
878
|
+
}, {
|
|
879
|
+
readonly inputs: readonly [];
|
|
880
|
+
readonly name: "WithdrawalFeeReadFailed";
|
|
881
|
+
readonly type: "error";
|
|
882
|
+
}, {
|
|
883
|
+
readonly inputs: readonly [{
|
|
884
|
+
readonly internalType: "address";
|
|
885
|
+
readonly name: "_sender";
|
|
886
|
+
readonly type: "address";
|
|
887
|
+
}, {
|
|
888
|
+
readonly internalType: "uint256";
|
|
889
|
+
readonly name: "_amount";
|
|
890
|
+
readonly type: "uint256";
|
|
891
|
+
}];
|
|
892
|
+
readonly name: "WithdrawalFeeRefundFailed";
|
|
893
|
+
readonly type: "error";
|
|
894
|
+
}, {
|
|
895
|
+
readonly inputs: readonly [{
|
|
896
|
+
readonly internalType: "bytes";
|
|
897
|
+
readonly name: "callData";
|
|
898
|
+
readonly type: "bytes";
|
|
899
|
+
}];
|
|
900
|
+
readonly name: "WithdrawalRequestAdditionFailed";
|
|
901
|
+
readonly type: "error";
|
|
902
|
+
}, {
|
|
903
|
+
readonly inputs: readonly [{
|
|
904
|
+
readonly internalType: "string";
|
|
905
|
+
readonly name: "name";
|
|
906
|
+
readonly type: "string";
|
|
907
|
+
}];
|
|
908
|
+
readonly name: "ZeroArgument";
|
|
909
|
+
readonly type: "error";
|
|
910
|
+
}, {
|
|
911
|
+
readonly inputs: readonly [{
|
|
912
|
+
readonly internalType: "contract ILidoLocator";
|
|
913
|
+
readonly name: "_locator";
|
|
914
|
+
readonly type: "address";
|
|
915
|
+
}, {
|
|
916
|
+
readonly internalType: "contract ILido";
|
|
917
|
+
readonly name: "_lido";
|
|
918
|
+
readonly type: "address";
|
|
919
|
+
}, {
|
|
920
|
+
readonly internalType: "uint256";
|
|
921
|
+
readonly name: "_relativeShareLimitBP";
|
|
922
|
+
readonly type: "uint256";
|
|
923
|
+
}];
|
|
924
|
+
readonly stateMutability: "nonpayable";
|
|
925
|
+
readonly type: "constructor";
|
|
581
926
|
}, {
|
|
582
927
|
readonly anonymous: false;
|
|
583
928
|
readonly inputs: readonly [{
|