chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
13 lines • 542 B
JavaScript
import { BitcoinTestnetInfo } from '../../CurrencyInfo';
import { Bech32UtxoCurrencyUtils } from '../abstract/Bech32UtxoCurrencyUtils/Bech32UtxoCurrencyUtils';
export class BitcoinTestnetUtils extends Bech32UtxoCurrencyUtils {
constructor(client, markets) {
super(client, BitcoinTestnetInfo, markets, 'bitcointestnet', {
bech32: 'tb',
pubKeyHash: 0x6f,
scriptHash: 0xc4,
wif: 0xef,
}, '\x18Bitcoin Signed Message:\n');
}
}
//# sourceMappingURL=BitcoinTestnetUtils.js.map