aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/abstract/abstract_balance_and_proxy_allowance_fetcher.ts
blob: 857c6167f120a26e2a6eab1f5112b0ce7d09be0a (plain) (blame)
1
2
3
4
5
6
import { BigNumber } from '@0xproject/utils';

export abstract class AbstractBalanceAndProxyAllowanceFetcher {
    public abstract async getBalanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>;
    public abstract async getProxyAllowanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>;
}