aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/app/components/pending-tx.js4
-rw-r--r--ui/app/components/tx-list-item.js2
-rw-r--r--ui/app/conversion-util.js6
-rw-r--r--ui/app/send.js5
4 files changed, 15 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 6eb2fb2b2..c1b079a25 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -88,6 +88,7 @@ PendingTx.prototype.getTotal = function () {
fromCurrency: 'ETH',
toCurrency: 'USD',
numberOfDecimals: 2,
+ fromDenomination: 'WEI',
conversionRate,
})
const ETH = conversionUtil(amountBn, {
@@ -95,6 +96,7 @@ PendingTx.prototype.getTotal = function () {
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: 'ETH',
+ fromDenomination: 'WEI',
conversionRate,
numberOfDecimals: 6,
})
@@ -109,6 +111,7 @@ PendingTx.prototype.getTotal = function () {
fromCurrency: 'ETH',
toCurrency: 'USD',
numberOfDecimals: 2,
+ fromDenomination: 'WEI',
conversionRate,
})
const ETH = conversionUtil(amountBn, {
@@ -116,6 +119,7 @@ PendingTx.prototype.getTotal = function () {
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: 'ETH',
+ fromDenomination: 'WEI',
conversionRate,
numberOfDecimals: 6,
})
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js
index d45aea964..8422c02b9 100644
--- a/ui/app/components/tx-list-item.js
+++ b/ui/app/components/tx-list-item.js
@@ -60,6 +60,7 @@ TxListItem.prototype.getSendEtherTotal = function () {
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: 'USD',
+ fromDenomination: 'WEI',
numberOfDecimals: 2,
conversionRate,
})
@@ -68,6 +69,7 @@ TxListItem.prototype.getSendEtherTotal = function () {
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: 'ETH',
+ fromDenomination: 'WEI',
conversionRate,
numberOfDecimals: 6,
})
diff --git a/ui/app/conversion-util.js b/ui/app/conversion-util.js
index 847650758..b440aea7f 100644
--- a/ui/app/conversion-util.js
+++ b/ui/app/conversion-util.js
@@ -46,6 +46,9 @@ const toBigNumber = {
const toNormalizedDenomination = {
WEI: bigNumber => bigNumber.div(BIG_NUMBER_WEI_MULTIPLIER)
}
+const toSpecifiedDenomination = {
+ WEI: bigNumber => bigNumber.times(BIG_NUMBER_WEI_MULTIPLIER)
+}
const baseChange = {
hex: n => n.toString(16),
dec: n => n.toString(10),
@@ -80,6 +83,7 @@ const whenPropApplySetterMap = (prop, setterMap) => whenPredSetWithPropAndSetter
const converter = R.pipe(
whenPropApplySetterMap('fromNumericBase', toBigNumber),
whenPropApplySetterMap('fromDenomination', toNormalizedDenomination),
+ whenPropApplySetterMap('toDenomination', toSpecifiedDenomination),
whenPredSetWithPropAndSetter(fromAndToCurrencyPropsNotEqual, 'conversionRate', convert),
whenPredSetWithPropAndSetter(R.prop('ethToUSDRate'), 'ethToUSDRate', convert),
whenPredSetWithPropAndSetter(R.prop('numberOfDecimals'), 'numberOfDecimals', round),
@@ -93,6 +97,7 @@ const conversionUtil = (value, {
fromNumericBase,
toNumericBase,
fromDenomination,
+ toDenomination,
numberOfDecimals,
conversionRate,
ethToUSDRate,
@@ -102,6 +107,7 @@ const conversionUtil = (value, {
fromNumericBase,
toNumericBase,
fromDenomination,
+ toDenomination,
numberOfDecimals,
conversionRate,
ethToUSDRate,
diff --git a/ui/app/send.js b/ui/app/send.js
index 4e7fdb705..b14c48e56 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -400,15 +400,16 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
this.props.dispatch(addToAddressBook(recipient, nickname))
// TODO: need a clean way to integrate this into conversionUtil
- const sendConversionRate = this.props.currentCurrency === 'ETH'
+ const sendConversionRate = state.activeCurrency === 'ETH'
? this.props.conversionRate
: new BigNumber(1.0).div(this.props.conversionRate)
const sendAmount = conversionUtil(this.state.newTx.amount, {
fromNumericBase: 'dec',
toNumericBase: 'hex',
- fromCurrency: this.props.currentCurrency,
+ fromCurrency: state.activeCurrency,
toCurrency: 'ETH',
+ toDenomination: 'WEI',
conversionRate: sendConversionRate,
})