UNPKG

chaingate

Version:

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

13 lines 526 B
import { BitcoinTestnetInfo } from '../../CurrencyInfo'; import { Bech32UtxoCurrencyUtils } from '../abstract/Bech32UtxoCurrencyUtils/Bech32UtxoCurrencyUtils'; export class BitcoinTestnetUtils extends Bech32UtxoCurrencyUtils { constructor(context) { super(context, BitcoinTestnetInfo, 'bitcointestnet', { bech32: 'tb', pubKeyHash: 0x6f, scriptHash: 0xc4, wif: 0xef, }, '\x18Bitcoin Signed Message:\n'); } } //# sourceMappingURL=BitcoinTestnetUtils.js.map