aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-27 06:34:35 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-27 06:34:35 +0800
commit86febc3cce1135d2345f0048c205c3c524a66733 (patch)
treee54be5853299798331ca9ca45d841e39be1b89f5 /packages/instant/src/util
parente1ae551560ad12501256fd5702dcd929baa84100 (diff)
downloaddexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar.gz
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar.bz2
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar.lz
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar.xz
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.tar.zst
dexon-sol-tools-86febc3cce1135d2345f0048c205c3c524a66733.zip
acccount for no address
Diffstat (limited to 'packages/instant/src/util')
-rw-r--r--packages/instant/src/util/address.ts2
-rw-r--r--packages/instant/src/util/balance.ts26
2 files changed, 18 insertions, 10 deletions
diff --git a/packages/instant/src/util/address.ts b/packages/instant/src/util/address.ts
index 97ed30a00..14d42d8c0 100644
--- a/packages/instant/src/util/address.ts
+++ b/packages/instant/src/util/address.ts
@@ -1,6 +1,6 @@
import { web3Wrapper } from '../util/web3_wrapper';
-export const getBestAddress = async (): Promise<string> => {
+export const getBestAddress = async (): Promise<string | undefined> => {
const addresses = await web3Wrapper.getAvailableAddressesAsync();
return addresses[0];
};
diff --git a/packages/instant/src/util/balance.ts b/packages/instant/src/util/balance.ts
index d442da9e0..954dc7156 100644
--- a/packages/instant/src/util/balance.ts
+++ b/packages/instant/src/util/balance.ts
@@ -1,30 +1,38 @@
import { BuyQuote } from '@0x/asset-buyer';
import { Web3Wrapper } from '@0x/web3-wrapper';
+import * as _ from 'lodash';
import { Dispatch } from 'redux';
import { ZeroExInstantError } from '../types';
import { errorUtil } from './error';
+const hasSufficientFunds = async (takerAddress: string | undefined, buyQuote: BuyQuote, web3Wrapper: Web3Wrapper) => {
+ if (_.isUndefined(takerAddress)) {
+ return false;
+ }
+ const balanceWei = await web3Wrapper.getBalanceInWeiAsync(takerAddress);
+ return balanceWei >= buyQuote.worstCaseQuoteInfo.totalEthAmount;
+};
+
export const balanceUtil = {
/**
* Checks to see if user has enough balance to buy assets
* If they do not, flash an error and return false
* If they do, return true
*/
- checkSufficientBalanceAndFlashError: async (
- takerAddress: string,
+ checkInsufficientEthBalanceAndFlashError: async (
+ takerAddress: string | undefined,
buyQuote: BuyQuote,
web3Wrapper: Web3Wrapper,
dispatch: Dispatch,
) => {
- const balanceWei = await web3Wrapper.getBalanceInWeiAsync(takerAddress);
-
- if (balanceWei < buyQuote.worstCaseQuoteInfo.totalEthAmount) {
- const balanceError = new Error(ZeroExInstantError.InsufficientBalance);
- errorUtil.errorFlasher.flashNewError(dispatch, balanceError);
- return false;
+ const hasEnoughFunds = await hasSufficientFunds(takerAddress, buyQuote, web3Wrapper);
+ if (hasEnoughFunds) {
+ return true;
}
- return true;
+ const balanceError = new Error(ZeroExInstantError.InsufficientBalance);
+ errorUtil.errorFlasher.flashNewError(dispatch, balanceError);
+ return false;
},
};