UNPKG

195 BTypeScriptView Raw
1import { NetworkType } from "../types";
2export declare class PrivateKey {
3 static fromPassphrase(passphrase: string): string;
4 static fromWIF(wif: string, network?: NetworkType): string;
5}