UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

5 lines (4 loc) 168 B
export declare abstract class Keystore { abstract checkPassword(password: string): Promise<boolean>; abstract decrypt(password: string): Promise<Uint8Array>; }