Skip to content

3.0.0-beta.8

Pre-release
Pre-release
Compare
Choose a tag to compare
@drichar drichar released this 01 Jun 06:05
· 27 commits to v3 since this release

What's Changed

Features

  • Core: Migrate Pera Wallet provider to Pera Connect v2 by @drichar in #179

Full Changelog: v3.0.0-beta.7...v3.0.0-beta.8

⚠️ BREAKING CHANGES

This release includes potentially breaking changes. If your application supports Pera Wallet you will need to follow these steps to upgrade:

  1. Uninstall @perawallet/connect
  2. Install @perawallet/connect-beta
  3. Upgrade to @txnlab/use-wallet-*@3.0.0-beta.8
  4. Obtain a WalletConnect project ID from WalletConnect Cloud
  5. Pass the project ID to the projectId option (required) for Pera Wallet in your application:
const walletManager = new WalletManager({
  wallets: [
    {
      id: WalletId.PERA,
      options: { projectId: '<YOUR_PROJECT_ID>' }
    },
    // ...
  ],
  // ...
})

Packages