This repository was archived by the owner on Sep 5, 2023. It is now read-only.
Releases: BitskiCo/bitski-node
Releases · BitskiCo/bitski-node
Bug Fixes
Support for modern versions of web3 1.0
This version restores compatibility with the latest versions of web3.js.
Support for current web3 versions
Note: this is a beta release. A production-ready release will be submitted after further testing.
- Restores compatibility with current versions of web3, after breaking changes in web3 version 1.0.0 beta 48
0.6.0
New Features
- Add ProviderManager for convenient use with truffle
- Adds
disableValidationoption to disable transaction validator (via bitski-provider@0.6.0). This is primarily useful if you are using App Wallet to submit transactions from multiple instances.
0.5.0
New Features
- You can now pass additional HTTP headers when requesting a provider
- Added interfaces for ProviderOptions and Credentials for better clarity and type safety
Bug Fixes
- Fixes an issue where additional oauth settings were not being passed to the correct place
Deprecations & API changes
- The option for specifying a different network has been renamed from
networktonetworkNameto match our browser SDK.networkwill continue to work for 0.5.x but will be removed in 0.6.x.
const Bitski = require("bitski");
const provider = Bitski.getProvider('CLIENT-ID', { networkName: 'rinkeby' });Enable eth_signTransaction
New Features
signTransaction()is now supported for app wallet
Improved credential error handling
This release improves the error handling when initializing a provider by ensuring that the provided options (which may include sensitive secrets) are not logged.
Token invalidation
New Features
- Bitski will automatically purge access tokens that come back with unauthorized responses
Improvements for truffle
New Features
- Better support for multiple in-flight transactions (truffle migrate for example) with improved nonce tracker
- Pulls in changes from bitski-provider version
0.3.0
Fix for in-flight cache requests
Bug Fixes
- Updates bitski-provider dependency to 0.2.3
- Updates provider-engine to fix issue where simultaneous requests that get cached may be modified and respond unexpectedly.