btc-wallet 0.5.81-beta → 0.5.83-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/dist/index.js.map +2 -2
- package/esm/index.js +3 -3
- package/esm/index.js.map +2 -2
- package/package.json +1 -1
package/esm/index.js
CHANGED
@@ -1154,7 +1154,7 @@ var GateConnector = class extends InjectedConnector {
|
|
1154
1154
|
options
|
1155
1155
|
});
|
1156
1156
|
console.log("\u{1F680} ~ GateConnector ~ sendBitcoin ~ result:", result);
|
1157
|
-
return result
|
1157
|
+
return result;
|
1158
1158
|
});
|
1159
1159
|
}
|
1160
1160
|
signMessage(signStr, type) {
|
@@ -3758,7 +3758,7 @@ import coinselect from "coinselect";
|
|
3758
3758
|
import * as ecc from "@bitcoinerlab/secp256k1";
|
3759
3759
|
bitcoin.initEccLib(ecc);
|
3760
3760
|
var NEAR_STORAGE_DEPOSIT_AMOUNT = "1250000000000000000000";
|
3761
|
-
var NBTC_STORAGE_DEPOSIT_AMOUNT =
|
3761
|
+
var NBTC_STORAGE_DEPOSIT_AMOUNT = 2e3;
|
3762
3762
|
var NEW_ACCOUNT_MIN_DEPOSIT_AMOUNT = 1e3;
|
3763
3763
|
function getBtcProvider() {
|
3764
3764
|
if (typeof window === "undefined" || !window.btcContext) {
|
@@ -5320,7 +5320,7 @@ function getGroup(state) {
|
|
5320
5320
|
|
5321
5321
|
// src/index.ts
|
5322
5322
|
var getVersion = () => {
|
5323
|
-
return "0.5.
|
5323
|
+
return "0.5.83-beta";
|
5324
5324
|
};
|
5325
5325
|
if (typeof window !== "undefined") {
|
5326
5326
|
window.__BTC_WALLET_VERSION = getVersion();
|