aboutsummaryrefslogblamecommitdiffstats
path: root/packages/0x.js/src/abstract/balance_and_proxy_allowance_fetcher.ts
blob: c357f8447062f9312c4382ec88d4f4c4b5ed2911 (plain) (tree)
1
2
3
4
5
6

                                             
                                                       


                                                                                                                
import { BigNumber } from '@0xproject/utils';

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