Releases: torusresearch/torus.js
Releases · torusresearch/torus.js
v4.2.4
What's Changed
- Error msgs when not to try key assign again by @chaitanyapotti in #64
Full Changelog: v4.2.3...v4.2.4
v4.2.3
Update deps
Full Changelog: v4.2.2...v4.2.3
v4.2.2
Update deps
Full Changelog: v4.2.1...v4.2.2
v4.2.1
Update deps
Full Changelog: v4.2.0...v4.2.1
v4.2.0
What's Changed
- Fix locking and add locks for getOrSetNonce by @chaitanyapotti in #61
Full Changelog: v4.1.0...v4.2.0
v4.1.0
Fix types
Full Changelog: v4.0.0...v4.1.0
v4.0.0
What's Changed
- Feat/get user type by @himanshuchawla009 in #60
- getUserTypeAndAddress function added to do openlogin key lookups
- keylookup and keyAssign functions exported
- torus class no longer exported by default (This means while using require, you should use .default)
Full Changelog: v3.1.0...v4.0.0
Migration Notes:
please make the following changes
umd build:
change from
const torusUtils= new TorusUtils();
to
const torusUtils = new TorusUtils.default();
node build:
change from
const TorusUtils = require("@toruslabs/torus.js");
to
const TorusUtils = require("@toruslabs/torus.js").default;
The default build is now esm which would be picked by bundlers
v3.1.0
What's Changed
- enable one key variable made public in types by @himanshuchawla009 in #58
Full Changelog: v3.0.0...v3.1.0
v3.0.0
v2.5.0
The following changes have been made in this release:
- Expose ts types for class variables
- Update deps