viem 0.3.5 → 0.3.7

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 (592) hide show
  1. package/README.md +6 -0
  2. package/dist/cjs/actions/public/createContractEventFilter.js.map +1 -1
  3. package/dist/cjs/errors/version.js +1 -1
  4. package/dist/cjs/utils/rpc.js +3 -1
  5. package/dist/cjs/utils/rpc.js.map +1 -1
  6. package/dist/esm/actions/public/createContractEventFilter.js.map +1 -1
  7. package/dist/esm/errors/version.js +1 -1
  8. package/dist/esm/utils/rpc.js +3 -1
  9. package/dist/esm/utils/rpc.js.map +1 -1
  10. package/dist/types/abi.d.ts +3 -0
  11. package/dist/types/abi.d.ts.map +1 -0
  12. package/dist/types/accounts/generateMnemonic.d.ts +9 -0
  13. package/dist/types/accounts/generateMnemonic.d.ts.map +1 -0
  14. package/dist/types/accounts/generatePrivateKey.d.ts +8 -0
  15. package/dist/types/accounts/generatePrivateKey.d.ts.map +1 -0
  16. package/dist/types/accounts/hdKeyToAccount.d.ts +9 -0
  17. package/dist/types/accounts/hdKeyToAccount.d.ts.map +1 -0
  18. package/dist/types/accounts/index.d.ts +21 -0
  19. package/dist/types/accounts/index.d.ts.map +1 -0
  20. package/dist/types/accounts/mnemonicToAccount.d.ts +8 -0
  21. package/dist/types/accounts/mnemonicToAccount.d.ts.map +1 -0
  22. package/dist/types/accounts/privateKeyToAccount.d.ts +9 -0
  23. package/dist/types/accounts/privateKeyToAccount.d.ts.map +1 -0
  24. package/dist/types/accounts/toAccount.d.ts +11 -0
  25. package/dist/types/accounts/toAccount.d.ts.map +1 -0
  26. package/dist/types/accounts/types.d.ts +45 -0
  27. package/dist/types/accounts/types.d.ts.map +1 -0
  28. package/dist/types/accounts/utils/index.d.ts +10 -0
  29. package/dist/types/accounts/utils/index.d.ts.map +1 -0
  30. package/dist/types/accounts/utils/parseAccount.d.ts +4 -0
  31. package/dist/types/accounts/utils/parseAccount.d.ts.map +1 -0
  32. package/dist/types/accounts/utils/publicKeyToAddress.d.ts +10 -0
  33. package/dist/types/accounts/utils/publicKeyToAddress.d.ts.map +1 -0
  34. package/dist/types/accounts/utils/sign.d.ts +16 -0
  35. package/dist/types/accounts/utils/sign.d.ts.map +1 -0
  36. package/dist/types/accounts/utils/signMessage.d.ts +16 -0
  37. package/dist/types/accounts/utils/signMessage.d.ts.map +1 -0
  38. package/dist/types/accounts/utils/signTransaction.d.ts +9 -0
  39. package/dist/types/accounts/utils/signTransaction.d.ts.map +1 -0
  40. package/dist/types/accounts/utils/signTypedData.d.ts +19 -0
  41. package/dist/types/accounts/utils/signTypedData.d.ts.map +1 -0
  42. package/dist/types/accounts/utils/signatureToHex.d.ts +3 -0
  43. package/dist/types/accounts/utils/signatureToHex.d.ts.map +1 -0
  44. package/dist/types/accounts/wordlists/czech.d.ts +2 -0
  45. package/dist/types/accounts/wordlists/czech.d.ts.map +1 -0
  46. package/dist/types/accounts/wordlists/english.d.ts +2 -0
  47. package/dist/types/accounts/wordlists/english.d.ts.map +1 -0
  48. package/dist/types/accounts/wordlists/french.d.ts +2 -0
  49. package/dist/types/accounts/wordlists/french.d.ts.map +1 -0
  50. package/dist/types/accounts/wordlists/italian.d.ts +2 -0
  51. package/dist/types/accounts/wordlists/italian.d.ts.map +1 -0
  52. package/dist/types/accounts/wordlists/japanese.d.ts +2 -0
  53. package/dist/types/accounts/wordlists/japanese.d.ts.map +1 -0
  54. package/dist/types/accounts/wordlists/korean.d.ts +2 -0
  55. package/dist/types/accounts/wordlists/korean.d.ts.map +1 -0
  56. package/dist/types/accounts/wordlists/simplifiedChinese.d.ts +2 -0
  57. package/dist/types/accounts/wordlists/simplifiedChinese.d.ts.map +1 -0
  58. package/dist/types/accounts/wordlists/spanish.d.ts +2 -0
  59. package/dist/types/accounts/wordlists/spanish.d.ts.map +1 -0
  60. package/dist/types/accounts/wordlists/traditionalChinese.d.ts +2 -0
  61. package/dist/types/accounts/wordlists/traditionalChinese.d.ts.map +1 -0
  62. package/dist/types/actions/ens/getEnsAddress.d.ts +40 -0
  63. package/dist/types/actions/ens/getEnsAddress.d.ts.map +1 -0
  64. package/dist/types/actions/ens/getEnsAvatar.d.ts +38 -0
  65. package/dist/types/actions/ens/getEnsAvatar.d.ts.map +1 -0
  66. package/dist/types/actions/ens/getEnsName.d.ts +38 -0
  67. package/dist/types/actions/ens/getEnsName.d.ts.map +1 -0
  68. package/dist/types/actions/ens/getEnsResolver.d.ts +40 -0
  69. package/dist/types/actions/ens/getEnsResolver.d.ts.map +1 -0
  70. package/dist/types/actions/ens/getEnsText.d.ts +43 -0
  71. package/dist/types/actions/ens/getEnsText.d.ts.map +1 -0
  72. package/dist/types/actions/ens/index.d.ts +6 -0
  73. package/dist/types/actions/ens/index.d.ts.map +1 -0
  74. package/dist/types/actions/getContract.d.ts +261 -0
  75. package/dist/types/actions/getContract.d.ts.map +1 -0
  76. package/dist/types/actions/index.d.ts +11 -0
  77. package/dist/types/actions/index.d.ts.map +1 -0
  78. package/dist/types/actions/public/call.d.ts +49 -0
  79. package/dist/types/actions/public/call.d.ts.map +1 -0
  80. package/dist/types/actions/public/createBlockFilter.d.ts +26 -0
  81. package/dist/types/actions/public/createBlockFilter.d.ts.map +1 -0
  82. package/dist/types/actions/public/createContractEventFilter.d.ts +41 -0
  83. package/dist/types/actions/public/createContractEventFilter.d.ts.map +1 -0
  84. package/dist/types/actions/public/createEventFilter.d.ts +46 -0
  85. package/dist/types/actions/public/createEventFilter.d.ts.map +1 -0
  86. package/dist/types/actions/public/createPendingTransactionFilter.d.ts +26 -0
  87. package/dist/types/actions/public/createPendingTransactionFilter.d.ts.map +1 -0
  88. package/dist/types/actions/public/estimateContractGas.d.ts +35 -0
  89. package/dist/types/actions/public/estimateContractGas.d.ts.map +1 -0
  90. package/dist/types/actions/public/estimateGas.d.ts +45 -0
  91. package/dist/types/actions/public/estimateGas.d.ts.map +1 -0
  92. package/dist/types/actions/public/getBalance.d.ts +52 -0
  93. package/dist/types/actions/public/getBalance.d.ts.map +1 -0
  94. package/dist/types/actions/public/getBlock.d.ts +52 -0
  95. package/dist/types/actions/public/getBlock.d.ts.map +1 -0
  96. package/dist/types/actions/public/getBlockNumber.d.ts +54 -0
  97. package/dist/types/actions/public/getBlockNumber.d.ts.map +1 -0
  98. package/dist/types/actions/public/getBlockTransactionCount.d.ts +44 -0
  99. package/dist/types/actions/public/getBlockTransactionCount.d.ts.map +1 -0
  100. package/dist/types/actions/public/getBytecode.d.ts +37 -0
  101. package/dist/types/actions/public/getBytecode.d.ts.map +1 -0
  102. package/dist/types/actions/public/getChainId.d.ts +26 -0
  103. package/dist/types/actions/public/getChainId.d.ts.map +1 -0
  104. package/dist/types/actions/public/getFeeHistory.d.ts +50 -0
  105. package/dist/types/actions/public/getFeeHistory.d.ts.map +1 -0
  106. package/dist/types/actions/public/getFilterChanges.d.ts +91 -0
  107. package/dist/types/actions/public/getFilterChanges.d.ts.map +1 -0
  108. package/dist/types/actions/public/getFilterLogs.d.ts +36 -0
  109. package/dist/types/actions/public/getFilterLogs.d.ts.map +1 -0
  110. package/dist/types/actions/public/getGasPrice.d.ts +25 -0
  111. package/dist/types/actions/public/getGasPrice.d.ts.map +1 -0
  112. package/dist/types/actions/public/getLogs.d.ts +49 -0
  113. package/dist/types/actions/public/getLogs.d.ts.map +1 -0
  114. package/dist/types/actions/public/getStorageAt.d.ts +39 -0
  115. package/dist/types/actions/public/getStorageAt.d.ts.map +1 -0
  116. package/dist/types/actions/public/getTransaction.d.ts +62 -0
  117. package/dist/types/actions/public/getTransaction.d.ts.map +1 -0
  118. package/dist/types/actions/public/getTransactionConfirmations.d.ts +39 -0
  119. package/dist/types/actions/public/getTransactionConfirmations.d.ts.map +1 -0
  120. package/dist/types/actions/public/getTransactionCount.d.ts +40 -0
  121. package/dist/types/actions/public/getTransactionCount.d.ts.map +1 -0
  122. package/dist/types/actions/public/getTransactionReceipt.d.ts +34 -0
  123. package/dist/types/actions/public/getTransactionReceipt.d.ts.map +1 -0
  124. package/dist/types/actions/public/index.d.ts +67 -0
  125. package/dist/types/actions/public/index.d.ts.map +1 -0
  126. package/dist/types/actions/public/multicall.d.ts +52 -0
  127. package/dist/types/actions/public/multicall.d.ts.map +1 -0
  128. package/dist/types/actions/public/readContract.d.ts +39 -0
  129. package/dist/types/actions/public/readContract.d.ts.map +1 -0
  130. package/dist/types/actions/public/simulateContract.d.ts +47 -0
  131. package/dist/types/actions/public/simulateContract.d.ts.map +1 -0
  132. package/dist/types/actions/public/uninstallFilter.d.ts +32 -0
  133. package/dist/types/actions/public/uninstallFilter.d.ts.map +1 -0
  134. package/dist/types/actions/public/waitForTransactionReceipt.d.ts +69 -0
  135. package/dist/types/actions/public/waitForTransactionReceipt.d.ts.map +1 -0
  136. package/dist/types/actions/public/watchBlockNumber.d.ts +57 -0
  137. package/dist/types/actions/public/watchBlockNumber.d.ts.map +1 -0
  138. package/dist/types/actions/public/watchBlocks.d.ts +64 -0
  139. package/dist/types/actions/public/watchBlocks.d.ts.map +1 -0
  140. package/dist/types/actions/public/watchContractEvent.d.ts +55 -0
  141. package/dist/types/actions/public/watchContractEvent.d.ts.map +1 -0
  142. package/dist/types/actions/public/watchEvent.d.ts +61 -0
  143. package/dist/types/actions/public/watchEvent.d.ts.map +1 -0
  144. package/dist/types/actions/public/watchPendingTransactions.d.ts +71 -0
  145. package/dist/types/actions/public/watchPendingTransactions.d.ts.map +1 -0
  146. package/dist/types/actions/test/dropTransaction.d.ts +30 -0
  147. package/dist/types/actions/test/dropTransaction.d.ts.map +1 -0
  148. package/dist/types/actions/test/getAutomine.d.ts +25 -0
  149. package/dist/types/actions/test/getAutomine.d.ts.map +1 -0
  150. package/dist/types/actions/test/getTxpoolContent.d.ts +31 -0
  151. package/dist/types/actions/test/getTxpoolContent.d.ts.map +1 -0
  152. package/dist/types/actions/test/getTxpoolStatus.d.ts +28 -0
  153. package/dist/types/actions/test/getTxpoolStatus.d.ts.map +1 -0
  154. package/dist/types/actions/test/impersonateAccount.d.ts +30 -0
  155. package/dist/types/actions/test/impersonateAccount.d.ts.map +1 -0
  156. package/dist/types/actions/test/increaseTime.d.ts +30 -0
  157. package/dist/types/actions/test/increaseTime.d.ts.map +1 -0
  158. package/dist/types/actions/test/index.d.ts +52 -0
  159. package/dist/types/actions/test/index.d.ts.map +1 -0
  160. package/dist/types/actions/test/inspectTxpool.d.ts +28 -0
  161. package/dist/types/actions/test/inspectTxpool.d.ts.map +1 -0
  162. package/dist/types/actions/test/mine.d.ts +30 -0
  163. package/dist/types/actions/test/mine.d.ts.map +1 -0
  164. package/dist/types/actions/test/removeBlockTimestampInterval.d.ts +23 -0
  165. package/dist/types/actions/test/removeBlockTimestampInterval.d.ts.map +1 -0
  166. package/dist/types/actions/test/reset.d.ts +30 -0
  167. package/dist/types/actions/test/reset.d.ts.map +1 -0
  168. package/dist/types/actions/test/revert.d.ts +28 -0
  169. package/dist/types/actions/test/revert.d.ts.map +1 -0
  170. package/dist/types/actions/test/sendUnsignedTransaction.d.ts +31 -0
  171. package/dist/types/actions/test/sendUnsignedTransaction.d.ts.map +1 -0
  172. package/dist/types/actions/test/setAutomine.d.ts +23 -0
  173. package/dist/types/actions/test/setAutomine.d.ts.map +1 -0
  174. package/dist/types/actions/test/setBalance.d.ts +33 -0
  175. package/dist/types/actions/test/setBalance.d.ts.map +1 -0
  176. package/dist/types/actions/test/setBlockGasLimit.d.ts +28 -0
  177. package/dist/types/actions/test/setBlockGasLimit.d.ts.map +1 -0
  178. package/dist/types/actions/test/setBlockTimestampInterval.d.ts +28 -0
  179. package/dist/types/actions/test/setBlockTimestampInterval.d.ts.map +1 -0
  180. package/dist/types/actions/test/setCode.d.ts +33 -0
  181. package/dist/types/actions/test/setCode.d.ts.map +1 -0
  182. package/dist/types/actions/test/setCoinbase.d.ts +30 -0
  183. package/dist/types/actions/test/setCoinbase.d.ts.map +1 -0
  184. package/dist/types/actions/test/setIntervalMining.d.ts +28 -0
  185. package/dist/types/actions/test/setIntervalMining.d.ts.map +1 -0
  186. package/dist/types/actions/test/setLoggingEnabled.d.ts +23 -0
  187. package/dist/types/actions/test/setLoggingEnabled.d.ts.map +1 -0
  188. package/dist/types/actions/test/setMinGasPrice.d.ts +32 -0
  189. package/dist/types/actions/test/setMinGasPrice.d.ts.map +1 -0
  190. package/dist/types/actions/test/setNextBlockBaseFeePerGas.d.ts +30 -0
  191. package/dist/types/actions/test/setNextBlockBaseFeePerGas.d.ts.map +1 -0
  192. package/dist/types/actions/test/setNextBlockTimestamp.d.ts +28 -0
  193. package/dist/types/actions/test/setNextBlockTimestamp.d.ts.map +1 -0
  194. package/dist/types/actions/test/setNonce.d.ts +33 -0
  195. package/dist/types/actions/test/setNonce.d.ts.map +1 -0
  196. package/dist/types/actions/test/setRpcUrl.d.ts +24 -0
  197. package/dist/types/actions/test/setRpcUrl.d.ts.map +1 -0
  198. package/dist/types/actions/test/setStorageAt.d.ts +36 -0
  199. package/dist/types/actions/test/setStorageAt.d.ts.map +1 -0
  200. package/dist/types/actions/test/snapshot.d.ts +23 -0
  201. package/dist/types/actions/test/snapshot.d.ts.map +1 -0
  202. package/dist/types/actions/test/stopImpersonatingAccount.d.ts +30 -0
  203. package/dist/types/actions/test/stopImpersonatingAccount.d.ts.map +1 -0
  204. package/dist/types/actions/wallet/addChain.d.ts +27 -0
  205. package/dist/types/actions/wallet/addChain.d.ts.map +1 -0
  206. package/dist/types/actions/wallet/deployContract.d.ts +38 -0
  207. package/dist/types/actions/wallet/deployContract.d.ts.map +1 -0
  208. package/dist/types/actions/wallet/getAddresses.d.ts +26 -0
  209. package/dist/types/actions/wallet/getAddresses.d.ts.map +1 -0
  210. package/dist/types/actions/wallet/getPermissions.d.ts +26 -0
  211. package/dist/types/actions/wallet/getPermissions.d.ts.map +1 -0
  212. package/dist/types/actions/wallet/index.d.ts +27 -0
  213. package/dist/types/actions/wallet/index.d.ts.map +1 -0
  214. package/dist/types/actions/wallet/requestAddresses.d.ts +30 -0
  215. package/dist/types/actions/wallet/requestAddresses.d.ts.map +1 -0
  216. package/dist/types/actions/wallet/requestPermissions.d.ts +34 -0
  217. package/dist/types/actions/wallet/requestPermissions.d.ts.map +1 -0
  218. package/dist/types/actions/wallet/sendTransaction.d.ts +53 -0
  219. package/dist/types/actions/wallet/sendTransaction.d.ts.map +1 -0
  220. package/dist/types/actions/wallet/signMessage.d.ts +54 -0
  221. package/dist/types/actions/wallet/signMessage.d.ts.map +1 -0
  222. package/dist/types/actions/wallet/signTypedData.d.ts +109 -0
  223. package/dist/types/actions/wallet/signTypedData.d.ts.map +1 -0
  224. package/dist/types/actions/wallet/switchChain.d.ts +28 -0
  225. package/dist/types/actions/wallet/switchChain.d.ts.map +1 -0
  226. package/dist/types/actions/wallet/watchAsset.d.ts +35 -0
  227. package/dist/types/actions/wallet/watchAsset.d.ts.map +1 -0
  228. package/dist/types/actions/wallet/writeContract.d.ts +58 -0
  229. package/dist/types/actions/wallet/writeContract.d.ts.map +1 -0
  230. package/dist/types/adapters/ethers.d.ts +27 -0
  231. package/dist/types/adapters/ethers.d.ts.map +1 -0
  232. package/dist/types/chains.d.ts +2487 -0
  233. package/dist/types/chains.d.ts.map +1 -0
  234. package/dist/types/clients/createClient.d.ts +43 -0
  235. package/dist/types/clients/createClient.d.ts.map +1 -0
  236. package/dist/types/clients/createPublicClient.d.ts +40 -0
  237. package/dist/types/clients/createPublicClient.d.ts.map +1 -0
  238. package/dist/types/clients/createTestClient.d.ts +38 -0
  239. package/dist/types/clients/createTestClient.d.ts.map +1 -0
  240. package/dist/types/clients/createWalletClient.d.ts +51 -0
  241. package/dist/types/clients/createWalletClient.d.ts.map +1 -0
  242. package/dist/types/clients/decorators/index.d.ts +7 -0
  243. package/dist/types/clients/decorators/index.d.ts.map +1 -0
  244. package/dist/types/clients/decorators/public.d.ts +1043 -0
  245. package/dist/types/clients/decorators/public.d.ts.map +1 -0
  246. package/dist/types/clients/decorators/test.d.ts +572 -0
  247. package/dist/types/clients/decorators/test.d.ts.map +1 -0
  248. package/dist/types/clients/decorators/wallet.d.ts +436 -0
  249. package/dist/types/clients/decorators/wallet.d.ts.map +1 -0
  250. package/dist/types/clients/index.d.ts +11 -0
  251. package/dist/types/clients/index.d.ts.map +1 -0
  252. package/dist/types/clients/transports/createTransport.d.ts +37 -0
  253. package/dist/types/clients/transports/createTransport.d.ts.map +1 -0
  254. package/dist/types/clients/transports/custom.d.ts +21 -0
  255. package/dist/types/clients/transports/custom.d.ts.map +1 -0
  256. package/dist/types/clients/transports/fallback.d.ts +75 -0
  257. package/dist/types/clients/transports/fallback.d.ts.map +1 -0
  258. package/dist/types/clients/transports/http.d.ts +29 -0
  259. package/dist/types/clients/transports/http.d.ts.map +1 -0
  260. package/dist/types/clients/transports/index.d.ts +11 -0
  261. package/dist/types/clients/transports/index.d.ts.map +1 -0
  262. package/dist/types/clients/transports/webSocket.d.ts +46 -0
  263. package/dist/types/clients/transports/webSocket.d.ts.map +1 -0
  264. package/dist/types/constants/abis.d.ts +79 -0
  265. package/dist/types/constants/abis.d.ts.map +1 -0
  266. package/dist/types/constants/contract.d.ts +2 -0
  267. package/dist/types/constants/contract.d.ts.map +1 -0
  268. package/dist/types/constants/index.d.ts +5 -0
  269. package/dist/types/constants/index.d.ts.map +1 -0
  270. package/dist/types/constants/solidity.d.ts +15 -0
  271. package/dist/types/constants/solidity.d.ts.map +1 -0
  272. package/dist/types/constants/unit.d.ts +13 -0
  273. package/dist/types/constants/unit.d.ts.map +1 -0
  274. package/dist/types/contract.d.ts +7 -0
  275. package/dist/types/contract.d.ts.map +1 -0
  276. package/dist/types/ens.d.ts +5 -0
  277. package/dist/types/ens.d.ts.map +1 -0
  278. package/dist/types/errors/abi.d.ts +165 -0
  279. package/dist/types/errors/abi.d.ts.map +1 -0
  280. package/dist/types/errors/account.d.ts +8 -0
  281. package/dist/types/errors/account.d.ts.map +1 -0
  282. package/dist/types/errors/address.d.ts +8 -0
  283. package/dist/types/errors/address.d.ts.map +1 -0
  284. package/dist/types/errors/base.d.ts +22 -0
  285. package/dist/types/errors/base.d.ts.map +1 -0
  286. package/dist/types/errors/block.d.ts +10 -0
  287. package/dist/types/errors/block.d.ts.map +1 -0
  288. package/dist/types/errors/chain.d.ts +35 -0
  289. package/dist/types/errors/chain.d.ts.map +1 -0
  290. package/dist/types/errors/contract.d.ts +58 -0
  291. package/dist/types/errors/contract.d.ts.map +1 -0
  292. package/dist/types/errors/data.d.ts +10 -0
  293. package/dist/types/errors/data.d.ts.map +1 -0
  294. package/dist/types/errors/encoding.d.ts +53 -0
  295. package/dist/types/errors/encoding.d.ts.map +1 -0
  296. package/dist/types/errors/ens.d.ts +26 -0
  297. package/dist/types/errors/ens.d.ts.map +1 -0
  298. package/dist/types/errors/estimateGas.d.ts +13 -0
  299. package/dist/types/errors/estimateGas.d.ts.map +1 -0
  300. package/dist/types/errors/index.d.ts +18 -0
  301. package/dist/types/errors/index.d.ts.map +1 -0
  302. package/dist/types/errors/log.d.ts +6 -0
  303. package/dist/types/errors/log.d.ts.map +1 -0
  304. package/dist/types/errors/node.d.ts +105 -0
  305. package/dist/types/errors/node.d.ts.map +1 -0
  306. package/dist/types/errors/request.d.ts +53 -0
  307. package/dist/types/errors/request.d.ts.map +1 -0
  308. package/dist/types/errors/rpc.d.ts +199 -0
  309. package/dist/types/errors/rpc.d.ts.map +1 -0
  310. package/dist/types/errors/transaction.d.ts +75 -0
  311. package/dist/types/errors/transaction.d.ts.map +1 -0
  312. package/dist/types/errors/transport.d.ts +5 -0
  313. package/dist/types/errors/transport.d.ts.map +1 -0
  314. package/dist/types/errors/utils.d.ts +5 -0
  315. package/dist/types/errors/utils.d.ts.map +1 -0
  316. package/dist/types/errors/version.d.ts +2 -0
  317. package/dist/types/errors/version.d.ts.map +1 -0
  318. package/dist/types/ethers.d.ts +2 -0
  319. package/dist/types/ethers.d.ts.map +1 -0
  320. package/dist/types/index.d.ts +12 -0
  321. package/dist/types/index.d.ts.map +1 -0
  322. package/dist/types/public.d.ts +3 -0
  323. package/dist/types/public.d.ts.map +1 -0
  324. package/dist/types/test.d.ts +3 -0
  325. package/dist/types/test.d.ts.map +1 -0
  326. package/dist/types/types/account.d.ts +11 -0
  327. package/dist/types/types/account.d.ts.map +1 -0
  328. package/dist/types/types/block.d.ts +62 -0
  329. package/dist/types/types/block.d.ts.map +1 -0
  330. package/dist/types/types/chain.d.ts +17 -0
  331. package/dist/types/types/chain.d.ts.map +1 -0
  332. package/dist/types/types/contract.d.ts +159 -0
  333. package/dist/types/types/contract.d.ts.map +1 -0
  334. package/dist/types/types/eip1193.d.ts +1002 -0
  335. package/dist/types/types/eip1193.d.ts.map +1 -0
  336. package/dist/types/types/ens.d.ts +5 -0
  337. package/dist/types/types/ens.d.ts.map +1 -0
  338. package/dist/types/types/fee.d.ts +28 -0
  339. package/dist/types/types/fee.d.ts.map +1 -0
  340. package/dist/types/types/filter.d.ts +27 -0
  341. package/dist/types/types/filter.d.ts.map +1 -0
  342. package/dist/types/types/formatter.d.ts +13 -0
  343. package/dist/types/types/formatter.d.ts.map +1 -0
  344. package/dist/types/types/index.d.ts +19 -0
  345. package/dist/types/types/index.d.ts.map +1 -0
  346. package/dist/types/types/log.d.ts +42 -0
  347. package/dist/types/types/log.d.ts.map +1 -0
  348. package/dist/types/types/misc.d.ts +10 -0
  349. package/dist/types/types/misc.d.ts.map +1 -0
  350. package/dist/types/types/multicall.d.ts +48 -0
  351. package/dist/types/types/multicall.d.ts.map +1 -0
  352. package/dist/types/types/rpc.d.ts +19 -0
  353. package/dist/types/types/rpc.d.ts.map +1 -0
  354. package/dist/types/types/transaction.d.ts +132 -0
  355. package/dist/types/types/transaction.d.ts.map +1 -0
  356. package/dist/types/types/transport.d.ts +3 -0
  357. package/dist/types/types/transport.d.ts.map +1 -0
  358. package/dist/types/types/typedData.d.ts +47 -0
  359. package/dist/types/types/typedData.d.ts.map +1 -0
  360. package/dist/types/types/utils.d.ts +156 -0
  361. package/dist/types/types/utils.d.ts.map +1 -0
  362. package/dist/types/types/window.d.ts +7 -0
  363. package/dist/types/types/window.d.ts.map +1 -0
  364. package/dist/types/utils/abi/decodeAbiParameters.d.ts +5 -0
  365. package/dist/types/utils/abi/decodeAbiParameters.d.ts.map +1 -0
  366. package/dist/types/utils/abi/decodeDeployData.d.ts +13 -0
  367. package/dist/types/utils/abi/decodeDeployData.d.ts.map +1 -0
  368. package/dist/types/utils/abi/decodeErrorResult.d.ts +13 -0
  369. package/dist/types/utils/abi/decodeErrorResult.d.ts.map +1 -0
  370. package/dist/types/utils/abi/decodeEventLog.d.ts +13 -0
  371. package/dist/types/utils/abi/decodeEventLog.d.ts.map +1 -0
  372. package/dist/types/utils/abi/decodeFunctionData.d.ts +14 -0
  373. package/dist/types/utils/abi/decodeFunctionData.d.ts.map +1 -0
  374. package/dist/types/utils/abi/decodeFunctionResult.d.ts +10 -0
  375. package/dist/types/utils/abi/decodeFunctionResult.d.ts.map +1 -0
  376. package/dist/types/utils/abi/encodeAbiParameters.d.ts +9 -0
  377. package/dist/types/utils/abi/encodeAbiParameters.d.ts.map +1 -0
  378. package/dist/types/utils/abi/encodeDeployData.d.ts +8 -0
  379. package/dist/types/utils/abi/encodeDeployData.d.ts.map +1 -0
  380. package/dist/types/utils/abi/encodeErrorResult.d.ts +8 -0
  381. package/dist/types/utils/abi/encodeErrorResult.d.ts.map +1 -0
  382. package/dist/types/utils/abi/encodeEventTopics.d.ts +9 -0
  383. package/dist/types/utils/abi/encodeEventTopics.d.ts.map +1 -0
  384. package/dist/types/utils/abi/encodeFunctionData.d.ts +8 -0
  385. package/dist/types/utils/abi/encodeFunctionData.d.ts.map +1 -0
  386. package/dist/types/utils/abi/encodeFunctionResult.d.ts +9 -0
  387. package/dist/types/utils/abi/encodeFunctionResult.d.ts.map +1 -0
  388. package/dist/types/utils/abi/encodePacked.d.ts +11 -0
  389. package/dist/types/utils/abi/encodePacked.d.ts.map +1 -0
  390. package/dist/types/utils/abi/formatAbiItem.d.ts +9 -0
  391. package/dist/types/utils/abi/formatAbiItem.d.ts.map +1 -0
  392. package/dist/types/utils/abi/formatAbiItemWithArgs.d.ts +8 -0
  393. package/dist/types/utils/abi/formatAbiItemWithArgs.d.ts.map +1 -0
  394. package/dist/types/utils/abi/getAbiItem.d.ts +12 -0
  395. package/dist/types/utils/abi/getAbiItem.d.ts.map +1 -0
  396. package/dist/types/utils/abi/index.d.ts +30 -0
  397. package/dist/types/utils/abi/index.d.ts.map +1 -0
  398. package/dist/types/utils/accounts.d.ts +3 -0
  399. package/dist/types/utils/accounts.d.ts.map +1 -0
  400. package/dist/types/utils/address/getAddress.d.ts +4 -0
  401. package/dist/types/utils/address/getAddress.d.ts.map +1 -0
  402. package/dist/types/utils/address/getContractAddress.d.ts +19 -0
  403. package/dist/types/utils/address/getContractAddress.d.ts.map +1 -0
  404. package/dist/types/utils/address/index.d.ts +6 -0
  405. package/dist/types/utils/address/index.d.ts.map +1 -0
  406. package/dist/types/utils/address/isAddress.d.ts +3 -0
  407. package/dist/types/utils/address/isAddress.d.ts.map +1 -0
  408. package/dist/types/utils/address/isAddressEqual.d.ts +3 -0
  409. package/dist/types/utils/address/isAddressEqual.d.ts.map +1 -0
  410. package/dist/types/utils/buildRequest.d.ts +6 -0
  411. package/dist/types/utils/buildRequest.d.ts.map +1 -0
  412. package/dist/types/utils/chain.d.ts +8 -0
  413. package/dist/types/utils/chain.d.ts.map +1 -0
  414. package/dist/types/utils/contract/extractFunctionParts.d.ts +13 -0
  415. package/dist/types/utils/contract/extractFunctionParts.d.ts.map +1 -0
  416. package/dist/types/utils/contract/index.d.ts +2 -0
  417. package/dist/types/utils/contract/index.d.ts.map +1 -0
  418. package/dist/types/utils/data/concat.d.ts +6 -0
  419. package/dist/types/utils/data/concat.d.ts.map +1 -0
  420. package/dist/types/utils/data/index.d.ts +8 -0
  421. package/dist/types/utils/data/index.d.ts.map +1 -0
  422. package/dist/types/utils/data/isBytes.d.ts +3 -0
  423. package/dist/types/utils/data/isBytes.d.ts.map +1 -0
  424. package/dist/types/utils/data/isHex.d.ts +3 -0
  425. package/dist/types/utils/data/isHex.d.ts.map +1 -0
  426. package/dist/types/utils/data/pad.d.ts +11 -0
  427. package/dist/types/utils/data/pad.d.ts.map +1 -0
  428. package/dist/types/utils/data/size.d.ts +9 -0
  429. package/dist/types/utils/data/size.d.ts.map +1 -0
  430. package/dist/types/utils/data/slice.d.ts +27 -0
  431. package/dist/types/utils/data/slice.d.ts.map +1 -0
  432. package/dist/types/utils/data/trim.d.ts +8 -0
  433. package/dist/types/utils/data/trim.d.ts.map +1 -0
  434. package/dist/types/utils/encoding/fromBytes.d.ts +110 -0
  435. package/dist/types/utils/encoding/fromBytes.d.ts.map +1 -0
  436. package/dist/types/utils/encoding/fromHex.d.ts +138 -0
  437. package/dist/types/utils/encoding/fromHex.d.ts.map +1 -0
  438. package/dist/types/utils/encoding/fromRlp.d.ts +6 -0
  439. package/dist/types/utils/encoding/fromRlp.d.ts.map +1 -0
  440. package/dist/types/utils/encoding/index.d.ts +8 -0
  441. package/dist/types/utils/encoding/index.d.ts.map +1 -0
  442. package/dist/types/utils/encoding/toBytes.d.ts +125 -0
  443. package/dist/types/utils/encoding/toBytes.d.ts.map +1 -0
  444. package/dist/types/utils/encoding/toHex.d.ts +139 -0
  445. package/dist/types/utils/encoding/toHex.d.ts.map +1 -0
  446. package/dist/types/utils/encoding/toRlp.d.ts +8 -0
  447. package/dist/types/utils/encoding/toRlp.d.ts.map +1 -0
  448. package/dist/types/utils/ens/avatar/index.d.ts +2 -0
  449. package/dist/types/utils/ens/avatar/index.d.ts.map +1 -0
  450. package/dist/types/utils/ens/avatar/parseAvatarRecord.d.ts +7 -0
  451. package/dist/types/utils/ens/avatar/parseAvatarRecord.d.ts.map +1 -0
  452. package/dist/types/utils/ens/avatar/utils.d.ts +34 -0
  453. package/dist/types/utils/ens/avatar/utils.d.ts.map +1 -0
  454. package/dist/types/utils/ens/index.d.ts +5 -0
  455. package/dist/types/utils/ens/index.d.ts.map +1 -0
  456. package/dist/types/utils/ens/labelhash.d.ts +11 -0
  457. package/dist/types/utils/ens/labelhash.d.ts.map +1 -0
  458. package/dist/types/utils/ens/namehash.d.ts +13 -0
  459. package/dist/types/utils/ens/namehash.d.ts.map +1 -0
  460. package/dist/types/utils/ens/normalize.d.ts +12 -0
  461. package/dist/types/utils/ens/normalize.d.ts.map +1 -0
  462. package/dist/types/utils/ens/packetToBytes.d.ts +3 -0
  463. package/dist/types/utils/ens/packetToBytes.d.ts.map +1 -0
  464. package/dist/types/utils/errors/getCallError.d.ts +9 -0
  465. package/dist/types/utils/errors/getCallError.d.ts.map +1 -0
  466. package/dist/types/utils/errors/getContractError.d.ts +13 -0
  467. package/dist/types/utils/errors/getContractError.d.ts.map +1 -0
  468. package/dist/types/utils/errors/getEstimateGasError.d.ts +10 -0
  469. package/dist/types/utils/errors/getEstimateGasError.d.ts.map +1 -0
  470. package/dist/types/utils/errors/getNodeError.d.ts +6 -0
  471. package/dist/types/utils/errors/getNodeError.d.ts.map +1 -0
  472. package/dist/types/utils/errors/getTransactionError.d.ts +10 -0
  473. package/dist/types/utils/errors/getTransactionError.d.ts.map +1 -0
  474. package/dist/types/utils/errors/index.d.ts +6 -0
  475. package/dist/types/utils/errors/index.d.ts.map +1 -0
  476. package/dist/types/utils/filters/createFilterRequestScope.d.ts +16 -0
  477. package/dist/types/utils/filters/createFilterRequestScope.d.ts.map +1 -0
  478. package/dist/types/utils/formatters/block.d.ts +14 -0
  479. package/dist/types/utils/formatters/block.d.ts.map +1 -0
  480. package/dist/types/utils/formatters/extract.d.ts +8 -0
  481. package/dist/types/utils/formatters/extract.d.ts.map +1 -0
  482. package/dist/types/utils/formatters/feeHistory.d.ts +3 -0
  483. package/dist/types/utils/formatters/feeHistory.d.ts.map +1 -0
  484. package/dist/types/utils/formatters/format.d.ts +36 -0
  485. package/dist/types/utils/formatters/format.d.ts.map +1 -0
  486. package/dist/types/utils/formatters/index.d.ts +13 -0
  487. package/dist/types/utils/formatters/index.d.ts.map +1 -0
  488. package/dist/types/utils/formatters/log.d.ts +16 -0
  489. package/dist/types/utils/formatters/log.d.ts.map +1 -0
  490. package/dist/types/utils/formatters/transaction.d.ts +19 -0
  491. package/dist/types/utils/formatters/transaction.d.ts.map +1 -0
  492. package/dist/types/utils/formatters/transactionReceipt.d.ts +14 -0
  493. package/dist/types/utils/formatters/transactionReceipt.d.ts.map +1 -0
  494. package/dist/types/utils/formatters/transactionRequest.d.ts +14 -0
  495. package/dist/types/utils/formatters/transactionRequest.d.ts.map +1 -0
  496. package/dist/types/utils/hash/getEventSelector.d.ts +3 -0
  497. package/dist/types/utils/hash/getEventSelector.d.ts.map +1 -0
  498. package/dist/types/utils/hash/getFunctionSelector.d.ts +2 -0
  499. package/dist/types/utils/hash/getFunctionSelector.d.ts.map +1 -0
  500. package/dist/types/utils/hash/hashFunction.d.ts +2 -0
  501. package/dist/types/utils/hash/hashFunction.d.ts.map +1 -0
  502. package/dist/types/utils/hash/index.d.ts +5 -0
  503. package/dist/types/utils/hash/index.d.ts.map +1 -0
  504. package/dist/types/utils/hash/isHash.d.ts +3 -0
  505. package/dist/types/utils/hash/isHash.d.ts.map +1 -0
  506. package/dist/types/utils/hash/keccak256.d.ts +6 -0
  507. package/dist/types/utils/hash/keccak256.d.ts.map +1 -0
  508. package/dist/types/utils/index.d.ts +26 -0
  509. package/dist/types/utils/index.d.ts.map +1 -0
  510. package/dist/types/utils/observe.d.ts +17 -0
  511. package/dist/types/utils/observe.d.ts.map +1 -0
  512. package/dist/types/utils/poll.d.ts +13 -0
  513. package/dist/types/utils/poll.d.ts.map +1 -0
  514. package/dist/types/utils/promise/createBatchScheduler.d.ts +15 -0
  515. package/dist/types/utils/promise/createBatchScheduler.d.ts.map +1 -0
  516. package/dist/types/utils/promise/index.d.ts +5 -0
  517. package/dist/types/utils/promise/index.d.ts.map +1 -0
  518. package/dist/types/utils/promise/withCache.d.ts +36 -0
  519. package/dist/types/utils/promise/withCache.d.ts.map +1 -0
  520. package/dist/types/utils/promise/withRetry.d.ts +12 -0
  521. package/dist/types/utils/promise/withRetry.d.ts.map +1 -0
  522. package/dist/types/utils/promise/withTimeout.d.ts +8 -0
  523. package/dist/types/utils/promise/withTimeout.d.ts.map +1 -0
  524. package/dist/types/utils/regex.d.ts +4 -0
  525. package/dist/types/utils/regex.d.ts.map +1 -0
  526. package/dist/types/utils/rpc.d.ts +64 -0
  527. package/dist/types/utils/rpc.d.ts.map +1 -0
  528. package/dist/types/utils/signature/hashMessage.d.ts +6 -0
  529. package/dist/types/utils/signature/hashMessage.d.ts.map +1 -0
  530. package/dist/types/utils/signature/hashTypedData.d.ts +10 -0
  531. package/dist/types/utils/signature/hashTypedData.d.ts.map +1 -0
  532. package/dist/types/utils/signature/index.d.ts +16 -0
  533. package/dist/types/utils/signature/index.d.ts.map +1 -0
  534. package/dist/types/utils/signature/recoverAddress.d.ts +8 -0
  535. package/dist/types/utils/signature/recoverAddress.d.ts.map +1 -0
  536. package/dist/types/utils/signature/recoverMessageAddress.d.ts +8 -0
  537. package/dist/types/utils/signature/recoverMessageAddress.d.ts.map +1 -0
  538. package/dist/types/utils/signature/recoverPublicKey.d.ts +8 -0
  539. package/dist/types/utils/signature/recoverPublicKey.d.ts.map +1 -0
  540. package/dist/types/utils/signature/recoverTypedDataAddress.d.ts +12 -0
  541. package/dist/types/utils/signature/recoverTypedDataAddress.d.ts.map +1 -0
  542. package/dist/types/utils/signature/verifyMessage.d.ts +10 -0
  543. package/dist/types/utils/signature/verifyMessage.d.ts.map +1 -0
  544. package/dist/types/utils/signature/verifyTypedData.d.ts +13 -0
  545. package/dist/types/utils/signature/verifyTypedData.d.ts.map +1 -0
  546. package/dist/types/utils/stringify.d.ts +2 -0
  547. package/dist/types/utils/stringify.d.ts.map +1 -0
  548. package/dist/types/utils/transaction/assertRequest.d.ts +4 -0
  549. package/dist/types/utils/transaction/assertRequest.d.ts.map +1 -0
  550. package/dist/types/utils/transaction/assertTransaction.d.ts +5 -0
  551. package/dist/types/utils/transaction/assertTransaction.d.ts.map +1 -0
  552. package/dist/types/utils/transaction/getSerializedTransactionType.d.ts +4 -0
  553. package/dist/types/utils/transaction/getSerializedTransactionType.d.ts.map +1 -0
  554. package/dist/types/utils/transaction/getTransactionType.d.ts +4 -0
  555. package/dist/types/utils/transaction/getTransactionType.d.ts.map +1 -0
  556. package/dist/types/utils/transaction/index.d.ts +10 -0
  557. package/dist/types/utils/transaction/index.d.ts.map +1 -0
  558. package/dist/types/utils/transaction/parseTransaction.d.ts +5 -0
  559. package/dist/types/utils/transaction/parseTransaction.d.ts.map +1 -0
  560. package/dist/types/utils/transaction/prepareRequest.d.ts +21 -0
  561. package/dist/types/utils/transaction/prepareRequest.d.ts.map +1 -0
  562. package/dist/types/utils/transaction/serializeTransaction.d.ts +5 -0
  563. package/dist/types/utils/transaction/serializeTransaction.d.ts.map +1 -0
  564. package/dist/types/utils/typedData.d.ts +6 -0
  565. package/dist/types/utils/typedData.d.ts.map +1 -0
  566. package/dist/types/utils/uid.d.ts +2 -0
  567. package/dist/types/utils/uid.d.ts.map +1 -0
  568. package/dist/types/utils/unit/formatEther.d.ts +2 -0
  569. package/dist/types/utils/unit/formatEther.d.ts.map +1 -0
  570. package/dist/types/utils/unit/formatGwei.d.ts +2 -0
  571. package/dist/types/utils/unit/formatGwei.d.ts.map +1 -0
  572. package/dist/types/utils/unit/formatUnits.d.ts +2 -0
  573. package/dist/types/utils/unit/formatUnits.d.ts.map +1 -0
  574. package/dist/types/utils/unit/index.d.ts +7 -0
  575. package/dist/types/utils/unit/index.d.ts.map +1 -0
  576. package/dist/types/utils/unit/parseEther.d.ts +2 -0
  577. package/dist/types/utils/unit/parseEther.d.ts.map +1 -0
  578. package/dist/types/utils/unit/parseGwei.d.ts +2 -0
  579. package/dist/types/utils/unit/parseGwei.d.ts.map +1 -0
  580. package/dist/types/utils/unit/parseUnits.d.ts +2 -0
  581. package/dist/types/utils/unit/parseUnits.d.ts.map +1 -0
  582. package/dist/types/utils/wait.d.ts +2 -0
  583. package/dist/types/utils/wait.d.ts.map +1 -0
  584. package/dist/types/wallet.d.ts +3 -0
  585. package/dist/types/wallet.d.ts.map +1 -0
  586. package/dist/types/window.d.ts +2 -0
  587. package/dist/types/window.d.ts.map +1 -0
  588. package/package.json +1 -1
  589. package/src/actions/public/createContractEventFilter.ts +1 -0
  590. package/src/errors/version.ts +1 -1
  591. package/src/types/contract.ts +3 -3
  592. package/src/utils/rpc.ts +7 -1
@@ -0,0 +1,46 @@
1
+ import type { Abi, AbiEvent, Narrow } from 'abitype';
2
+ import type { PublicClient, Transport } from '../../clients/index.js';
3
+ import type { Address, BlockNumber, BlockTag, Chain, Filter, MaybeAbiEventName, MaybeExtractEventArgsFromAbi, Prettify } from '../../types/index.js';
4
+ export type CreateEventFilterParameters<TAbiEvent extends AbiEvent | undefined = undefined, TAbi extends Abi | readonly unknown[] = [TAbiEvent], TEventName extends string | undefined = MaybeAbiEventName<TAbiEvent>, TArgs extends MaybeExtractEventArgsFromAbi<TAbi, TEventName> | undefined = undefined> = {
5
+ address?: Address | Address[];
6
+ fromBlock?: BlockNumber | BlockTag;
7
+ toBlock?: BlockNumber | BlockTag;
8
+ } & (MaybeExtractEventArgsFromAbi<TAbi, TEventName> extends infer TEventFilterArgs ? {
9
+ args: TEventFilterArgs | (TArgs extends TEventFilterArgs ? TArgs : never);
10
+ event: Narrow<TAbiEvent>;
11
+ } | {
12
+ args?: never;
13
+ event?: Narrow<TAbiEvent>;
14
+ } | {
15
+ args?: never;
16
+ event?: never;
17
+ } : {
18
+ args?: never;
19
+ event?: never;
20
+ });
21
+ export type CreateEventFilterReturnType<TAbiEvent extends AbiEvent | undefined = undefined, TAbi extends Abi | readonly unknown[] = [TAbiEvent], TEventName extends string | undefined = MaybeAbiEventName<TAbiEvent>, TArgs extends MaybeExtractEventArgsFromAbi<TAbi, TEventName> | undefined = undefined> = Prettify<Filter<'event', TAbi, TEventName, TArgs>>;
22
+ /**
23
+ * Creates a [`Filter`](https://viem.sh/docs/glossary/types.html#filter) to listen for new events that can be used with [`getFilterChanges`](https://viem.sh/docs/actions/public/getFilterChanges).
24
+ *
25
+ * - Docs: https://viem.sh/docs/actions/public/createEventFilter.html
26
+ * - JSON-RPC Methods: [`eth_newFilter`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_newfilter)
27
+ *
28
+ * @param client - Client to use
29
+ * @param parameters - {@link CreateEventFilterParameters}
30
+ * @returns [`Filter`](https://viem.sh/docs/glossary/types.html#filter). {@link CreateEventFilterReturnType}
31
+ *
32
+ * @example
33
+ * import { createPublicClient, http } from 'viem'
34
+ * import { mainnet } from 'viem/chains'
35
+ * import { createEventFilter } from 'viem/public'
36
+ *
37
+ * const client = createPublicClient({
38
+ * chain: mainnet,
39
+ * transport: http(),
40
+ * })
41
+ * const filter = await createEventFilter(client, {
42
+ * address: '0xfba3912ca04dd458c843e2ee08967fc04f3579c2',
43
+ * })
44
+ */
45
+ export declare function createEventFilter<TChain extends Chain | undefined, TAbiEvent extends AbiEvent | undefined, _Abi extends Abi | readonly unknown[] = [TAbiEvent], _EventName extends string | undefined = MaybeAbiEventName<TAbiEvent>, _Args extends MaybeExtractEventArgsFromAbi<_Abi, _EventName> | undefined = undefined>(client: PublicClient<Transport, TChain>, { address, args, event, fromBlock, toBlock, }?: CreateEventFilterParameters<TAbiEvent, _Abi, _EventName, _Args>): Promise<CreateEventFilterReturnType<TAbiEvent, _Abi, _EventName, _Args>>;
46
+ //# sourceMappingURL=createEventFilter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createEventFilter.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/createEventFilter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAErE,OAAO,KAAK,EACV,OAAO,EACP,WAAW,EACX,QAAQ,EACR,KAAK,EACL,MAAM,EAEN,iBAAiB,EACjB,4BAA4B,EAC5B,QAAQ,EACT,MAAM,sBAAsB,CAAA;AAK7B,MAAM,MAAM,2BAA2B,CACrC,SAAS,SAAS,QAAQ,GAAG,SAAS,GAAG,SAAS,EAClD,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,EACnD,UAAU,SAAS,MAAM,GAAG,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC,EACpE,KAAK,SACD,4BAA4B,CAAC,IAAI,EAAE,UAAU,CAAC,GAC9C,SAAS,GAAG,SAAS,IACvB;IACF,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,EAAE,CAAA;IAC7B,SAAS,CAAC,EAAE,WAAW,GAAG,QAAQ,CAAA;IAClC,OAAO,CAAC,EAAE,WAAW,GAAG,QAAQ,CAAA;CACjC,GAAG,CAAC,4BAA4B,CAC/B,IAAI,EACJ,UAAU,CACX,SAAS,MAAM,gBAAgB,GAExB;IACE,IAAI,EACA,gBAAgB,GAChB,CAAC,KAAK,SAAS,gBAAgB,GAAG,KAAK,GAAG,KAAK,CAAC,CAAA;IACpD,KAAK,EAAE,MAAM,CAAC,SAAS,CAAC,CAAA;CACzB,GACD;IACE,IAAI,CAAC,EAAE,KAAK,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC,SAAS,CAAC,CAAA;CAC1B,GACD;IACE,IAAI,CAAC,EAAE,KAAK,CAAA;IACZ,KAAK,CAAC,EAAE,KAAK,CAAA;CACd,GACL;IACE,IAAI,CAAC,EAAE,KAAK,CAAA;IACZ,KAAK,CAAC,EAAE,KAAK,CAAA;CACd,CAAC,CAAA;AAEN,MAAM,MAAM,2BAA2B,CACrC,SAAS,SAAS,QAAQ,GAAG,SAAS,GAAG,SAAS,EAClD,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,EACnD,UAAU,SAAS,MAAM,GAAG,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC,EACpE,KAAK,SACD,4BAA4B,CAAC,IAAI,EAAE,UAAU,CAAC,GAC9C,SAAS,GAAG,SAAS,IACvB,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,CAAC,CAAC,CAAA;AAEtD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAsB,iBAAiB,CACrC,MAAM,SAAS,KAAK,GAAG,SAAS,EAChC,SAAS,SAAS,QAAQ,GAAG,SAAS,EACtC,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,EACnD,UAAU,SAAS,MAAM,GAAG,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC,EACpE,KAAK,SACD,4BAA4B,CAAC,IAAI,EAAE,UAAU,CAAC,GAC9C,SAAS,GAAG,SAAS,EAEzB,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EACE,OAAO,EACP,IAAI,EACJ,KAAK,EACL,SAAS,EACT,OAAO,GACR,GAAE,2BAA2B,CAC5B,SAAS,EACT,IAAI,EACJ,UAAU,EACV,KAAK,CACM,GACZ,OAAO,CAAC,2BAA2B,CAAC,SAAS,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,CAAC,CAAC,CAuC1E"}
@@ -0,0 +1,26 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { Chain, Filter } from '../../types/index.js';
3
+ export type CreatePendingTransactionFilterReturnType = Filter<'transaction'>;
4
+ /**
5
+ * Creates a Filter to listen for new pending transaction hashes that can be used with [`getFilterChanges`](https://viem.sh/docs/actions/public/getFilterChanges).
6
+ *
7
+ * - Docs: https://viem.sh/docs/actions/public/createPendingTransactionFilter.html
8
+ * - JSON-RPC Methods: [`eth_newPendingTransactionFilter`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_newpendingtransactionfilter)
9
+ *
10
+ * @param client - Client to use
11
+ * @returns [`Filter`](https://viem.sh/docs/glossary/types.html#filter). {@link CreateBlockFilterReturnType}
12
+ *
13
+ * @example
14
+ * import { createPublicClient, http } from 'viem'
15
+ * import { mainnet } from 'viem/chains'
16
+ * import { createPendingTransactionFilter } from 'viem/public'
17
+ *
18
+ * const client = createPublicClient({
19
+ * chain: mainnet,
20
+ * transport: http(),
21
+ * })
22
+ * const filter = await createPendingTransactionFilter(client)
23
+ * // { id: "0x345a6572337856574a76364e457a4366", type: 'transaction' }
24
+ */
25
+ export declare function createPendingTransactionFilter<TTransport extends Transport, TChain extends Chain | undefined>(client: PublicClient<TTransport, TChain>): Promise<CreatePendingTransactionFilterReturnType>;
26
+ //# sourceMappingURL=createPendingTransactionFilter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createPendingTransactionFilter.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/createPendingTransactionFilter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAGzD,MAAM,MAAM,wCAAwC,GAAG,MAAM,CAAC,aAAa,CAAC,CAAA;AAE5E;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAsB,8BAA8B,CAClD,UAAU,SAAS,SAAS,EAC5B,MAAM,SAAS,KAAK,GAAG,SAAS,EAEhC,MAAM,EAAE,YAAY,CAAC,UAAU,EAAE,MAAM,CAAC,GACvC,OAAO,CAAC,wCAAwC,CAAC,CAQnD"}
@@ -0,0 +1,35 @@
1
+ import type { Abi } from 'abitype';
2
+ import type { PublicClient, Transport } from '../../clients/index.js';
3
+ import type { Chain, ContractFunctionConfig, GetValue } from '../../types/index.js';
4
+ import type { EstimateGasParameters } from './estimateGas.js';
5
+ export type EstimateContractGasParameters<TAbi extends Abi | readonly unknown[] = Abi, TFunctionName extends string = string, TChain extends Chain | undefined = Chain | undefined> = ContractFunctionConfig<TAbi, TFunctionName, 'payable' | 'nonpayable'> & Omit<EstimateGasParameters<TChain>, 'data' | 'to' | 'value'> & GetValue<TAbi, TFunctionName, EstimateGasParameters<TChain>['value']>;
6
+ export type EstimateContractGasReturnType = bigint;
7
+ /**
8
+ * Estimates the gas required to successfully execute a contract write function call.
9
+ *
10
+ * - Docs: https://viem.sh/docs/contract/estimateContractGas.html
11
+ *
12
+ * Internally, uses a [Public Client](https://viem.sh/docs/clients/public) to call the [`estimateGas` action](https://viem.sh/docs/actions/public/estimateGas) with [ABI-encoded `data`](https://viem.sh/docs/contract/encodeFunctionData).
13
+ *
14
+ * @param client - Client to use
15
+ * @param parameters - {@link EstimateContractGasParameters}
16
+ * @returns The gas estimate (in wei). {@link EstimateContractGasReturnType}
17
+ *
18
+ * @example
19
+ * import { createPublicClient, http, parseAbi } from 'viem'
20
+ * import { mainnet } from 'viem/chains'
21
+ * import { estimateContractGas } from 'viem/contract'
22
+ *
23
+ * const client = createPublicClient({
24
+ * chain: mainnet,
25
+ * transport: http(),
26
+ * })
27
+ * const gas = await estimateContractGas(client, {
28
+ * address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
29
+ * abi: parseAbi(['function mint() public']),
30
+ * functionName: 'mint',
31
+ * account: '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
32
+ * })
33
+ */
34
+ export declare function estimateContractGas<TAbi extends Abi | readonly unknown[], TFunctionName extends string, TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { abi, address, args, functionName, ...request }: EstimateContractGasParameters<TAbi, TFunctionName, TChain>): Promise<EstimateContractGasReturnType>;
35
+ //# sourceMappingURL=estimateContractGas.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"estimateContractGas.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/estimateContractGas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAErE,OAAO,KAAK,EACV,KAAK,EACL,sBAAsB,EACtB,QAAQ,EACT,MAAM,sBAAsB,CAAA;AAQ7B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAA;AAE7D,MAAM,MAAM,6BAA6B,CACvC,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,GAAG,EAC3C,aAAa,SAAS,MAAM,GAAG,MAAM,EACrC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,IAClD,sBAAsB,CAAC,IAAI,EAAE,aAAa,EAAE,SAAS,GAAG,YAAY,CAAC,GACvE,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,GAC5D,QAAQ,CAAC,IAAI,EAAE,aAAa,EAAE,qBAAqB,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,CAAA;AAEvE,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAA;AAElD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,wBAAsB,mBAAmB,CACvC,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,EACrC,aAAa,SAAS,MAAM,EAC5B,MAAM,SAAS,KAAK,GAAG,SAAS,EAEhC,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EACE,GAAG,EACH,OAAO,EACP,IAAI,EACJ,YAAY,EACZ,GAAG,OAAO,EACX,EAAE,6BAA6B,CAAC,IAAI,EAAE,aAAa,EAAE,MAAM,CAAC,GAC5D,OAAO,CAAC,6BAA6B,CAAC,CAwBxC"}
@@ -0,0 +1,45 @@
1
+ import type { PublicClient, WalletClient, Transport } from '../../clients/index.js';
2
+ import type { Account, BlockTag, Chain, Formatter, MergeIntersectionProperties, TransactionRequest } from '../../types/index.js';
3
+ import type { GetAccountParameter } from '../../types/account.js';
4
+ import type { Formatted, TransactionRequestFormatter } from '../../utils/index.js';
5
+ export type FormattedEstimateGas<TFormatter extends Formatter | undefined = Formatter> = MergeIntersectionProperties<Omit<Formatted<TFormatter, TransactionRequest, true>, 'from'>, TransactionRequest>;
6
+ export type EstimateGasParameters<TChain extends Chain | undefined = Chain | undefined, TAccount extends Account | undefined = undefined> = FormattedEstimateGas<TransactionRequestFormatter<TChain>> & GetAccountParameter<TAccount> & ({
7
+ /** The balance of the account at a block number. */
8
+ blockNumber?: bigint;
9
+ blockTag?: never;
10
+ } | {
11
+ blockNumber?: never;
12
+ /**
13
+ * The balance of the account at a block tag.
14
+ * @default 'latest'
15
+ */
16
+ blockTag?: BlockTag;
17
+ });
18
+ export type EstimateGasReturnType = bigint;
19
+ /**
20
+ * Estimates the gas necessary to complete a transaction without submitting it to the network.
21
+ *
22
+ * - Docs: https://viem.sh/docs/actions/public/estimateGas.html
23
+ * - JSON-RPC Methods: [`eth_estimateGas`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_estimategas)
24
+ *
25
+ * @param client - Client to use
26
+ * @param parameters - {@link EstimateGasParameters}
27
+ * @returns The gas estimate (in wei). {@link EstimateGasReturnType}
28
+ *
29
+ * @example
30
+ * import { createPublicClient, http, parseEther } from 'viem'
31
+ * import { mainnet } from 'viem/chains'
32
+ * import { estimateGas } from 'viem/public'
33
+ *
34
+ * const client = createPublicClient({
35
+ * chain: mainnet,
36
+ * transport: http(),
37
+ * })
38
+ * const gasEstimate = await estimateGas(client, {
39
+ * account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
40
+ * to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
41
+ * value: parseEther('1'),
42
+ * })
43
+ */
44
+ export declare function estimateGas<TChain extends Chain | undefined, TAccount extends Account | undefined = undefined>(client: PublicClient<Transport, TChain> | WalletClient<Transport, TChain, TAccount>, args: EstimateGasParameters<TChain, TAccount>): Promise<EstimateGasReturnType>;
45
+ //# sourceMappingURL=estimateGas.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"estimateGas.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/estimateGas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,YAAY,EACZ,SAAS,EACV,MAAM,wBAAwB,CAAA;AAG/B,OAAO,KAAK,EACV,OAAO,EACP,QAAQ,EACR,KAAK,EACL,SAAS,EACT,2BAA2B,EAC3B,kBAAkB,EACnB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AAWjE,OAAO,KAAK,EACV,SAAS,EACT,2BAA2B,EAC5B,MAAM,sBAAsB,CAAA;AAE7B,MAAM,MAAM,oBAAoB,CAC9B,UAAU,SAAS,SAAS,GAAG,SAAS,GAAG,SAAS,IAClD,2BAA2B,CAC7B,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,EAC7D,kBAAkB,CACnB,CAAA;AAED,MAAM,MAAM,qBAAqB,CAC/B,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,OAAO,GAAG,SAAS,GAAG,SAAS,IAC9C,oBAAoB,CAAC,2BAA2B,CAAC,MAAM,CAAC,CAAC,GAC3D,mBAAmB,CAAC,QAAQ,CAAC,GAC7B,CACI;IACE,oDAAoD;IACpD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,CACJ,CAAA;AAEH,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAA;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAsB,WAAW,CAC/B,MAAM,SAAS,KAAK,GAAG,SAAS,EAChC,QAAQ,SAAS,OAAO,GAAG,SAAS,GAAG,SAAS,EAEhD,MAAM,EACF,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,GAC/B,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC7C,IAAI,EAAE,qBAAqB,CAAC,MAAM,EAAE,QAAQ,CAAC,GAC5C,OAAO,CAAC,qBAAqB,CAAC,CA4DhC"}
@@ -0,0 +1,52 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { Address, BlockTag, Chain } from '../../types/index.js';
3
+ export type GetBalanceParameters = {
4
+ /** The address of the account. */
5
+ address: Address;
6
+ } & ({
7
+ /** The balance of the account at a block number. */
8
+ blockNumber?: bigint;
9
+ blockTag?: never;
10
+ } | {
11
+ blockNumber?: never;
12
+ /** The balance of the account at a block tag. */
13
+ blockTag?: BlockTag;
14
+ });
15
+ export type GetBalanceReturnType = bigint;
16
+ /**
17
+ * Returns the balance of an address in wei.
18
+ *
19
+ * - Docs: https://viem.sh/docs/actions/public/getBalance.html
20
+ * - JSON-RPC Methods: [`eth_getBalance`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getbalance)
21
+ *
22
+ * You can convert the balance to ether units with [`formatEther`](https://viem.sh/docs/utilities/formatEther.html).
23
+ *
24
+ * ```ts
25
+ * const balance = await getBalance(client, {
26
+ * address: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
27
+ * blockTag: 'safe'
28
+ * })
29
+ * const balanceAsEther = formatEther(balance)
30
+ * // "6.942"
31
+ * ```
32
+ *
33
+ * @param client - Client to use
34
+ * @param parameters - {@link GetBalanceParameters}
35
+ * @returns The balance of the address in wei. {@link GetBalanceReturnType}
36
+ *
37
+ * @example
38
+ * import { createPublicClient, http } from 'viem'
39
+ * import { mainnet } from 'viem/chains'
40
+ * import { getBalance } from 'viem/public'
41
+ *
42
+ * const client = createPublicClient({
43
+ * chain: mainnet,
44
+ * transport: http(),
45
+ * })
46
+ * const balance = await getBalance(client, {
47
+ * address: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
48
+ * })
49
+ * // 10000000000000000000000n (wei)
50
+ */
51
+ export declare function getBalance<TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { address, blockNumber, blockTag }: GetBalanceParameters): Promise<GetBalanceReturnType>;
52
+ //# sourceMappingURL=getBalance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBalance.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getBalance.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAA;AAGpE,MAAM,MAAM,oBAAoB,GAAG;IACjC,kCAAkC;IAClC,OAAO,EAAE,OAAO,CAAA;CACjB,GAAG,CACA;IACE,oDAAoD;IACpD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,CACJ,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAA;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,wBAAsB,UAAU,CAAC,MAAM,SAAS,KAAK,GAAG,SAAS,EAC/D,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EAAE,OAAO,EAAE,WAAW,EAAE,QAAmB,EAAE,EAAE,oBAAoB,GAClE,OAAO,CAAC,oBAAoB,CAAC,CAQ/B"}
@@ -0,0 +1,52 @@
1
+ import type { PublicClient, WalletClient, Transport } from '../../clients/index.js';
2
+ import type { Account, BlockTag, Chain, Hash } from '../../types/index.js';
3
+ import type { BlockFormatter, FormattedBlock } from '../../utils/index.js';
4
+ export type GetBlockParameters = {
5
+ /** Whether or not to include transaction data in the response. */
6
+ includeTransactions?: boolean;
7
+ } & ({
8
+ /** Hash of the block. */
9
+ blockHash?: Hash;
10
+ blockNumber?: never;
11
+ blockTag?: never;
12
+ } | {
13
+ blockHash?: never;
14
+ /** The block number. */
15
+ blockNumber?: bigint;
16
+ blockTag?: never;
17
+ } | {
18
+ blockHash?: never;
19
+ blockNumber?: never;
20
+ /**
21
+ * The block tag.
22
+ * @default 'latest'
23
+ */
24
+ blockTag?: BlockTag;
25
+ });
26
+ export type GetBlockReturnType<TChain extends Chain | undefined = Chain | undefined> = FormattedBlock<BlockFormatter<TChain>>;
27
+ /**
28
+ * Returns information about a block at a block number, hash, or tag.
29
+ *
30
+ * - Docs: https://viem.sh/docs/actions/public/getBlock.html
31
+ * - Examples: https://stackblitz.com/github/wagmi-dev/viem/tree/main/examples/blocks/fetching-blocks
32
+ * - JSON-RPC Methods:
33
+ * - Calls [`eth_getBlockByNumber`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblockbynumber) for `blockNumber` & `blockTag`.
34
+ * - Calls [`eth_getBlockByHash`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblockbyhash) for `blockHash`.
35
+ *
36
+ * @param client - Client to use
37
+ * @param parameters - {@link GetBlockParameters}
38
+ * @returns Information about the block. {@link GetBlockReturnType}
39
+ *
40
+ * @example
41
+ * import { createPublicClient, http } from 'viem'
42
+ * import { mainnet } from 'viem/chains'
43
+ * import { getBlock } from 'viem/public'
44
+ *
45
+ * const client = createPublicClient({
46
+ * chain: mainnet,
47
+ * transport: http(),
48
+ * })
49
+ * const block = await getBlock(client)
50
+ */
51
+ export declare function getBlock<TChain extends Chain | undefined, TAccount extends Account | undefined>(client: PublicClient<Transport, TChain> | WalletClient<Transport, TChain, TAccount>, { blockHash, blockNumber, blockTag, includeTransactions, }?: GetBlockParameters): Promise<GetBlockReturnType<TChain>>;
52
+ //# sourceMappingURL=getBlock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBlock.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getBlock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,YAAY,EACZ,SAAS,EACV,MAAM,wBAAwB,CAAA;AAE/B,OAAO,KAAK,EACV,OAAO,EACP,QAAQ,EACR,KAAK,EACL,IAAI,EAEL,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAG1E,MAAM,MAAM,kBAAkB,GAAG;IAC/B,kEAAkE;IAClE,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,GAAG,CACA;IACE,yBAAyB;IACzB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,SAAS,CAAC,EAAE,KAAK,CAAA;IACjB,wBAAwB;IACxB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,SAAS,CAAC,EAAE,KAAK,CAAA;IACjB,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,CACJ,CAAA;AAED,MAAM,MAAM,kBAAkB,CAC5B,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,IAClD,cAAc,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAA;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAsB,QAAQ,CAC5B,MAAM,SAAS,KAAK,GAAG,SAAS,EAChC,QAAQ,SAAS,OAAO,GAAG,SAAS,EAEpC,MAAM,EACF,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,GAC/B,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC7C,EACE,SAAS,EACT,WAAW,EACX,QAAmB,EACnB,mBAA2B,GAC5B,GAAE,kBAAuB,GACzB,OAAO,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAsBrC"}
@@ -0,0 +1,54 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { Chain } from '../../types/index.js';
3
+ export type GetBlockNumberParameters = {
4
+ /** The maximum age (in ms) of the cached value. */
5
+ maxAge?: number;
6
+ };
7
+ export type GetBlockNumberReturnType = bigint;
8
+ export declare function getBlockNumberCache(id: string): {
9
+ clear: () => void;
10
+ promise: {
11
+ clear: () => boolean;
12
+ get: () => Promise<unknown> | undefined;
13
+ set: (data: Promise<unknown>) => Map<string, Promise<unknown>>;
14
+ };
15
+ response: {
16
+ clear: () => boolean;
17
+ get: () => {
18
+ created: Date;
19
+ data: unknown;
20
+ } | undefined;
21
+ set: (data: {
22
+ created: Date;
23
+ data: unknown;
24
+ }) => Map<string, {
25
+ created: Date;
26
+ data: unknown;
27
+ }>;
28
+ };
29
+ };
30
+ /**
31
+ * Returns the number of the most recent block seen.
32
+ *
33
+ * - Docs: https://viem.sh/docs/actions/public/getBlockNumber.html
34
+ * - Examples: https://stackblitz.com/github/wagmi-dev/viem/tree/main/examples/blocks/fetching-blocks
35
+ * - JSON-RPC Methods: [`eth_blockNumber`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_blocknumber)
36
+ *
37
+ * @param client - Client to use
38
+ * @param parameters - {@link GetBlockNumberParameters}
39
+ * @returns The number of the block. {@link GetBlockNumberReturnType}
40
+ *
41
+ * @example
42
+ * import { createPublicClient, http } from 'viem'
43
+ * import { mainnet } from 'viem/chains'
44
+ * import { getBlockNumber } from 'viem/public'
45
+ *
46
+ * const client = createPublicClient({
47
+ * chain: mainnet,
48
+ * transport: http(),
49
+ * })
50
+ * const blockNumber = await getBlockNumber(client)
51
+ * // 69420n
52
+ */
53
+ export declare function getBlockNumber<TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { maxAge }?: GetBlockNumberParameters): Promise<GetBlockNumberReturnType>;
54
+ //# sourceMappingURL=getBlockNumber.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBlockNumber.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getBlockNumber.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAA;AAGjD,MAAM,MAAM,wBAAwB,GAAG;IACrC,mDAAmD;IACnD,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,MAAM,CAAA;AAI7C,wBAAgB,mBAAmB,CAAC,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;EAE7C;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAsB,cAAc,CAAC,MAAM,SAAS,KAAK,GAAG,SAAS,EACnE,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EAAE,MAA+B,EAAE,GAAE,wBAA6B,GACjE,OAAO,CAAC,wBAAwB,CAAC,CASnC"}
@@ -0,0 +1,44 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { BlockTag, Chain, Hash } from '../../types/index.js';
3
+ export type GetBlockTransactionCountParameters = {
4
+ /** Hash of the block. */
5
+ blockHash?: Hash;
6
+ blockNumber?: never;
7
+ blockTag?: never;
8
+ } | {
9
+ blockHash?: never;
10
+ /** The block number. */
11
+ blockNumber?: bigint;
12
+ blockTag?: never;
13
+ } | {
14
+ blockHash?: never;
15
+ blockNumber?: never;
16
+ /** The block tag. Defaults to 'latest'. */
17
+ blockTag?: BlockTag;
18
+ };
19
+ export type GetBlockTransactionCountReturnType = number;
20
+ /**
21
+ * Returns the number of Transactions at a block number, hash, or tag.
22
+ *
23
+ * - Docs: https://viem.sh/docs/actions/public/getBlockTransactionCount.html
24
+ * - JSON-RPC Methods:
25
+ * - Calls [`eth_getBlockTransactionCountByNumber`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblocktransactioncountbynumber) for `blockNumber` & `blockTag`.
26
+ * - Calls [`eth_getBlockTransactionCountByHash`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblocktransactioncountbyhash) for `blockHash`.
27
+ *
28
+ * @param client - Client to use
29
+ * @param parameters - {@link GetBlockTransactionCountParameters}
30
+ * @returns The block transaction count. {@link GetBlockTransactionCountReturnType}
31
+ *
32
+ * @example
33
+ * import { createPublicClient, http } from 'viem'
34
+ * import { mainnet } from 'viem/chains'
35
+ * import { getBlockTransactionCount } from 'viem/public'
36
+ *
37
+ * const client = createPublicClient({
38
+ * chain: mainnet,
39
+ * transport: http(),
40
+ * })
41
+ * const count = await getBlockTransactionCount(client)
42
+ */
43
+ export declare function getBlockTransactionCount<TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { blockHash, blockNumber, blockTag, }?: GetBlockTransactionCountParameters): Promise<GetBlockTransactionCountReturnType>;
44
+ //# sourceMappingURL=getBlockTransactionCount.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBlockTransactionCount.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getBlockTransactionCount.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAY,MAAM,sBAAsB,CAAA;AAG3E,MAAM,MAAM,kCAAkC,GAC1C;IACE,yBAAyB;IACzB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,SAAS,CAAC,EAAE,KAAK,CAAA;IACjB,wBAAwB;IACxB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,GACD;IACE,SAAS,CAAC,EAAE,KAAK,CAAA;IACjB,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,CAAA;AAEL,MAAM,MAAM,kCAAkC,GAAG,MAAM,CAAA;AAEvD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAsB,wBAAwB,CAC5C,MAAM,SAAS,KAAK,GAAG,SAAS,EAEhC,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EACE,SAAS,EACT,WAAW,EACX,QAAmB,GACpB,GAAE,kCAAuC,GACzC,OAAO,CAAC,kCAAkC,CAAC,CAkB7C"}
@@ -0,0 +1,37 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { Address, BlockTag, Chain, Hex } from '../../types/index.js';
3
+ export type GetBytecodeParameters = {
4
+ address: Address;
5
+ } & ({
6
+ blockNumber?: never;
7
+ blockTag?: BlockTag;
8
+ } | {
9
+ blockNumber?: bigint;
10
+ blockTag?: never;
11
+ });
12
+ export type GetBytecodeReturnType = Hex | undefined;
13
+ /**
14
+ * Retrieves the bytecode at an address.
15
+ *
16
+ * - Docs: https://viem.sh/docs/contract/getBytecode.html
17
+ * - JSON-RPC Methods: [`eth_getCode`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getcode)
18
+ *
19
+ * @param client - Client to use
20
+ * @param parameters - {@link GetBytecodeParameters}
21
+ * @returns The contract's bytecode. {@link GetBytecodeReturnType}
22
+ *
23
+ * @example
24
+ * import { createPublicClient, http } from 'viem'
25
+ * import { mainnet } from 'viem/chains'
26
+ * import { getBytecode } from 'viem/contract'
27
+ *
28
+ * const client = createPublicClient({
29
+ * chain: mainnet,
30
+ * transport: http(),
31
+ * })
32
+ * const code = await getBytecode(client, {
33
+ * address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
34
+ * })
35
+ */
36
+ export declare function getBytecode<TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { address, blockNumber, blockTag }: GetBytecodeParameters): Promise<GetBytecodeReturnType>;
37
+ //# sourceMappingURL=getBytecode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBytecode.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getBytecode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAGzE,MAAM,MAAM,qBAAqB,GAAG;IAClC,OAAO,EAAE,OAAO,CAAA;CACjB,GAAG,CACA;IACE,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,GACD;IACE,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,CACJ,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,GAAG,GAAG,SAAS,CAAA;AAEnD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAsB,WAAW,CAAC,MAAM,SAAS,KAAK,GAAG,SAAS,EAChE,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EAAE,OAAO,EAAE,WAAW,EAAE,QAAmB,EAAE,EAAE,qBAAqB,GACnE,OAAO,CAAC,qBAAqB,CAAC,CAShC"}
@@ -0,0 +1,26 @@
1
+ import type { PublicClient, Transport, WalletClient } from '../../clients/index.js';
2
+ import type { Account, Chain } from '../../types/index.js';
3
+ export type GetChainIdReturnType = number;
4
+ /**
5
+ * Returns the chain ID associated with the current network.
6
+ *
7
+ * - Docs: https://viem.sh/docs/actions/public/getChainId.html
8
+ * - JSON-RPC Methods: [`eth_chainId`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_chainid)
9
+ *
10
+ * @param client - Client to use
11
+ * @returns The current chain ID. {@link GetChainIdReturnType}
12
+ *
13
+ * @example
14
+ * import { createPublicClient, http } from 'viem'
15
+ * import { mainnet } from 'viem/chains'
16
+ * import { getChainId } from 'viem/public'
17
+ *
18
+ * const client = createPublicClient({
19
+ * chain: mainnet,
20
+ * transport: http(),
21
+ * })
22
+ * const chainId = await getChainId(client)
23
+ * // 1
24
+ */
25
+ export declare function getChainId<TChain extends Chain | undefined, TAccount extends Account | undefined>(client: PublicClient<Transport, TChain> | WalletClient<Transport, TChain, TAccount>): Promise<GetChainIdReturnType>;
26
+ //# sourceMappingURL=getChainId.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getChainId.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getChainId.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,SAAS,EACT,YAAY,EACb,MAAM,wBAAwB,CAAA;AAC/B,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAA;AAG1D,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAA;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAsB,UAAU,CAC9B,MAAM,SAAS,KAAK,GAAG,SAAS,EAChC,QAAQ,SAAS,OAAO,GAAG,SAAS,EAEpC,MAAM,EACF,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,GAC/B,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,GAC5C,OAAO,CAAC,oBAAoB,CAAC,CAG/B"}
@@ -0,0 +1,50 @@
1
+ import type { PublicClient, Transport } from '../../clients/index.js';
2
+ import type { BlockTag, Chain, FeeHistory } from '../../types/index.js';
3
+ export type GetFeeHistoryParameters = {
4
+ /**
5
+ * Number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. Less than requested may be returned if not all blocks are available.
6
+ */
7
+ blockCount: number;
8
+ /**
9
+ * A monotonically increasing list of percentile values to sample from each block's effective priority fees per gas in ascending order, weighted by gas used.
10
+ */
11
+ rewardPercentiles: number[];
12
+ } & ({
13
+ blockNumber?: never;
14
+ /**
15
+ * Highest number block of the requested range.
16
+ * @default 'latest'
17
+ */
18
+ blockTag?: BlockTag;
19
+ } | {
20
+ /** Highest number block of the requested range. */
21
+ blockNumber?: bigint;
22
+ blockTag?: never;
23
+ });
24
+ export type GetFeeHistoryReturnType = FeeHistory;
25
+ /**
26
+ * Returns a collection of historical gas information.
27
+ *
28
+ * - Docs: https://viem.sh/docs/actions/public/getFeeHistory.html
29
+ * - JSON-RPC Methods: [`eth_feeHistory`](https://docs.alchemy.com/reference/eth-feehistory)
30
+ *
31
+ * @param client - Client to use
32
+ * @param parameters - {@link GetFeeHistoryParameters}
33
+ * @returns The gas estimate (in wei). {@link GetFeeHistoryReturnType}
34
+ *
35
+ * @example
36
+ * import { createPublicClient, http } from 'viem'
37
+ * import { mainnet } from 'viem/chains'
38
+ * import { getFeeHistory } from 'viem/public'
39
+ *
40
+ * const client = createPublicClient({
41
+ * chain: mainnet,
42
+ * transport: http(),
43
+ * })
44
+ * const feeHistory = await getFeeHistory(client, {
45
+ * blockCount: 4,
46
+ * rewardPercentiles: [25, 75],
47
+ * })
48
+ */
49
+ export declare function getFeeHistory<TChain extends Chain | undefined>(client: PublicClient<Transport, TChain>, { blockCount, blockNumber, blockTag, rewardPercentiles, }: GetFeeHistoryParameters): Promise<GetFeeHistoryReturnType>;
50
+ //# sourceMappingURL=getFeeHistory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getFeeHistory.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getFeeHistory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAKvE,MAAM,MAAM,uBAAuB,GAAG;IACpC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B,GAAG,CACA;IACE,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAA;CACpB,GACD;IACE,mDAAmD;IACnD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB,CACJ,CAAA;AACD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAA;AAEhD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAsB,aAAa,CAAC,MAAM,SAAS,KAAK,GAAG,SAAS,EAClE,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,EACvC,EACE,UAAU,EACV,WAAW,EACX,QAAmB,EACnB,iBAAiB,GAClB,EAAE,uBAAuB,GACzB,OAAO,CAAC,uBAAuB,CAAC,CAWlC"}
@@ -0,0 +1,91 @@
1
+ import type { Abi, AbiEvent } from 'abitype';
2
+ import type { PublicClient, Transport } from '../../clients/index.js';
3
+ import type { Chain, Filter, FilterType, Hash, Log, MaybeAbiEventName } from '../../types/index.js';
4
+ export type GetFilterChangesParameters<TFilterType extends FilterType = FilterType, TAbiEvent extends AbiEvent | undefined = undefined, TAbi extends Abi | readonly unknown[] = [TAbiEvent], TEventName extends string | undefined = MaybeAbiEventName<TAbiEvent>> = {
5
+ filter: Filter<TFilterType, TAbi, TEventName, any>;
6
+ };
7
+ export type GetFilterChangesReturnType<TFilterType extends FilterType = FilterType, TAbiEvent extends AbiEvent | undefined = undefined, TAbi extends Abi | readonly unknown[] = [TAbiEvent], TEventName extends string | undefined = MaybeAbiEventName<TAbiEvent>> = TFilterType extends 'event' ? Log<bigint, number, TAbiEvent, TAbi, TEventName>[] : Hash[];
8
+ /**
9
+ * Returns a list of logs or hashes based on a [Filter](/docs/glossary/terms#filter) since the last time it was called.
10
+ *
11
+ * - Docs: https://viem.sh/docs/actions/public/getFilterChanges.html
12
+ * - JSON-RPC Methods: [`eth_getFilterChanges`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getfilterchanges)
13
+ *
14
+ * A Filter can be created from the following actions:
15
+ *
16
+ * - [`createBlockFilter`](https://viem.sh/docs/actions/public/createBlockFilter)
17
+ * - [`createContractEventFilter`](https://viem.sh/docs/contract/createContractEventFilter)
18
+ * - [`createEventFilter`](https://viem.sh/docs/actions/public/createEventFilter)
19
+ * - [`createPendingTransactionFilter`](https://viem.sh/docs/actions/public/createPendingTransactionFilter)
20
+ *
21
+ * Depending on the type of filter, the return value will be different:
22
+ *
23
+ * - If the filter was created with `createContractEventFilter` or `createEventFilter`, it returns a list of logs.
24
+ * - If the filter was created with `createPendingTransactionFilter`, it returns a list of transaction hashes.
25
+ * - If the filter was created with `createBlockFilter`, it returns a list of block hashes.
26
+ *
27
+ * @param client - Client to use
28
+ * @param parameters - {@link GetFilterChangesParameters}
29
+ * @returns Logs or hashes. {@link GetFilterChangesReturnType}
30
+ *
31
+ * @example
32
+ * // Blocks
33
+ * import { createPublicClient, http } from 'viem'
34
+ * import { mainnet } from 'viem/chains'
35
+ * import { createBlockFilter, getFilterChanges } from 'viem/public'
36
+ *
37
+ * const client = createPublicClient({
38
+ * chain: mainnet,
39
+ * transport: http(),
40
+ * })
41
+ * const filter = await createBlockFilter(client)
42
+ * const hashes = await getFilterChanges(client, { filter })
43
+ *
44
+ * @example
45
+ * // Contract Events
46
+ * import { createPublicClient, http, parseAbi } from 'viem'
47
+ * import { mainnet } from 'viem/chains'
48
+ * import { createContractEventFilter, getFilterChanges } from 'viem/public'
49
+ *
50
+ * const client = createPublicClient({
51
+ * chain: mainnet,
52
+ * transport: http(),
53
+ * })
54
+ * const filter = await createContractEventFilter(client, {
55
+ * address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
56
+ * abi: parseAbi(['event Transfer(address indexed, address indexed, uint256)']),
57
+ * eventName: 'Transfer',
58
+ * })
59
+ * const logs = await getFilterChanges(client, { filter })
60
+ *
61
+ * @example
62
+ * // Raw Events
63
+ * import { createPublicClient, http, parseAbiItem } from 'viem'
64
+ * import { mainnet } from 'viem/chains'
65
+ * import { createEventFilter, getFilterChanges } from 'viem/public'
66
+ *
67
+ * const client = createPublicClient({
68
+ * chain: mainnet,
69
+ * transport: http(),
70
+ * })
71
+ * const filter = await createEventFilter(client, {
72
+ * address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
73
+ * event: parseAbiItem('event Transfer(address indexed, address indexed, uint256)'),
74
+ * })
75
+ * const logs = await getFilterChanges(client, { filter })
76
+ *
77
+ * @example
78
+ * // Transactions
79
+ * import { createPublicClient, http } from 'viem'
80
+ * import { mainnet } from 'viem/chains'
81
+ * import { createPendingTransactionFilter, getFilterChanges } from 'viem/public'
82
+ *
83
+ * const client = createPublicClient({
84
+ * chain: mainnet,
85
+ * transport: http(),
86
+ * })
87
+ * const filter = await createPendingTransactionFilter(client)
88
+ * const hashes = await getFilterChanges(client, { filter })
89
+ */
90
+ export declare function getFilterChanges<TTransport extends Transport, TChain extends Chain | undefined, TFilterType extends FilterType, TAbiEvent extends AbiEvent | undefined, TAbi extends Abi | readonly unknown[], TEventName extends string | undefined>(_client: PublicClient<TTransport, TChain>, { filter, }: GetFilterChangesParameters<TFilterType, TAbiEvent, TAbi, TEventName>): Promise<GetFilterChangesReturnType<TFilterType, TAbiEvent, TAbi, TEventName>>;
91
+ //# sourceMappingURL=getFilterChanges.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getFilterChanges.d.ts","sourceRoot":"","sources":["../../../../src/actions/public/getFilterChanges.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,KAAK,EACV,KAAK,EACL,MAAM,EACN,UAAU,EACV,IAAI,EACJ,GAAG,EACH,iBAAiB,EAClB,MAAM,sBAAsB,CAAA;AAK7B,MAAM,MAAM,0BAA0B,CACpC,WAAW,SAAS,UAAU,GAAG,UAAU,EAC3C,SAAS,SAAS,QAAQ,GAAG,SAAS,GAAG,SAAS,EAClD,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,EACnD,UAAU,SAAS,MAAM,GAAG,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC,IAClE;IACF,MAAM,EAAE,MAAM,CAAC,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,CAAC,CAAA;CACnD,CAAA;AAED,MAAM,MAAM,0BAA0B,CACpC,WAAW,SAAS,UAAU,GAAG,UAAU,EAC3C,SAAS,SAAS,QAAQ,GAAG,SAAS,GAAG,SAAS,EAClD,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,EACnD,UAAU,SAAS,MAAM,GAAG,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC,IAClE,WAAW,SAAS,OAAO,GAC3B,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,GAClD,IAAI,EAAE,CAAA;AAEV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiFG;AACH,wBAAsB,gBAAgB,CACpC,UAAU,SAAS,SAAS,EAC5B,MAAM,SAAS,KAAK,GAAG,SAAS,EAChC,WAAW,SAAS,UAAU,EAC9B,SAAS,SAAS,QAAQ,GAAG,SAAS,EACtC,IAAI,SAAS,GAAG,GAAG,SAAS,OAAO,EAAE,EACrC,UAAU,SAAS,MAAM,GAAG,SAAS,EAErC,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,MAAM,CAAC,EACzC,EACE,MAAM,GACP,EAAE,0BAA0B,CAAC,WAAW,EAAE,SAAS,EAAE,IAAI,EAAE,UAAU,CAAC,iFA8BxE"}