btc-wallet 0.5.84-beta → 0.5.87-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 +4 -4
- package/dist/index.js.map +2 -2
- package/esm/index.js +4 -4
- package/esm/index.js.map +2 -2
- package/package.json +1 -1
package/esm/index.js
CHANGED
@@ -2976,7 +2976,7 @@ var walletConfig = {
|
|
2976
2976
|
nearTokenDecimals: 24,
|
2977
2977
|
accountContractId: "acc.ref-labs.near",
|
2978
2978
|
bridgeContractId: "btc-connector.bridge.near",
|
2979
|
-
walletUrl: "https://wallet.
|
2979
|
+
walletUrl: "https://wallet.satos.network",
|
2980
2980
|
bridgeUrl: "https://ramp.satos.network"
|
2981
2981
|
}
|
2982
2982
|
};
|
@@ -2988,7 +2988,7 @@ function getWalletConfig(env) {
|
|
2988
2988
|
});
|
2989
2989
|
}
|
2990
2990
|
var nearRpcUrls = {
|
2991
|
-
mainnet: ["https://
|
2991
|
+
mainnet: ["https://free.rpc.fastnear.com", "https://near.lava.build"],
|
2992
2992
|
testnet: ["https://rpc.testnet.near.org"]
|
2993
2993
|
};
|
2994
2994
|
var btcRpcUrls = {
|
@@ -3759,7 +3759,7 @@ import * as ecc from "@bitcoinerlab/secp256k1";
|
|
3759
3759
|
bitcoin.initEccLib(ecc);
|
3760
3760
|
var NEAR_STORAGE_DEPOSIT_AMOUNT = "1250000000000000000000";
|
3761
3761
|
var NBTC_STORAGE_DEPOSIT_AMOUNT = 800;
|
3762
|
-
var NEW_ACCOUNT_MIN_DEPOSIT_AMOUNT =
|
3762
|
+
var NEW_ACCOUNT_MIN_DEPOSIT_AMOUNT = 1e3;
|
3763
3763
|
function getBtcProvider() {
|
3764
3764
|
if (typeof window === "undefined" || !window.btcContext) {
|
3765
3765
|
throw new Error("BTC Provider is not initialized.");
|
@@ -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.87-beta";
|
5324
5324
|
};
|
5325
5325
|
if (typeof window !== "undefined") {
|
5326
5326
|
window.__BTC_WALLET_VERSION = getVersion();
|