We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8a05d7 commit df9b9a8Copy full SHA for df9b9a8
src/mintMarkets/MintMarketTemplate.ts
@@ -1930,10 +1930,10 @@ export class MintMarketTemplate {
1930
const percentage = currentProfit.div(totalDepositUsdValueUser).times(100);
1931
1932
return {
1933
- currentPosition: currentPosition.toFixed(18).toString(),
+ currentPosition: currentPosition.toString(),
1934
deposited: totalDepositUsdValueUser.toString(),
1935
- currentProfit: currentProfit.toFixed(18).toString(),
1936
- percentage: percentage.toFixed(2).toString(),
+ currentProfit: currentProfit.toString(),
+ percentage: percentage.toString(),
1937
};
1938
}
1939
0 commit comments