UNPKG

@coinbase/onchaintestkit

Version:

End-to-end testing toolkit for blockchain applications, powered by Playwright

9 lines (8 loc) 359 B
import type { Page } from "@playwright/test"; /** * Imports a wallet using a seed phrase and password * @param page - The Playwright page object * @param seedPhrase - The seed phrase to import * @param password - The password to set for the wallet */ export declare function importWallet(page: Page, seedPhrase: string, password: string): Promise<void>;