@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
17 lines • 518 B
JavaScript
// SPDX-License-Identifier: MIT
Object.defineProperty(exports, "__esModule", { value: true });
exports.Address = void 0;
class Address {
static getName() {
throw new Error('Address.getName() not implemented');
}
static encode(publicKey, options) {
throw new Error('Address.encode() not implemented');
}
static decode(address, options) {
throw new Error('Address.decode() not implemented');
}
}
exports.Address = Address;
//# sourceMappingURL=address.js.map
;