UNPKG

@hdwallet/core

Version:

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

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