chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
16 lines • 544 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BitcoinWallet = void 0;
const Bech32UtxoWallet_1 = require("../../abstract/Bech32UtxoWallet/Bech32UtxoWallet");
class BitcoinWallet extends Bech32UtxoWallet_1.Bech32UtxoWallet {
constructor(utils, transports) {
super(utils, transports, {
bech32: 'bc',
pubKeyHash: 0x00,
scriptHash: 0x05,
wif: 0x80,
});
}
}
exports.BitcoinWallet = BitcoinWallet;
//# sourceMappingURL=BitcoinWallet.js.map