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