@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
10 lines • 324 B
JavaScript
// SPDX-License-Identifier: MIT
import { EthereumAddress } from './ethereum';
import { XinFin } from '../cryptocurrencies';
export class XinFinAddress extends EthereumAddress {
static addressPrefix = XinFin.PARAMS.ADDRESS_PREFIX;
static getName() {
return 'XinFin';
}
}
//# sourceMappingURL=xinfin.js.map