UNPKG

@hdwallet/core

Version:

A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.

10 lines 304 B
// SPDX-License-Identifier: MIT import { P2PKHAddress } from './p2pkh'; import { Ripple } from '../cryptocurrencies'; export class RippleAddress extends P2PKHAddress { static alphabet = Ripple.PARAMS.ALPHABET; static getName() { return 'Ripple'; } } //# sourceMappingURL=ripple.js.map