Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Releases: 0xProject/0x-monorepo

0x.js v0.22.5

07 Nov 23:04
Compare
Choose a tag to compare

Re-publish v0.22.4 to fix publishing issue

0x.js v0.22.4

25 Oct 20:10
fec8f8a
Compare
Choose a tag to compare
  • Upgraded bignumber.js to a new version that ships with native typings

0x.js v0.22.3

25 Oct 09:59
fa3e88c
Compare
Choose a tag to compare
  • Fixed an issue with new version of testrpc and unlimited proxy allowance (#199)

0x.js v0.22.2

24 Oct 18:32
e17f697
Compare
Choose a tag to compare
  • Fixed rounding of maker fill amount and incorrect validation of partial fees (#197)

0x.js v0.22.0

16 Oct 09:14
7ae78ca
Compare
Choose a tag to compare
  • Started using OrderFillRequest interface instead of OrderFillOrKillRequest interface for zeroEx.exchange.batchFillOrKill (#187)
  • Removed OrderFillOrKillRequest (#187)

0x.js v0.21.4

13 Oct 16:07
df5fe4a
Compare
Choose a tag to compare
  • Made 0x.js more type-safe by making getLogsAsync and subscribe/subscribeAsync generics parametrized with arg type (#194)

0x.js v0.21.3

12 Oct 14:58
ba654c0
Compare
Choose a tag to compare
  • Fixed a bug causing order fills to throw INSUFFICIENT_TAKER_ALLOWANCE (#193)

0x.js v0.21.2

11 Oct 15:52
c23ea1e
Compare
Choose a tag to compare
  • Exported ContractEventArg as a public type (#190)

0x.js v0.21.1

11 Oct 12:20
22bc7cd
Compare
Choose a tag to compare
  • Fixed a bug in subscriptions (#189)

0x.js v0.21.0

10 Oct 12:34
233f978
Compare
Choose a tag to compare
  • Complete rewrite of subscription logic (#182)
    • Subscriptions no longer return historical logs. If you want them - use getLogsAsync
    • Subscriptions now use ethereumjs-blockstream under the hood
      • Subscriptions correctly handle block re-orgs (forks)
      • Subscriptions correctly backfill logs (connection problems)
      • They no longer setup filters on the underlying nodes, so you can use them with infura without a filter Subprovider
    • Removed ContractEventEmitter and added LogEvent
    • Renamed zeroEx.token.subscribeAsync to zeroEx.token.subscribe
    • Added zeroEx.token.unsubscribe and zeroEx.exchange.unsubscribe
    • Renamed zeroEx.exchange.stopWatchingAllEventsAsync to zeroEx.exhange.unsubscribeAll
    • Renamed zeroEx.token.stopWatchingAllEventsAsync to zeroEx.token.unsubscribeAll
  • Fixed the batch fills validation by emulating all balance & proxy allowance changes (#185)