UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

20 lines 564 B
import type { Json } from "@metamask/utils"; /** * The account management request object. */ export type ManageAccountsParams = { /** * The account management method to call. */ method: string; /** * The parameters to pass to the account management method. */ params?: Json[] | Record<string, Json>; }; /** * The result returned by the client. The structure of this result depends on * the account management method that was called. */ export type ManageAccountsResult = Json; //# sourceMappingURL=manage-accounts.d.cts.map