Skip to content

Releases: torusresearch/torus.js

v4.2.4

18 Jan 10:26
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.2.3...v4.2.4

v4.2.3

02 Dec 00:21
Compare
Choose a tag to compare

Update deps
Full Changelog: v4.2.2...v4.2.3

v4.2.2

01 Dec 13:18
Compare
Choose a tag to compare

Update deps
Full Changelog: v4.2.1...v4.2.2

v4.2.1

01 Dec 12:56
Compare
Choose a tag to compare

Update deps

Full Changelog: v4.2.0...v4.2.1

v4.2.0

17 Nov 11:16
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.1.0...v4.2.0

v4.1.0

10 Nov 09:32
Compare
Choose a tag to compare

Fix types

Full Changelog: v4.0.0...v4.1.0

v4.0.0

10 Nov 07:34
Compare
Choose a tag to compare

What's Changed

  • 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

21 Oct 11:07
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v3.1.0

v3.0.0

14 Oct 09:04
Compare
Choose a tag to compare

Add OneKey (v2) account support.
Add ESM build (Rollup-based).

v2.5.0

07 Sep 06:50
Compare
Choose a tag to compare

The following changes have been made in this release:

  • Expose ts types for class variables
  • Update deps