btc-wallet 0.5.39-beta → 0.5.40-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/dist/index.js
CHANGED
@@ -3284,9 +3284,9 @@ function receiveDepositMsg(_0, _1) {
|
|
3284
3284
|
function checkBridgeTransactionStatus(url, txHash) {
|
3285
3285
|
return __async(this, null, function* () {
|
3286
3286
|
const { result_code, result_message, result_data } = yield request(`${url}/v1/bridgeFromTx?fromTxHash=${txHash}&fromChainId=1`, {
|
3287
|
-
timeout:
|
3287
|
+
timeout: 3 * 60 * 60 * 1e3,
|
3288
3288
|
pollingInterval: 5e3,
|
3289
|
-
maxPollingAttempts:
|
3289
|
+
maxPollingAttempts: 3e3,
|
3290
3290
|
shouldStopPolling: (res) => {
|
3291
3291
|
var _a;
|
3292
3292
|
const status = ((_a = res.result_data) == null ? void 0 : _a.Status) || 0;
|
@@ -4916,7 +4916,7 @@ function getGroup(state) {
|
|
4916
4916
|
|
4917
4917
|
// src/index.ts
|
4918
4918
|
var getVersion = () => {
|
4919
|
-
return "0.5.
|
4919
|
+
return "0.5.40-beta";
|
4920
4920
|
};
|
4921
4921
|
if (typeof window !== "undefined") {
|
4922
4922
|
window.__BTC_WALLET_VERSION = getVersion();
|