@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
17 lines • 407 B
JavaScript
// SPDX-License-Identifier: MIT
export class Point {
point;
constructor(point) {
this.point = point;
}
static fromBytes(point) {
throw new Error('Must override fromBytes()');
}
static fromCoordinates(x, y) {
throw new Error('Must override fromCoordinates()');
}
getRaw() {
return this.getRawEncoded();
}
}
//# sourceMappingURL=point.js.map