aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/protocol/test/utils/types.ts
blob: b4cd88673feb929118f6cc40bbb4dc24e10c33a9 (plain) (blame)
1
2
3
4
5
6
7
8
import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0x/utils';

export interface AbiDecodedFillOrderData {
    order: SignedOrder;
    akerAssetFillAmount: BigNumber;
    signature: string;
}