UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

13 lines 514 B
import { LitecoinInfo } from '../../CurrencyInfo'; import { Bech32UtxoCurrencyUtils } from '../abstract/Bech32UtxoCurrencyUtils/Bech32UtxoCurrencyUtils'; export class LitecoinUtils extends Bech32UtxoCurrencyUtils { constructor(client, markets) { super(client, LitecoinInfo, markets, 'litecoin', { bech32: 'ltc', pubKeyHash: 0x30, scriptHash: 0x32, wif: 0xb0, }, '\x19Litecoin Signed Message:\n'); } } //# sourceMappingURL=LitecoinUtils.js.map