Upgrade guide from v2 to v3
How to upgrade our JS SDK to new major version
v3 changelog
Here is the high level changelog of the v3:
The Kiln class now exposes a type safe HTTP client that exposes all Kiln Connect endpoints available. The client is generated from our OpenAPI specs. The OpenAPI typescript schema is also exposed so you can benefit from all type definitions. The schema and SDK will be updated frequently with newly added endpoints.
The fireblocks raw signing feature is now under the fireblocks service exposed by the Kiln class. A sign method is available for all protocols we support.
Upgrade from 2.X to 3.X
Update your dependencies:
Update calls to use the http client instead of specific protocol object.
2.X:
3.X:
Last updated