aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/balance.ts
blob: f2271495b938b03b6482066b8e3285379f0f043f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { BuyQuote } from '@0x/asset-buyer';
import { Web3Wrapper } from '@0x/web3-wrapper';
import * as _ from 'lodash';

export const balanceUtil = {
    hasSufficientEth: async (takerAddress: string | undefined, buyQuote: BuyQuote, web3Wrapper: Web3Wrapper) => {
        if (_.isUndefined(takerAddress)) {
            return false;
        }
        const balanceWei = await web3Wrapper.getBalanceInWeiAsync(takerAddress);
        return balanceWei.gte(buyQuote.worstCaseQuoteInfo.totalEthAmount);
    },
};