diff --git a/package.json b/package.json index 23ff2a70..2f6cfff4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "extension", - "version": "1.26.7", + "version": "1.26.8", "description": "extension", "private": false, "repository": "https://github.com/SimpleHold/extension.git", diff --git a/src/manifest.json b/src/manifest.json index c079caf3..fff8b17a 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "SimpleHold", - "version": "1.26.7", + "version": "1.26.8", "icons": { "16": "favicon-16.png", "32": "favicon-32.png", diff --git a/src/utils/api/index.ts b/src/utils/api/index.ts index 6e6ee42e..06b819ff 100644 --- a/src/utils/api/index.ts +++ b/src/utils/api/index.ts @@ -68,13 +68,13 @@ export const fetchBalances = async ( wallets: TGetBalancesWalletProps[] ): Promise => { const request = await sendRequest({ - url: `${config.serverUrl}/wallet/balances-extension`, + url: `${config.serverUrl}/wallet/balances`, method: 'POST', data: { wallets, - hash: await getHash(), + // hash: await getHash(), }, - timeout: 120000, + timeout: 180000, }) return request || [] @@ -259,13 +259,13 @@ export const getWarning = async (symbol: string, chain?: string): Promise => { const request = await sendRequest({ - url: `${config.serverUrl}/transaction/transactions-full-info-extension`, + url: `${config.serverUrl}/transaction/transactions-full-info`, method: 'POST', data: { wallets, - hash: await getHash(), + // hash: await getHash(), }, - timeout: 120000, + timeout: 240000, }) return request || []