Skip to content

Releases: provenance-io/walletconnect-js

v3.10.2

25 Apr 23:07
f256e89
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.10.1...v3.10.2

v3.10.1

24 Apr 15:37
91fdd15
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.10.0...v3.10.1

v3.10.0

22 Apr 18:07
b1b971b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.9.1...v3.10.0

v3.9.1

17 Apr 16:37
9465895
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.9.0...v3.9.1

v3.9.0

09 Apr 23:08
cd4ed88
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.8.2...v3.9.0

v3.8.2

08 Feb 22:06
a92a916
Compare
Choose a tag to compare
  • v3.8.2
  • Build issue remained and was due to package.json getting imported.
  • Fixed issue and created extra tests which will run on all pushes to ensure the example lib correctly builds without errors to prevent bugs like this getting through again.

v3.8.1

08 Feb 18:30
5896f59
Compare
Choose a tag to compare
  • v3.8.1
  • There were some side effects due to the changes in package.json.
  • After thinking it over, decided to revert the hot-reloading feature for the example app to instead have the example app import the wcjs lib the same way external dApps would import it. This means it needs to build on every change without hot reloading to get a better 1:1 representation.
  • PR will keep the other existing changes/improvements from 3.8.0

v3.8.0

06 Feb 18:13
8299e7c
Compare
Choose a tag to compare
  • v3.8.0
  • New local build commands/functionality for example apps
  • Hosted wallet now catches authUrlReceived event types and opens a new window for auth0 credentials

v3.7.2

29 Jan 21:13
41decb8
Compare
Choose a tag to compare
  • v3.7.2
  • New mobile direct connect QR code will work scanning from your camera app, no longer have to scan within the Figure Mobile Wallet.
  • QR Code is now an SVG.

v3.7.1

22 Jan 17:06
feaa48d
Compare
Choose a tag to compare
  • v3.7.1
  • Needed to save the value for iframeParentId into state and localStorage to know where to render iframes after a page reload or reconnection. Also to be able to know how to open the iframe for non connect methods.
  • Couple small updates to local demo site to match current test demo site (in the future far far away these will somehow always stay in sync).
  • Added new state value "connected: boolean". Just checks for status === "connected". Prevents dApps from having to do the === check and can just look for connected instead. (QoL)
  • Added window.wcjs object to instantly have access to state (nothing in here should need to be protected or private)
  • Connect method now directly points to init method instead of having its own code.