Releases: perawallet/connect
1.2.1
Fixes
- Revert version
1.2.0
signers
field changes
1.2.0
1.1.1
1.1.0
Changes
network
param has been removed from bothconstructor
andconnect
Fix
- "Missing or invalid topic field" error on
disconnect
event has been resolved. - Deprecated dependency
@json-rpc-tools/utils
has been removed. - Size of the bundle and performance of the animation mechanism has been optimized.
- A close button has been added for the Redirect modal.
- Flow for opening the Pera Web Wallet in the new tab has been improved.
1.0.7
Migrating to @perawallet/[email protected]
This guide will help you to upgrade your @perawallet/connect
version to 1.0.7
from 0.x.x
.
To get the latest version of @perawallet/connect
, please run the following command
npm install --save @perawallet/connect@latest
Breaking change
peraWallet.connector
If your app relies on peraWallet.connector
to check if there's any active connection, we've introduced a safer version of it. Please switch to peraWallet.isConnected
.
❌ Incorrect
if (peraWallet.connector?.connected) {
// do something
}
✅ Correct
if (peraWallet.isConnected) {
// do something
}
New
peraWallet.platform
Returns the platform of the active session. Possible responses: mobile | web | null
peraWallet.isConnected
To check if there's any active session regardless of platform. Possible responses: true | false
Pera Web Wallet
This version contains necessary updates for the upcoming release of the Pera Web Wallet.
Changelog
- React dependency removed, and the whole UI has been rewritten with WebComponents.
- Possible Wallet Connect glitches caused by NSUrlSession WebSocket on iOS fixed.
- Necessary updates for fully capable Pera Web Wallet included.
- Various bug fixes and improvements.
- Switched to the latest
algosdk
version. authAddr
is included in the transaction params
1.0.7
Migrating to @perawallet/[email protected]
This guide will help you to upgrade your @perawallet/connect
version to 1.0.7
from 0.x.x
.
To get the latest version of @perawallet/connect
, please run the following command
npm install --save @perawallet/connect@latest
Breaking change
peraWallet.connector
If your app relies on peraWallet.connector
to check if there's any active connection, we've introduced a safer version of it. Please switch to peraWallet.isConnected
.
❌ Incorrect
if (peraWallet.connector?.connected) {
// do something
}
✅ Correct
if (peraWallet.isConnected) {
// do something
}
New
peraWallet.platform
Returns the platform of the active session. Possible responses: mobile | web | null
peraWallet.isConnected
To check if there's any active session regardless of platform. Possible responses: true | false
Pera Web Wallet
This version contains necessary updates for the upcoming release of the Pera Web Wallet.
Changelog
- React dependency removed, and the whole UI has been rewritten with WebComponents.
- Possible Wallet Connect glitches caused by NSUrlSession WebSocket on iOS fixed.
- Necessary updates for fully capable Pera Web Wallet included.
- Various bug fixes and improvements.
- Switched to the latest
algosdk
version. authAddr
is included in the transaction params
1.0.4
Migrating to @perawallet/[email protected]
This guide will help you to upgrade your @perawallet/connect
version to 1.0.4
from 0.x.x
.
To get the latest version of @perawallet/connect
, please run the following command
npm install --save @perawallet/connect@latest
Breaking change
peraWallet.connector
If your app relies on peraWallet.connector
to check if there's any active connection, we've introduced a safer version of it. Please switch to peraWallet.isConnected
.
❌ Incorrect
if (peraWallet.connector?.connected) {
// do something
}
✅ Correct
if (peraWallet.isConnected) {
// do something
}
New
peraWallet.platform
Returns the platform of the active session. Possible responses: mobile | web | null
peraWallet.isConnected
To check if there's any active session regardless of platform. Possible responses: true | false
Pera Web Wallet
This version contains necessary updates for the upcoming release of the Pera Web Wallet.
Changelog
- React dependency removed, and the whole UI has been rewritten with WebComponents.
- Possible Wallet Connect glitches caused by NSUrlSession WebSocket on iOS fixed.
- Necessary updates for fully capable Pera Web Wallet included.
- Various bug fixes and improvements.
- Switched to the latest
algosdk
version. authAddr
is included in the transaction params
0.2.3
0.2.2
Merge pull request #41 from perawallet/next-release perawallet/[email protected]