diff options
Diffstat (limited to 'packages/0x.js/src/fetchers')
-rw-r--r-- | packages/0x.js/src/fetchers/simple_balance_and_proxy_allowance_fetcher.ts (renamed from packages/0x.js/src/fetchers/simple_balance_and_allowance_fetcher.ts) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/src/fetchers/simple_balance_and_allowance_fetcher.ts b/packages/0x.js/src/fetchers/simple_balance_and_proxy_allowance_fetcher.ts index 2aa1cc2b7..877f07a22 100644 --- a/packages/0x.js/src/fetchers/simple_balance_and_allowance_fetcher.ts +++ b/packages/0x.js/src/fetchers/simple_balance_and_proxy_allowance_fetcher.ts @@ -1,10 +1,10 @@ import { BlockParamLiteral } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; -import {BalanceAndAllowanceFetcher} from '../abstract/balance_and_allowance_fetcher'; +import {BalanceAndProxyAllowanceFetcher} from '../abstract/balance_and_proxy_allowance_fetcher'; import {TokenWrapper} from '../contract_wrappers/token_wrapper'; -export class SimpleBalanceAndAllowanceFetcher implements BalanceAndAllowanceFetcher { +export class SimpleBalanceAndProxyAllowanceFetcher implements BalanceAndProxyAllowanceFetcher { private _token: TokenWrapper; private _defaultBlock: BlockParamLiteral; constructor(token: TokenWrapper, defaultBlock: BlockParamLiteral) { |