Files
protocol/packages/order-utils
Jacob Evans 622509c508 [Order-utils] Order is valid when maker amount is very small
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.
2018-08-15 13:06:32 +10:00
..
2018-05-11 18:50:50 +02:00
2018-08-13 18:34:37 -07:00
2018-08-14 11:02:04 -07:00

@0xproject/order-utils

0x order-related utilities for those developing on top of 0x protocol.

Read the Documentation.

Installation

yarn add @0xproject/order-utils

If your project is in TypeScript, add the following to your tsconfig.json:

"compilerOptions": {
    "typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"],
}

Contributing

We welcome improvements and fixes from the wider community! To report bugs within this package, please create an issue in this repository.

Please read our contribution guidelines before getting started.

Install dependencies

If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them:

yarn config set workspaces-experimental true

Then install dependencies

yarn install

Build

To build this package and all other monorepo packages that it depends on, run the following from the monorepo root directory:

PKG=@0xproject/order-utils yarn build

Or continuously rebuild on change:

PKG=@0xproject/order-utils yarn watch

Clean

yarn clean

Lint

yarn lint