feature/default_network_editable
parent
5a7e4c4e76
commit
3ea841e276
@ -0,0 +1,37 @@ |
||||
const Component = require('react').Component |
||||
const h = require('react-hyperscript') |
||||
const inherits = require('util').inherits |
||||
const EthBalance = require('../eth-balance') |
||||
const { getTxFeeBn } = require('../../util') |
||||
|
||||
module.exports = EthFeeDisplay |
||||
|
||||
inherits(EthFeeDisplay, Component) |
||||
function EthFeeDisplay () { |
||||
Component.call(this) |
||||
} |
||||
|
||||
EthFeeDisplay.prototype.render = function () { |
||||
const { |
||||
currentCurrency, |
||||
conversionRate, |
||||
gas, |
||||
gasPrice, |
||||
blockGasLimit, |
||||
} = this.props |
||||
|
||||
return h(EthBalance, { |
||||
value: getTxFeeBn(gas, gasPrice, blockGasLimit), |
||||
currentCurrency, |
||||
conversionRate, |
||||
showFiat: false, |
||||
hideTooltip: true, |
||||
styleOveride: { |
||||
color: '#5d5d5d', |
||||
fontSize: '16px', |
||||
fontFamily: 'DIN OT', |
||||
lineHeight: '22.4px' |
||||
} |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,35 @@ |
||||
const Component = require('react').Component |
||||
const h = require('react-hyperscript') |
||||
const inherits = require('util').inherits |
||||
const FiatValue = require('../fiat-value') |
||||
const { getTxFeeBn } = require('../../util') |
||||
|
||||
module.exports = USDFeeDisplay |
||||
|
||||
inherits(USDFeeDisplay, Component) |
||||
function USDFeeDisplay () { |
||||
Component.call(this) |
||||
} |
||||
|
||||
USDFeeDisplay.prototype.render = function () { |
||||
const { |
||||
currentCurrency, |
||||
conversionRate, |
||||
gas, |
||||
gasPrice, |
||||
blockGasLimit, |
||||
} = this.props |
||||
|
||||
return h(FiatValue, { |
||||
value: getTxFeeBn(gas, gasPrice, blockGasLimit), |
||||
conversionRate, |
||||
currentCurrency, |
||||
style: { |
||||
color: '#5d5d5d', |
||||
fontSize: '16px', |
||||
fontFamily: 'DIN OT', |
||||
lineHeight: '22.4px' |
||||
} |
||||
}) |
||||
} |
||||
|
Loading…
Reference in new issue