Skip to content

jsonRpcProvider

jsonRpcProvider(rpcUrl?): JsonRpcProvider

Defined in: providers/JsonRpcProvider.ts:42

Helper function to avoid “new”

Parameters

rpcUrl?

string

the RPC URL to post requests to

Returns

JsonRpcProvider

an initiated JsonRpcProvider

Example

jsonRpcProvider().getBlock('latest').then(block => {
console.log(block.number);
})
// 14530496