UNPKG

@hdwallet/core

Version:

A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.

11 lines 418 B
import { PrivateKey } from '../../../private-key'; import { PublicKey } from '../../../public-key'; export declare class SLIP10Ed25519Blake2bPrivateKey extends PrivateKey { getName(): string; static fromBytes(privateKey: Uint8Array): PrivateKey; static getLength(): number; getRaw(): Uint8Array; getUnderlyingObject(): any; getPublicKey(): PublicKey; } //# sourceMappingURL=private-key.d.ts.map