Releases: provenance-io/walletconnect-js
Releases · provenance-io/walletconnect-js
v3.10.2
What's Changed
- bug: Fix dynamic link in prod mobile wallet by @VigM-Figure in #214
Full Changelog: v3.10.1...v3.10.2
v3.10.1
What's Changed
- bug(wcjs) - Fix shorten QR for non mobile wallets by @VigM-Figure in #213
Full Changelog: v3.10.0...v3.10.1
v3.10.0
What's Changed
- feat(wcjs) - QR Code Options by @VigM-Figure in #212
Full Changelog: v3.9.1...v3.10.0
v3.9.1
v3.9.0
What's Changed
- Update test command by @VigM-Figure in #208
- feat(WalletConnectJS) - Shortlink QR Code by @VigM-Figure in #210
Full Changelog: v3.8.2...v3.9.0
v3.8.2
- 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
- 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
- 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
- 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
- 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.