description | sidebar_position | sidebar_label | tags | |
---|---|---|---|---|
Call Keyring API methods from your companion dapp. |
2 |
Create a companion dapp |
|
Create a companion dapp to provide a user interface for your account management Snap. Call Keyring API methods from your companion dapp, enabling users to create and interact with custom EVM accounts.
:::tip see also
An account management Snap set up.
Install the @metamask/keyring-api
module in your
project directory using Yarn or npm:
yarn add @metamask/keyring-api
or
npm install @metamask/keyring-api
Create a KeyringSnapRpcClient
:
import { KeyringSnapRpcClient } from "@metamask/keyring-api"
import { defaultSnapOrigin as snapId } from "../config"
let client = new KeyringSnapRpcClient(snapId, window.ethereum)
You can now use the KeyringSnapRpcClient
to invoke
Account Management API methods on your Snap.
For example, to call keyring_listAccounts
:
const accounts = await client.listAccounts()
See the example companion dapp source code for more information.