btc-wallet 0.5.48-beta → 0.5.50-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/core/btcUtils.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +2 -2
- package/esm/index.js +2 -1
- package/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/btcUtils.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import type { ENV } from '../config';
|
2
|
-
import { calculateGasLimit } from '../utils/satoshi';
|
2
|
+
import { checkBridgeTransactionStatus, calculateGasLimit } from '../utils/satoshi';
|
3
3
|
import type { FinalExecutionOutcome, Transaction } from '@near-wallet-selector/core';
|
4
|
-
export { calculateGasLimit };
|
4
|
+
export { calculateGasLimit, checkBridgeTransactionStatus };
|
5
5
|
type CheckGasTokenDebtReturnType<T extends boolean> = T extends true ? void : {
|
6
6
|
receiver_id: string;
|
7
7
|
amount: string;
|
package/dist/index.js
CHANGED
@@ -107,6 +107,7 @@ __export(src_exports, {
|
|
107
107
|
calculateGasFee: () => calculateGasFee,
|
108
108
|
calculateGasLimit: () => calculateGasLimit,
|
109
109
|
calculateWithdraw: () => calculateWithdraw,
|
110
|
+
checkBridgeTransactionStatus: () => checkBridgeTransactionStatus,
|
110
111
|
checkGasTokenDebt: () => checkGasTokenDebt,
|
111
112
|
checkSatoshiWhitelist: () => checkSatoshiWhitelist,
|
112
113
|
estimateDepositAmount: () => estimateDepositAmount,
|
@@ -5032,7 +5033,7 @@ function getGroup(state) {
|
|
5032
5033
|
|
5033
5034
|
// src/index.ts
|
5034
5035
|
var getVersion = () => {
|
5035
|
-
return "0.5.
|
5036
|
+
return "0.5.50-beta";
|
5036
5037
|
};
|
5037
5038
|
if (typeof window !== "undefined") {
|
5038
5039
|
window.__BTC_WALLET_VERSION = getVersion();
|