@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
16 lines • 901 B
JavaScript
// SPDX-License-Identifier: MIT
import { EllipticCurveCryptography } from '../../ecc';
import { SLIP10Ed25519ECC } from '../../slip10';
import { KholawEd25519Point as _KholawEd25519Point } from './point';
import { KholawEd25519PublicKey as _KholawEd25519PublicKey } from './public-key';
import { KholawEd25519PrivateKey as _KholawEd25519PrivateKey } from './private-key';
export class KholawEd25519ECC extends EllipticCurveCryptography {
static NAME = 'Kholaw-Ed25519';
static ORDER = SLIP10Ed25519ECC.ORDER;
static GENERATOR = SLIP10Ed25519ECC.GENERATOR;
static POINT = _KholawEd25519Point;
static PUBLIC_KEY = _KholawEd25519PublicKey;
static PRIVATE_KEY = _KholawEd25519PrivateKey;
}
export { _KholawEd25519Point as KholawEd25519Point, _KholawEd25519PublicKey as KholawEd25519PublicKey, _KholawEd25519PrivateKey as KholawEd25519PrivateKey };
//# sourceMappingURL=index.js.map