aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/test/order_state_utils_test.ts
Commit message (Collapse)AuthorAgeFilesLines
* Fix validateOrderFillableOrThrowAsync method so it also checks order ↵Fabio Berger2018-11-091-1/+2
| | | | signature, cancelled, cancelledUpTo, and throws helpful error messages
* chore: change package org from 0xproject to 0xJacob Evans2018-10-181-1/+1
|
* Add transactionHash to OrderState and emit it from OrderWatcher subscriptionFabio Berger2018-09-251-0/+20
|
* Rename OrderAlreadyCancelledOrFilled -> OrderCancelled.Jacob Evans2018-08-161-1/+3
| | | | Remove try catch of throwing errors in favour of returning the Errors in a OrderValidationResult
* [Order-utils] Order is valid when maker amount is very smallJacob Evans2018-08-151-0/+122
Previously our min fillable calculation would throw a rounding error when encountering a valid order (with a small maker amount). This was inconsistent with the on-chain logic which allowed this order to be filled.