Skip to content

Releases: perawallet/connect

1.3.5

10 Oct 06:36
92659d7
Compare
Choose a tag to compare

What's Changed

New

  • Added the isPeraDiscoverBrowser flag to enable auto-connection in the Pera Discover Browser. This flag checks if the app is opened in the Pera Discover Browser and returns a boolean.
Before
<button onClick={handleClickConnectWallet}>Connect wallet</button>

function handleClickConnectWallet() {
  openWalletOptions();
  // Display wallet options
}
After
<button onClick={handleClickConnectWallet}>Connect wallet</button>

async function handleClickConnectWallet() {
  if (peraWallet.isPeraDiscoverBrowser) {
    const accounts = await peraWallet.connect();
    // Handle connection success
  } else {
    openWalletOptions();
    // Display wallet options
  }
}

1.3.4

28 Nov 10:14
0b02f7c
Compare
Choose a tag to compare

What's Changed

  • Remove screen size conditions to handle QR code/deep-link button depending on the device by @yasincaliskan in #159

Full Changelog: 1.3.3...1.3.4

1.3.3

04 Oct 13:26
054b66b
Compare
Choose a tag to compare
  • Converted arbitrary data to base64 to communicate better with mobile wallet

What's Changed

Full Changelog: 1.3.2...1.3.3

1.3.2

19 Sep 11:56
4e70907
Compare
Choose a tag to compare
  • Removed the embedded web wallet temporarily
  • Made dynamic wallet options

Full Changelog: 1.3.1...1.3.2

1.3.1

24 Jul 09:49
0ad6085
Compare
Choose a tag to compare
  • Compact mode is added for widgets, small screens or containers.

What's Changed

Full Changelog: 1.2.4...1.3.1

1.2.4

04 Jul 13:24
0b2b756
Compare
Choose a tag to compare
  • Arbitrary data signing flow has been added
  • Package version number has been added to the modal header

What's Changed

Full Changelog: 1.2.3...1.2.4

1.2.3

12 Apr 14:04
097b959
Compare
Choose a tag to compare
  • Fixed a bug on custom WalletConnect bridge configuration. #129

1.2.2

05 Apr 12:14
615e8fa
Compare
Choose a tag to compare
  • Low priority Dependabot suggestions resolved

1.2.1

22 Mar 09:09
9b4c4e9
Compare
Choose a tag to compare

Fixes

  • Revert version 1.2.0 signers field changes

1.2.0

16 Mar 10:19
a9beee7
Compare
Choose a tag to compare

New

  • algosdk version upgrade -> 2.1.0

Fixes

  • Fix for a potential issue for the dApps that use signers field
  • Fix for connectivity issues that we are facing with web wallet, this was affecting mostly slow internet users