@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
27 lines • 1.07 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.LtcChain = void 0;
var crypto_wallet_core_1 = require("@abcpros/crypto-wallet-core");
var btc_1 = require("../btc");
var LtcChain = (function (_super) {
__extends(LtcChain, _super);
function LtcChain() {
return _super.call(this, crypto_wallet_core_1.BitcoreLibLtc) || this;
}
return LtcChain;
}(btc_1.BtcChain));
exports.LtcChain = LtcChain;
//# sourceMappingURL=index.js.map