Params
method: string;
params?: unknown[] | object;
Returns
Promise<unknown>
Example
request
method to ask the user to connect to your dapp.The
request
method is the go to way for you to interface with the wallet in your dapp. It accepts most JSON RPC requests that would need to interact with the wallet. However it will not work for methods that don’t make sense for a wallet. For example, you can’t use the provider object Phantom injects to call something like
eth_getTransactionByHash
. If you send a method that the provider object does not support, it will throw an error. For a full list of errors, see Error messages and codes.