@0x/types: Add OrderInfo type.

This commit is contained in:
Lawrence Forman 2019-07-31 22:19:56 -04:00
parent 898213bb85
commit 8670fbe2ae
2 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"pr": 1761 "pr": 1761
}, },
{ {
"note": "Add `FillResults`, `MatchedFillResults`, `BatchMatchedFillResults` types", "note": "Add `OrderInfo`, `FillResults`, `MatchedFillResults`, `BatchMatchedFillResults` types",
"pr": "TODO" "pr": "TODO"
} }
] ]

View File

@ -831,3 +831,9 @@ export interface BatchMatchedFillResults {
profitInLeftMakerAsset: BigNumber; profitInLeftMakerAsset: BigNumber;
profitInRightMakerAsset: BigNumber; profitInRightMakerAsset: BigNumber;
} }
export interface OrderInfo {
orderStatus: number;
orderHash: string;
orderTakerAssetFilledAmount: BigNumber;
}