Skip to content

Commit

Permalink
v3.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mytonwalletorg committed Aug 26, 2024
1 parent a317b61 commit 764633a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelogs/3.0.10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bug fixes and performance improvements
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mytonwallet",
"version": "3.0.9",
"version": "3.0.10",

This comment has been minimized.

Copy link
@Arrowpra

Arrowpra Aug 26, 2024

I want it

"description": "The most feature-rich web wallet and browser extension for TON – with support of multi-accounts, tokens (jettons), NFT, TON DNS, TON Sites, TON Proxy, and TON Magic.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion public/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.9
3.0.10
2 changes: 1 addition & 1 deletion src/api/methods/staking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export async function fetchBackendStakingState(address: string): Promise<ApiBack
'X-App-Env': APP_ENV,
};

const stakingState = await callBackendGet(`/staking/state/${address}`, headers);
const stakingState = await callBackendGet(`/staking/state/${address}`, undefined, headers);
stakingState.balance = fromDecimal(stakingState.balance);
stakingState.totalProfit = fromDecimal(stakingState.totalProfit);

Expand Down
1 change: 1 addition & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,4 +336,5 @@ export const DIESEL_ADDRESS = process.env.DIESEL_ADDRESS || 'EQDUkQbpTVIgt7v66-J
export const DIESEL_TOKENS = new Set([
'ton-eqcxe6mutq', // USDT
'ton-eqavlwfdxg', // Notcoin
'ton-eqcvxjy4eg', // DOGS
]);

0 comments on commit 764633a

Please sign in to comment.