github stellar/js-stellar-sdk v0.9.1

latest releases: v15.1.0, v15.0.1, v14.6.1...
7 years ago

Breaking changes

  • stellar-sdk is now using native Promise instead of bluebird. The catch function is different. Instead of:

    .catch(StellarSdk.NotFoundError, function (err) { /* ... */ })

    please use the following snippet:

    .catch(function (err) {
      if (err instanceof StellarSdk.NotFoundError) { /* ... */ }
    })
  • We no longer support IE 11, Firefox < 42, Chrome < 49.

Changes

  • Fixed _ is undefined bug.
  • Minified browser build is around 130 KB smaller! 🎊

Don't miss a new js-stellar-sdk release

NewReleases is sending notifications on new releases.