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

export abstract class AbstractOrderFilledCancelledFetcher {
    public abstract async getFilledTakerAmountAsync(orderHash: string): Promise<BigNumber>;
    public abstract async isOrderCancelledAsync(orderHash: string): Promise<boolean>;
    public abstract getZRXAssetData(): string;
}