aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/abstract/order_filled_cancelled_fetcher.ts
blob: 81ae04b9c02435f82e55efb2b8e65a1f05acc0e1 (plain) (blame)
1
2
3
4
5
6
import { BigNumber } from '@0xproject/utils';

export abstract class OrderFilledCancelledFetcher {
    public abstract async getFilledTakerAmountAsync(orderHash: string): Promise<BigNumber>;
    public abstract async getCancelledTakerAmountAsync(orderHash: string): Promise<BigNumber>;
}