@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
12 lines • 405 B
JavaScript
// SPDX-License-Identifier: MIT
import { SLIP10Ed25519PublicKey } from '../public-key';
import { SLIP10Ed25519Blake2bPoint } from './point';
export class SLIP10Ed25519Blake2bPublicKey extends SLIP10Ed25519PublicKey {
getName() {
return 'SLIP10-Ed25519-Blake2b';
}
getPoint() {
return new SLIP10Ed25519Blake2bPoint(this.publicKey);
}
}
//# sourceMappingURL=public-key.js.map