UNPKG

@assert-equals/dappdriver

Version:

DappDriver is an e2e testing framework designed for testing decentralized applications (dApps) using MetaMask, Rainbow or Zerion

17 lines (16 loc) 622 B
import { IConfirmation } from '../wallet/confirmation'; export interface IWallet { pages: { AddNetwork: new () => IConfirmation; ApproveAll: new () => IConfirmation; Approve: new () => IConfirmation; ConfirmTransaction: new () => IConfirmation; Connect: new () => IConfirmation; Send: new () => IConfirmation; SignInRequest: new () => IConfirmation; SignMessage: new () => IConfirmation; SignatureRequest: new () => IConfirmation; }; setup(seed: string): Promise<void>; install(directory: string, version: string): Promise<string>; }