Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.qu.ai/llms.txt

Use this file to discover all available pages before exploring further.

The interface to an EIP-1193 provider, which is a standard used by most injected providers, which the BrowserProvider accepts and exposes the API of.

Methods

request()

request(request): Promise<any>
See EIP-1193 for details on this method.

Parameters

ParameterTypeDescription
requestobjectThe request object.
request.methodstringThe method name.
request.params?any[] | Record<string, any>The parameters for the method.
request.shard?ShardThe shard to send the request to.

Returns

Promise<any> The result of the request.

Source

providers/provider-browser.ts:25