UNPKG

395 BTypeScriptView Raw
1import { IMultiSignatureAsset } from "../interfaces";
2import { NetworkType } from "../types";
3export declare class PublicKey {
4 static fromPassphrase(passphrase: string): string;
5 static fromWIF(wif: string, network?: NetworkType): string;
6 static fromMultiSignatureAsset(asset: IMultiSignatureAsset): string;
7 static validate(publicKey: string, networkVersion?: number): boolean;
8}