btc-wallet 0.5.14-beta → 0.5.15-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +3 -1
- package/dist/index.js.map +3 -3
- package/esm/index.js +3 -1
- package/esm/index.js.map +2 -2
- package/package.json +2 -1
package/dist/index.js
CHANGED
@@ -3229,7 +3229,9 @@ function getWhitelist(url) {
|
|
3229
3229
|
|
3230
3230
|
// src/core/btcUtils.ts
|
3231
3231
|
var import_bitcoinjs_lib = __toESM(require("bitcoinjs-lib"), 1);
|
3232
|
+
var ecc = __toESM(require("@bitcoinerlab/secp256k1"), 1);
|
3232
3233
|
var import_coinselect = __toESM(require("coinselect"), 1);
|
3234
|
+
import_bitcoinjs_lib.default.initEccLib(ecc);
|
3233
3235
|
var NEAR_STORAGE_DEPOSIT_AMOUNT = "1250000000000000000000";
|
3234
3236
|
var NBTC_STORAGE_DEPOSIT_AMOUNT = "3000";
|
3235
3237
|
var GAS_LIMIT = "50000000000000";
|
@@ -4574,7 +4576,7 @@ function setupBTCWallet({
|
|
4574
4576
|
|
4575
4577
|
// src/index.ts
|
4576
4578
|
var getVersion = () => {
|
4577
|
-
return "0.5.
|
4579
|
+
return "0.5.15-beta";
|
4578
4580
|
};
|
4579
4581
|
if (typeof window !== "undefined") {
|
4580
4582
|
window.__BTC_WALLET_VERSION = getVersion();
|