optimize token format

This commit is contained in:
liangping
2021-10-14 21:21:58 +08:00
parent 22123af7c8
commit aa2ceae79c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -304,7 +304,7 @@ export function formatTokenAmount(tokenAmount, fraction = 2, denom = 'uatom') {
return parseFloat(amount)
}
export function formatToken(token, IBCDenom = {}, decimals = 0) {
export function formatToken(token, IBCDenom = {}, decimals = 2) {
if (token) {
return `${formatTokenAmount(token.amount, decimals, token.denom)} ${formatTokenDenom(IBCDenom[token.denom] || token.denom)}`
}
+1 -1
View File
@@ -232,7 +232,7 @@ export default {
methods: {
percent,
tokenFormatter(amount, denom) {
return formatToken({ amount, denom })
return formatToken({ amount, denom }, {}, 0)
},
rankBadge(data) {
const { index, item } = data