UNPKG

262 BTypeScriptView Raw
1import { IKeyPair } from "../interfaces";
2import { INetwork } from "../interfaces/networks";
3export declare class WIF {
4 static fromPassphrase(passphrase: string, network?: INetwork): string;
5 static fromKeys(keys: IKeyPair, network?: INetwork): string;
6}