chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
12 lines • 395 B
JavaScript
import { Bech32UtxoWallet } from '../../abstract/Bech32UtxoWallet/Bech32UtxoWallet';
export class BitcoinTestnetWallet extends Bech32UtxoWallet {
constructor(utils, transports) {
super(utils, transports, {
bech32: 'tb',
pubKeyHash: 0x6f,
scriptHash: 0xc4,
wif: 0xef,
});
}
}
//# sourceMappingURL=BitcoinTestnetWallet.js.map