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