mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Fix token values being undefined
This commit is contained in:
parent
bf92d2ffec
commit
37322f9f4e
@ -2,7 +2,7 @@ import React, { PureComponent } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import CurrencyDisplay from '../currency-display/currency-display.component'
|
||||
import { getTokenData } from '../../helpers/transactions.util'
|
||||
import { calcTokenAmount } from '../../token-util'
|
||||
import { getTokenValue, calcTokenAmount } from '../../token-util'
|
||||
|
||||
export default class TokenCurrencyDisplay extends PureComponent {
|
||||
static propTypes = {
|
||||
@ -34,8 +34,8 @@ export default class TokenCurrencyDisplay extends PureComponent {
|
||||
|
||||
let displayValue
|
||||
|
||||
if (tokenData.params && tokenData.params.length === 2) {
|
||||
const tokenValue = tokenData.params[1].value
|
||||
if (tokenData.params && tokenData.params.length) {
|
||||
const tokenValue = getTokenValue(tokenData.params)
|
||||
const tokenAmount = calcTokenAmount(tokenValue, decimals)
|
||||
displayValue = `${tokenAmount} ${symbol}`
|
||||
}
|
||||
|
@ -111,3 +111,8 @@ export function calcTokenAmount (value, decimals) {
|
||||
const multiplier = Math.pow(10, Number(decimals || 0))
|
||||
return new BigNumber(String(value)).div(multiplier).toNumber()
|
||||
}
|
||||
|
||||
export function getTokenValue (tokenParams = []) {
|
||||
const valueData = tokenParams.find(param => param.name === '_value')
|
||||
return valueData && valueData.value
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user