@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
14 lines • 880 B
TypeScript
import { EllipticCurveCryptography, Point, PublicKey, PrivateKey } from '../../../ecc';
import { SLIP10Ed25519Blake2bPoint as _SLIP10Ed25519Blake2bPoint } from './point';
import { SLIP10Ed25519Blake2bPublicKey as _SLIP10Ed25519Blake2bPublicKey } from './public-key';
import { SLIP10Ed25519Blake2bPrivateKey as _SLIP10Ed25519Blake2bPrivateKey } from './private-key';
export declare class SLIP10Ed25519Blake2bECC extends EllipticCurveCryptography {
static NAME: string;
static ORDER: bigint;
static GENERATOR: Point;
static POINT: typeof Point;
static PUBLIC_KEY: typeof PublicKey;
static PRIVATE_KEY: typeof PrivateKey;
}
export { _SLIP10Ed25519Blake2bPoint as SLIP10Ed25519Blake2bPoint, _SLIP10Ed25519Blake2bPublicKey as SLIP10Ed25519Blake2bPublicKey, _SLIP10Ed25519Blake2bPrivateKey as SLIP10Ed25519Blake2bPrivateKey };
//# sourceMappingURL=index.d.ts.map