@lidofinance/lsv-cli 1.0.0-alpha.61 → 1.0.0-alpha.62

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.
Files changed (166) hide show
  1. package/README.md +1 -1
  2. package/dist/abi/Dashboard.d.ts +706 -445
  3. package/dist/abi/Dashboard.js +331 -300
  4. package/dist/abi/Dashboard.js.map +1 -1
  5. package/dist/abi/LazyOracle.d.ts +278 -27
  6. package/dist/abi/LazyOracle.js +352 -27
  7. package/dist/abi/LazyOracle.js.map +1 -1
  8. package/dist/abi/LidoLocator.d.ts +28 -0
  9. package/dist/abi/LidoLocator.js +36 -0
  10. package/dist/abi/LidoLocator.js.map +1 -1
  11. package/dist/abi/OperatorGrid.d.ts +166 -1
  12. package/dist/abi/OperatorGrid.js +174 -1
  13. package/dist/abi/OperatorGrid.js.map +1 -1
  14. package/dist/abi/PredepositGuarantee.d.ts +181 -139
  15. package/dist/abi/PredepositGuarantee.js +191 -166
  16. package/dist/abi/PredepositGuarantee.js.map +1 -1
  17. package/dist/abi/StEth.d.ts +1 -1
  18. package/dist/abi/StEth.js +1 -1
  19. package/dist/abi/StEth.js.map +1 -1
  20. package/dist/abi/StakingVault.d.ts +184 -32
  21. package/dist/abi/StakingVault.js +203 -37
  22. package/dist/abi/StakingVault.js.map +1 -1
  23. package/dist/abi/VaultFactory.d.ts +470 -72
  24. package/dist/abi/VaultFactory.js +24 -1
  25. package/dist/abi/VaultFactory.js.map +1 -1
  26. package/dist/abi/VaultHub.d.ts +416 -420
  27. package/dist/abi/VaultHub.js +349 -398
  28. package/dist/abi/VaultHub.js.map +1 -1
  29. package/dist/abi/VaultViewer.d.ts +74 -42
  30. package/dist/abi/VaultViewer.js +82 -42
  31. package/dist/abi/VaultViewer.js.map +1 -1
  32. package/dist/abi/index.d.ts +0 -2
  33. package/dist/abi/index.js +0 -2
  34. package/dist/abi/index.js.map +1 -1
  35. package/dist/contracts/index.d.ts +0 -1
  36. package/dist/contracts/index.js +0 -1
  37. package/dist/contracts/index.js.map +1 -1
  38. package/dist/contracts/locator.d.ts +1428 -12
  39. package/dist/contracts/steth.d.ts +74 -74
  40. package/dist/contracts/vault-factory.d.ts +15731 -5838
  41. package/dist/contracts/vault-viewer.d.ts +1360 -768
  42. package/dist/contracts/vault-viewer.js +1 -1
  43. package/dist/features/index.d.ts +1 -0
  44. package/dist/features/index.js +1 -0
  45. package/dist/features/index.js.map +1 -1
  46. package/dist/features/lazy-oracle.d.ts +1 -0
  47. package/dist/features/lazy-oracle.js +42 -0
  48. package/dist/features/lazy-oracle.js.map +1 -0
  49. package/dist/features/vault-hub.js +0 -4
  50. package/dist/features/vault-hub.js.map +1 -1
  51. package/dist/features/vault-operations/dashboard-by-vault.d.ts +2 -1
  52. package/dist/features/vault-operations/dashboard-by-vault.js +3 -1
  53. package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -1
  54. package/dist/features/vault-operations/vault-health.js +2 -2
  55. package/dist/features/vault-operations/vault-health.js.map +1 -1
  56. package/dist/features/vault-operations/vault-info.js +29 -32
  57. package/dist/features/vault-operations/vault-info.js.map +1 -1
  58. package/dist/features/vault-operations/vault-overview.js +35 -28
  59. package/dist/features/vault-operations/vault-overview.js.map +1 -1
  60. package/dist/features/vault-operations/vault-roles.d.ts +1 -1
  61. package/dist/features/vault-operations/vault-roles.js +6 -6
  62. package/dist/features/vault-operations/vault-roles.js.map +1 -1
  63. package/dist/features/vault.js +4 -2
  64. package/dist/features/vault.js.map +1 -1
  65. package/dist/index.js +8 -3
  66. package/dist/index.js.map +1 -1
  67. package/dist/programs/contracts/dashboard/config.js +49 -40
  68. package/dist/programs/contracts/dashboard/config.js.map +1 -1
  69. package/dist/programs/contracts/dashboard/read.js +38 -3
  70. package/dist/programs/contracts/dashboard/read.js.map +1 -1
  71. package/dist/programs/contracts/dashboard/write.js +121 -84
  72. package/dist/programs/contracts/dashboard/write.js.map +1 -1
  73. package/dist/programs/contracts/hub/config.js +7 -17
  74. package/dist/programs/contracts/hub/config.js.map +1 -1
  75. package/dist/programs/contracts/hub/write.js +7 -69
  76. package/dist/programs/contracts/hub/write.js.map +1 -1
  77. package/dist/programs/contracts/lazy-oracle/config.js +5 -0
  78. package/dist/programs/contracts/lazy-oracle/config.js.map +1 -1
  79. package/dist/programs/contracts/lazy-oracle/read.js +7 -0
  80. package/dist/programs/contracts/lazy-oracle/read.js.map +1 -1
  81. package/dist/programs/contracts/operator-grid/config.js +21 -10
  82. package/dist/programs/contracts/operator-grid/config.js.map +1 -1
  83. package/dist/programs/contracts/operator-grid/read.js +21 -1
  84. package/dist/programs/contracts/operator-grid/read.js.map +1 -1
  85. package/dist/programs/contracts/operator-grid/write.js +48 -6
  86. package/dist/programs/contracts/operator-grid/write.js.map +1 -1
  87. package/dist/programs/contracts/pdg/config.js +9 -2
  88. package/dist/programs/contracts/pdg/config.js.map +1 -1
  89. package/dist/programs/contracts/pdg/read.js +16 -1
  90. package/dist/programs/contracts/pdg/read.js.map +1 -1
  91. package/dist/programs/contracts/pdg/write.js +26 -89
  92. package/dist/programs/contracts/pdg/write.js.map +1 -1
  93. package/dist/programs/contracts/vault/config.js +12 -0
  94. package/dist/programs/contracts/vault/config.js.map +1 -1
  95. package/dist/programs/contracts/vault/write.js +84 -20
  96. package/dist/programs/contracts/vault/write.js.map +1 -1
  97. package/dist/programs/use-cases/deposits/read.js +19 -2
  98. package/dist/programs/use-cases/deposits/read.js.map +1 -1
  99. package/dist/programs/use-cases/deposits/write.js +22 -32
  100. package/dist/programs/use-cases/deposits/write.js.map +1 -1
  101. package/dist/programs/use-cases/metrics/read.js +7 -6
  102. package/dist/programs/use-cases/metrics/read.js.map +1 -1
  103. package/dist/programs/use-cases/report/read.js +14 -7
  104. package/dist/programs/use-cases/report/read.js.map +1 -1
  105. package/dist/programs/use-cases/report/write.js +4 -2
  106. package/dist/programs/use-cases/report/write.js.map +1 -1
  107. package/dist/programs/use-cases/vault-operations/create-vault.js +6 -2
  108. package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -1
  109. package/dist/programs/use-cases/vault-operations/write.js +98 -8
  110. package/dist/programs/use-cases/vault-operations/write.js.map +1 -1
  111. package/dist/providers/wallet.d.ts +60 -60
  112. package/dist/tests/utils/calculate-overview.test.js +1 -1
  113. package/dist/tests/utils/calculate-overview.test.js.map +1 -1
  114. package/dist/tests/utils/health.test.js +2 -2
  115. package/dist/tests/utils/health.test.js.map +1 -1
  116. package/dist/types/common.d.ts +4 -0
  117. package/dist/utils/arguments.d.ts +3 -1
  118. package/dist/utils/arguments.js +39 -0
  119. package/dist/utils/arguments.js.map +1 -1
  120. package/dist/utils/calculate-overview-v2.d.ts +4 -2
  121. package/dist/utils/calculate-overview-v2.js +5 -8
  122. package/dist/utils/calculate-overview-v2.js.map +1 -1
  123. package/dist/utils/calculate-overview.d.ts +1 -1
  124. package/dist/utils/calculate-overview.js +2 -2
  125. package/dist/utils/calculate-overview.js.map +1 -1
  126. package/dist/utils/charts/blessed/charts-apr.js +2 -1
  127. package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
  128. package/dist/utils/charts/blessed/charts-rewards.js +2 -1
  129. package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
  130. package/dist/utils/charts/overview.d.ts +1 -1
  131. package/dist/utils/charts/overview.js +1 -1
  132. package/dist/utils/charts/overview.js.map +1 -1
  133. package/dist/utils/charts/simple/simple-charts.js +2 -1
  134. package/dist/utils/charts/simple/simple-charts.js.map +1 -1
  135. package/dist/utils/commands/confirmations.d.ts +7 -3
  136. package/dist/utils/commands/confirmations.js +39 -29
  137. package/dist/utils/commands/confirmations.js.map +1 -1
  138. package/dist/utils/commands/report.js +2 -1
  139. package/dist/utils/commands/report.js.map +1 -1
  140. package/dist/utils/health/calculate-health.d.ts +1 -1
  141. package/dist/utils/health/calculate-health.js +2 -2
  142. package/dist/utils/health/calculate-health.js.map +1 -1
  143. package/dist/utils/health/health-utils.d.ts +77 -77
  144. package/dist/utils/health/health-utils.js +11 -10
  145. package/dist/utils/health/health-utils.js.map +1 -1
  146. package/dist/utils/report/report.js +1 -0
  147. package/dist/utils/report/report.js.map +1 -1
  148. package/dist/utils/report/statistic-data.js +2 -2
  149. package/dist/utils/report/statistic-data.js.map +1 -1
  150. package/dist/utils/report/types.d.ts +10 -2
  151. package/dist/utils/statistic/report-statistic.js +13 -14
  152. package/dist/utils/statistic/report-statistic.js.map +1 -1
  153. package/dist/utils/transactions/tx-wc.js +15 -2
  154. package/dist/utils/transactions/tx-wc.js.map +1 -1
  155. package/dist/utils/wallet-connect.d.ts +40 -40
  156. package/dist/version/index.js +1 -1
  157. package/package.json +12 -2
  158. package/dist/abi/TokenManager.d.ts +0 -577
  159. package/dist/abi/TokenManager.js +0 -756
  160. package/dist/abi/TokenManager.js.map +0 -1
  161. package/dist/abi/Voting.d.ts +0 -676
  162. package/dist/abi/Voting.js +0 -884
  163. package/dist/abi/Voting.js.map +0 -1
  164. package/dist/contracts/token-manager.d.ts +0 -3
  165. package/dist/contracts/token-manager.js +0 -13
  166. package/dist/contracts/token-manager.js.map +0 -1
@@ -8,7 +8,7 @@ export declare const getStethContract: () => Promise<{
8
8
  }];
9
9
  readonly name: "getPooledEthBySharesRoundUp";
10
10
  readonly outputs: readonly [{
11
- readonly name: "etherAmount";
11
+ readonly name: "";
12
12
  readonly type: "uint256";
13
13
  }];
14
14
  readonly payable: false;
@@ -380,7 +380,7 @@ export declare const getStethContract: () => Promise<{
380
380
  }];
381
381
  readonly name: "getPooledEthBySharesRoundUp";
382
382
  readonly outputs: readonly [{
383
- readonly name: "etherAmount";
383
+ readonly name: "";
384
384
  readonly type: "uint256";
385
385
  }];
386
386
  readonly payable: false;
@@ -752,7 +752,7 @@ export declare const getStethContract: () => Promise<{
752
752
  }];
753
753
  readonly name: "getPooledEthBySharesRoundUp";
754
754
  readonly outputs: readonly [{
755
- readonly name: "etherAmount";
755
+ readonly name: "";
756
756
  readonly type: "uint256";
757
757
  }];
758
758
  readonly payable: false;
@@ -1124,7 +1124,7 @@ export declare const getStethContract: () => Promise<{
1124
1124
  }];
1125
1125
  readonly name: "getPooledEthBySharesRoundUp";
1126
1126
  readonly outputs: readonly [{
1127
- readonly name: "etherAmount";
1127
+ readonly name: "";
1128
1128
  readonly type: "uint256";
1129
1129
  }];
1130
1130
  readonly payable: false;
@@ -1496,7 +1496,7 @@ export declare const getStethContract: () => Promise<{
1496
1496
  }];
1497
1497
  readonly name: "getPooledEthBySharesRoundUp";
1498
1498
  readonly outputs: readonly [{
1499
- readonly name: "etherAmount";
1499
+ readonly name: "";
1500
1500
  readonly type: "uint256";
1501
1501
  }];
1502
1502
  readonly payable: false;
@@ -1868,7 +1868,7 @@ export declare const getStethContract: () => Promise<{
1868
1868
  }];
1869
1869
  readonly name: "getPooledEthBySharesRoundUp";
1870
1870
  readonly outputs: readonly [{
1871
- readonly name: "etherAmount";
1871
+ readonly name: "";
1872
1872
  readonly type: "uint256";
1873
1873
  }];
1874
1874
  readonly payable: false;
@@ -2240,7 +2240,7 @@ export declare const getStethContract: () => Promise<{
2240
2240
  }];
2241
2241
  readonly name: "getPooledEthBySharesRoundUp";
2242
2242
  readonly outputs: readonly [{
2243
- readonly name: "etherAmount";
2243
+ readonly name: "";
2244
2244
  readonly type: "uint256";
2245
2245
  }];
2246
2246
  readonly payable: false;
@@ -2612,7 +2612,7 @@ export declare const getStethContract: () => Promise<{
2612
2612
  }];
2613
2613
  readonly name: "getPooledEthBySharesRoundUp";
2614
2614
  readonly outputs: readonly [{
2615
- readonly name: "etherAmount";
2615
+ readonly name: "";
2616
2616
  readonly type: "uint256";
2617
2617
  }];
2618
2618
  readonly payable: false;
@@ -2984,7 +2984,7 @@ export declare const getStethContract: () => Promise<{
2984
2984
  }];
2985
2985
  readonly name: "getPooledEthBySharesRoundUp";
2986
2986
  readonly outputs: readonly [{
2987
- readonly name: "etherAmount";
2987
+ readonly name: "";
2988
2988
  readonly type: "uint256";
2989
2989
  }];
2990
2990
  readonly payable: false;
@@ -3356,7 +3356,7 @@ export declare const getStethContract: () => Promise<{
3356
3356
  }];
3357
3357
  readonly name: "getPooledEthBySharesRoundUp";
3358
3358
  readonly outputs: readonly [{
3359
- readonly name: "etherAmount";
3359
+ readonly name: "";
3360
3360
  readonly type: "uint256";
3361
3361
  }];
3362
3362
  readonly payable: false;
@@ -3728,7 +3728,7 @@ export declare const getStethContract: () => Promise<{
3728
3728
  }];
3729
3729
  readonly name: "getPooledEthBySharesRoundUp";
3730
3730
  readonly outputs: readonly [{
3731
- readonly name: "etherAmount";
3731
+ readonly name: "";
3732
3732
  readonly type: "uint256";
3733
3733
  }];
3734
3734
  readonly payable: false;
@@ -4100,7 +4100,7 @@ export declare const getStethContract: () => Promise<{
4100
4100
  }];
4101
4101
  readonly name: "getPooledEthBySharesRoundUp";
4102
4102
  readonly outputs: readonly [{
4103
- readonly name: "etherAmount";
4103
+ readonly name: "";
4104
4104
  readonly type: "uint256";
4105
4105
  }];
4106
4106
  readonly payable: false;
@@ -4472,7 +4472,7 @@ export declare const getStethContract: () => Promise<{
4472
4472
  }];
4473
4473
  readonly name: "getPooledEthBySharesRoundUp";
4474
4474
  readonly outputs: readonly [{
4475
- readonly name: "etherAmount";
4475
+ readonly name: "";
4476
4476
  readonly type: "uint256";
4477
4477
  }];
4478
4478
  readonly payable: false;
@@ -4846,7 +4846,7 @@ export declare const getStethContract: () => Promise<{
4846
4846
  }];
4847
4847
  readonly name: "getPooledEthBySharesRoundUp";
4848
4848
  readonly outputs: readonly [{
4849
- readonly name: "etherAmount";
4849
+ readonly name: "";
4850
4850
  readonly type: "uint256";
4851
4851
  }];
4852
4852
  readonly payable: false;
@@ -5218,7 +5218,7 @@ export declare const getStethContract: () => Promise<{
5218
5218
  }];
5219
5219
  readonly name: "getPooledEthBySharesRoundUp";
5220
5220
  readonly outputs: readonly [{
5221
- readonly name: "etherAmount";
5221
+ readonly name: "";
5222
5222
  readonly type: "uint256";
5223
5223
  }];
5224
5224
  readonly payable: false;
@@ -5590,7 +5590,7 @@ export declare const getStethContract: () => Promise<{
5590
5590
  }];
5591
5591
  readonly name: "getPooledEthBySharesRoundUp";
5592
5592
  readonly outputs: readonly [{
5593
- readonly name: "etherAmount";
5593
+ readonly name: "";
5594
5594
  readonly type: "uint256";
5595
5595
  }];
5596
5596
  readonly payable: false;
@@ -5962,7 +5962,7 @@ export declare const getStethContract: () => Promise<{
5962
5962
  }];
5963
5963
  readonly name: "getPooledEthBySharesRoundUp";
5964
5964
  readonly outputs: readonly [{
5965
- readonly name: "etherAmount";
5965
+ readonly name: "";
5966
5966
  readonly type: "uint256";
5967
5967
  }];
5968
5968
  readonly payable: false;
@@ -6334,7 +6334,7 @@ export declare const getStethContract: () => Promise<{
6334
6334
  }];
6335
6335
  readonly name: "getPooledEthBySharesRoundUp";
6336
6336
  readonly outputs: readonly [{
6337
- readonly name: "etherAmount";
6337
+ readonly name: "";
6338
6338
  readonly type: "uint256";
6339
6339
  }];
6340
6340
  readonly payable: false;
@@ -6706,7 +6706,7 @@ export declare const getStethContract: () => Promise<{
6706
6706
  }];
6707
6707
  readonly name: "getPooledEthBySharesRoundUp";
6708
6708
  readonly outputs: readonly [{
6709
- readonly name: "etherAmount";
6709
+ readonly name: "";
6710
6710
  readonly type: "uint256";
6711
6711
  }];
6712
6712
  readonly payable: false;
@@ -7078,7 +7078,7 @@ export declare const getStethContract: () => Promise<{
7078
7078
  }];
7079
7079
  readonly name: "getPooledEthBySharesRoundUp";
7080
7080
  readonly outputs: readonly [{
7081
- readonly name: "etherAmount";
7081
+ readonly name: "";
7082
7082
  readonly type: "uint256";
7083
7083
  }];
7084
7084
  readonly payable: false;
@@ -7451,7 +7451,7 @@ export declare const getStethContract: () => Promise<{
7451
7451
  }];
7452
7452
  readonly name: "getPooledEthBySharesRoundUp";
7453
7453
  readonly outputs: readonly [{
7454
- readonly name: "etherAmount";
7454
+ readonly name: "";
7455
7455
  readonly type: "uint256";
7456
7456
  }];
7457
7457
  readonly payable: false;
@@ -7823,7 +7823,7 @@ export declare const getStethContract: () => Promise<{
7823
7823
  }];
7824
7824
  readonly name: "getPooledEthBySharesRoundUp";
7825
7825
  readonly outputs: readonly [{
7826
- readonly name: "etherAmount";
7826
+ readonly name: "";
7827
7827
  readonly type: "uint256";
7828
7828
  }];
7829
7829
  readonly payable: false;
@@ -8195,7 +8195,7 @@ export declare const getStethContract: () => Promise<{
8195
8195
  }];
8196
8196
  readonly name: "getPooledEthBySharesRoundUp";
8197
8197
  readonly outputs: readonly [{
8198
- readonly name: "etherAmount";
8198
+ readonly name: "";
8199
8199
  readonly type: "uint256";
8200
8200
  }];
8201
8201
  readonly payable: false;
@@ -8567,7 +8567,7 @@ export declare const getStethContract: () => Promise<{
8567
8567
  }];
8568
8568
  readonly name: "getPooledEthBySharesRoundUp";
8569
8569
  readonly outputs: readonly [{
8570
- readonly name: "etherAmount";
8570
+ readonly name: "";
8571
8571
  readonly type: "uint256";
8572
8572
  }];
8573
8573
  readonly payable: false;
@@ -8939,7 +8939,7 @@ export declare const getStethContract: () => Promise<{
8939
8939
  }];
8940
8940
  readonly name: "getPooledEthBySharesRoundUp";
8941
8941
  readonly outputs: readonly [{
8942
- readonly name: "etherAmount";
8942
+ readonly name: "";
8943
8943
  readonly type: "uint256";
8944
8944
  }];
8945
8945
  readonly payable: false;
@@ -9311,7 +9311,7 @@ export declare const getStethContract: () => Promise<{
9311
9311
  }];
9312
9312
  readonly name: "getPooledEthBySharesRoundUp";
9313
9313
  readonly outputs: readonly [{
9314
- readonly name: "etherAmount";
9314
+ readonly name: "";
9315
9315
  readonly type: "uint256";
9316
9316
  }];
9317
9317
  readonly payable: false;
@@ -9683,7 +9683,7 @@ export declare const getStethContract: () => Promise<{
9683
9683
  }];
9684
9684
  readonly name: "getPooledEthBySharesRoundUp";
9685
9685
  readonly outputs: readonly [{
9686
- readonly name: "etherAmount";
9686
+ readonly name: "";
9687
9687
  readonly type: "uint256";
9688
9688
  }];
9689
9689
  readonly payable: false;
@@ -10057,7 +10057,7 @@ export declare const getStethContract: () => Promise<{
10057
10057
  }];
10058
10058
  readonly name: "getPooledEthBySharesRoundUp";
10059
10059
  readonly outputs: readonly [{
10060
- readonly name: "etherAmount";
10060
+ readonly name: "";
10061
10061
  readonly type: "uint256";
10062
10062
  }];
10063
10063
  readonly payable: false;
@@ -10428,7 +10428,7 @@ export declare const getStethContract: () => Promise<{
10428
10428
  }];
10429
10429
  readonly name: "getPooledEthBySharesRoundUp";
10430
10430
  readonly outputs: readonly [{
10431
- readonly name: "etherAmount";
10431
+ readonly name: "";
10432
10432
  readonly type: "uint256";
10433
10433
  }];
10434
10434
  readonly payable: false;
@@ -10800,7 +10800,7 @@ export declare const getStethContract: () => Promise<{
10800
10800
  }];
10801
10801
  readonly name: "getPooledEthBySharesRoundUp";
10802
10802
  readonly outputs: readonly [{
10803
- readonly name: "etherAmount";
10803
+ readonly name: "";
10804
10804
  readonly type: "uint256";
10805
10805
  }];
10806
10806
  readonly payable: false;
@@ -11171,7 +11171,7 @@ export declare const getStethContract: () => Promise<{
11171
11171
  }];
11172
11172
  readonly name: "getPooledEthBySharesRoundUp";
11173
11173
  readonly outputs: readonly [{
11174
- readonly name: "etherAmount";
11174
+ readonly name: "";
11175
11175
  readonly type: "uint256";
11176
11176
  }];
11177
11177
  readonly payable: false;
@@ -11543,7 +11543,7 @@ export declare const getStethContract: () => Promise<{
11543
11543
  }];
11544
11544
  readonly name: "getPooledEthBySharesRoundUp";
11545
11545
  readonly outputs: readonly [{
11546
- readonly name: "etherAmount";
11546
+ readonly name: "";
11547
11547
  readonly type: "uint256";
11548
11548
  }];
11549
11549
  readonly payable: false;
@@ -11914,7 +11914,7 @@ export declare const getStethContract: () => Promise<{
11914
11914
  }];
11915
11915
  readonly name: "getPooledEthBySharesRoundUp";
11916
11916
  readonly outputs: readonly [{
11917
- readonly name: "etherAmount";
11917
+ readonly name: "";
11918
11918
  readonly type: "uint256";
11919
11919
  }];
11920
11920
  readonly payable: false;
@@ -12286,7 +12286,7 @@ export declare const getStethContract: () => Promise<{
12286
12286
  }];
12287
12287
  readonly name: "getPooledEthBySharesRoundUp";
12288
12288
  readonly outputs: readonly [{
12289
- readonly name: "etherAmount";
12289
+ readonly name: "";
12290
12290
  readonly type: "uint256";
12291
12291
  }];
12292
12292
  readonly payable: false;
@@ -12657,7 +12657,7 @@ export declare const getStethContract: () => Promise<{
12657
12657
  }];
12658
12658
  readonly name: "getPooledEthBySharesRoundUp";
12659
12659
  readonly outputs: readonly [{
12660
- readonly name: "etherAmount";
12660
+ readonly name: "";
12661
12661
  readonly type: "uint256";
12662
12662
  }];
12663
12663
  readonly payable: false;
@@ -13029,7 +13029,7 @@ export declare const getStethContract: () => Promise<{
13029
13029
  }];
13030
13030
  readonly name: "getPooledEthBySharesRoundUp";
13031
13031
  readonly outputs: readonly [{
13032
- readonly name: "etherAmount";
13032
+ readonly name: "";
13033
13033
  readonly type: "uint256";
13034
13034
  }];
13035
13035
  readonly payable: false;
@@ -13400,7 +13400,7 @@ export declare const getStethContract: () => Promise<{
13400
13400
  }];
13401
13401
  readonly name: "getPooledEthBySharesRoundUp";
13402
13402
  readonly outputs: readonly [{
13403
- readonly name: "etherAmount";
13403
+ readonly name: "";
13404
13404
  readonly type: "uint256";
13405
13405
  }];
13406
13406
  readonly payable: false;
@@ -13772,7 +13772,7 @@ export declare const getStethContract: () => Promise<{
13772
13772
  }];
13773
13773
  readonly name: "getPooledEthBySharesRoundUp";
13774
13774
  readonly outputs: readonly [{
13775
- readonly name: "etherAmount";
13775
+ readonly name: "";
13776
13776
  readonly type: "uint256";
13777
13777
  }];
13778
13778
  readonly payable: false;
@@ -14143,7 +14143,7 @@ export declare const getStethContract: () => Promise<{
14143
14143
  }];
14144
14144
  readonly name: "getPooledEthBySharesRoundUp";
14145
14145
  readonly outputs: readonly [{
14146
- readonly name: "etherAmount";
14146
+ readonly name: "";
14147
14147
  readonly type: "uint256";
14148
14148
  }];
14149
14149
  readonly payable: false;
@@ -14515,7 +14515,7 @@ export declare const getStethContract: () => Promise<{
14515
14515
  }];
14516
14516
  readonly name: "getPooledEthBySharesRoundUp";
14517
14517
  readonly outputs: readonly [{
14518
- readonly name: "etherAmount";
14518
+ readonly name: "";
14519
14519
  readonly type: "uint256";
14520
14520
  }];
14521
14521
  readonly payable: false;
@@ -14886,7 +14886,7 @@ export declare const getStethContract: () => Promise<{
14886
14886
  }];
14887
14887
  readonly name: "getPooledEthBySharesRoundUp";
14888
14888
  readonly outputs: readonly [{
14889
- readonly name: "etherAmount";
14889
+ readonly name: "";
14890
14890
  readonly type: "uint256";
14891
14891
  }];
14892
14892
  readonly payable: false;
@@ -15265,7 +15265,7 @@ export declare const getStethContract: () => Promise<{
15265
15265
  }];
15266
15266
  readonly name: "getPooledEthBySharesRoundUp";
15267
15267
  readonly outputs: readonly [{
15268
- readonly name: "etherAmount";
15268
+ readonly name: "";
15269
15269
  readonly type: "uint256";
15270
15270
  }];
15271
15271
  readonly payable: false;
@@ -15654,7 +15654,7 @@ export declare const getStethContract: () => Promise<{
15654
15654
  }];
15655
15655
  readonly name: "getPooledEthBySharesRoundUp";
15656
15656
  readonly outputs: readonly [{
15657
- readonly name: "etherAmount";
15657
+ readonly name: "";
15658
15658
  readonly type: "uint256";
15659
15659
  }];
15660
15660
  readonly payable: false;
@@ -16039,7 +16039,7 @@ export declare const getStethContract: () => Promise<{
16039
16039
  }];
16040
16040
  readonly name: "getPooledEthBySharesRoundUp";
16041
16041
  readonly outputs: readonly [{
16042
- readonly name: "etherAmount";
16042
+ readonly name: "";
16043
16043
  readonly type: "uint256";
16044
16044
  }];
16045
16045
  readonly payable: false;
@@ -16416,7 +16416,7 @@ export declare const getStethContract: () => Promise<{
16416
16416
  }];
16417
16417
  readonly name: "getPooledEthBySharesRoundUp";
16418
16418
  readonly outputs: readonly [{
16419
- readonly name: "etherAmount";
16419
+ readonly name: "";
16420
16420
  readonly type: "uint256";
16421
16421
  }];
16422
16422
  readonly payable: false;
@@ -16805,7 +16805,7 @@ export declare const getStethContract: () => Promise<{
16805
16805
  }];
16806
16806
  readonly name: "getPooledEthBySharesRoundUp";
16807
16807
  readonly outputs: readonly [{
16808
- readonly name: "etherAmount";
16808
+ readonly name: "";
16809
16809
  readonly type: "uint256";
16810
16810
  }];
16811
16811
  readonly payable: false;
@@ -17194,7 +17194,7 @@ export declare const getStethContract: () => Promise<{
17194
17194
  }];
17195
17195
  readonly name: "getPooledEthBySharesRoundUp";
17196
17196
  readonly outputs: readonly [{
17197
- readonly name: "etherAmount";
17197
+ readonly name: "";
17198
17198
  readonly type: "uint256";
17199
17199
  }];
17200
17200
  readonly payable: false;
@@ -17573,7 +17573,7 @@ export declare const getStethContract: () => Promise<{
17573
17573
  }];
17574
17574
  readonly name: "getPooledEthBySharesRoundUp";
17575
17575
  readonly outputs: readonly [{
17576
- readonly name: "etherAmount";
17576
+ readonly name: "";
17577
17577
  readonly type: "uint256";
17578
17578
  }];
17579
17579
  readonly payable: false;
@@ -17953,7 +17953,7 @@ export declare const getStethContract: () => Promise<{
17953
17953
  }];
17954
17954
  readonly name: "getPooledEthBySharesRoundUp";
17955
17955
  readonly outputs: readonly [{
17956
- readonly name: "etherAmount";
17956
+ readonly name: "";
17957
17957
  readonly type: "uint256";
17958
17958
  }];
17959
17959
  readonly payable: false;
@@ -18332,7 +18332,7 @@ export declare const getStethContract: () => Promise<{
18332
18332
  }];
18333
18333
  readonly name: "getPooledEthBySharesRoundUp";
18334
18334
  readonly outputs: readonly [{
18335
- readonly name: "etherAmount";
18335
+ readonly name: "";
18336
18336
  readonly type: "uint256";
18337
18337
  }];
18338
18338
  readonly payable: false;
@@ -18709,7 +18709,7 @@ export declare const getStethContract: () => Promise<{
18709
18709
  }];
18710
18710
  readonly name: "getPooledEthBySharesRoundUp";
18711
18711
  readonly outputs: readonly [{
18712
- readonly name: "etherAmount";
18712
+ readonly name: "";
18713
18713
  readonly type: "uint256";
18714
18714
  }];
18715
18715
  readonly payable: false;
@@ -19089,7 +19089,7 @@ export declare const getStethContract: () => Promise<{
19089
19089
  }];
19090
19090
  readonly name: "getPooledEthBySharesRoundUp";
19091
19091
  readonly outputs: readonly [{
19092
- readonly name: "etherAmount";
19092
+ readonly name: "";
19093
19093
  readonly type: "uint256";
19094
19094
  }];
19095
19095
  readonly payable: false;
@@ -19469,7 +19469,7 @@ export declare const getStethContract: () => Promise<{
19469
19469
  }];
19470
19470
  readonly name: "getPooledEthBySharesRoundUp";
19471
19471
  readonly outputs: readonly [{
19472
- readonly name: "etherAmount";
19472
+ readonly name: "";
19473
19473
  readonly type: "uint256";
19474
19474
  }];
19475
19475
  readonly payable: false;
@@ -19849,7 +19849,7 @@ export declare const getStethContract: () => Promise<{
19849
19849
  }];
19850
19850
  readonly name: "getPooledEthBySharesRoundUp";
19851
19851
  readonly outputs: readonly [{
19852
- readonly name: "etherAmount";
19852
+ readonly name: "";
19853
19853
  readonly type: "uint256";
19854
19854
  }];
19855
19855
  readonly payable: false;
@@ -20232,7 +20232,7 @@ export declare const getStethContract: () => Promise<{
20232
20232
  }];
20233
20233
  readonly name: "getPooledEthBySharesRoundUp";
20234
20234
  readonly outputs: readonly [{
20235
- readonly name: "etherAmount";
20235
+ readonly name: "";
20236
20236
  readonly type: "uint256";
20237
20237
  }];
20238
20238
  readonly payable: false;
@@ -20614,7 +20614,7 @@ export declare const getStethContract: () => Promise<{
20614
20614
  }];
20615
20615
  readonly name: "getPooledEthBySharesRoundUp";
20616
20616
  readonly outputs: readonly [{
20617
- readonly name: "etherAmount";
20617
+ readonly name: "";
20618
20618
  readonly type: "uint256";
20619
20619
  }];
20620
20620
  readonly payable: false;
@@ -20994,7 +20994,7 @@ export declare const getStethContract: () => Promise<{
20994
20994
  }];
20995
20995
  readonly name: "getPooledEthBySharesRoundUp";
20996
20996
  readonly outputs: readonly [{
20997
- readonly name: "etherAmount";
20997
+ readonly name: "";
20998
20998
  readonly type: "uint256";
20999
20999
  }];
21000
21000
  readonly payable: false;
@@ -21377,7 +21377,7 @@ export declare const getStethContract: () => Promise<{
21377
21377
  }];
21378
21378
  readonly name: "getPooledEthBySharesRoundUp";
21379
21379
  readonly outputs: readonly [{
21380
- readonly name: "etherAmount";
21380
+ readonly name: "";
21381
21381
  readonly type: "uint256";
21382
21382
  }];
21383
21383
  readonly payable: false;
@@ -21760,7 +21760,7 @@ export declare const getStethContract: () => Promise<{
21760
21760
  }];
21761
21761
  readonly name: "getPooledEthBySharesRoundUp";
21762
21762
  readonly outputs: readonly [{
21763
- readonly name: "etherAmount";
21763
+ readonly name: "";
21764
21764
  readonly type: "uint256";
21765
21765
  }];
21766
21766
  readonly payable: false;
@@ -22136,7 +22136,7 @@ export declare const getStethContract: () => Promise<{
22136
22136
  }];
22137
22137
  readonly name: "getPooledEthBySharesRoundUp";
22138
22138
  readonly outputs: readonly [{
22139
- readonly name: "etherAmount";
22139
+ readonly name: "";
22140
22140
  readonly type: "uint256";
22141
22141
  }];
22142
22142
  readonly payable: false;
@@ -22507,7 +22507,7 @@ export declare const getStethContract: () => Promise<{
22507
22507
  }];
22508
22508
  readonly name: "getPooledEthBySharesRoundUp";
22509
22509
  readonly outputs: readonly [{
22510
- readonly name: "etherAmount";
22510
+ readonly name: "";
22511
22511
  readonly type: "uint256";
22512
22512
  }];
22513
22513
  readonly payable: false;
@@ -22879,7 +22879,7 @@ export declare const getStethContract: () => Promise<{
22879
22879
  }];
22880
22880
  readonly name: "getPooledEthBySharesRoundUp";
22881
22881
  readonly outputs: readonly [{
22882
- readonly name: "etherAmount";
22882
+ readonly name: "";
22883
22883
  readonly type: "uint256";
22884
22884
  }];
22885
22885
  readonly payable: false;
@@ -23250,7 +23250,7 @@ export declare const getStethContract: () => Promise<{
23250
23250
  }];
23251
23251
  readonly name: "getPooledEthBySharesRoundUp";
23252
23252
  readonly outputs: readonly [{
23253
- readonly name: "etherAmount";
23253
+ readonly name: "";
23254
23254
  readonly type: "uint256";
23255
23255
  }];
23256
23256
  readonly payable: false;
@@ -23622,7 +23622,7 @@ export declare const getStethContract: () => Promise<{
23622
23622
  }];
23623
23623
  readonly name: "getPooledEthBySharesRoundUp";
23624
23624
  readonly outputs: readonly [{
23625
- readonly name: "etherAmount";
23625
+ readonly name: "";
23626
23626
  readonly type: "uint256";
23627
23627
  }];
23628
23628
  readonly payable: false;
@@ -23993,7 +23993,7 @@ export declare const getStethContract: () => Promise<{
23993
23993
  }];
23994
23994
  readonly name: "getPooledEthBySharesRoundUp";
23995
23995
  readonly outputs: readonly [{
23996
- readonly name: "etherAmount";
23996
+ readonly name: "";
23997
23997
  readonly type: "uint256";
23998
23998
  }];
23999
23999
  readonly payable: false;
@@ -24365,7 +24365,7 @@ export declare const getStethContract: () => Promise<{
24365
24365
  }];
24366
24366
  readonly name: "getPooledEthBySharesRoundUp";
24367
24367
  readonly outputs: readonly [{
24368
- readonly name: "etherAmount";
24368
+ readonly name: "";
24369
24369
  readonly type: "uint256";
24370
24370
  }];
24371
24371
  readonly payable: false;
@@ -24736,7 +24736,7 @@ export declare const getStethContract: () => Promise<{
24736
24736
  }];
24737
24737
  readonly name: "getPooledEthBySharesRoundUp";
24738
24738
  readonly outputs: readonly [{
24739
- readonly name: "etherAmount";
24739
+ readonly name: "";
24740
24740
  readonly type: "uint256";
24741
24741
  }];
24742
24742
  readonly payable: false;
@@ -25108,7 +25108,7 @@ export declare const getStethContract: () => Promise<{
25108
25108
  }];
25109
25109
  readonly name: "getPooledEthBySharesRoundUp";
25110
25110
  readonly outputs: readonly [{
25111
- readonly name: "etherAmount";
25111
+ readonly name: "";
25112
25112
  readonly type: "uint256";
25113
25113
  }];
25114
25114
  readonly payable: false;
@@ -25479,7 +25479,7 @@ export declare const getStethContract: () => Promise<{
25479
25479
  }];
25480
25480
  readonly name: "getPooledEthBySharesRoundUp";
25481
25481
  readonly outputs: readonly [{
25482
- readonly name: "etherAmount";
25482
+ readonly name: "";
25483
25483
  readonly type: "uint256";
25484
25484
  }];
25485
25485
  readonly payable: false;
@@ -25851,7 +25851,7 @@ export declare const getStethContract: () => Promise<{
25851
25851
  }];
25852
25852
  readonly name: "getPooledEthBySharesRoundUp";
25853
25853
  readonly outputs: readonly [{
25854
- readonly name: "etherAmount";
25854
+ readonly name: "";
25855
25855
  readonly type: "uint256";
25856
25856
  }];
25857
25857
  readonly payable: false;
@@ -26222,7 +26222,7 @@ export declare const getStethContract: () => Promise<{
26222
26222
  }];
26223
26223
  readonly name: "getPooledEthBySharesRoundUp";
26224
26224
  readonly outputs: readonly [{
26225
- readonly name: "etherAmount";
26225
+ readonly name: "";
26226
26226
  readonly type: "uint256";
26227
26227
  }];
26228
26228
  readonly payable: false;
@@ -26594,7 +26594,7 @@ export declare const getStethContract: () => Promise<{
26594
26594
  }];
26595
26595
  readonly name: "getPooledEthBySharesRoundUp";
26596
26596
  readonly outputs: readonly [{
26597
- readonly name: "etherAmount";
26597
+ readonly name: "";
26598
26598
  readonly type: "uint256";
26599
26599
  }];
26600
26600
  readonly payable: false;
@@ -26965,7 +26965,7 @@ export declare const getStethContract: () => Promise<{
26965
26965
  }];
26966
26966
  readonly name: "getPooledEthBySharesRoundUp";
26967
26967
  readonly outputs: readonly [{
26968
- readonly name: "etherAmount";
26968
+ readonly name: "";
26969
26969
  readonly type: "uint256";
26970
26970
  }];
26971
26971
  readonly payable: false;
@@ -27339,7 +27339,7 @@ export declare const getStethContract: () => Promise<{
27339
27339
  }];
27340
27340
  readonly name: "getPooledEthBySharesRoundUp";
27341
27341
  readonly outputs: readonly [{
27342
- readonly name: "etherAmount";
27342
+ readonly name: "";
27343
27343
  readonly type: "uint256";
27344
27344
  }];
27345
27345
  readonly payable: false;