aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/protocol/test/utils/types.ts
blob: d18cd0599f8a0a976050a2dca8e609845e0d5113 (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;
}