viem 2.0.0-beta.8 → 2.0.0-rc.0

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 (474) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/README.md +9 -3
  3. package/_cjs/actions/ens/getEnsName.js +4 -2
  4. package/_cjs/actions/ens/getEnsName.js.map +1 -1
  5. package/_cjs/actions/index.js +16 -2
  6. package/_cjs/actions/index.js.map +1 -1
  7. package/_cjs/actions/wallet/prepareTransactionRequest.js.map +1 -1
  8. package/_cjs/chains/definitions/arbitrumSepolia.js +4 -0
  9. package/_cjs/chains/definitions/arbitrumSepolia.js.map +1 -1
  10. package/_cjs/chains/definitions/base.js +5 -0
  11. package/_cjs/chains/definitions/base.js.map +1 -1
  12. package/_cjs/chains/definitions/baseGoerli.js +5 -0
  13. package/_cjs/chains/definitions/baseGoerli.js.map +1 -1
  14. package/_cjs/chains/definitions/baseSepolia.js +5 -0
  15. package/_cjs/chains/definitions/baseSepolia.js.map +1 -1
  16. package/_cjs/chains/definitions/fantomSonicTestnet.js +26 -0
  17. package/_cjs/chains/definitions/fantomSonicTestnet.js.map +1 -0
  18. package/_cjs/chains/definitions/optimism.js +5 -0
  19. package/_cjs/chains/definitions/optimism.js.map +1 -1
  20. package/_cjs/chains/definitions/optimismGoerli.js +5 -0
  21. package/_cjs/chains/definitions/optimismGoerli.js.map +1 -1
  22. package/_cjs/chains/definitions/optimismSepolia.js +5 -0
  23. package/_cjs/chains/definitions/optimismSepolia.js.map +1 -1
  24. package/_cjs/chains/definitions/pgn.js +12 -0
  25. package/_cjs/chains/definitions/pgn.js.map +1 -1
  26. package/_cjs/chains/definitions/pgnTestnet.js +7 -0
  27. package/_cjs/chains/definitions/pgnTestnet.js.map +1 -1
  28. package/_cjs/chains/definitions/zilliqa.js +26 -0
  29. package/_cjs/chains/definitions/zilliqa.js.map +1 -0
  30. package/_cjs/chains/definitions/zilliqaTestnet.js +26 -0
  31. package/_cjs/chains/definitions/zilliqaTestnet.js.map +1 -0
  32. package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js +35 -0
  33. package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
  34. package/_cjs/chains/definitions/zkSyncTestnet.js +4 -0
  35. package/_cjs/chains/definitions/zkSyncTestnet.js.map +1 -1
  36. package/_cjs/chains/definitions/zora.js +5 -0
  37. package/_cjs/chains/definitions/zora.js.map +1 -1
  38. package/_cjs/chains/definitions/zoraSepolia.js +5 -0
  39. package/_cjs/chains/definitions/zoraSepolia.js.map +1 -1
  40. package/_cjs/chains/index.js +12 -4
  41. package/_cjs/chains/index.js.map +1 -1
  42. package/_cjs/chains/opStack/abis.js +366 -1
  43. package/_cjs/chains/opStack/abis.js.map +1 -1
  44. package/_cjs/chains/opStack/actions/buildDepositTransaction.js +1 -1
  45. package/_cjs/chains/opStack/actions/buildDepositTransaction.js.map +1 -1
  46. package/_cjs/chains/opStack/actions/buildInitiateWithdrawal.js +29 -0
  47. package/_cjs/chains/opStack/actions/buildInitiateWithdrawal.js.map +1 -0
  48. package/_cjs/chains/opStack/actions/buildProveWithdrawal.js +39 -0
  49. package/_cjs/chains/opStack/actions/buildProveWithdrawal.js.map +1 -0
  50. package/_cjs/chains/opStack/actions/depositTransaction.js +11 -6
  51. package/_cjs/chains/opStack/actions/depositTransaction.js.map +1 -1
  52. package/_cjs/chains/opStack/actions/estimateDepositTransactionGas.js +37 -0
  53. package/_cjs/chains/opStack/actions/estimateDepositTransactionGas.js.map +1 -0
  54. package/_cjs/chains/opStack/actions/estimateFinalizeWithdrawalGas.js +29 -0
  55. package/_cjs/chains/opStack/actions/estimateFinalizeWithdrawalGas.js.map +1 -0
  56. package/_cjs/chains/opStack/actions/estimateInitiateWithdrawalGas.js +24 -0
  57. package/_cjs/chains/opStack/actions/estimateInitiateWithdrawalGas.js.map +1 -0
  58. package/_cjs/chains/opStack/actions/estimateProveWithdrawalGas.js +29 -0
  59. package/_cjs/chains/opStack/actions/estimateProveWithdrawalGas.js.map +1 -0
  60. package/_cjs/chains/opStack/actions/finalizeWithdrawal.js +33 -0
  61. package/_cjs/chains/opStack/actions/finalizeWithdrawal.js.map +1 -0
  62. package/_cjs/chains/opStack/actions/getL2Output.js +30 -0
  63. package/_cjs/chains/opStack/actions/getL2Output.js.map +1 -0
  64. package/_cjs/chains/opStack/actions/getTimeToFinalize.js +46 -0
  65. package/_cjs/chains/opStack/actions/getTimeToFinalize.js.map +1 -0
  66. package/_cjs/chains/opStack/actions/getTimeToNextL2Output.js +63 -0
  67. package/_cjs/chains/opStack/actions/getTimeToNextL2Output.js.map +1 -0
  68. package/_cjs/chains/opStack/actions/getTimeToProve.js +13 -0
  69. package/_cjs/chains/opStack/actions/getTimeToProve.js.map +1 -0
  70. package/_cjs/chains/opStack/actions/getWithdrawalStatus.js +71 -0
  71. package/_cjs/chains/opStack/actions/getWithdrawalStatus.js.map +1 -0
  72. package/_cjs/chains/opStack/actions/initiateWithdrawal.js +28 -0
  73. package/_cjs/chains/opStack/actions/initiateWithdrawal.js.map +1 -0
  74. package/_cjs/chains/opStack/actions/proveWithdrawal.js +33 -0
  75. package/_cjs/chains/opStack/actions/proveWithdrawal.js.map +1 -0
  76. package/_cjs/chains/opStack/actions/waitForNextL2Output.js +32 -0
  77. package/_cjs/chains/opStack/actions/waitForNextL2Output.js.map +1 -0
  78. package/_cjs/chains/opStack/actions/waitToFinalize.js +11 -0
  79. package/_cjs/chains/opStack/actions/waitToFinalize.js.map +1 -0
  80. package/_cjs/chains/opStack/actions/waitToProve.js +21 -0
  81. package/_cjs/chains/opStack/actions/waitToProve.js.map +1 -0
  82. package/_cjs/chains/opStack/chains.js +5 -1
  83. package/_cjs/chains/opStack/chains.js.map +1 -1
  84. package/_cjs/chains/opStack/decorators/publicL1.js +35 -0
  85. package/_cjs/chains/opStack/decorators/publicL1.js.map +1 -0
  86. package/_cjs/chains/opStack/decorators/publicL2.js +5 -1
  87. package/_cjs/chains/opStack/decorators/publicL2.js.map +1 -1
  88. package/_cjs/chains/opStack/decorators/walletL1.js +4 -0
  89. package/_cjs/chains/opStack/decorators/walletL1.js.map +1 -1
  90. package/_cjs/chains/opStack/decorators/walletL2.js +13 -0
  91. package/_cjs/chains/opStack/decorators/walletL2.js.map +1 -0
  92. package/_cjs/chains/opStack/errors/withdrawal.js +17 -0
  93. package/_cjs/chains/opStack/errors/withdrawal.js.map +1 -0
  94. package/_cjs/chains/opStack/index.js +43 -15
  95. package/_cjs/chains/opStack/index.js.map +1 -1
  96. package/_cjs/chains/opStack/types/deposit.js +3 -0
  97. package/_cjs/chains/opStack/types/deposit.js.map +1 -0
  98. package/_cjs/chains/opStack/types/withdrawal.js +3 -0
  99. package/_cjs/chains/opStack/types/withdrawal.js.map +1 -0
  100. package/_cjs/chains/opStack/utils/extractWithdrawalMessageLogs.js +14 -0
  101. package/_cjs/chains/opStack/utils/extractWithdrawalMessageLogs.js.map +1 -0
  102. package/_cjs/chains/opStack/utils/getL2TransactionHash.js +2 -2
  103. package/_cjs/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
  104. package/_cjs/chains/opStack/utils/getWithdrawalHashStorageSlot.js +11 -0
  105. package/_cjs/chains/opStack/utils/getWithdrawalHashStorageSlot.js.map +1 -0
  106. package/_cjs/chains/opStack/utils/getWithdrawals.js +10 -0
  107. package/_cjs/chains/opStack/utils/getWithdrawals.js.map +1 -0
  108. package/_cjs/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +4 -4
  109. package/_cjs/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
  110. package/_cjs/errors/abi.js +21 -1
  111. package/_cjs/errors/abi.js.map +1 -1
  112. package/_cjs/errors/version.js +1 -1
  113. package/_cjs/errors/version.js.map +1 -1
  114. package/_cjs/index.js +10 -2
  115. package/_cjs/index.js.map +1 -1
  116. package/_cjs/utils/abi/getAbiItem.js +46 -3
  117. package/_cjs/utils/abi/getAbiItem.js.map +1 -1
  118. package/_cjs/utils/hash/ripemd160.js +16 -0
  119. package/_cjs/utils/hash/ripemd160.js.map +1 -0
  120. package/_cjs/utils/hash/sha256.js +16 -0
  121. package/_cjs/utils/hash/sha256.js.map +1 -0
  122. package/_cjs/utils/index.js +5 -1
  123. package/_cjs/utils/index.js.map +1 -1
  124. package/_esm/actions/ens/getEnsName.js +4 -2
  125. package/_esm/actions/ens/getEnsName.js.map +1 -1
  126. package/_esm/actions/index.js +7 -0
  127. package/_esm/actions/index.js.map +1 -1
  128. package/_esm/actions/wallet/prepareTransactionRequest.js.map +1 -1
  129. package/_esm/chains/definitions/arbitrumSepolia.js +4 -0
  130. package/_esm/chains/definitions/arbitrumSepolia.js.map +1 -1
  131. package/_esm/chains/definitions/base.js +5 -0
  132. package/_esm/chains/definitions/base.js.map +1 -1
  133. package/_esm/chains/definitions/baseGoerli.js +5 -0
  134. package/_esm/chains/definitions/baseGoerli.js.map +1 -1
  135. package/_esm/chains/definitions/baseSepolia.js +5 -0
  136. package/_esm/chains/definitions/baseSepolia.js.map +1 -1
  137. package/_esm/chains/definitions/fantomSonicTestnet.js +23 -0
  138. package/_esm/chains/definitions/fantomSonicTestnet.js.map +1 -0
  139. package/_esm/chains/definitions/optimism.js +5 -0
  140. package/_esm/chains/definitions/optimism.js.map +1 -1
  141. package/_esm/chains/definitions/optimismGoerli.js +5 -0
  142. package/_esm/chains/definitions/optimismGoerli.js.map +1 -1
  143. package/_esm/chains/definitions/optimismSepolia.js +5 -0
  144. package/_esm/chains/definitions/optimismSepolia.js.map +1 -1
  145. package/_esm/chains/definitions/pgn.js +12 -0
  146. package/_esm/chains/definitions/pgn.js.map +1 -1
  147. package/_esm/chains/definitions/pgnTestnet.js +7 -0
  148. package/_esm/chains/definitions/pgnTestnet.js.map +1 -1
  149. package/_esm/chains/definitions/zilliqa.js +23 -0
  150. package/_esm/chains/definitions/zilliqa.js.map +1 -0
  151. package/_esm/chains/definitions/zilliqaTestnet.js +23 -0
  152. package/_esm/chains/definitions/zilliqaTestnet.js.map +1 -0
  153. package/_esm/chains/definitions/zkSyncSepoliaTestnet.js +32 -0
  154. package/_esm/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
  155. package/_esm/chains/definitions/zkSyncTestnet.js +5 -0
  156. package/_esm/chains/definitions/zkSyncTestnet.js.map +1 -1
  157. package/_esm/chains/definitions/zora.js +5 -0
  158. package/_esm/chains/definitions/zora.js.map +1 -1
  159. package/_esm/chains/definitions/zoraSepolia.js +5 -0
  160. package/_esm/chains/definitions/zoraSepolia.js.map +1 -1
  161. package/_esm/chains/index.js +4 -0
  162. package/_esm/chains/index.js.map +1 -1
  163. package/_esm/chains/opStack/abis.js +365 -0
  164. package/_esm/chains/opStack/abis.js.map +1 -1
  165. package/_esm/chains/opStack/actions/buildDepositTransaction.js +2 -2
  166. package/_esm/chains/opStack/actions/buildDepositTransaction.js.map +1 -1
  167. package/_esm/chains/opStack/actions/buildInitiateWithdrawal.js +50 -0
  168. package/_esm/chains/opStack/actions/buildInitiateWithdrawal.js.map +1 -0
  169. package/_esm/chains/opStack/actions/buildProveWithdrawal.js +59 -0
  170. package/_esm/chains/opStack/actions/buildProveWithdrawal.js.map +1 -0
  171. package/_esm/chains/opStack/actions/depositTransaction.js +17 -14
  172. package/_esm/chains/opStack/actions/depositTransaction.js.map +1 -1
  173. package/_esm/chains/opStack/actions/estimateDepositTransactionGas.js +62 -0
  174. package/_esm/chains/opStack/actions/estimateDepositTransactionGas.js.map +1 -0
  175. package/_esm/chains/opStack/actions/estimateFinalizeWithdrawalGas.js +50 -0
  176. package/_esm/chains/opStack/actions/estimateFinalizeWithdrawalGas.js.map +1 -0
  177. package/_esm/chains/opStack/actions/estimateInitiateWithdrawalGas.js +48 -0
  178. package/_esm/chains/opStack/actions/estimateInitiateWithdrawalGas.js.map +1 -0
  179. package/_esm/chains/opStack/actions/estimateProveWithdrawalGas.js +53 -0
  180. package/_esm/chains/opStack/actions/estimateProveWithdrawalGas.js.map +1 -0
  181. package/_esm/chains/opStack/actions/finalizeWithdrawal.js +53 -0
  182. package/_esm/chains/opStack/actions/finalizeWithdrawal.js.map +1 -0
  183. package/_esm/chains/opStack/actions/getL2Output.js +50 -0
  184. package/_esm/chains/opStack/actions/getL2Output.js.map +1 -0
  185. package/_esm/chains/opStack/actions/getTimeToFinalize.js +77 -0
  186. package/_esm/chains/opStack/actions/getTimeToFinalize.js.map +1 -0
  187. package/_esm/chains/opStack/actions/getTimeToNextL2Output.js +91 -0
  188. package/_esm/chains/opStack/actions/getTimeToNextL2Output.js.map +1 -0
  189. package/_esm/chains/opStack/actions/getTimeToProve.js +39 -0
  190. package/_esm/chains/opStack/actions/getTimeToProve.js.map +1 -0
  191. package/_esm/chains/opStack/actions/getWithdrawalStatus.js +99 -0
  192. package/_esm/chains/opStack/actions/getWithdrawalStatus.js.map +1 -0
  193. package/_esm/chains/opStack/actions/initiateWithdrawal.js +76 -0
  194. package/_esm/chains/opStack/actions/initiateWithdrawal.js.map +1 -0
  195. package/_esm/chains/opStack/actions/proveWithdrawal.js +57 -0
  196. package/_esm/chains/opStack/actions/proveWithdrawal.js.map +1 -0
  197. package/_esm/chains/opStack/actions/waitForNextL2Output.js +58 -0
  198. package/_esm/chains/opStack/actions/waitForNextL2Output.js.map +1 -0
  199. package/_esm/chains/opStack/actions/waitToFinalize.js +41 -0
  200. package/_esm/chains/opStack/actions/waitToFinalize.js.map +1 -0
  201. package/_esm/chains/opStack/actions/waitToProve.js +47 -0
  202. package/_esm/chains/opStack/actions/waitToProve.js.map +1 -0
  203. package/_esm/chains/opStack/chains.js +2 -0
  204. package/_esm/chains/opStack/chains.js.map +1 -1
  205. package/_esm/chains/opStack/decorators/publicL1.js +31 -0
  206. package/_esm/chains/opStack/decorators/publicL1.js.map +1 -0
  207. package/_esm/chains/opStack/decorators/publicL2.js +5 -1
  208. package/_esm/chains/opStack/decorators/publicL2.js.map +1 -1
  209. package/_esm/chains/opStack/decorators/walletL1.js +4 -0
  210. package/_esm/chains/opStack/decorators/walletL1.js.map +1 -1
  211. package/_esm/chains/opStack/decorators/walletL2.js +9 -0
  212. package/_esm/chains/opStack/decorators/walletL2.js.map +1 -0
  213. package/_esm/chains/opStack/errors/withdrawal.js +13 -0
  214. package/_esm/chains/opStack/errors/withdrawal.js.map +1 -0
  215. package/_esm/chains/opStack/index.js +21 -3
  216. package/_esm/chains/opStack/index.js.map +1 -1
  217. package/_esm/chains/opStack/types/deposit.js +2 -0
  218. package/_esm/chains/opStack/types/deposit.js.map +1 -0
  219. package/_esm/chains/opStack/types/withdrawal.js +2 -0
  220. package/_esm/chains/opStack/types/withdrawal.js.map +1 -0
  221. package/_esm/chains/opStack/utils/extractWithdrawalMessageLogs.js +10 -0
  222. package/_esm/chains/opStack/utils/extractWithdrawalMessageLogs.js.map +1 -0
  223. package/_esm/chains/opStack/utils/getL2TransactionHash.js +2 -2
  224. package/_esm/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
  225. package/_esm/chains/opStack/utils/getWithdrawalHashStorageSlot.js +7 -0
  226. package/_esm/chains/opStack/utils/getWithdrawalHashStorageSlot.js.map +1 -0
  227. package/_esm/chains/opStack/utils/getWithdrawals.js +6 -0
  228. package/_esm/chains/opStack/utils/getWithdrawals.js.map +1 -0
  229. package/_esm/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +2 -2
  230. package/_esm/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
  231. package/_esm/errors/abi.js +19 -0
  232. package/_esm/errors/abi.js.map +1 -1
  233. package/_esm/errors/version.js +1 -1
  234. package/_esm/errors/version.js.map +1 -1
  235. package/_esm/index.js +4 -0
  236. package/_esm/index.js.map +1 -1
  237. package/_esm/utils/abi/getAbiItem.js +46 -2
  238. package/_esm/utils/abi/getAbiItem.js.map +1 -1
  239. package/_esm/utils/hash/ripemd160.js +12 -0
  240. package/_esm/utils/hash/ripemd160.js.map +1 -0
  241. package/_esm/utils/hash/sha256.js +12 -0
  242. package/_esm/utils/hash/sha256.js.map +1 -0
  243. package/_esm/utils/index.js +2 -0
  244. package/_esm/utils/index.js.map +1 -1
  245. package/_types/actions/ens/getEnsName.d.ts.map +1 -1
  246. package/_types/actions/index.d.ts +7 -0
  247. package/_types/actions/index.d.ts.map +1 -1
  248. package/_types/actions/public/getBlock.d.ts +1 -1
  249. package/_types/actions/public/getBlock.d.ts.map +1 -1
  250. package/_types/actions/public/getTransaction.d.ts +1 -1
  251. package/_types/actions/public/getTransaction.d.ts.map +1 -1
  252. package/_types/actions/public/getTransactionReceipt.d.ts +1 -1
  253. package/_types/actions/public/getTransactionReceipt.d.ts.map +1 -1
  254. package/_types/actions/wallet/prepareTransactionRequest.d.ts +5 -5
  255. package/_types/actions/wallet/prepareTransactionRequest.d.ts.map +1 -1
  256. package/_types/chains/celo/chainConfig.d.ts +180 -180
  257. package/_types/chains/celo/formatters.d.ts +180 -180
  258. package/_types/chains/definitions/arbitrumSepolia.d.ts +4 -0
  259. package/_types/chains/definitions/arbitrumSepolia.d.ts.map +1 -1
  260. package/_types/chains/definitions/base.d.ts +142 -137
  261. package/_types/chains/definitions/base.d.ts.map +1 -1
  262. package/_types/chains/definitions/baseGoerli.d.ts +142 -137
  263. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  264. package/_types/chains/definitions/baseSepolia.d.ts +142 -137
  265. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  266. package/_types/chains/definitions/celo.d.ts +180 -180
  267. package/_types/chains/definitions/celoAlfajores.d.ts +180 -180
  268. package/_types/chains/definitions/celoCannoli.d.ts +180 -180
  269. package/_types/chains/definitions/fantomSonicTestnet.d.ts +38 -0
  270. package/_types/chains/definitions/fantomSonicTestnet.d.ts.map +1 -0
  271. package/_types/chains/definitions/optimism.d.ts +142 -137
  272. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  273. package/_types/chains/definitions/optimismGoerli.d.ts +142 -137
  274. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  275. package/_types/chains/definitions/optimismSepolia.d.ts +142 -137
  276. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  277. package/_types/chains/definitions/pgn.d.ts +147 -137
  278. package/_types/chains/definitions/pgn.d.ts.map +1 -1
  279. package/_types/chains/definitions/pgnTestnet.d.ts +142 -137
  280. package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
  281. package/_types/chains/definitions/zilliqa.d.ts +38 -0
  282. package/_types/chains/definitions/zilliqa.d.ts.map +1 -0
  283. package/_types/chains/definitions/zilliqaTestnet.d.ts +38 -0
  284. package/_types/chains/definitions/zilliqaTestnet.d.ts.map +1 -0
  285. package/_types/chains/definitions/zkSync.d.ts +24 -24
  286. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +533 -0
  287. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -0
  288. package/_types/chains/definitions/zkSyncTestnet.d.ts +29 -24
  289. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  290. package/_types/chains/definitions/zora.d.ts +142 -137
  291. package/_types/chains/definitions/zora.d.ts.map +1 -1
  292. package/_types/chains/definitions/zoraSepolia.d.ts +142 -137
  293. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  294. package/_types/chains/definitions/zoraTestnet.d.ts +137 -137
  295. package/_types/chains/index.d.ts +5 -1
  296. package/_types/chains/index.d.ts.map +1 -1
  297. package/_types/chains/opStack/abis.d.ts +457 -0
  298. package/_types/chains/opStack/abis.d.ts.map +1 -1
  299. package/_types/chains/opStack/actions/buildDepositTransaction.d.ts +5 -3
  300. package/_types/chains/opStack/actions/buildDepositTransaction.d.ts.map +1 -1
  301. package/_types/chains/opStack/actions/buildInitiateWithdrawal.d.ts +50 -0
  302. package/_types/chains/opStack/actions/buildInitiateWithdrawal.d.ts.map +1 -0
  303. package/_types/chains/opStack/actions/buildProveWithdrawal.d.ts +48 -0
  304. package/_types/chains/opStack/actions/buildProveWithdrawal.d.ts.map +1 -0
  305. package/_types/chains/opStack/actions/depositTransaction.d.ts +18 -34
  306. package/_types/chains/opStack/actions/depositTransaction.d.ts.map +1 -1
  307. package/_types/chains/opStack/actions/estimateDepositTransactionGas.d.ts +50 -0
  308. package/_types/chains/opStack/actions/estimateDepositTransactionGas.d.ts.map +1 -0
  309. package/_types/chains/opStack/actions/estimateFinalizeWithdrawalGas.d.ts +45 -0
  310. package/_types/chains/opStack/actions/estimateFinalizeWithdrawalGas.d.ts.map +1 -0
  311. package/_types/chains/opStack/actions/estimateInitiateWithdrawalGas.d.ts +51 -0
  312. package/_types/chains/opStack/actions/estimateInitiateWithdrawalGas.d.ts.map +1 -0
  313. package/_types/chains/opStack/actions/estimateProveWithdrawalGas.d.ts +63 -0
  314. package/_types/chains/opStack/actions/estimateProveWithdrawalGas.d.ts.map +1 -0
  315. package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts +49 -0
  316. package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts.map +1 -0
  317. package/_types/chains/opStack/actions/getL2Output.d.ts +44 -0
  318. package/_types/chains/opStack/actions/getL2Output.d.ts.map +1 -0
  319. package/_types/chains/opStack/actions/getTimeToFinalize.d.ts +57 -0
  320. package/_types/chains/opStack/actions/getTimeToFinalize.d.ts.map +1 -0
  321. package/_types/chains/opStack/actions/getTimeToNextL2Output.d.ts +61 -0
  322. package/_types/chains/opStack/actions/getTimeToNextL2Output.d.ts.map +1 -0
  323. package/_types/chains/opStack/actions/getTimeToProve.d.ts +50 -0
  324. package/_types/chains/opStack/actions/getTimeToProve.d.ts.map +1 -0
  325. package/_types/chains/opStack/actions/getWithdrawalStatus.d.ts +48 -0
  326. package/_types/chains/opStack/actions/getWithdrawalStatus.d.ts.map +1 -0
  327. package/_types/chains/opStack/actions/initiateWithdrawal.d.ts +77 -0
  328. package/_types/chains/opStack/actions/initiateWithdrawal.d.ts.map +1 -0
  329. package/_types/chains/opStack/actions/proveWithdrawal.d.ts +67 -0
  330. package/_types/chains/opStack/actions/proveWithdrawal.d.ts.map +1 -0
  331. package/_types/chains/opStack/actions/waitForNextL2Output.d.ts +55 -0
  332. package/_types/chains/opStack/actions/waitForNextL2Output.d.ts.map +1 -0
  333. package/_types/chains/opStack/actions/waitToFinalize.d.ts +45 -0
  334. package/_types/chains/opStack/actions/waitToFinalize.d.ts.map +1 -0
  335. package/_types/chains/opStack/actions/waitToProve.d.ts +55 -0
  336. package/_types/chains/opStack/actions/waitToProve.d.ts.map +1 -0
  337. package/_types/chains/opStack/chainConfig.d.ts +136 -136
  338. package/_types/chains/opStack/chains.d.ts +2 -0
  339. package/_types/chains/opStack/chains.d.ts.map +1 -1
  340. package/_types/chains/opStack/decorators/publicL1.d.ts +386 -0
  341. package/_types/chains/opStack/decorators/publicL1.d.ts.map +1 -0
  342. package/_types/chains/opStack/decorators/publicL2.d.ts +82 -26
  343. package/_types/chains/opStack/decorators/publicL2.d.ts.map +1 -1
  344. package/_types/chains/opStack/decorators/walletL1.d.ts +57 -2
  345. package/_types/chains/opStack/decorators/walletL1.d.ts.map +1 -1
  346. package/_types/chains/opStack/decorators/walletL2.d.ts +62 -0
  347. package/_types/chains/opStack/decorators/walletL2.d.ts.map +1 -0
  348. package/_types/chains/opStack/errors/withdrawal.d.ts +12 -0
  349. package/_types/chains/opStack/errors/withdrawal.d.ts.map +1 -0
  350. package/_types/chains/opStack/formatters.d.ts +136 -136
  351. package/_types/chains/opStack/index.d.ts +21 -3
  352. package/_types/chains/opStack/index.d.ts.map +1 -1
  353. package/_types/chains/opStack/types/deposit.d.ts +25 -0
  354. package/_types/chains/opStack/types/deposit.d.ts.map +1 -0
  355. package/_types/chains/opStack/types/withdrawal.d.ts +22 -0
  356. package/_types/chains/opStack/types/withdrawal.d.ts.map +1 -0
  357. package/_types/chains/opStack/utils/extractWithdrawalMessageLogs.d.ts +137 -0
  358. package/_types/chains/opStack/utils/extractWithdrawalMessageLogs.d.ts.map +1 -0
  359. package/_types/chains/opStack/utils/getWithdrawalHashStorageSlot.d.ts +11 -0
  360. package/_types/chains/opStack/utils/getWithdrawalHashStorageSlot.d.ts.map +1 -0
  361. package/_types/chains/opStack/utils/getWithdrawals.d.ts +12 -0
  362. package/_types/chains/opStack/utils/getWithdrawals.d.ts.map +1 -0
  363. package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts +15 -0
  364. package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts.map +1 -0
  365. package/_types/chains/zksync/chainConfig.d.ts +24 -24
  366. package/_types/chains/zksync/formatters.d.ts +24 -24
  367. package/_types/clients/decorators/public.d.ts +2 -2
  368. package/_types/clients/decorators/public.d.ts.map +1 -1
  369. package/_types/clients/decorators/wallet.d.ts +2 -2
  370. package/_types/clients/decorators/wallet.d.ts.map +1 -1
  371. package/_types/errors/abi.d.ts +14 -1
  372. package/_types/errors/abi.d.ts.map +1 -1
  373. package/_types/errors/version.d.ts +1 -1
  374. package/_types/errors/version.d.ts.map +1 -1
  375. package/_types/index.d.ts +15 -1
  376. package/_types/index.d.ts.map +1 -1
  377. package/_types/types/account.d.ts +1 -1
  378. package/_types/types/account.d.ts.map +1 -1
  379. package/_types/types/eip1193.d.ts +12 -0
  380. package/_types/types/eip1193.d.ts.map +1 -1
  381. package/_types/utils/abi/getAbiItem.d.ts +2 -1
  382. package/_types/utils/abi/getAbiItem.d.ts.map +1 -1
  383. package/_types/utils/formatters/block.d.ts +1 -1
  384. package/_types/utils/formatters/block.d.ts.map +1 -1
  385. package/_types/utils/formatters/transaction.d.ts +2 -2
  386. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  387. package/_types/utils/formatters/transactionReceipt.d.ts +1 -1
  388. package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
  389. package/_types/utils/formatters/transactionRequest.d.ts +1 -1
  390. package/_types/utils/hash/ripemd160.d.ts +11 -0
  391. package/_types/utils/hash/ripemd160.d.ts.map +1 -0
  392. package/_types/utils/hash/sha256.d.ts +11 -0
  393. package/_types/utils/hash/sha256.d.ts.map +1 -0
  394. package/_types/utils/index.d.ts +2 -0
  395. package/_types/utils/index.d.ts.map +1 -1
  396. package/actions/ens/getEnsName.ts +3 -2
  397. package/actions/index.ts +31 -0
  398. package/actions/public/getBlock.ts +1 -1
  399. package/actions/public/getTransaction.ts +1 -1
  400. package/actions/public/getTransactionReceipt.ts +1 -1
  401. package/actions/wallet/prepareTransactionRequest.ts +16 -9
  402. package/chains/definitions/arbitrumSepolia.ts +4 -0
  403. package/chains/definitions/base.ts +5 -0
  404. package/chains/definitions/baseGoerli.ts +5 -0
  405. package/chains/definitions/baseSepolia.ts +5 -0
  406. package/chains/definitions/fantomSonicTestnet.ts +23 -0
  407. package/chains/definitions/optimism.ts +5 -0
  408. package/chains/definitions/optimismGoerli.ts +5 -0
  409. package/chains/definitions/optimismSepolia.ts +5 -0
  410. package/chains/definitions/pgn.ts +13 -0
  411. package/chains/definitions/pgnTestnet.ts +8 -0
  412. package/chains/definitions/zilliqa.ts +23 -0
  413. package/chains/definitions/zilliqaTestnet.ts +23 -0
  414. package/chains/definitions/zkSyncSepoliaTestnet.ts +32 -0
  415. package/chains/definitions/zkSyncTestnet.ts +5 -0
  416. package/chains/definitions/zora.ts +5 -0
  417. package/chains/definitions/zoraSepolia.ts +5 -0
  418. package/chains/index.ts +9 -0
  419. package/chains/opStack/abis.ts +367 -0
  420. package/chains/opStack/actions/buildDepositTransaction.ts +11 -6
  421. package/chains/opStack/actions/buildInitiateWithdrawal.ts +118 -0
  422. package/chains/opStack/actions/buildProveWithdrawal.ts +149 -0
  423. package/chains/opStack/actions/depositTransaction.ts +50 -44
  424. package/chains/opStack/actions/estimateDepositTransactionGas.ts +138 -0
  425. package/chains/opStack/actions/estimateFinalizeWithdrawalGas.ts +118 -0
  426. package/chains/opStack/actions/estimateInitiateWithdrawalGas.ts +118 -0
  427. package/chains/opStack/actions/estimateProveWithdrawalGas.ts +139 -0
  428. package/chains/opStack/actions/finalizeWithdrawal.ts +130 -0
  429. package/chains/opStack/actions/getL2Output.ts +89 -0
  430. package/chains/opStack/actions/getTimeToFinalize.ts +122 -0
  431. package/chains/opStack/actions/getTimeToNextL2Output.ts +162 -0
  432. package/chains/opStack/actions/getTimeToProve.ts +79 -0
  433. package/chains/opStack/actions/getWithdrawalStatus.ts +152 -0
  434. package/chains/opStack/actions/initiateWithdrawal.ts +153 -0
  435. package/chains/opStack/actions/proveWithdrawal.ts +151 -0
  436. package/chains/opStack/actions/waitForNextL2Output.ts +111 -0
  437. package/chains/opStack/actions/waitToFinalize.ts +64 -0
  438. package/chains/opStack/actions/waitToProve.ts +99 -0
  439. package/chains/opStack/chains.ts +2 -0
  440. package/chains/opStack/decorators/publicL1.ts +514 -0
  441. package/chains/opStack/decorators/publicL2.ts +129 -37
  442. package/chains/opStack/decorators/walletL1.ts +71 -2
  443. package/chains/opStack/decorators/walletL2.ts +84 -0
  444. package/chains/opStack/errors/withdrawal.ts +15 -0
  445. package/chains/opStack/index.ts +112 -21
  446. package/chains/opStack/types/deposit.ts +28 -0
  447. package/chains/opStack/types/withdrawal.ts +23 -0
  448. package/chains/opStack/utils/extractWithdrawalMessageLogs.ts +36 -0
  449. package/chains/opStack/utils/getL2TransactionHash.ts +2 -2
  450. package/chains/opStack/utils/getWithdrawalHashStorageSlot.ts +29 -0
  451. package/chains/opStack/utils/getWithdrawals.ts +25 -0
  452. package/chains/opStack/utils/{fromOpaqueData.ts → opaqueDataToDepositData.ts} +9 -4
  453. package/clients/decorators/public.ts +2 -2
  454. package/clients/decorators/wallet.ts +2 -2
  455. package/errors/abi.ts +22 -1
  456. package/errors/version.ts +1 -1
  457. package/index.ts +40 -0
  458. package/package.json +1 -1
  459. package/types/account.ts +1 -1
  460. package/types/eip1193.ts +12 -0
  461. package/utils/abi/getAbiItem.ts +71 -2
  462. package/utils/formatters/block.ts +1 -1
  463. package/utils/formatters/transaction.ts +1 -1
  464. package/utils/formatters/transactionReceipt.ts +1 -1
  465. package/utils/hash/ripemd160.ts +31 -0
  466. package/utils/hash/sha256.ts +31 -0
  467. package/utils/index.ts +2 -0
  468. package/_cjs/chains/opStack/utils/fromOpaqueData.js.map +0 -1
  469. package/_esm/chains/opStack/utils/fromOpaqueData.js.map +0 -1
  470. package/_types/chains/opStack/utils/fromOpaqueData.d.ts +0 -15
  471. package/_types/chains/opStack/utils/fromOpaqueData.d.ts.map +0 -1
  472. package/chains/celo/package.json +0 -6
  473. package/chains/opStack/package.json +0 -6
  474. package/chains/zksync/package.json +0 -6
@@ -0,0 +1,130 @@
1
+ import type { Address } from 'abitype'
2
+ import {
3
+ type WriteContractErrorType,
4
+ writeContract,
5
+ } from '../../../actions/wallet/writeContract.js'
6
+ import type { Client } from '../../../clients/createClient.js'
7
+ import type { Transport } from '../../../clients/transports/createTransport.js'
8
+ import type { ErrorType } from '../../../errors/utils.js'
9
+ import type { Account, GetAccountParameter } from '../../../types/account.js'
10
+ import type {
11
+ Chain,
12
+ DeriveChain,
13
+ GetChainParameter,
14
+ } from '../../../types/chain.js'
15
+ import type { Hash } from '../../../types/misc.js'
16
+ import type { UnionEvaluate, UnionOmit } from '../../../types/utils.js'
17
+ import type { FormattedTransactionRequest } from '../../../utils/formatters/transactionRequest.js'
18
+ import { portalAbi } from '../abis.js'
19
+ import type { GetContractAddressParameter } from '../types/contract.js'
20
+ import type { Withdrawal } from '../types/withdrawal.js'
21
+ import {
22
+ type EstimateFinalizeWithdrawalGasErrorType,
23
+ type EstimateFinalizeWithdrawalGasParameters,
24
+ estimateFinalizeWithdrawalGas,
25
+ } from './estimateFinalizeWithdrawalGas.js'
26
+
27
+ export type FinalizeWithdrawalParameters<
28
+ chain extends Chain | undefined = Chain | undefined,
29
+ account extends Account | undefined = Account | undefined,
30
+ chainOverride extends Chain | undefined = Chain | undefined,
31
+ _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
32
+ > = UnionEvaluate<
33
+ UnionOmit<
34
+ FormattedTransactionRequest<_derivedChain>,
35
+ | 'accessList'
36
+ | 'data'
37
+ | 'from'
38
+ | 'gas'
39
+ | 'gasPrice'
40
+ | 'to'
41
+ | 'type'
42
+ | 'value'
43
+ >
44
+ > &
45
+ GetAccountParameter<account, Account | Address> &
46
+ GetChainParameter<chain, chainOverride> &
47
+ GetContractAddressParameter<_derivedChain, 'portal'> & {
48
+ /**
49
+ * Gas limit for transaction execution on the L1.
50
+ * `null` to skip gas estimation & defer calculation to signer.
51
+ */
52
+ gas?: bigint | null
53
+ withdrawal: Withdrawal
54
+ }
55
+ export type FinalizeWithdrawalReturnType = Hash
56
+ export type FinalizeWithdrawalErrorType =
57
+ | EstimateFinalizeWithdrawalGasErrorType
58
+ | WriteContractErrorType
59
+ | ErrorType
60
+
61
+ /**
62
+ * Finalizes a withdrawal that occurred on an L2. Used in the Withdrawal flow.
63
+ *
64
+ * - Docs: https://viem.sh/op-stack/actions/finalizeWithdrawal.html
65
+ *
66
+ * @param client - Client to use
67
+ * @param parameters - {@link FinalizeWithdrawalParameters}
68
+ * @returns The finalize transaction hash. {@link FinalizeWithdrawalReturnType}
69
+ *
70
+ * @example
71
+ * import { createWalletClient, http } from 'viem'
72
+ * import { mainnet, optimism } from 'viem/chains'
73
+ * import { finalizeWithdrawal } from 'viem/op-stack'
74
+ *
75
+ * const walletClientL1 = createWalletClient({
76
+ * chain: mainnet,
77
+ * transport: http(),
78
+ * })
79
+ *
80
+ * const request = await finalizeWithdrawal(walletClientL1, {
81
+ * targetChain: optimism,
82
+ * withdrawal: { ... },
83
+ * })
84
+ */
85
+ export async function finalizeWithdrawal<
86
+ chain extends Chain | undefined,
87
+ account extends Account | undefined,
88
+ chainOverride extends Chain | undefined = undefined,
89
+ >(
90
+ client: Client<Transport, chain, account>,
91
+ parameters: FinalizeWithdrawalParameters<chain, account, chainOverride>,
92
+ ): Promise<FinalizeWithdrawalReturnType> {
93
+ const {
94
+ account,
95
+ chain = client.chain,
96
+ gas,
97
+ maxFeePerGas,
98
+ maxPriorityFeePerGas,
99
+ nonce,
100
+ targetChain,
101
+ withdrawal,
102
+ } = parameters
103
+
104
+ const portalAddress = (() => {
105
+ if (parameters.portalAddress) return parameters.portalAddress
106
+ if (chain) return targetChain!.contracts.portal[chain.id].address
107
+ return Object.values(targetChain!.contracts.portal)[0].address
108
+ })()
109
+
110
+ const gas_ =
111
+ typeof gas !== 'number' && gas !== null
112
+ ? await estimateFinalizeWithdrawalGas(
113
+ client,
114
+ parameters as EstimateFinalizeWithdrawalGasParameters,
115
+ )
116
+ : undefined
117
+
118
+ return writeContract(client, {
119
+ account,
120
+ abi: portalAbi,
121
+ address: portalAddress,
122
+ chain,
123
+ functionName: 'finalizeWithdrawalTransaction',
124
+ args: [withdrawal],
125
+ gas: gas_,
126
+ maxFeePerGas,
127
+ maxPriorityFeePerGas,
128
+ nonce,
129
+ })
130
+ }
@@ -0,0 +1,89 @@
1
+ import {
2
+ type ReadContractErrorType,
3
+ readContract,
4
+ } from '../../../actions/public/readContract.js'
5
+ import type { Client } from '../../../clients/createClient.js'
6
+ import type { Transport } from '../../../clients/transports/createTransport.js'
7
+ import type { ErrorType } from '../../../errors/utils.js'
8
+ import type { Account } from '../../../types/account.js'
9
+ import type {
10
+ Chain,
11
+ DeriveChain,
12
+ GetChainParameter,
13
+ } from '../../../types/chain.js'
14
+ import type { Hex } from '../../../types/misc.js'
15
+ import { l2OutputOracleAbi } from '../abis.js'
16
+ import type { GetContractAddressParameter } from '../types/contract.js'
17
+
18
+ export type GetL2OutputParameters<
19
+ chain extends Chain | undefined = Chain | undefined,
20
+ chainOverride extends Chain | undefined = Chain | undefined,
21
+ _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
22
+ > = GetChainParameter<chain, chainOverride> &
23
+ GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
24
+ l2BlockNumber: bigint
25
+ }
26
+ export type GetL2OutputReturnType = {
27
+ outputIndex: bigint
28
+ outputRoot: Hex
29
+ timestamp: bigint
30
+ l2BlockNumber: bigint
31
+ }
32
+ export type GetL2OutputErrorType = ReadContractErrorType | ErrorType
33
+
34
+ /**
35
+ * Retrieves the first L2 output proposal that occurred after a provided block number.
36
+ *
37
+ * - Docs: https://viem.sh/op-stack/actions/getL2Output.html
38
+ *
39
+ * @param client - Client to use
40
+ * @param parameters - {@link GetL2OutputParameters}
41
+ * @returns The L2 output. {@link GetL2OutputReturnType}
42
+ *
43
+ * @example
44
+ * import { createPublicClient, http } from 'viem'
45
+ * import { mainnet, optimism } from 'viem/chains'
46
+ * import { getL2Output } from 'viem/op-stack'
47
+ *
48
+ * const publicClientL1 = createPublicClient({
49
+ * chain: mainnet,
50
+ * transport: http(),
51
+ * })
52
+ *
53
+ * const output = await getL2Output(publicClientL1, {
54
+ * l2BlockNumber: 69420n,
55
+ * targetChain: optimism
56
+ * })
57
+ */
58
+ export async function getL2Output<
59
+ chain extends Chain | undefined,
60
+ account extends Account | undefined,
61
+ chainOverride extends Chain | undefined = undefined,
62
+ >(
63
+ client: Client<Transport, chain, account>,
64
+ parameters: GetL2OutputParameters<chain, chainOverride>,
65
+ ): Promise<GetL2OutputReturnType> {
66
+ const { chain = client.chain, l2BlockNumber, targetChain } = parameters
67
+
68
+ const l2OutputOracleAddress = (() => {
69
+ if (parameters.l2OutputOracleAddress)
70
+ return parameters.l2OutputOracleAddress
71
+ if (chain) return targetChain!.contracts.l2OutputOracle[chain.id].address
72
+ return Object.values(targetChain!.contracts.l2OutputOracle)[0].address
73
+ })()
74
+
75
+ const outputIndex = await readContract(client, {
76
+ address: l2OutputOracleAddress,
77
+ abi: l2OutputOracleAbi,
78
+ functionName: 'getL2OutputIndexAfter',
79
+ args: [l2BlockNumber],
80
+ })
81
+ const output = await readContract(client, {
82
+ address: l2OutputOracleAddress,
83
+ abi: l2OutputOracleAbi,
84
+ functionName: 'getL2Output',
85
+ args: [outputIndex],
86
+ })
87
+
88
+ return { outputIndex, ...output }
89
+ }
@@ -0,0 +1,122 @@
1
+ import {
2
+ type MulticallErrorType,
3
+ multicall,
4
+ } from '../../../actions/public/multicall.js'
5
+ import type { Client } from '../../../clients/createClient.js'
6
+ import type { Transport } from '../../../clients/transports/createTransport.js'
7
+ import type { ErrorType } from '../../../errors/utils.js'
8
+ import type { Account } from '../../../types/account.js'
9
+ import type {
10
+ Chain,
11
+ DeriveChain,
12
+ GetChainParameter,
13
+ } from '../../../types/chain.js'
14
+ import type { Hash } from '../../../types/misc.js'
15
+ import { l2OutputOracleAbi, portalAbi } from '../abis.js'
16
+ import type { GetContractAddressParameter } from '../types/contract.js'
17
+
18
+ export type GetTimeToFinalizeParameters<
19
+ chain extends Chain | undefined = Chain | undefined,
20
+ chainOverride extends Chain | undefined = Chain | undefined,
21
+ _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
22
+ > = GetChainParameter<chain, chainOverride> &
23
+ GetContractAddressParameter<_derivedChain, 'l2OutputOracle' | 'portal'> & {
24
+ withdrawalHash: Hash
25
+ }
26
+ export type GetTimeToFinalizeReturnType = {
27
+ /** The finalization period (in seconds). */
28
+ period: number
29
+ /** Seconds until the withdrawal can be finalized. */
30
+ seconds: number
31
+ /** Timestamp of when the withdrawal can be finalized. */
32
+ timestamp: number
33
+ }
34
+ export type GetTimeToFinalizeErrorType = MulticallErrorType | ErrorType
35
+
36
+ const buffer = 10
37
+
38
+ /**
39
+ * Returns the time until the withdrawal transaction can be finalized. Used for the [Withdrawal](/op-stack/guides/withdrawals.html) flow.
40
+ *
41
+ * - Docs: https://viem.sh/op-stack/actions/getTimeToFinalize.html
42
+ *
43
+ * @param client - Client to use
44
+ * @param parameters - {@link GetTimeToFinalizeParameters}
45
+ * @returns Time until finalize. {@link GetTimeToFinalizeReturnType}
46
+ *
47
+ * @example
48
+ * import { createPublicClient, http } from 'viem'
49
+ * import { getBlockNumber } from 'viem/actions'
50
+ * import { mainnet, optimism } from 'viem/chains'
51
+ * import { getTimeToFinalize } from 'viem/op-stack'
52
+ *
53
+ * const publicClientL1 = createPublicClient({
54
+ * chain: mainnet,
55
+ * transport: http(),
56
+ * })
57
+ * const publicClientL2 = createPublicClient({
58
+ * chain: optimism,
59
+ * transport: http(),
60
+ * })
61
+ *
62
+ * const receipt = await getTransactionReceipt(publicClientL2, {
63
+ * hash: '0x9a2f4283636ddeb9ac32382961b22c177c9e86dd3b283735c154f897b1a7ff4a',
64
+ * })
65
+ *
66
+ * const [withdrawal] = getWithdrawals(receipt)
67
+ *
68
+ * const { seconds } = await getTimeToFinalize(publicClientL1, {
69
+ * withdrawalHash: withdrawal.withdrawalHash,
70
+ * targetChain: optimism
71
+ * })
72
+ */
73
+ export async function getTimeToFinalize<
74
+ chain extends Chain | undefined,
75
+ account extends Account | undefined,
76
+ chainOverride extends Chain | undefined = undefined,
77
+ >(
78
+ client: Client<Transport, chain, account>,
79
+ parameters: GetTimeToFinalizeParameters<chain, chainOverride>,
80
+ ): Promise<GetTimeToFinalizeReturnType> {
81
+ const { chain = client.chain, withdrawalHash, targetChain } = parameters
82
+
83
+ const l2OutputOracleAddress = (() => {
84
+ if (parameters.l2OutputOracleAddress)
85
+ return parameters.l2OutputOracleAddress
86
+ if (chain) return targetChain!.contracts.l2OutputOracle[chain.id].address
87
+ return Object.values(targetChain!.contracts.l2OutputOracle)[0].address
88
+ })()
89
+ const portalAddress = (() => {
90
+ if (parameters.portalAddress) return parameters.portalAddress
91
+ if (chain) return targetChain!.contracts.portal[chain.id].address
92
+ return Object.values(targetChain!.contracts.portal)[0].address
93
+ })()
94
+
95
+ const [[_outputRoot, proveTimestamp, _l2OutputIndex], period] =
96
+ await multicall(client, {
97
+ allowFailure: false,
98
+ contracts: [
99
+ {
100
+ abi: portalAbi,
101
+ address: portalAddress,
102
+ functionName: 'provenWithdrawals',
103
+ args: [withdrawalHash],
104
+ },
105
+ {
106
+ abi: l2OutputOracleAbi,
107
+ address: l2OutputOracleAddress,
108
+ functionName: 'FINALIZATION_PERIOD_SECONDS',
109
+ },
110
+ ],
111
+ })
112
+
113
+ const secondsSinceProven = Date.now() / 1000 - Number(proveTimestamp)
114
+ const secondsToFinalize = Number(period) - secondsSinceProven
115
+
116
+ const seconds = Math.floor(
117
+ secondsToFinalize < 0 ? 0 : secondsToFinalize + buffer,
118
+ )
119
+ const timestamp = Date.now() + seconds * 1000
120
+
121
+ return { period: Number(period), seconds, timestamp }
122
+ }
@@ -0,0 +1,162 @@
1
+ import {
2
+ type MulticallErrorType,
3
+ multicall,
4
+ } from '../../../actions/public/multicall.js'
5
+ import {
6
+ type ReadContractErrorType,
7
+ readContract,
8
+ } from '../../../actions/public/readContract.js'
9
+ import type { Client } from '../../../clients/createClient.js'
10
+ import type { Transport } from '../../../clients/transports/createTransport.js'
11
+ import type { ErrorType } from '../../../errors/utils.js'
12
+ import type { Account } from '../../../types/account.js'
13
+ import type {
14
+ Chain,
15
+ DeriveChain,
16
+ GetChainParameter,
17
+ } from '../../../types/chain.js'
18
+ import { l2OutputOracleAbi } from '../abis.js'
19
+ import type { GetContractAddressParameter } from '../types/contract.js'
20
+
21
+ export type GetTimeToNextL2OutputParameters<
22
+ chain extends Chain | undefined = Chain | undefined,
23
+ chainOverride extends Chain | undefined = Chain | undefined,
24
+ _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
25
+ > = GetChainParameter<chain, chainOverride> &
26
+ GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
27
+ /**
28
+ * The buffer to account for discrepencies between non-deterministic time intervals.
29
+ * @default 1.1
30
+ */
31
+ intervalBuffer?: number
32
+ l2BlockNumber: bigint
33
+ }
34
+ export type GetTimeToNextL2OutputReturnType = {
35
+ /** The interval (in seconds) between L2 outputs. */
36
+ interval: number
37
+ /**
38
+ * Seconds until the next L2 output.
39
+ * `0` if the next L2 output has already been submitted.
40
+ */
41
+ seconds: number
42
+ /**
43
+ * Estimated timestamp of the next L2 output.
44
+ * `undefined` if the next L2 output has already been submitted.
45
+ */
46
+ timestamp?: number
47
+ }
48
+ export type GetTimeToNextL2OutputErrorType =
49
+ | MulticallErrorType
50
+ | ReadContractErrorType
51
+ | ErrorType
52
+
53
+ /**
54
+ * Returns the time until the next L2 output (after the provided block number) is submitted. Used for the [Withdrawal](/op-stack/guides/withdrawals.html) flow.
55
+ *
56
+ * - Docs: https://viem.sh/op-stack/actions/getTimeToNextL2Output.html
57
+ *
58
+ * @param client - Client to use
59
+ * @param parameters - {@link GetTimeToNextL2OutputParameters}
60
+ * @returns The L2 transaction hash. {@link GetTimeToNextL2OutputReturnType}
61
+ *
62
+ * @example
63
+ * import { createPublicClient, http } from 'viem'
64
+ * import { getBlockNumber } from 'viem/actions'
65
+ * import { mainnet, optimism } from 'viem/chains'
66
+ * import { getTimeToNextL2Output } from 'viem/op-stack'
67
+ *
68
+ * const publicClientL1 = createPublicClient({
69
+ * chain: mainnet,
70
+ * transport: http(),
71
+ * })
72
+ * const publicClientL2 = createPublicClient({
73
+ * chain: optimism,
74
+ * transport: http(),
75
+ * })
76
+ *
77
+ * const { seconds } = await getTimeToNextL2Output(publicClientL1, {
78
+ * targetChain: optimism
79
+ * })
80
+ */
81
+ export async function getTimeToNextL2Output<
82
+ chain extends Chain | undefined,
83
+ account extends Account | undefined,
84
+ chainOverride extends Chain | undefined = undefined,
85
+ >(
86
+ client: Client<Transport, chain, account>,
87
+ parameters: GetTimeToNextL2OutputParameters<chain, chainOverride>,
88
+ ): Promise<GetTimeToNextL2OutputReturnType> {
89
+ const {
90
+ intervalBuffer = 1.1,
91
+ chain = client.chain,
92
+ l2BlockNumber,
93
+ targetChain,
94
+ } = parameters
95
+
96
+ const l2OutputOracleAddress = (() => {
97
+ if (parameters.l2OutputOracleAddress)
98
+ return parameters.l2OutputOracleAddress
99
+ if (chain) return targetChain!.contracts.l2OutputOracle[chain.id].address
100
+ return Object.values(targetChain!.contracts.l2OutputOracle)[0].address
101
+ })()
102
+
103
+ const [latestOutputIndex, blockTime, blockInterval] = await multicall(
104
+ client,
105
+ {
106
+ allowFailure: false,
107
+ contracts: [
108
+ {
109
+ abi: l2OutputOracleAbi,
110
+ address: l2OutputOracleAddress,
111
+ functionName: 'latestOutputIndex',
112
+ },
113
+ {
114
+ abi: l2OutputOracleAbi,
115
+ address: l2OutputOracleAddress,
116
+ functionName: 'L2_BLOCK_TIME',
117
+ },
118
+ {
119
+ abi: l2OutputOracleAbi,
120
+ address: l2OutputOracleAddress,
121
+ functionName: 'SUBMISSION_INTERVAL',
122
+ },
123
+ ],
124
+ },
125
+ )
126
+ const latestOutput = await readContract(client, {
127
+ abi: l2OutputOracleAbi,
128
+ address: l2OutputOracleAddress,
129
+ functionName: 'getL2Output',
130
+ args: [latestOutputIndex],
131
+ })
132
+ const latestOutputTimestamp = Number(latestOutput.timestamp) * 1000
133
+
134
+ const interval = Number(blockInterval * blockTime)
135
+ const intervalWithBuffer = Math.ceil(interval * intervalBuffer)
136
+
137
+ const now = Date.now()
138
+
139
+ const seconds = (() => {
140
+ // If the current timestamp is lesser than the latest L2 output timestamp,
141
+ // then we assume that the L2 output has already been submitted.
142
+ if (now < latestOutputTimestamp) return 0
143
+
144
+ // If the latest L2 output block is newer than the provided L2 block number,
145
+ // then we assume that the L2 output has already been submitted.
146
+ if (latestOutput.l2BlockNumber > l2BlockNumber) return 0
147
+
148
+ const elapsedBlocks = Number(l2BlockNumber - latestOutput.l2BlockNumber)
149
+
150
+ const elapsed = Math.ceil((now - latestOutputTimestamp) / 1000)
151
+ const secondsToNextOutput =
152
+ intervalWithBuffer - (elapsed % intervalWithBuffer)
153
+ return elapsedBlocks < blockInterval
154
+ ? secondsToNextOutput
155
+ : Math.floor(elapsedBlocks / Number(blockInterval)) * intervalWithBuffer +
156
+ secondsToNextOutput
157
+ })()
158
+
159
+ const timestamp = seconds > 0 ? now + seconds * 1000 : undefined
160
+
161
+ return { interval, seconds, timestamp }
162
+ }
@@ -0,0 +1,79 @@
1
+ import type { Client } from '../../../clients/createClient.js'
2
+ import type { Transport } from '../../../clients/transports/createTransport.js'
3
+ import type { ErrorType } from '../../../errors/utils.js'
4
+ import type { Account } from '../../../types/account.js'
5
+ import type {
6
+ Chain,
7
+ DeriveChain,
8
+ GetChainParameter,
9
+ } from '../../../types/chain.js'
10
+ import type { TransactionReceipt } from '../../../types/transaction.js'
11
+ import type { GetContractAddressParameter } from '../types/contract.js'
12
+ import {
13
+ type GetTimeToNextL2OutputErrorType,
14
+ type GetTimeToNextL2OutputParameters,
15
+ type GetTimeToNextL2OutputReturnType,
16
+ getTimeToNextL2Output,
17
+ } from './getTimeToNextL2Output.js'
18
+
19
+ export type GetTimeToProveParameters<
20
+ chain extends Chain | undefined = Chain | undefined,
21
+ chainOverride extends Chain | undefined = Chain | undefined,
22
+ _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
23
+ > = GetChainParameter<chain, chainOverride> &
24
+ GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
25
+ /**
26
+ * The buffer to account for discrepencies between non-deterministic time intervals.
27
+ * @default 1.1
28
+ */
29
+ intervalBuffer?: GetTimeToNextL2OutputParameters['intervalBuffer']
30
+ receipt: TransactionReceipt
31
+ }
32
+ export type GetTimeToProveReturnType = GetTimeToNextL2OutputReturnType
33
+ export type GetTimeToProveErrorType = GetTimeToNextL2OutputErrorType | ErrorType
34
+
35
+ /**
36
+ * Returns the time until the withdrawal transaction is ready to prove. Used for the [Withdrawal](/op-stack/guides/withdrawals.html) flow.
37
+ *
38
+ * - Docs: https://viem.sh/op-stack/actions/getTimeToProve.html
39
+ *
40
+ * @param client - Client to use
41
+ * @param parameters - {@link GetTimeToNextL2OutputParameters}
42
+ * @returns Time until prove step is ready. {@link GetTimeToNextL2OutputReturnType}
43
+ *
44
+ * @example
45
+ * import { createPublicClient, http } from 'viem'
46
+ * import { getBlockNumber } from 'viem/actions'
47
+ * import { mainnet, optimism } from 'viem/chains'
48
+ * import { getTimeToProve } from 'viem/op-stack'
49
+ *
50
+ * const publicClientL1 = createPublicClient({
51
+ * chain: mainnet,
52
+ * transport: http(),
53
+ * })
54
+ * const publicClientL2 = createPublicClient({
55
+ * chain: optimism,
56
+ * transport: http(),
57
+ * })
58
+ *
59
+ * const receipt = await getTransactionReceipt(publicClientL2, { hash: '0x...' })
60
+ * const { period, seconds, timestamp } = await getTimeToProve(publicClientL1, {
61
+ * receipt,
62
+ * targetChain: optimism
63
+ * })
64
+ */
65
+ export async function getTimeToProve<
66
+ chain extends Chain | undefined,
67
+ account extends Account | undefined,
68
+ chainOverride extends Chain | undefined = undefined,
69
+ >(
70
+ client: Client<Transport, chain, account>,
71
+ parameters: GetTimeToProveParameters<chain, chainOverride>,
72
+ ): Promise<GetTimeToProveReturnType> {
73
+ const { receipt } = parameters
74
+
75
+ return getTimeToNextL2Output(client, {
76
+ ...parameters,
77
+ l2BlockNumber: receipt.blockNumber,
78
+ })
79
+ }