@lidofinance/lsv-cli 1.0.0-alpha.48 → 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 +49 -62
- 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/pdg.d.ts +2 -0
- package/dist/features/pdg.js +30 -1
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/vault-factory.d.ts +5 -0
- package/dist/features/vault-factory.js +4 -0
- package/dist/features/vault-factory.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.js → account/read.js} +34 -73
- 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/write.js +32 -9
- package/dist/programs/dashboard/write.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 +49 -49
- package/dist/programs/pdg/write.js.map +1 -1
- package/dist/programs/pdg-helpers.js +2 -1
- 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 +4 -0
- package/dist/programs/vault-factory/write.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 +3 -0
- 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/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.js +6 -9
- package/dist/utils/commands/confirmations.js.map +1 -1
- 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 +2 -0
- package/dist/utils/commands/index.js +2 -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 +31 -2
- 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 +3 -3
- 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 +18 -0
- 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/prompts/dashboard.d.ts +4 -0
- package/dist/utils/prompts/dashboard.js +6 -6
- package/dist/utils/prompts/dashboard.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/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 +16 -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.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
|
@@ -1,4 +1,508 @@
|
|
|
1
1
|
export declare const VaultFactoryAbi: readonly [{
|
|
2
|
+
readonly inputs: readonly [];
|
|
3
|
+
readonly name: "AccessControlBadConfirmation";
|
|
4
|
+
readonly type: "error";
|
|
5
|
+
}, {
|
|
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";
|
|
16
|
+
readonly type: "error";
|
|
17
|
+
}, {
|
|
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";
|
|
28
|
+
readonly type: "error";
|
|
29
|
+
}, {
|
|
30
|
+
readonly inputs: readonly [{
|
|
31
|
+
readonly internalType: "bytes32";
|
|
32
|
+
readonly name: "codehash";
|
|
33
|
+
readonly type: "bytes32";
|
|
34
|
+
}];
|
|
35
|
+
readonly name: "AlreadyExists";
|
|
36
|
+
readonly type: "error";
|
|
37
|
+
}, {
|
|
38
|
+
readonly inputs: readonly [{
|
|
39
|
+
readonly internalType: "address";
|
|
40
|
+
readonly name: "vault";
|
|
41
|
+
readonly type: "address";
|
|
42
|
+
}];
|
|
43
|
+
readonly name: "AlreadyHealthy";
|
|
44
|
+
readonly type: "error";
|
|
45
|
+
}, {
|
|
46
|
+
readonly inputs: readonly [{
|
|
47
|
+
readonly internalType: "address";
|
|
48
|
+
readonly name: "vault";
|
|
49
|
+
readonly type: "address";
|
|
50
|
+
}, {
|
|
51
|
+
readonly internalType: "uint256";
|
|
52
|
+
readonly name: "forcedRebalanceThresholdBP";
|
|
53
|
+
readonly type: "uint256";
|
|
54
|
+
}, {
|
|
55
|
+
readonly internalType: "uint256";
|
|
56
|
+
readonly name: "maxForcedRebalanceThresholdBP";
|
|
57
|
+
readonly type: "uint256";
|
|
58
|
+
}];
|
|
59
|
+
readonly name: "ForcedRebalanceThresholdTooHigh";
|
|
60
|
+
readonly type: "error";
|
|
61
|
+
}, {
|
|
62
|
+
readonly inputs: readonly [{
|
|
63
|
+
readonly internalType: "address";
|
|
64
|
+
readonly name: "vault";
|
|
65
|
+
readonly type: "address";
|
|
66
|
+
}, {
|
|
67
|
+
readonly internalType: "uint256";
|
|
68
|
+
readonly name: "amount";
|
|
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";
|
|
78
|
+
}, {
|
|
79
|
+
readonly internalType: "uint256";
|
|
80
|
+
readonly name: "totalValue";
|
|
81
|
+
readonly type: "uint256";
|
|
82
|
+
}];
|
|
83
|
+
readonly name: "InsufficientTotalValueToMint";
|
|
84
|
+
readonly type: "error";
|
|
85
|
+
}, {
|
|
86
|
+
readonly inputs: readonly [{
|
|
87
|
+
readonly internalType: "address";
|
|
88
|
+
readonly name: "vault";
|
|
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";
|
|
98
|
+
}];
|
|
99
|
+
readonly name: "InvalidFees";
|
|
100
|
+
readonly type: "error";
|
|
101
|
+
}, {
|
|
102
|
+
readonly inputs: readonly [];
|
|
103
|
+
readonly name: "InvalidInitialization";
|
|
104
|
+
readonly type: "error";
|
|
105
|
+
}, {
|
|
106
|
+
readonly inputs: readonly [];
|
|
107
|
+
readonly name: "InvalidProof";
|
|
108
|
+
readonly type: "error";
|
|
109
|
+
}, {
|
|
110
|
+
readonly inputs: readonly [];
|
|
111
|
+
readonly name: "InvalidPubkeysLength";
|
|
112
|
+
readonly type: "error";
|
|
113
|
+
}, {
|
|
114
|
+
readonly inputs: readonly [{
|
|
115
|
+
readonly internalType: "address";
|
|
116
|
+
readonly name: "vault";
|
|
117
|
+
readonly type: "address";
|
|
118
|
+
}, {
|
|
119
|
+
readonly internalType: "uint256";
|
|
120
|
+
readonly name: "liabilityShares";
|
|
121
|
+
readonly type: "uint256";
|
|
122
|
+
}];
|
|
123
|
+
readonly name: "NoLiabilitySharesShouldBeLeft";
|
|
124
|
+
readonly type: "error";
|
|
125
|
+
}, {
|
|
126
|
+
readonly inputs: readonly [{
|
|
127
|
+
readonly internalType: "string";
|
|
128
|
+
readonly name: "operation";
|
|
129
|
+
readonly type: "string";
|
|
130
|
+
}, {
|
|
131
|
+
readonly internalType: "address";
|
|
132
|
+
readonly name: "addr";
|
|
133
|
+
readonly type: "address";
|
|
134
|
+
}];
|
|
135
|
+
readonly name: "NotAuthorized";
|
|
136
|
+
readonly type: "error";
|
|
137
|
+
}, {
|
|
138
|
+
readonly inputs: readonly [{
|
|
139
|
+
readonly internalType: "address";
|
|
140
|
+
readonly name: "vault";
|
|
141
|
+
readonly type: "address";
|
|
142
|
+
}];
|
|
143
|
+
readonly name: "NotConnectedToHub";
|
|
144
|
+
readonly type: "error";
|
|
145
|
+
}, {
|
|
146
|
+
readonly inputs: readonly [];
|
|
147
|
+
readonly name: "NotInitializing";
|
|
148
|
+
readonly type: "error";
|
|
149
|
+
}, {
|
|
150
|
+
readonly inputs: readonly [];
|
|
151
|
+
readonly name: "PauseUntilMustBeInFuture";
|
|
152
|
+
readonly type: "error";
|
|
153
|
+
}, {
|
|
154
|
+
readonly inputs: readonly [];
|
|
155
|
+
readonly name: "PausedExpected";
|
|
156
|
+
readonly type: "error";
|
|
157
|
+
}, {
|
|
158
|
+
readonly inputs: readonly [{
|
|
159
|
+
readonly internalType: "uint256";
|
|
160
|
+
readonly name: "relativeShareLimitBP";
|
|
161
|
+
readonly type: "uint256";
|
|
162
|
+
}, {
|
|
163
|
+
readonly internalType: "uint256";
|
|
164
|
+
readonly name: "totalBasisPoints";
|
|
165
|
+
readonly type: "uint256";
|
|
166
|
+
}];
|
|
167
|
+
readonly name: "RelativeShareLimitBPTooHigh";
|
|
168
|
+
readonly type: "error";
|
|
169
|
+
}, {
|
|
170
|
+
readonly inputs: readonly [{
|
|
171
|
+
readonly internalType: "address";
|
|
172
|
+
readonly name: "vault";
|
|
173
|
+
readonly type: "address";
|
|
174
|
+
}, {
|
|
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";
|
|
182
|
+
}];
|
|
183
|
+
readonly name: "ReserveRatioTooHigh";
|
|
184
|
+
readonly type: "error";
|
|
185
|
+
}, {
|
|
186
|
+
readonly inputs: readonly [];
|
|
187
|
+
readonly name: "ResumedExpected";
|
|
188
|
+
readonly type: "error";
|
|
189
|
+
}, {
|
|
190
|
+
readonly inputs: readonly [{
|
|
191
|
+
readonly internalType: "address";
|
|
192
|
+
readonly name: "vault";
|
|
193
|
+
readonly type: "address";
|
|
194
|
+
}, {
|
|
195
|
+
readonly internalType: "uint256";
|
|
196
|
+
readonly name: "shareLimit";
|
|
197
|
+
readonly type: "uint256";
|
|
198
|
+
}];
|
|
199
|
+
readonly name: "ShareLimitExceeded";
|
|
200
|
+
readonly type: "error";
|
|
201
|
+
}, {
|
|
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";
|
|
216
|
+
readonly type: "error";
|
|
217
|
+
}, {
|
|
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";
|
|
232
|
+
readonly type: "error";
|
|
233
|
+
}, {
|
|
234
|
+
readonly inputs: readonly [{
|
|
235
|
+
readonly internalType: "address";
|
|
236
|
+
readonly name: "vault";
|
|
237
|
+
readonly type: "address";
|
|
238
|
+
}];
|
|
239
|
+
readonly name: "VaultDeauthorized";
|
|
240
|
+
readonly type: "error";
|
|
241
|
+
}, {
|
|
242
|
+
readonly inputs: readonly [{
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
readonly name: "depositor";
|
|
245
|
+
readonly type: "address";
|
|
246
|
+
}];
|
|
247
|
+
readonly name: "VaultDepositorNotAllowed";
|
|
248
|
+
readonly type: "error";
|
|
249
|
+
}, {
|
|
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";
|
|
264
|
+
readonly type: "error";
|
|
265
|
+
}, {
|
|
266
|
+
readonly inputs: readonly [{
|
|
267
|
+
readonly internalType: "address";
|
|
268
|
+
readonly name: "vault";
|
|
269
|
+
readonly type: "address";
|
|
270
|
+
}, {
|
|
271
|
+
readonly internalType: "uint256";
|
|
272
|
+
readonly name: "currentLocked";
|
|
273
|
+
readonly type: "uint256";
|
|
274
|
+
}, {
|
|
275
|
+
readonly internalType: "uint256";
|
|
276
|
+
readonly name: "expectedLocked";
|
|
277
|
+
readonly type: "uint256";
|
|
278
|
+
}];
|
|
279
|
+
readonly name: "VaultInsufficientLocked";
|
|
280
|
+
readonly type: "error";
|
|
281
|
+
}, {
|
|
282
|
+
readonly inputs: readonly [{
|
|
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";
|
|
298
|
+
}];
|
|
299
|
+
readonly name: "VaultMintingCapacityExceeded";
|
|
300
|
+
readonly type: "error";
|
|
301
|
+
}, {
|
|
302
|
+
readonly inputs: readonly [{
|
|
303
|
+
readonly internalType: "address";
|
|
304
|
+
readonly name: "vault";
|
|
305
|
+
readonly type: "address";
|
|
306
|
+
}];
|
|
307
|
+
readonly name: "VaultOssified";
|
|
308
|
+
readonly type: "error";
|
|
309
|
+
}, {
|
|
310
|
+
readonly inputs: readonly [{
|
|
311
|
+
readonly internalType: "address";
|
|
312
|
+
readonly name: "beacon";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
}, {
|
|
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";
|
|
330
|
+
}];
|
|
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";
|
|
341
|
+
}, {
|
|
342
|
+
readonly inputs: readonly [];
|
|
343
|
+
readonly name: "ZeroPauseDuration";
|
|
344
|
+
readonly type: "error";
|
|
345
|
+
}, {
|
|
346
|
+
readonly inputs: readonly [];
|
|
347
|
+
readonly name: "AccessControlBadConfirmation";
|
|
348
|
+
readonly type: "error";
|
|
349
|
+
}, {
|
|
350
|
+
readonly inputs: readonly [{
|
|
351
|
+
readonly internalType: "address";
|
|
352
|
+
readonly name: "account";
|
|
353
|
+
readonly type: "address";
|
|
354
|
+
}, {
|
|
355
|
+
readonly internalType: "bytes32";
|
|
356
|
+
readonly name: "neededRole";
|
|
357
|
+
readonly type: "bytes32";
|
|
358
|
+
}];
|
|
359
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
360
|
+
readonly type: "error";
|
|
361
|
+
}, {
|
|
362
|
+
readonly inputs: readonly [];
|
|
363
|
+
readonly name: "CannotChangeToDefaultTier";
|
|
364
|
+
readonly type: "error";
|
|
365
|
+
}, {
|
|
366
|
+
readonly inputs: readonly [{
|
|
367
|
+
readonly internalType: "uint256";
|
|
368
|
+
readonly name: "tierId";
|
|
369
|
+
readonly type: "uint256";
|
|
370
|
+
}, {
|
|
371
|
+
readonly internalType: "uint256";
|
|
372
|
+
readonly name: "forcedRebalanceThresholdBP";
|
|
373
|
+
readonly type: "uint256";
|
|
374
|
+
}, {
|
|
375
|
+
readonly internalType: "uint256";
|
|
376
|
+
readonly name: "reserveRatioBP";
|
|
377
|
+
readonly type: "uint256";
|
|
378
|
+
}];
|
|
379
|
+
readonly name: "ForcedRebalanceThresholdTooHigh";
|
|
380
|
+
readonly type: "error";
|
|
381
|
+
}, {
|
|
382
|
+
readonly inputs: readonly [];
|
|
383
|
+
readonly name: "GroupExists";
|
|
384
|
+
readonly type: "error";
|
|
385
|
+
}, {
|
|
386
|
+
readonly inputs: readonly [];
|
|
387
|
+
readonly name: "GroupLimitExceeded";
|
|
388
|
+
readonly type: "error";
|
|
389
|
+
}, {
|
|
390
|
+
readonly inputs: readonly [];
|
|
391
|
+
readonly name: "GroupMintedSharesUnderflow";
|
|
392
|
+
readonly type: "error";
|
|
393
|
+
}, {
|
|
394
|
+
readonly inputs: readonly [];
|
|
395
|
+
readonly name: "GroupNotExists";
|
|
396
|
+
readonly type: "error";
|
|
397
|
+
}, {
|
|
398
|
+
readonly inputs: readonly [];
|
|
399
|
+
readonly name: "InvalidInitialization";
|
|
400
|
+
readonly type: "error";
|
|
401
|
+
}, {
|
|
402
|
+
readonly inputs: readonly [{
|
|
403
|
+
readonly internalType: "uint256";
|
|
404
|
+
readonly name: "requestedTierId";
|
|
405
|
+
readonly type: "uint256";
|
|
406
|
+
}, {
|
|
407
|
+
readonly internalType: "uint256";
|
|
408
|
+
readonly name: "confirmedTierId";
|
|
409
|
+
readonly type: "uint256";
|
|
410
|
+
}];
|
|
411
|
+
readonly name: "InvalidTierId";
|
|
412
|
+
readonly type: "error";
|
|
413
|
+
}, {
|
|
414
|
+
readonly inputs: readonly [];
|
|
415
|
+
readonly name: "NodeOperatorNotExists";
|
|
416
|
+
readonly type: "error";
|
|
417
|
+
}, {
|
|
418
|
+
readonly inputs: readonly [{
|
|
419
|
+
readonly internalType: "string";
|
|
420
|
+
readonly name: "operation";
|
|
421
|
+
readonly type: "string";
|
|
422
|
+
}, {
|
|
423
|
+
readonly internalType: "address";
|
|
424
|
+
readonly name: "sender";
|
|
425
|
+
readonly type: "address";
|
|
426
|
+
}];
|
|
427
|
+
readonly name: "NotAuthorized";
|
|
428
|
+
readonly type: "error";
|
|
429
|
+
}, {
|
|
430
|
+
readonly inputs: readonly [];
|
|
431
|
+
readonly name: "NotInitializing";
|
|
432
|
+
readonly type: "error";
|
|
433
|
+
}, {
|
|
434
|
+
readonly inputs: readonly [{
|
|
435
|
+
readonly internalType: "uint256";
|
|
436
|
+
readonly name: "tierId";
|
|
437
|
+
readonly type: "uint256";
|
|
438
|
+
}, {
|
|
439
|
+
readonly internalType: "uint256";
|
|
440
|
+
readonly name: "reserveRatioBP";
|
|
441
|
+
readonly type: "uint256";
|
|
442
|
+
}, {
|
|
443
|
+
readonly internalType: "uint256";
|
|
444
|
+
readonly name: "maxReserveRatioBP";
|
|
445
|
+
readonly type: "uint256";
|
|
446
|
+
}];
|
|
447
|
+
readonly name: "ReserveRatioTooHigh";
|
|
448
|
+
readonly type: "error";
|
|
449
|
+
}, {
|
|
450
|
+
readonly inputs: readonly [];
|
|
451
|
+
readonly name: "TierAlreadyRequested";
|
|
452
|
+
readonly type: "error";
|
|
453
|
+
}, {
|
|
454
|
+
readonly inputs: readonly [];
|
|
455
|
+
readonly name: "TierAlreadySet";
|
|
456
|
+
readonly type: "error";
|
|
457
|
+
}, {
|
|
458
|
+
readonly inputs: readonly [];
|
|
459
|
+
readonly name: "TierExists";
|
|
460
|
+
readonly type: "error";
|
|
461
|
+
}, {
|
|
462
|
+
readonly inputs: readonly [];
|
|
463
|
+
readonly name: "TierLimitExceeded";
|
|
464
|
+
readonly type: "error";
|
|
465
|
+
}, {
|
|
466
|
+
readonly inputs: readonly [];
|
|
467
|
+
readonly name: "TierMintedSharesUnderflow";
|
|
468
|
+
readonly type: "error";
|
|
469
|
+
}, {
|
|
470
|
+
readonly inputs: readonly [];
|
|
471
|
+
readonly name: "TierNotExists";
|
|
472
|
+
readonly type: "error";
|
|
473
|
+
}, {
|
|
474
|
+
readonly inputs: readonly [];
|
|
475
|
+
readonly name: "TierNotInOperatorGroup";
|
|
476
|
+
readonly type: "error";
|
|
477
|
+
}, {
|
|
478
|
+
readonly inputs: readonly [];
|
|
479
|
+
readonly name: "TiersNotAvailable";
|
|
480
|
+
readonly type: "error";
|
|
481
|
+
}, {
|
|
482
|
+
readonly inputs: readonly [{
|
|
483
|
+
readonly internalType: "uint256";
|
|
484
|
+
readonly name: "tierId";
|
|
485
|
+
readonly type: "uint256";
|
|
486
|
+
}, {
|
|
487
|
+
readonly internalType: "uint256";
|
|
488
|
+
readonly name: "treasuryFeeBP";
|
|
489
|
+
readonly type: "uint256";
|
|
490
|
+
}, {
|
|
491
|
+
readonly internalType: "uint256";
|
|
492
|
+
readonly name: "maxTreasuryFeeBP";
|
|
493
|
+
readonly type: "uint256";
|
|
494
|
+
}];
|
|
495
|
+
readonly name: "TreasuryFeeTooHigh";
|
|
496
|
+
readonly type: "error";
|
|
497
|
+
}, {
|
|
498
|
+
readonly inputs: readonly [{
|
|
499
|
+
readonly internalType: "string";
|
|
500
|
+
readonly name: "argument";
|
|
501
|
+
readonly type: "string";
|
|
502
|
+
}];
|
|
503
|
+
readonly name: "ZeroArgument";
|
|
504
|
+
readonly type: "error";
|
|
505
|
+
}, {
|
|
2
506
|
readonly inputs: readonly [{
|
|
3
507
|
readonly internalType: "address";
|
|
4
508
|
readonly name: "_lidoLocator";
|
package/dist/abi/VaultFactory.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VaultFactory.js","sourceRoot":"","sources":["../../abi/VaultFactory.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"VaultFactory.js","sourceRoot":"","sources":["../../abi/VaultFactory.ts"],"names":[],"mappings":"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"}
|