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

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 (494) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/dist/abi/AccessControlConfirmable.d.ts +4 -3
  4. package/dist/abi/AccessControlConfirmable.js +4 -2
  5. package/dist/abi/AccessControlConfirmable.js.map +1 -1
  6. package/dist/abi/Dashboard.d.ts +731 -437
  7. package/dist/abi/Dashboard.js +322 -302
  8. package/dist/abi/Dashboard.js.map +1 -1
  9. package/dist/abi/LazyOracle.d.ts +319 -27
  10. package/dist/abi/LazyOracle.js +406 -27
  11. package/dist/abi/LazyOracle.js.map +1 -1
  12. package/dist/abi/LidoLocator.d.ts +28 -0
  13. package/dist/abi/LidoLocator.js +36 -0
  14. package/dist/abi/LidoLocator.js.map +1 -1
  15. package/dist/abi/OperatorGrid.d.ts +879 -100
  16. package/dist/abi/OperatorGrid.js +224 -2
  17. package/dist/abi/OperatorGrid.js.map +1 -1
  18. package/dist/abi/PredepositGuarantee.d.ts +210 -169
  19. package/dist/abi/PredepositGuarantee.js +192 -198
  20. package/dist/abi/PredepositGuarantee.js.map +1 -1
  21. package/dist/abi/StEth.d.ts +1 -1
  22. package/dist/abi/StEth.js +1 -1
  23. package/dist/abi/StEth.js.map +1 -1
  24. package/dist/abi/StakingVault.d.ts +241 -41
  25. package/dist/abi/StakingVault.js +206 -43
  26. package/dist/abi/StakingVault.js.map +1 -1
  27. package/dist/abi/VaultFactory.d.ts +524 -72
  28. package/dist/abi/VaultFactory.js +42 -1
  29. package/dist/abi/VaultFactory.js.map +1 -1
  30. package/dist/abi/VaultHub.d.ts +439 -409
  31. package/dist/abi/VaultHub.js +363 -399
  32. package/dist/abi/VaultHub.js.map +1 -1
  33. package/dist/abi/VaultViewer.d.ts +204 -238
  34. package/dist/abi/VaultViewer.js +251 -299
  35. package/dist/abi/VaultViewer.js.map +1 -1
  36. package/dist/abi/defi-wrapper/Distributor.d.ts +486 -0
  37. package/dist/abi/defi-wrapper/Distributor.js +633 -0
  38. package/dist/abi/defi-wrapper/Distributor.js.map +1 -0
  39. package/dist/abi/defi-wrapper/Factory.d.ts +1184 -0
  40. package/dist/abi/defi-wrapper/Factory.js +932 -0
  41. package/dist/abi/defi-wrapper/Factory.js.map +1 -0
  42. package/dist/abi/defi-wrapper/StvPool.d.ts +1079 -0
  43. package/dist/abi/defi-wrapper/StvPool.js +1410 -0
  44. package/dist/abi/defi-wrapper/StvPool.js.map +1 -0
  45. package/dist/abi/defi-wrapper/StvStETHPool.d.ts +1772 -0
  46. package/dist/abi/defi-wrapper/StvStETHPool.js +2316 -0
  47. package/dist/abi/defi-wrapper/StvStETHPool.js.map +1 -0
  48. package/dist/abi/defi-wrapper/WithdrawalQueue.d.ts +1265 -0
  49. package/dist/abi/defi-wrapper/WithdrawalQueue.js +1647 -0
  50. package/dist/abi/defi-wrapper/WithdrawalQueue.js.map +1 -0
  51. package/dist/abi/defi-wrapper/index.d.ts +5 -0
  52. package/dist/abi/defi-wrapper/index.js +6 -0
  53. package/dist/abi/defi-wrapper/index.js.map +1 -0
  54. package/dist/abi/index.d.ts +0 -2
  55. package/dist/abi/index.js +0 -2
  56. package/dist/abi/index.js.map +1 -1
  57. package/dist/configs/constants.d.ts +44 -2
  58. package/dist/configs/constants.js +2 -2
  59. package/dist/configs/constants.js.map +1 -1
  60. package/dist/configs/deployed.d.ts +2 -2
  61. package/dist/configs/deployed.js +48 -6
  62. package/dist/configs/deployed.js.map +1 -1
  63. package/dist/configs/utils.d.ts +1 -0
  64. package/dist/configs/utils.js +4 -0
  65. package/dist/configs/utils.js.map +1 -1
  66. package/dist/contracts/dashboard-impl.d.ts +4 -0
  67. package/dist/contracts/dashboard-impl.js +17 -0
  68. package/dist/contracts/dashboard-impl.js.map +1 -0
  69. package/dist/contracts/dashboard.d.ts +2 -2
  70. package/dist/contracts/dashboard.js +3 -2
  71. package/dist/contracts/dashboard.js.map +1 -1
  72. package/dist/contracts/defi-wrapper/distributor.d.ts +4 -0
  73. package/dist/contracts/defi-wrapper/distributor.js +12 -0
  74. package/dist/contracts/defi-wrapper/distributor.js.map +1 -0
  75. package/dist/contracts/defi-wrapper/factory.d.ts +4 -0
  76. package/dist/contracts/defi-wrapper/factory.js +12 -0
  77. package/dist/contracts/defi-wrapper/factory.js.map +1 -0
  78. package/dist/contracts/defi-wrapper/index.d.ts +5 -0
  79. package/dist/contracts/defi-wrapper/index.js +6 -0
  80. package/dist/contracts/defi-wrapper/index.js.map +1 -0
  81. package/dist/contracts/defi-wrapper/stv-pool.d.ts +4 -0
  82. package/dist/contracts/defi-wrapper/stv-pool.js +12 -0
  83. package/dist/contracts/defi-wrapper/stv-pool.js.map +1 -0
  84. package/dist/contracts/defi-wrapper/stv-steth-pool.d.ts +4 -0
  85. package/dist/contracts/defi-wrapper/stv-steth-pool.js +12 -0
  86. package/dist/contracts/defi-wrapper/stv-steth-pool.js.map +1 -0
  87. package/dist/contracts/defi-wrapper/withdrawal-queue.d.ts +4 -0
  88. package/dist/contracts/defi-wrapper/withdrawal-queue.js +12 -0
  89. package/dist/contracts/defi-wrapper/withdrawal-queue.js.map +1 -0
  90. package/dist/contracts/index.d.ts +1 -1
  91. package/dist/contracts/index.js +1 -1
  92. package/dist/contracts/index.js.map +1 -1
  93. package/dist/contracts/lazy-oracle.js +3 -2
  94. package/dist/contracts/lazy-oracle.js.map +1 -1
  95. package/dist/contracts/locator.d.ts +3 -8239
  96. package/dist/contracts/locator.js +4 -3
  97. package/dist/contracts/locator.js.map +1 -1
  98. package/dist/contracts/operator-grid.d.ts +1 -1
  99. package/dist/contracts/operator-grid.js +3 -2
  100. package/dist/contracts/operator-grid.js.map +1 -1
  101. package/dist/contracts/pdg.js +3 -2
  102. package/dist/contracts/pdg.js.map +1 -1
  103. package/dist/contracts/steth.d.ts +128 -128
  104. package/dist/contracts/steth.js +3 -2
  105. package/dist/contracts/steth.js.map +1 -1
  106. package/dist/contracts/vault-factory.d.ts +3 -16404
  107. package/dist/contracts/vault-factory.js +4 -3
  108. package/dist/contracts/vault-factory.js.map +1 -1
  109. package/dist/contracts/vault-hub.js +3 -2
  110. package/dist/contracts/vault-hub.js.map +1 -1
  111. package/dist/contracts/vault-viewer.d.ts +3 -11197
  112. package/dist/contracts/vault-viewer.js +9 -7
  113. package/dist/contracts/vault-viewer.js.map +1 -1
  114. package/dist/contracts/vault.d.ts +2 -2
  115. package/dist/contracts/vault.js +3 -2
  116. package/dist/contracts/vault.js.map +1 -1
  117. package/dist/contracts/wsteth.d.ts +3 -24690
  118. package/dist/contracts/wsteth.js +4 -3
  119. package/dist/contracts/wsteth.js.map +1 -1
  120. package/dist/features/defi-wrapper/create-vault.d.ts +17 -0
  121. package/dist/features/defi-wrapper/create-vault.js +137 -0
  122. package/dist/features/defi-wrapper/create-vault.js.map +1 -0
  123. package/dist/features/defi-wrapper/defi-wrapper-factory.d.ts +112 -0
  124. package/dist/features/defi-wrapper/defi-wrapper-factory.js +228 -0
  125. package/dist/features/defi-wrapper/defi-wrapper-factory.js.map +1 -0
  126. package/dist/features/defi-wrapper/index.d.ts +3 -0
  127. package/dist/features/defi-wrapper/index.js +4 -0
  128. package/dist/features/defi-wrapper/index.js.map +1 -0
  129. package/dist/features/defi-wrapper/pool-info.d.ts +35 -0
  130. package/dist/features/defi-wrapper/pool-info.js +97 -0
  131. package/dist/features/defi-wrapper/pool-info.js.map +1 -0
  132. package/dist/features/deposits/check-bls-deposits.d.ts +2 -1
  133. package/dist/features/deposits/check-bls-deposits.js +11 -2
  134. package/dist/features/deposits/check-bls-deposits.js.map +1 -1
  135. package/dist/features/deposits/make-pdg-proof.d.ts +8 -0
  136. package/dist/features/deposits/make-pdg-proof.js +17 -1
  137. package/dist/features/deposits/make-pdg-proof.js.map +1 -1
  138. package/dist/features/deposits/no-pdg.d.ts +1 -1
  139. package/dist/features/deposits/no-pdg.js +6 -3
  140. package/dist/features/deposits/no-pdg.js.map +1 -1
  141. package/dist/features/dev-tools/impersonate.d.ts +14 -0
  142. package/dist/features/dev-tools/impersonate.js +64 -0
  143. package/dist/features/dev-tools/impersonate.js.map +1 -0
  144. package/dist/features/dev-tools/index.d.ts +1 -0
  145. package/dist/features/dev-tools/index.js +2 -0
  146. package/dist/features/dev-tools/index.js.map +1 -0
  147. package/dist/features/index.d.ts +3 -0
  148. package/dist/features/index.js +3 -0
  149. package/dist/features/index.js.map +1 -1
  150. package/dist/features/lazy-oracle.d.ts +1 -0
  151. package/dist/features/lazy-oracle.js +42 -0
  152. package/dist/features/lazy-oracle.js.map +1 -0
  153. package/dist/features/mint-burn/allowance.js +1 -1
  154. package/dist/features/mint-burn/allowance.js.map +1 -1
  155. package/dist/features/pdg.d.ts +7 -0
  156. package/dist/features/pdg.js +5 -5
  157. package/dist/features/pdg.js.map +1 -1
  158. package/dist/features/utils/get-boolean.d.ts +1 -0
  159. package/dist/features/utils/get-boolean.js +13 -0
  160. package/dist/features/utils/get-boolean.js.map +1 -0
  161. package/dist/features/utils/index.d.ts +2 -0
  162. package/dist/features/utils/index.js +2 -0
  163. package/dist/features/utils/index.js.map +1 -1
  164. package/dist/features/utils/quarantine.d.ts +2 -0
  165. package/dist/features/utils/quarantine.js +2 -0
  166. package/dist/features/utils/quarantine.js.map +1 -1
  167. package/dist/features/utils/report-fresh.js +17 -1
  168. package/dist/features/utils/report-fresh.js.map +1 -1
  169. package/dist/features/utils/settled-growth.d.ts +1 -0
  170. package/dist/features/utils/settled-growth.js +16 -0
  171. package/dist/features/utils/settled-growth.js.map +1 -0
  172. package/dist/features/vault-factory.d.ts +2 -2
  173. package/dist/features/vault-factory.js +8 -3
  174. package/dist/features/vault-factory.js.map +1 -1
  175. package/dist/features/vault-hub.js +0 -4
  176. package/dist/features/vault-hub.js.map +1 -1
  177. package/dist/features/vault-operations/create-vault.d.ts +4 -2
  178. package/dist/features/vault-operations/create-vault.js +13 -5
  179. package/dist/features/vault-operations/create-vault.js.map +1 -1
  180. package/dist/features/vault-operations/dashboard-by-vault.d.ts +2 -1
  181. package/dist/features/vault-operations/dashboard-by-vault.js +6 -4
  182. package/dist/features/vault-operations/dashboard-by-vault.js.map +1 -1
  183. package/dist/features/vault-operations/vault-health.js +2 -2
  184. package/dist/features/vault-operations/vault-health.js.map +1 -1
  185. package/dist/features/vault-operations/vault-info.js +32 -33
  186. package/dist/features/vault-operations/vault-info.js.map +1 -1
  187. package/dist/features/vault-operations/vault-overview.js +46 -39
  188. package/dist/features/vault-operations/vault-overview.js.map +1 -1
  189. package/dist/features/vault-operations/vault-roles.d.ts +2 -1
  190. package/dist/features/vault-operations/vault-roles.js +22 -23
  191. package/dist/features/vault-operations/vault-roles.js.map +1 -1
  192. package/dist/features/vault-operations/vaults-by-role.d.ts +5 -0
  193. package/dist/features/vault-operations/vaults-by-role.js +123 -36
  194. package/dist/features/vault-operations/vaults-by-role.js.map +1 -1
  195. package/dist/features/vault.js +8 -4
  196. package/dist/features/vault.js.map +1 -1
  197. package/dist/index.js +18 -6
  198. package/dist/index.js.map +1 -1
  199. package/dist/programs/account/read.js +1 -1
  200. package/dist/programs/account/read.js.map +1 -1
  201. package/dist/programs/account/write.js +14 -0
  202. package/dist/programs/account/write.js.map +1 -1
  203. package/dist/programs/contracts/dashboard/config.js +49 -40
  204. package/dist/programs/contracts/dashboard/config.js.map +1 -1
  205. package/dist/programs/contracts/dashboard/read.js +44 -9
  206. package/dist/programs/contracts/dashboard/read.js.map +1 -1
  207. package/dist/programs/contracts/dashboard/write.js +236 -127
  208. package/dist/programs/contracts/dashboard/write.js.map +1 -1
  209. package/dist/programs/contracts/hub/config.js +7 -27
  210. package/dist/programs/contracts/hub/config.js.map +1 -1
  211. package/dist/programs/contracts/hub/read.js +63 -2
  212. package/dist/programs/contracts/hub/read.js.map +1 -1
  213. package/dist/programs/contracts/hub/write.js +8 -70
  214. package/dist/programs/contracts/hub/write.js.map +1 -1
  215. package/dist/programs/contracts/lazy-oracle/config.js +38 -0
  216. package/dist/programs/contracts/lazy-oracle/config.js.map +1 -1
  217. package/dist/programs/contracts/lazy-oracle/read.js +7 -0
  218. package/dist/programs/contracts/lazy-oracle/read.js.map +1 -1
  219. package/dist/programs/contracts/operator-grid/config.js +21 -10
  220. package/dist/programs/contracts/operator-grid/config.js.map +1 -1
  221. package/dist/programs/contracts/operator-grid/read.js +21 -1
  222. package/dist/programs/contracts/operator-grid/read.js.map +1 -1
  223. package/dist/programs/contracts/operator-grid/write.js +40 -71
  224. package/dist/programs/contracts/operator-grid/write.js.map +1 -1
  225. package/dist/programs/contracts/pdg/config.js +9 -2
  226. package/dist/programs/contracts/pdg/config.js.map +1 -1
  227. package/dist/programs/contracts/pdg/read.js +13 -1
  228. package/dist/programs/contracts/pdg/read.js.map +1 -1
  229. package/dist/programs/contracts/pdg/write.js +55 -86
  230. package/dist/programs/contracts/pdg/write.js.map +1 -1
  231. package/dist/programs/contracts/vault/config.js +12 -0
  232. package/dist/programs/contracts/vault/config.js.map +1 -1
  233. package/dist/programs/contracts/vault/write.js +110 -35
  234. package/dist/programs/contracts/vault/write.js.map +1 -1
  235. package/dist/programs/contracts/vault-factory/config.js +14 -1
  236. package/dist/programs/contracts/vault-factory/config.js.map +1 -1
  237. package/dist/programs/contracts/vault-factory/write.js +25 -15
  238. package/dist/programs/contracts/vault-factory/write.js.map +1 -1
  239. package/dist/programs/contracts/vault-viewer/config.js +102 -59
  240. package/dist/programs/contracts/vault-viewer/config.js.map +1 -1
  241. package/dist/programs/contracts/vault-viewer/read.js +22 -76
  242. package/dist/programs/contracts/vault-viewer/read.js.map +1 -1
  243. package/dist/programs/defi-wrapper/contracts/distributor/config.d.ts +3 -0
  244. package/dist/programs/defi-wrapper/contracts/distributor/config.js +44 -0
  245. package/dist/programs/defi-wrapper/contracts/distributor/config.js.map +1 -0
  246. package/dist/programs/defi-wrapper/contracts/distributor/index.d.ts +3 -0
  247. package/dist/programs/defi-wrapper/contracts/distributor/index.js +4 -0
  248. package/dist/programs/defi-wrapper/contracts/distributor/index.js.map +1 -0
  249. package/dist/programs/defi-wrapper/contracts/distributor/main.d.ts +1 -0
  250. package/dist/programs/defi-wrapper/contracts/distributor/main.js +5 -0
  251. package/dist/programs/defi-wrapper/contracts/distributor/main.js.map +1 -0
  252. package/dist/programs/defi-wrapper/contracts/distributor/read.d.ts +1 -0
  253. package/dist/programs/defi-wrapper/contracts/distributor/read.js +40 -0
  254. package/dist/programs/defi-wrapper/contracts/distributor/read.js.map +1 -0
  255. package/dist/programs/defi-wrapper/contracts/distributor/write.d.ts +1 -0
  256. package/dist/programs/defi-wrapper/contracts/distributor/write.js +70 -0
  257. package/dist/programs/defi-wrapper/contracts/distributor/write.js.map +1 -0
  258. package/dist/programs/defi-wrapper/contracts/factory/config.d.ts +3 -0
  259. package/dist/programs/defi-wrapper/contracts/factory/config.js +2 -0
  260. package/dist/programs/defi-wrapper/contracts/factory/config.js.map +1 -0
  261. package/dist/programs/defi-wrapper/contracts/factory/index.d.ts +3 -0
  262. package/dist/programs/defi-wrapper/contracts/factory/index.js +4 -0
  263. package/dist/programs/defi-wrapper/contracts/factory/index.js.map +1 -0
  264. package/dist/programs/defi-wrapper/contracts/factory/main.d.ts +1 -0
  265. package/dist/programs/defi-wrapper/contracts/factory/main.js +6 -0
  266. package/dist/programs/defi-wrapper/contracts/factory/main.js.map +1 -0
  267. package/dist/programs/defi-wrapper/contracts/factory/read.d.ts +1 -0
  268. package/dist/programs/defi-wrapper/contracts/factory/read.js +50 -0
  269. package/dist/programs/defi-wrapper/contracts/factory/read.js.map +1 -0
  270. package/dist/programs/defi-wrapper/contracts/factory/write.d.ts +1 -0
  271. package/dist/programs/defi-wrapper/contracts/factory/write.js +144 -0
  272. package/dist/programs/defi-wrapper/contracts/factory/write.js.map +1 -0
  273. package/dist/programs/defi-wrapper/contracts/index.d.ts +6 -0
  274. package/dist/programs/defi-wrapper/contracts/index.js +7 -0
  275. package/dist/programs/defi-wrapper/contracts/index.js.map +1 -0
  276. package/dist/programs/defi-wrapper/contracts/main.d.ts +1 -0
  277. package/dist/programs/defi-wrapper/contracts/main.js +6 -0
  278. package/dist/programs/defi-wrapper/contracts/main.js.map +1 -0
  279. package/dist/programs/defi-wrapper/contracts/stv-pool/config.d.ts +3 -0
  280. package/dist/programs/defi-wrapper/contracts/stv-pool/config.js +73 -0
  281. package/dist/programs/defi-wrapper/contracts/stv-pool/config.js.map +1 -0
  282. package/dist/programs/defi-wrapper/contracts/stv-pool/index.d.ts +3 -0
  283. package/dist/programs/defi-wrapper/contracts/stv-pool/index.js +4 -0
  284. package/dist/programs/defi-wrapper/contracts/stv-pool/index.js.map +1 -0
  285. package/dist/programs/defi-wrapper/contracts/stv-pool/main.d.ts +1 -0
  286. package/dist/programs/defi-wrapper/contracts/stv-pool/main.js +6 -0
  287. package/dist/programs/defi-wrapper/contracts/stv-pool/main.js.map +1 -0
  288. package/dist/programs/defi-wrapper/contracts/stv-pool/read.d.ts +1 -0
  289. package/dist/programs/defi-wrapper/contracts/stv-pool/read.js +70 -0
  290. package/dist/programs/defi-wrapper/contracts/stv-pool/read.js.map +1 -0
  291. package/dist/programs/defi-wrapper/contracts/stv-pool/write.d.ts +1 -0
  292. package/dist/programs/defi-wrapper/contracts/stv-pool/write.js +138 -0
  293. package/dist/programs/defi-wrapper/contracts/stv-pool/write.js.map +1 -0
  294. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.d.ts +3 -0
  295. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js +120 -0
  296. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js.map +1 -0
  297. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.d.ts +3 -0
  298. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js +4 -0
  299. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js.map +1 -0
  300. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.d.ts +1 -0
  301. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js +6 -0
  302. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js.map +1 -0
  303. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.d.ts +1 -0
  304. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js +70 -0
  305. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js.map +1 -0
  306. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.d.ts +1 -0
  307. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js +173 -0
  308. package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js.map +1 -0
  309. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.d.ts +3 -0
  310. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js +66 -0
  311. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js.map +1 -0
  312. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.d.ts +3 -0
  313. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js +4 -0
  314. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js.map +1 -0
  315. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.d.ts +1 -0
  316. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js +6 -0
  317. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js.map +1 -0
  318. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.d.ts +1 -0
  319. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js +65 -0
  320. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js.map +1 -0
  321. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.d.ts +1 -0
  322. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js +171 -0
  323. package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js.map +1 -0
  324. package/dist/programs/defi-wrapper/index.d.ts +3 -0
  325. package/dist/programs/defi-wrapper/index.js +4 -0
  326. package/dist/programs/defi-wrapper/index.js.map +1 -0
  327. package/dist/programs/defi-wrapper/main.d.ts +1 -0
  328. package/dist/programs/defi-wrapper/main.js +6 -0
  329. package/dist/programs/defi-wrapper/main.js.map +1 -0
  330. package/dist/programs/defi-wrapper/use-cases/health/index.d.ts +3 -0
  331. package/dist/programs/defi-wrapper/use-cases/health/index.js +4 -0
  332. package/dist/programs/defi-wrapper/use-cases/health/index.js.map +1 -0
  333. package/dist/programs/defi-wrapper/use-cases/health/main.d.ts +1 -0
  334. package/dist/programs/defi-wrapper/use-cases/health/main.js +6 -0
  335. package/dist/programs/defi-wrapper/use-cases/health/main.js.map +1 -0
  336. package/dist/programs/defi-wrapper/use-cases/health/read.d.ts +1 -0
  337. package/dist/programs/defi-wrapper/use-cases/health/read.js +338 -0
  338. package/dist/programs/defi-wrapper/use-cases/health/read.js.map +1 -0
  339. package/dist/programs/defi-wrapper/use-cases/health/utils.d.ts +56 -0
  340. package/dist/programs/defi-wrapper/use-cases/health/utils.js +389 -0
  341. package/dist/programs/defi-wrapper/use-cases/health/utils.js.map +1 -0
  342. package/dist/programs/defi-wrapper/use-cases/health/write.d.ts +1 -0
  343. package/dist/programs/defi-wrapper/use-cases/health/write.js +254 -0
  344. package/dist/programs/defi-wrapper/use-cases/health/write.js.map +1 -0
  345. package/dist/programs/defi-wrapper/use-cases/index.d.ts +3 -0
  346. package/dist/programs/defi-wrapper/use-cases/index.js +4 -0
  347. package/dist/programs/defi-wrapper/use-cases/index.js.map +1 -0
  348. package/dist/programs/defi-wrapper/use-cases/main.d.ts +1 -0
  349. package/dist/programs/defi-wrapper/use-cases/main.js +6 -0
  350. package/dist/programs/defi-wrapper/use-cases/main.js.map +1 -0
  351. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.d.ts +1 -0
  352. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.js +143 -0
  353. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/create-pool.js.map +1 -0
  354. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.d.ts +3 -0
  355. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.js +5 -0
  356. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/index.js.map +1 -0
  357. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.d.ts +1 -0
  358. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.js +6 -0
  359. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/main.js.map +1 -0
  360. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.d.ts +1 -0
  361. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.js +130 -0
  362. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/read.js.map +1 -0
  363. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.d.ts +1 -0
  364. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.js +13 -0
  365. package/dist/programs/defi-wrapper/use-cases/wrapper-operations/write.js.map +1 -0
  366. package/dist/programs/dev-tools/anvil/index.d.ts +2 -0
  367. package/dist/programs/dev-tools/anvil/index.js +3 -0
  368. package/dist/programs/dev-tools/anvil/index.js.map +1 -0
  369. package/dist/programs/dev-tools/anvil/main.d.ts +1 -0
  370. package/dist/programs/dev-tools/anvil/main.js +5 -0
  371. package/dist/programs/dev-tools/anvil/main.js.map +1 -0
  372. package/dist/programs/dev-tools/anvil/write.d.ts +1 -0
  373. package/dist/programs/dev-tools/anvil/write.js +122 -0
  374. package/dist/programs/dev-tools/anvil/write.js.map +1 -0
  375. package/dist/programs/dev-tools/defi-wrapper/index.d.ts +2 -0
  376. package/dist/programs/dev-tools/defi-wrapper/index.js +3 -0
  377. package/dist/programs/dev-tools/defi-wrapper/index.js.map +1 -0
  378. package/dist/programs/dev-tools/defi-wrapper/main.d.ts +1 -0
  379. package/dist/programs/dev-tools/defi-wrapper/main.js +6 -0
  380. package/dist/programs/dev-tools/defi-wrapper/main.js.map +1 -0
  381. package/dist/programs/dev-tools/defi-wrapper/write.d.ts +1 -0
  382. package/dist/programs/dev-tools/defi-wrapper/write.js +77 -0
  383. package/dist/programs/dev-tools/defi-wrapper/write.js.map +1 -0
  384. package/dist/programs/dev-tools/index.d.ts +3 -0
  385. package/dist/programs/dev-tools/index.js +4 -0
  386. package/dist/programs/dev-tools/index.js.map +1 -0
  387. package/dist/programs/dev-tools/main.d.ts +1 -0
  388. package/dist/programs/dev-tools/main.js +6 -0
  389. package/dist/programs/dev-tools/main.js.map +1 -0
  390. package/dist/programs/index.d.ts +2 -0
  391. package/dist/programs/index.js +2 -0
  392. package/dist/programs/index.js.map +1 -1
  393. package/dist/programs/pdg-helpers.js +5 -5
  394. package/dist/programs/pdg-helpers.js.map +1 -1
  395. package/dist/programs/use-cases/deposits/read.js +19 -2
  396. package/dist/programs/use-cases/deposits/read.js.map +1 -1
  397. package/dist/programs/use-cases/deposits/write.js +130 -45
  398. package/dist/programs/use-cases/deposits/write.js.map +1 -1
  399. package/dist/programs/use-cases/metrics/read.js +36 -19
  400. package/dist/programs/use-cases/metrics/read.js.map +1 -1
  401. package/dist/programs/use-cases/report/read.js +14 -7
  402. package/dist/programs/use-cases/report/read.js.map +1 -1
  403. package/dist/programs/use-cases/report/write.js +7 -2
  404. package/dist/programs/use-cases/report/write.js.map +1 -1
  405. package/dist/programs/use-cases/vault-operations/create-vault.js +18 -8
  406. package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -1
  407. package/dist/programs/use-cases/vault-operations/write.js +103 -8
  408. package/dist/programs/use-cases/vault-operations/write.js.map +1 -1
  409. package/dist/providers/wallet.d.ts +6984 -169
  410. package/dist/providers/wallet.js +15 -5
  411. package/dist/providers/wallet.js.map +1 -1
  412. package/dist/tests/utils/calculate-overview.test.js +1 -1
  413. package/dist/tests/utils/calculate-overview.test.js.map +1 -1
  414. package/dist/tests/utils/health.test.js +2 -2
  415. package/dist/tests/utils/health.test.js.map +1 -1
  416. package/dist/types/common.d.ts +4 -0
  417. package/dist/utils/arguments.d.ts +8 -1
  418. package/dist/utils/arguments.js +61 -1
  419. package/dist/utils/arguments.js.map +1 -1
  420. package/dist/utils/bls.d.ts +2 -2
  421. package/dist/utils/bls.js +8 -7
  422. package/dist/utils/bls.js.map +1 -1
  423. package/dist/utils/cache.d.ts +26 -0
  424. package/dist/utils/cache.js +88 -3
  425. package/dist/utils/cache.js.map +1 -1
  426. package/dist/utils/calculate-overview-v2.d.ts +4 -2
  427. package/dist/utils/calculate-overview-v2.js +5 -8
  428. package/dist/utils/calculate-overview-v2.js.map +1 -1
  429. package/dist/utils/calculate-overview.d.ts +1 -1
  430. package/dist/utils/calculate-overview.js +2 -2
  431. package/dist/utils/calculate-overview.js.map +1 -1
  432. package/dist/utils/charts/blessed/charts-apr.js +3 -2
  433. package/dist/utils/charts/blessed/charts-apr.js.map +1 -1
  434. package/dist/utils/charts/blessed/charts-rewards.js +3 -2
  435. package/dist/utils/charts/blessed/charts-rewards.js.map +1 -1
  436. package/dist/utils/charts/overview.d.ts +1 -1
  437. package/dist/utils/charts/overview.js +1 -1
  438. package/dist/utils/charts/overview.js.map +1 -1
  439. package/dist/utils/charts/simple/simple-charts.js +3 -2
  440. package/dist/utils/charts/simple/simple-charts.js.map +1 -1
  441. package/dist/utils/commands/confirmations.d.ts +8 -4
  442. package/dist/utils/commands/confirmations.js +44 -34
  443. package/dist/utils/commands/confirmations.js.map +1 -1
  444. package/dist/utils/commands/report.js +2 -1
  445. package/dist/utils/commands/report.js.map +1 -1
  446. package/dist/utils/fetchCL.d.ts +1 -5
  447. package/dist/utils/fetchCL.js +5 -7
  448. package/dist/utils/fetchCL.js.map +1 -1
  449. package/dist/utils/health/calculate-health.d.ts +1 -1
  450. package/dist/utils/health/calculate-health.js +2 -2
  451. package/dist/utils/health/calculate-health.js.map +1 -1
  452. package/dist/utils/health/health-utils.d.ts +131 -131
  453. package/dist/utils/health/health-utils.js +12 -11
  454. package/dist/utils/health/health-utils.js.map +1 -1
  455. package/dist/utils/prompts/confirmations.js +1 -1
  456. package/dist/utils/prompts/confirmations.js.map +1 -1
  457. package/dist/utils/proof/constants.d.ts +6 -0
  458. package/dist/utils/proof/constants.js +7 -0
  459. package/dist/utils/proof/constants.js.map +1 -0
  460. package/dist/utils/proof/first-validator-gindex.js +0 -4
  461. package/dist/utils/proof/first-validator-gindex.js.map +1 -1
  462. package/dist/utils/proof/proofs.d.ts +7 -8
  463. package/dist/utils/proof/proofs.js +36 -28
  464. package/dist/utils/proof/proofs.js.map +1 -1
  465. package/dist/utils/read-programs-by-abi.d.ts +1 -1
  466. package/dist/utils/read-programs-by-abi.js +4 -18
  467. package/dist/utils/read-programs-by-abi.js.map +1 -1
  468. package/dist/utils/report/report.js +2 -1
  469. package/dist/utils/report/report.js.map +1 -1
  470. package/dist/utils/report/statistic-data.js +3 -3
  471. package/dist/utils/report/statistic-data.js.map +1 -1
  472. package/dist/utils/report/types.d.ts +10 -2
  473. package/dist/utils/statistic/report-statistic.js +13 -14
  474. package/dist/utils/statistic/report-statistic.js.map +1 -1
  475. package/dist/utils/transactions/tx-private-key.d.ts +2 -2
  476. package/dist/utils/transactions/tx-private-key.js +6 -6
  477. package/dist/utils/transactions/tx-private-key.js.map +1 -1
  478. package/dist/utils/transactions/tx-wc.d.ts +29 -1
  479. package/dist/utils/transactions/tx-wc.js +58 -28
  480. package/dist/utils/transactions/tx-wc.js.map +1 -1
  481. package/dist/utils/wallet-connect.d.ts +4 -7664
  482. package/dist/utils/wallet-connect.js +17 -5
  483. package/dist/utils/wallet-connect.js.map +1 -1
  484. package/dist/version/index.js +1 -1
  485. package/package.json +16 -7
  486. package/dist/abi/TokenManager.d.ts +0 -577
  487. package/dist/abi/TokenManager.js +0 -756
  488. package/dist/abi/TokenManager.js.map +0 -1
  489. package/dist/abi/Voting.d.ts +0 -676
  490. package/dist/abi/Voting.js +0 -884
  491. package/dist/abi/Voting.js.map +0 -1
  492. package/dist/contracts/token-manager.d.ts +0 -3
  493. package/dist/contracts/token-manager.js +0 -13
  494. 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;
@@ -371,7 +371,7 @@ export declare const getStethContract: () => Promise<{
371
371
  }];
372
372
  readonly name: "Approval";
373
373
  readonly type: "event";
374
- }], "symbol", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<string>;
374
+ }], "symbol", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<string>;
375
375
  name: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
376
376
  readonly constant: true;
377
377
  readonly inputs: readonly [{
@@ -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;
@@ -743,7 +743,7 @@ export declare const getStethContract: () => Promise<{
743
743
  }];
744
744
  readonly name: "Approval";
745
745
  readonly type: "event";
746
- }], "name", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<string>;
746
+ }], "name", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<string>;
747
747
  getPooledEthBySharesRoundUp: (args: readonly [bigint], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
748
748
  readonly constant: true;
749
749
  readonly inputs: readonly [{
@@ -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;
@@ -1115,7 +1115,7 @@ export declare const getStethContract: () => Promise<{
1115
1115
  }];
1116
1116
  readonly name: "Approval";
1117
1117
  readonly type: "event";
1118
- }], "getPooledEthBySharesRoundUp", readonly [bigint]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
1118
+ }], "getPooledEthBySharesRoundUp", readonly [bigint]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
1119
1119
  totalSupply: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
1120
1120
  readonly constant: true;
1121
1121
  readonly inputs: readonly [{
@@ -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;
@@ -1487,7 +1487,7 @@ export declare const getStethContract: () => Promise<{
1487
1487
  }];
1488
1488
  readonly name: "Approval";
1489
1489
  readonly type: "event";
1490
- }], "totalSupply", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
1490
+ }], "totalSupply", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
1491
1491
  getSharesByPooledEth: (args: readonly [bigint], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
1492
1492
  readonly constant: true;
1493
1493
  readonly inputs: readonly [{
@@ -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;
@@ -1859,7 +1859,7 @@ export declare const getStethContract: () => Promise<{
1859
1859
  }];
1860
1860
  readonly name: "Approval";
1861
1861
  readonly type: "event";
1862
- }], "getSharesByPooledEth", readonly [bigint]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
1862
+ }], "getSharesByPooledEth", readonly [bigint]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
1863
1863
  decimals: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
1864
1864
  readonly constant: true;
1865
1865
  readonly inputs: readonly [{
@@ -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;
@@ -2231,7 +2231,7 @@ export declare const getStethContract: () => Promise<{
2231
2231
  }];
2232
2232
  readonly name: "Approval";
2233
2233
  readonly type: "event";
2234
- }], "decimals", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<number>;
2234
+ }], "decimals", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<number>;
2235
2235
  getTotalPooledEther: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
2236
2236
  readonly constant: true;
2237
2237
  readonly inputs: readonly [{
@@ -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;
@@ -2603,7 +2603,7 @@ export declare const getStethContract: () => Promise<{
2603
2603
  }];
2604
2604
  readonly name: "Approval";
2605
2605
  readonly type: "event";
2606
- }], "getTotalPooledEther", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
2606
+ }], "getTotalPooledEther", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
2607
2607
  isStopped: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
2608
2608
  readonly constant: true;
2609
2609
  readonly inputs: readonly [{
@@ -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;
@@ -2975,7 +2975,7 @@ export declare const getStethContract: () => Promise<{
2975
2975
  }];
2976
2976
  readonly name: "Approval";
2977
2977
  readonly type: "event";
2978
- }], "isStopped", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<boolean>;
2978
+ }], "isStopped", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<boolean>;
2979
2979
  balanceOf: (args: readonly [`0x${string}`], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
2980
2980
  readonly constant: true;
2981
2981
  readonly inputs: readonly [{
@@ -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;
@@ -3347,7 +3347,7 @@ export declare const getStethContract: () => Promise<{
3347
3347
  }];
3348
3348
  readonly name: "Approval";
3349
3349
  readonly type: "event";
3350
- }], "balanceOf", readonly [`0x${string}`]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
3350
+ }], "balanceOf", readonly [`0x${string}`]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
3351
3351
  getPooledEthByShares: (args: readonly [bigint], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
3352
3352
  readonly constant: true;
3353
3353
  readonly inputs: readonly [{
@@ -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;
@@ -3719,7 +3719,7 @@ export declare const getStethContract: () => Promise<{
3719
3719
  }];
3720
3720
  readonly name: "Approval";
3721
3721
  readonly type: "event";
3722
- }], "getPooledEthByShares", readonly [bigint]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
3722
+ }], "getPooledEthByShares", readonly [bigint]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
3723
3723
  getTotalShares: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
3724
3724
  readonly constant: true;
3725
3725
  readonly inputs: readonly [{
@@ -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;
@@ -4091,7 +4091,7 @@ export declare const getStethContract: () => Promise<{
4091
4091
  }];
4092
4092
  readonly name: "Approval";
4093
4093
  readonly type: "event";
4094
- }], "getTotalShares", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
4094
+ }], "getTotalShares", readonly []>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
4095
4095
  allowance: (args: readonly [`0x${string}`, `0x${string}`], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
4096
4096
  readonly constant: true;
4097
4097
  readonly inputs: readonly [{
@@ -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;
@@ -4463,7 +4463,7 @@ export declare const getStethContract: () => Promise<{
4463
4463
  }];
4464
4464
  readonly name: "Approval";
4465
4465
  readonly type: "event";
4466
- }], "allowance", readonly [`0x${string}`, `0x${string}`]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
4466
+ }], "allowance", readonly [`0x${string}`, `0x${string}`]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
4467
4467
  sharesOf: (args: readonly [`0x${string}`], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
4468
4468
  readonly constant: true;
4469
4469
  readonly inputs: readonly [{
@@ -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;
@@ -4835,7 +4835,7 @@ export declare const getStethContract: () => Promise<{
4835
4835
  }];
4836
4836
  readonly name: "Approval";
4837
4837
  readonly type: "event";
4838
- }], "sharesOf", readonly [`0x${string}`]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
4838
+ }], "sharesOf", readonly [`0x${string}`]>, "address" | "abi" | "args" | "functionName">> | undefined) => Promise<bigint>;
4839
4839
  };
4840
4840
  estimateGas: {
4841
4841
  approve: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
@@ -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;
@@ -5209,7 +5209,7 @@ export declare const getStethContract: () => Promise<{
5209
5209
  }];
5210
5210
  readonly name: "Approval";
5211
5211
  readonly type: "event";
5212
- }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5212
+ }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5213
5213
  transferFrom: (args: readonly [`0x${string}`, `0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
5214
5214
  readonly constant: true;
5215
5215
  readonly inputs: readonly [{
@@ -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;
@@ -5581,7 +5581,7 @@ export declare const getStethContract: () => Promise<{
5581
5581
  }];
5582
5582
  readonly name: "Approval";
5583
5583
  readonly type: "event";
5584
- }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5584
+ }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5585
5585
  increaseAllowance: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
5586
5586
  readonly constant: true;
5587
5587
  readonly inputs: readonly [{
@@ -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;
@@ -5953,7 +5953,7 @@ export declare const getStethContract: () => Promise<{
5953
5953
  }];
5954
5954
  readonly name: "Approval";
5955
5955
  readonly type: "event";
5956
- }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5956
+ }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
5957
5957
  transferSharesFrom: (args: readonly [`0x${string}`, `0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
5958
5958
  readonly constant: true;
5959
5959
  readonly inputs: readonly [{
@@ -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;
@@ -6325,7 +6325,7 @@ export declare const getStethContract: () => Promise<{
6325
6325
  }];
6326
6326
  readonly name: "Approval";
6327
6327
  readonly type: "event";
6328
- }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
6328
+ }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
6329
6329
  transferShares: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
6330
6330
  readonly constant: true;
6331
6331
  readonly inputs: readonly [{
@@ -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;
@@ -6697,7 +6697,7 @@ export declare const getStethContract: () => Promise<{
6697
6697
  }];
6698
6698
  readonly name: "Approval";
6699
6699
  readonly type: "event";
6700
- }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
6700
+ }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
6701
6701
  decreaseAllowance: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
6702
6702
  readonly constant: true;
6703
6703
  readonly inputs: readonly [{
@@ -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;
@@ -7069,7 +7069,7 @@ export declare const getStethContract: () => Promise<{
7069
7069
  }];
7070
7070
  readonly name: "Approval";
7071
7071
  readonly type: "event";
7072
- }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7072
+ }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7073
7073
  transfer: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
7074
7074
  readonly constant: true;
7075
7075
  readonly inputs: readonly [{
@@ -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;
@@ -7441,7 +7441,7 @@ export declare const getStethContract: () => Promise<{
7441
7441
  }];
7442
7442
  readonly name: "Approval";
7443
7443
  readonly type: "event";
7444
- }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7444
+ }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7445
7445
  } & {
7446
7446
  approve: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
7447
7447
  readonly constant: true;
@@ -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;
@@ -7814,7 +7814,7 @@ export declare const getStethContract: () => Promise<{
7814
7814
  }];
7815
7815
  readonly name: "Approval";
7816
7816
  readonly type: "event";
7817
- }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7817
+ }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
7818
7818
  transferFrom: (args: readonly [`0x${string}`, `0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
7819
7819
  readonly constant: true;
7820
7820
  readonly inputs: readonly [{
@@ -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;
@@ -8186,7 +8186,7 @@ export declare const getStethContract: () => Promise<{
8186
8186
  }];
8187
8187
  readonly name: "Approval";
8188
8188
  readonly type: "event";
8189
- }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8189
+ }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8190
8190
  increaseAllowance: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
8191
8191
  readonly constant: true;
8192
8192
  readonly inputs: readonly [{
@@ -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;
@@ -8558,7 +8558,7 @@ export declare const getStethContract: () => Promise<{
8558
8558
  }];
8559
8559
  readonly name: "Approval";
8560
8560
  readonly type: "event";
8561
- }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8561
+ }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8562
8562
  transferSharesFrom: (args: readonly [`0x${string}`, `0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
8563
8563
  readonly constant: true;
8564
8564
  readonly inputs: readonly [{
@@ -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;
@@ -8930,7 +8930,7 @@ export declare const getStethContract: () => Promise<{
8930
8930
  }];
8931
8931
  readonly name: "Approval";
8932
8932
  readonly type: "event";
8933
- }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8933
+ }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
8934
8934
  transferShares: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
8935
8935
  readonly constant: true;
8936
8936
  readonly inputs: readonly [{
@@ -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;
@@ -9302,7 +9302,7 @@ export declare const getStethContract: () => Promise<{
9302
9302
  }];
9303
9303
  readonly name: "Approval";
9304
9304
  readonly type: "event";
9305
- }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
9305
+ }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
9306
9306
  decreaseAllowance: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
9307
9307
  readonly constant: true;
9308
9308
  readonly inputs: readonly [{
@@ -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;
@@ -9674,7 +9674,7 @@ export declare const getStethContract: () => Promise<{
9674
9674
  }];
9675
9675
  readonly name: "Approval";
9676
9676
  readonly type: "event";
9677
- }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
9677
+ }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
9678
9678
  transfer: (args: readonly [`0x${string}`, bigint], options: import("viem").Prettify<import("viem").UnionOmit<import("viem").EstimateContractGasParameters<readonly [{
9679
9679
  readonly constant: true;
9680
9680
  readonly inputs: readonly [{
@@ -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;
@@ -10046,7 +10046,7 @@ export declare const getStethContract: () => Promise<{
10046
10046
  }];
10047
10047
  readonly name: "Approval";
10048
10048
  readonly type: "event";
10049
- }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "args" | "abi" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
10049
+ }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain>, "address" | "abi" | "args" | "functionName">>) => Promise<import("viem").EstimateContractGasReturnType>;
10050
10050
  };
10051
10051
  simulate: {
10052
10052
  approve: <chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: readonly [`0x${string}`, bigint], options?: Omit<import("viem").SimulateContractParameters<readonly [{
@@ -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;
@@ -10420,7 +10420,7 @@ export declare const getStethContract: () => Promise<{
10420
10420
  }];
10421
10421
  readonly name: "Approval";
10422
10422
  readonly type: "event";
10423
- }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
10423
+ }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
10424
10424
  readonly constant: true;
10425
10425
  readonly inputs: readonly [{
10426
10426
  readonly name: "_sharesAmount";
@@ -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;
@@ -11163,7 +11163,7 @@ export declare const getStethContract: () => Promise<{
11163
11163
  }];
11164
11164
  readonly name: "Approval";
11165
11165
  readonly type: "event";
11166
- }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
11166
+ }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
11167
11167
  readonly constant: true;
11168
11168
  readonly inputs: readonly [{
11169
11169
  readonly name: "_sharesAmount";
@@ -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;
@@ -11906,7 +11906,7 @@ export declare const getStethContract: () => Promise<{
11906
11906
  }];
11907
11907
  readonly name: "Approval";
11908
11908
  readonly type: "event";
11909
- }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
11909
+ }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
11910
11910
  readonly constant: true;
11911
11911
  readonly inputs: readonly [{
11912
11912
  readonly name: "_sharesAmount";
@@ -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;
@@ -12649,7 +12649,7 @@ export declare const getStethContract: () => Promise<{
12649
12649
  }];
12650
12650
  readonly name: "Approval";
12651
12651
  readonly type: "event";
12652
- }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
12652
+ }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
12653
12653
  readonly constant: true;
12654
12654
  readonly inputs: readonly [{
12655
12655
  readonly name: "_sharesAmount";
@@ -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;
@@ -13392,7 +13392,7 @@ export declare const getStethContract: () => Promise<{
13392
13392
  }];
13393
13393
  readonly name: "Approval";
13394
13394
  readonly type: "event";
13395
- }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
13395
+ }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
13396
13396
  readonly constant: true;
13397
13397
  readonly inputs: readonly [{
13398
13398
  readonly name: "_sharesAmount";
@@ -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;
@@ -14135,7 +14135,7 @@ export declare const getStethContract: () => Promise<{
14135
14135
  }];
14136
14136
  readonly name: "Approval";
14137
14137
  readonly type: "event";
14138
- }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
14138
+ }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
14139
14139
  readonly constant: true;
14140
14140
  readonly inputs: readonly [{
14141
14141
  readonly name: "_sharesAmount";
@@ -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;
@@ -14878,7 +14878,7 @@ export declare const getStethContract: () => Promise<{
14878
14878
  }];
14879
14879
  readonly name: "Approval";
14880
14880
  readonly type: "event";
14881
- }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "args" | "abi" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
14881
+ }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, chainOverride, accountOverride>, "address" | "abi" | "args" | "functionName"> | undefined) => Promise<import("viem").SimulateContractReturnType<readonly [{
14882
14882
  readonly constant: true;
14883
14883
  readonly inputs: readonly [{
14884
14884
  readonly name: "_sharesAmount";
@@ -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;
@@ -19839,8 +19839,8 @@ export declare const getStethContract: () => Promise<{
19839
19839
  batch?: boolean | undefined | undefined;
19840
19840
  pollingInterval?: number | undefined | undefined;
19841
19841
  strict?: boolean | undefined;
19842
- fromBlock?: bigint | undefined;
19843
19842
  onError?: ((error: Error) => void) | undefined | undefined;
19843
+ fromBlock?: bigint | undefined;
19844
19844
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
19845
19845
  readonly constant: true;
19846
19846
  readonly inputs: readonly [{
@@ -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;
@@ -20222,8 +20222,8 @@ export declare const getStethContract: () => Promise<{
20222
20222
  batch?: boolean | undefined | undefined;
20223
20223
  pollingInterval?: number | undefined | undefined;
20224
20224
  strict?: boolean | undefined;
20225
- fromBlock?: bigint | undefined;
20226
20225
  onError?: ((error: Error) => void) | undefined | undefined;
20226
+ fromBlock?: bigint | undefined;
20227
20227
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
20228
20228
  readonly constant: true;
20229
20229
  readonly inputs: readonly [{
@@ -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;
@@ -20604,8 +20604,8 @@ export declare const getStethContract: () => Promise<{
20604
20604
  batch?: boolean | undefined | undefined;
20605
20605
  pollingInterval?: number | undefined | undefined;
20606
20606
  strict?: boolean | undefined;
20607
- fromBlock?: bigint | undefined;
20608
20607
  onError?: ((error: Error) => void) | undefined | undefined;
20608
+ fromBlock?: bigint | undefined;
20609
20609
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
20610
20610
  readonly constant: true;
20611
20611
  readonly inputs: readonly [{
@@ -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;
@@ -20984,8 +20984,8 @@ export declare const getStethContract: () => Promise<{
20984
20984
  batch?: boolean | undefined | undefined;
20985
20985
  pollingInterval?: number | undefined | undefined;
20986
20986
  strict?: boolean | undefined;
20987
- fromBlock?: bigint | undefined;
20988
20987
  onError?: ((error: Error) => void) | undefined | undefined;
20988
+ fromBlock?: bigint | undefined;
20989
20989
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
20990
20990
  readonly constant: true;
20991
20991
  readonly inputs: readonly [{
@@ -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;
@@ -21367,8 +21367,8 @@ export declare const getStethContract: () => Promise<{
21367
21367
  batch?: boolean | undefined | undefined;
21368
21368
  pollingInterval?: number | undefined | undefined;
21369
21369
  strict?: boolean | undefined;
21370
- fromBlock?: bigint | undefined;
21371
21370
  onError?: ((error: Error) => void) | undefined | undefined;
21371
+ fromBlock?: bigint | undefined;
21372
21372
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
21373
21373
  readonly constant: true;
21374
21374
  readonly inputs: readonly [{
@@ -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;
@@ -21750,8 +21750,8 @@ export declare const getStethContract: () => Promise<{
21750
21750
  batch?: boolean | undefined | undefined;
21751
21751
  pollingInterval?: number | undefined | undefined;
21752
21752
  strict?: boolean | undefined;
21753
- fromBlock?: bigint | undefined;
21754
21753
  onError?: ((error: Error) => void) | undefined | undefined;
21754
+ fromBlock?: bigint | undefined;
21755
21755
  onLogs: import("viem").WatchContractEventOnLogsFn<readonly [{
21756
21756
  readonly constant: true;
21757
21757
  readonly inputs: readonly [{
@@ -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;
@@ -22499,7 +22499,7 @@ export declare const getStethContract: () => Promise<{
22499
22499
  }];
22500
22500
  readonly name: "Approval";
22501
22501
  readonly type: "event";
22502
- }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
22502
+ }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
22503
22503
  readonly constant: true;
22504
22504
  readonly inputs: readonly [{
22505
22505
  readonly name: "_sharesAmount";
@@ -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;
@@ -22870,7 +22870,7 @@ export declare const getStethContract: () => Promise<{
22870
22870
  }];
22871
22871
  readonly name: "Approval";
22872
22872
  readonly type: "event";
22873
- }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
22873
+ }], "approve", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
22874
22874
  transferFrom: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
22875
22875
  readonly constant: true;
22876
22876
  readonly inputs: readonly [{
@@ -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;
@@ -23242,7 +23242,7 @@ export declare const getStethContract: () => Promise<{
23242
23242
  }];
23243
23243
  readonly name: "Approval";
23244
23244
  readonly type: "event";
23245
- }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
23245
+ }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
23246
23246
  readonly constant: true;
23247
23247
  readonly inputs: readonly [{
23248
23248
  readonly name: "_sharesAmount";
@@ -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;
@@ -23613,7 +23613,7 @@ export declare const getStethContract: () => Promise<{
23613
23613
  }];
23614
23614
  readonly name: "Approval";
23615
23615
  readonly type: "event";
23616
- }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, `0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
23616
+ }], "transferFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, `0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
23617
23617
  increaseAllowance: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
23618
23618
  readonly constant: true;
23619
23619
  readonly inputs: readonly [{
@@ -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;
@@ -23985,7 +23985,7 @@ export declare const getStethContract: () => Promise<{
23985
23985
  }];
23986
23986
  readonly name: "Approval";
23987
23987
  readonly type: "event";
23988
- }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
23988
+ }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
23989
23989
  readonly constant: true;
23990
23990
  readonly inputs: readonly [{
23991
23991
  readonly name: "_sharesAmount";
@@ -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;
@@ -24356,7 +24356,7 @@ export declare const getStethContract: () => Promise<{
24356
24356
  }];
24357
24357
  readonly name: "Approval";
24358
24358
  readonly type: "event";
24359
- }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
24359
+ }], "increaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
24360
24360
  transferSharesFrom: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
24361
24361
  readonly constant: true;
24362
24362
  readonly inputs: readonly [{
@@ -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;
@@ -24728,7 +24728,7 @@ export declare const getStethContract: () => Promise<{
24728
24728
  }];
24729
24729
  readonly name: "Approval";
24730
24730
  readonly type: "event";
24731
- }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
24731
+ }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
24732
24732
  readonly constant: true;
24733
24733
  readonly inputs: readonly [{
24734
24734
  readonly name: "_sharesAmount";
@@ -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;
@@ -25099,7 +25099,7 @@ export declare const getStethContract: () => Promise<{
25099
25099
  }];
25100
25100
  readonly name: "Approval";
25101
25101
  readonly type: "event";
25102
- }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, `0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
25102
+ }], "transferSharesFrom", readonly [`0x${string}`, `0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, `0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
25103
25103
  transferShares: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
25104
25104
  readonly constant: true;
25105
25105
  readonly inputs: readonly [{
@@ -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;
@@ -25471,7 +25471,7 @@ export declare const getStethContract: () => Promise<{
25471
25471
  }];
25472
25472
  readonly name: "Approval";
25473
25473
  readonly type: "event";
25474
- }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
25474
+ }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
25475
25475
  readonly constant: true;
25476
25476
  readonly inputs: readonly [{
25477
25477
  readonly name: "_sharesAmount";
@@ -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;
@@ -25842,7 +25842,7 @@ export declare const getStethContract: () => Promise<{
25842
25842
  }];
25843
25843
  readonly name: "Approval";
25844
25844
  readonly type: "event";
25845
- }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
25845
+ }], "transferShares", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
25846
25846
  decreaseAllowance: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
25847
25847
  readonly constant: true;
25848
25848
  readonly inputs: readonly [{
@@ -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;
@@ -26214,7 +26214,7 @@ export declare const getStethContract: () => Promise<{
26214
26214
  }];
26215
26215
  readonly name: "Approval";
26216
26216
  readonly type: "event";
26217
- }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
26217
+ }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
26218
26218
  readonly constant: true;
26219
26219
  readonly inputs: readonly [{
26220
26220
  readonly name: "_sharesAmount";
@@ -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;
@@ -26585,7 +26585,7 @@ export declare const getStethContract: () => Promise<{
26585
26585
  }];
26586
26586
  readonly name: "Approval";
26587
26587
  readonly type: "event";
26588
- }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
26588
+ }], "decreaseAllowance", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
26589
26589
  transfer: <chainOverride extends import("viem").Chain | undefined, options extends import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
26590
26590
  readonly constant: true;
26591
26591
  readonly inputs: readonly [{
@@ -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;
@@ -26957,7 +26957,7 @@ export declare const getStethContract: () => Promise<{
26957
26957
  }];
26958
26958
  readonly name: "Approval";
26959
26959
  readonly type: "event";
26960
- }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
26960
+ }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName"> extends infer T ? { [K in keyof T]: import("viem").UnionOmit<import("viem").WriteContractParameters<readonly [{
26961
26961
  readonly constant: true;
26962
26962
  readonly inputs: readonly [{
26963
26963
  readonly name: "_sharesAmount";
@@ -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;
@@ -27328,7 +27328,7 @@ export declare const getStethContract: () => Promise<{
27328
27328
  }];
27329
27329
  readonly name: "Approval";
27330
27330
  readonly type: "event";
27331
- }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "args" | "abi" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
27331
+ }], "transfer", readonly [`0x${string}`, bigint], import("viem").Chain, undefined, chainOverride>, "address" | "abi" | "args" | "functionName">[K]; } : never>(args: readonly [`0x${string}`, bigint], options: options) => Promise<import("viem").WriteContractReturnType>;
27332
27332
  };
27333
27333
  address: `0x${string}`;
27334
27334
  abi: readonly [{
@@ -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;