btc-wallet 0.5.30-beta → 0.5.31-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 CHANGED
@@ -3844,7 +3844,6 @@ var ecc = __toESM(require("@bitcoinerlab/secp256k1"), 1);
3844
3844
  bitcoin.initEccLib(ecc);
3845
3845
  var NEAR_STORAGE_DEPOSIT_AMOUNT = "1250000000000000000000";
3846
3846
  var NBTC_STORAGE_DEPOSIT_AMOUNT = "3000";
3847
- var GAS_LIMIT = "50000000000000";
3848
3847
  var NEW_ACCOUNT_MIN_DEPOSIT_AMOUNT = "1000";
3849
3848
  function getBtcProvider() {
3850
3849
  if (typeof window === "undefined" || !window.btcContext) {
@@ -4068,12 +4067,12 @@ function executeBTCDepositAndAction(_0) {
4068
4067
  const debtAction = yield checkGasTokenDebt(csna, env, false);
4069
4068
  if (debtAction) {
4070
4069
  newActions.push(__spreadProps(__spreadValues({}, debtAction), {
4071
- gas: GAS_LIMIT
4070
+ gas: "30000000000000"
4072
4071
  }));
4073
4072
  }
4074
4073
  if (action) {
4075
4074
  newActions.push(__spreadProps(__spreadValues({}, action), {
4076
- gas: GAS_LIMIT
4075
+ gas: "100000000000000"
4077
4076
  }));
4078
4077
  }
4079
4078
  const storageDepositMsg = {};
@@ -4906,7 +4905,7 @@ function getGroup(state) {
4906
4905
 
4907
4906
  // src/index.ts
4908
4907
  var getVersion = () => {
4909
- return "0.5.30-beta";
4908
+ return "0.5.31-beta";
4910
4909
  };
4911
4910
  if (typeof window !== "undefined") {
4912
4911
  window.__BTC_WALLET_VERSION = getVersion();