Skip to content

Releases: TxnLab/use-wallet

v3.5.0

18 Sep 08:42
Compare
Choose a tag to compare

Changes

Features

import { LogLevel, NetworkId, WalletManager } from '@txnlab/use-wallet'

// Set `logLevel` option to `LogLevel` enum
const walletManager = new WalletManager({
  wallets: [...],
  network: NetworkId.TESTNET,
  options: {
    logLevel: LogLevel.DEBUG // DEBUG, INFO, WARN, or ERROR
  },
})

// Or, set `debug: true` for convenience
const walletManager = new WalletManager({
  wallets: [...],
  network: NetworkId.TESTNET,
  options: {
    debug: true // same as { logLevel: LogLevel.DEBUG }
  },
})

Fixes

  • Correct DEBUG log level handling in WalletManager by @drichar in #265

Other Changes

Full Changelog: v3.4.0...v3.5.0

Packages

  • @txnlab/use-wallet@3.5.0
  • @txnlab/use-wallet-react@3.5.0
  • @txnlab/use-wallet-solid@3.5.0
  • @txnlab/use-wallet-vue@3.5.0

v3.4.0

13 Sep 08:30
Compare
Choose a tag to compare

Changes

Features

  • Add resetNetwork option to WalletManager by @drichar in #260

Fixes

Other Changes

New Contributors

Full Changelog: v3.3.0...v3.4.0

Packages

  • @txnlab/use-wallet@3.4.0
  • @txnlab/use-wallet-react@3.4.0
  • @txnlab/use-wallet-solid@3.4.0
  • @txnlab/use-wallet-vue@3.4.0

v3.3.0

12 Sep 03:02
Compare
Choose a tag to compare

Changes

Features

  • Add fnet to list of valid networks and update nodely urls to new versions. by @pbennett in #258

Fixes

  • Update algosdk import to resolve CommonJS module issue by @drichar in #259

New Contributors

Full Changelog: v3.2.1...v3.3.0

Packages

  • @txnlab/use-wallet@3.3.0
  • @txnlab/use-wallet-react@3.3.0
  • @txnlab/use-wallet-solid@3.3.0
  • @txnlab/use-wallet-vue@3.3.0

v3.2.1

06 Sep 03:37
Compare
Choose a tag to compare

Changes

Documentation

Other Changes

  • Update Renovate configuration to no longer ignore examples/** projects' dependencies
  • Update all dependencies to latest versions, including algosdk (v2.9.0), @tanstack/store (v0.5.5), and typescript (v5.5.4)
  • Improve dev/build process with new development scripts by @drichar in #253

Full Changelog: v3.2.0...v3.2.1

Packages

  • @txnlab/use-wallet@3.2.1
  • @txnlab/use-wallet-react@3.2.1
  • @txnlab/use-wallet-solid@3.2.1
  • @txnlab/use-wallet-vue@3.2.1

v3.2.0

03 Sep 22:00
Compare
Choose a tag to compare

Changes

Features

  • Core: Move the algod client to store by @acfunk in #224

Full Changelog: v3.1.6...v3.2.0

Packages

  • @txnlab/use-wallet@3.2.0
  • @txnlab/use-wallet-react@3.2.0
  • @txnlab/use-wallet-solid@3.2.0
  • @txnlab/use-wallet-vue@3.2.0

v3.1.6

29 Aug 14:29
Compare
Choose a tag to compare

Changes

Fixes

  • Core: Initialize manager with active network from persisted state by @acfunk in #221

Full Changelog: v3.1.5...v3.1.6

Packages

  • @txnlab/use-wallet@3.1.6
  • @txnlab/use-wallet-react@3.1.6
  • @txnlab/use-wallet-solid@3.1.6
  • @txnlab/use-wallet-vue@3.1.6

v3.1.5

21 Aug 04:12
Compare
Choose a tag to compare

Changes

  • Core: Immutable state updates in store mutation functions by @drichar in #220

Full Changelog: v3.1.4...v3.1.5

Packages

  • @txnlab/use-wallet@3.1.5
  • @txnlab/use-wallet-react@3.1.5
  • @txnlab/use-wallet-solid@3.1.5
  • @txnlab/use-wallet-vue@3.1.5

v3.1.4

19 Aug 22:36
Compare
Choose a tag to compare

Changes

  • WalletConnect: Handle untyped byte arrays returned by sign request by @drichar in #218

Full Changelog: v3.1.3...v3.1.4

Packages

  • @txnlab/use-wallet@3.1.4
  • @txnlab/use-wallet-react@3.1.4
  • @txnlab/use-wallet-solid@3.1.4
  • @txnlab/use-wallet-vue@3.1.4

v3.1.3

10 Aug 08:11
Compare
Choose a tag to compare

Changes

  • Next.js Example: Resolve Webpack "module not found" errors by @drichar in #212

Full Changelog: v3.1.2...v3.1.3

Packages

  • @txnlab/use-wallet@3.1.3
  • @txnlab/use-wallet-react@3.1.3
  • @txnlab/use-wallet-solid@3.1.3
  • @txnlab/use-wallet-vue@3.1.3

v3.1.2

09 Aug 08:19
Compare
Choose a tag to compare

Changes

This release reverts the changes in #211

The fix for the Webpack "module not found" errors in https://github.com/TxnLab/use-wallet/releases/tag/v3.1.1 introduced a different bug, so this release rolls back those changes and the issue will be addressed in a future release.

Full Changelog: v3.1.1...v3.1.2