createJsonRpcFetcher
createJsonRpcFetcher(
url,headers):JsonRpcClient
Makes a JSON-RPC request to a url
Parameters
▪ url: string
to JSON RPC backend
▪ headers: HeadersInit= undefined
to send with the request
Returns
the result field from the JSON-RPC response
See
https://ethereum.org/en/developers/docs/apis/json-rpc/
Example
const url = 'https://mainnet.optimism.io'const params = { method: 'eth_getBlockByNumber', params: ['latest', false],}const {result: block} = await fetchJsonRpc(url, params)Source
fetchJsonRpc.js:17
Generated using typedoc-plugin-markdown and TypeDoc