- Breaking change Port stellar-sdk to Typescript. There should be no changes
in functionality (Besides TS type definitions). But because the build process
has changed, there could be some unanticipated bugs. Here's a description of
the type definitions that changed:- Types that were once in the
Servernamespace but didn't actually deal with
theServerclass have been broken out into a new namespace,ServerApi.
So, for example,Server.AccountRecord->ServerApi.AccountRecord. Server.AccountResponseis out of theServernamespace ->
AccountResponseServer.*CallBuilderis out of theServernamespace ->*CallBuilderHorizonResponseAccountis nowHorizon.AccountResponse
- Types that were once in the
- Upgrade Webpack to v4.
- Add support for providing app name and version to request headers.
- (NPM wouldn't accept the 2.0.0 version, so we're publishing to 2.0.1.)
Many thanks to @Ffloriel and @Akuukis for their help with this release!