Skip to content

deps(deps): bump the wallet group across 1 directory with 4 updates - #441

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/wallet-3fc74b491f
Open

deps(deps): bump the wallet group across 1 directory with 4 updates#441
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/wallet-3fc74b491f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Bumps the wallet group with 4 updates in the / directory: @reown/appkit, @reown/appkit-adapter-wagmi, viem and wagmi.

Updates @reown/appkit from 1.8.19 to 1.8.22

Release notes

Sourced from @​reown/appkit's releases.

@​reown/appkit-controllers@​1.8.22

Patch Changes

  • #5697 6b9c313 Thanks @​enesozturk! - Add a headless read for the WalletConnect URI, so a host can render a QR without the useAppKitWallets React hook.

    The AppKit instance now exposes getWalletConnectUri() — returning { wcUri, wcError, wcFetchingUri } — and subscribeWalletConnectUri(). Both read the connection layer directly (mirroring the existing getWalletList() / subscribeWalletList() pair), so a headless host gets the URI ungated through the instance without importing @reown/appkit-controllers (which can otherwise resolve to a different valtio singleton). This replaces the connection-level subscribeConnections, which is gated behind the multiWallet remote feature and so can't serve the URI for a single-wallet QR.

    Breaking: the imperative pre-fetch trigger previously named getWalletConnectUri() is renamed to prefetchWalletConnectUri(), freeing getWalletConnectUri() for the new read.

  • #5701 fb09a6d Thanks @​enesozturk! - Add headless reset methods for the WalletConnect URI + connecting-wallet state.

    The AppKit instance now exposes resetWalletConnectUri() and resetConnectingWallet() — thin passthroughs to HeadlessWalletUtil.resetWcUri() / resetConnectingWallet(). A headless host that reads the URI via getWalletConnectUri() can now clear it (e.g. when a QR is dismissed or a connection is cancelled) through the instance, without importing @reown/appkit-controllers. This completes the headless WalletConnect-URI surface alongside getWalletConnectUri / subscribeWalletConnectUri / prefetchWalletConnectUri.

  • #5695 a4b2d2f Thanks @​enesozturk! - Expose the headless wallet list imperatively on the AppKit client, so a non-React host can list / search / connect wallets without the useAppKitWallets React hook.

    New AppKit instance methods: fetchWallets(options?), getWalletList(), subscribeWalletList(cb), getWalletConnectUri(options?), and connectWallet(wallet, namespace?, options?). The shared imperative logic lives in a new HeadlessWalletUtil (@reown/appkit-controllers), which both the client methods and the React hook can use — one tested code path for headless wallet listing, search, pagination, the WalletConnect URI, and programmatic connect (injected / API / mobile-deeplink).

  • #5694 1c17897 Thanks @​enesozturk! - Fixed TRON tron_signTransaction payload shape to respect the wallet's tron_method_version session property. The connector now sends the spec-mandated legacy nested transaction.transaction shape by default, and the simplified flat shape only when the wallet advertises tron_method_version: "v1" in sessionProperties.

  • Updated dependencies [6b9c313, fb09a6d, a4b2d2f, 1c17897]:

    • @​reown/appkit-common@​1.8.22
    • @​reown/appkit-wallet@​1.8.22

@​reown/appkit-adapter-ton@​1.8.22

Patch Changes

  • #5697 6b9c313 Thanks @​enesozturk! - Add a headless read for the WalletConnect URI, so a host can render a QR without the useAppKitWallets React hook.

    The AppKit instance now exposes getWalletConnectUri() — returning { wcUri, wcError, wcFetchingUri } — and subscribeWalletConnectUri(). Both read the connection layer directly (mirroring the existing getWalletList() / subscribeWalletList() pair), so a headless host gets the URI ungated through the instance without importing @reown/appkit-controllers (which can otherwise resolve to a different valtio singleton). This replaces the connection-level subscribeConnections, which is gated behind the multiWallet remote feature and so can't serve the URI for a single-wallet QR.

    Breaking: the imperative pre-fetch trigger previously named getWalletConnectUri() is renamed to prefetchWalletConnectUri(), freeing getWalletConnectUri() for the new read.

  • #5701 fb09a6d Thanks @​enesozturk! - Add headless reset methods for the WalletConnect URI + connecting-wallet state.

    The AppKit instance now exposes resetWalletConnectUri() and resetConnectingWallet() — thin passthroughs to HeadlessWalletUtil.resetWcUri() / resetConnectingWallet(). A headless host that reads the URI via getWalletConnectUri() can now clear it (e.g. when a QR is dismissed or a connection is cancelled) through the instance, without importing @reown/appkit-controllers. This completes the headless WalletConnect-URI surface alongside getWalletConnectUri / subscribeWalletConnectUri / prefetchWalletConnectUri.

  • #5695 a4b2d2f Thanks @​enesozturk! - Expose the headless wallet list imperatively on the AppKit client, so a non-React host can list / search / connect wallets without the useAppKitWallets React hook.

    New AppKit instance methods: fetchWallets(options?), getWalletList(), subscribeWalletList(cb), getWalletConnectUri(options?), and connectWallet(wallet, namespace?, options?). The shared imperative logic lives in a new HeadlessWalletUtil (@reown/appkit-controllers), which both the client methods and the React hook can use — one tested code path for headless wallet listing, search, pagination, the WalletConnect URI, and programmatic connect (injected / API / mobile-deeplink).

  • #5694 1c17897 Thanks @​enesozturk! - Fixed TRON tron_signTransaction payload shape to respect the wallet's tron_method_version session property. The connector now sends the spec-mandated legacy nested transaction.transaction shape by default, and the simplified flat shape only when the wallet advertises tron_method_version: "v1" in sessionProperties.

  • Updated dependencies [6b9c313, fb09a6d, a4b2d2f, 1c17897]:

    • @​reown/appkit-utils@​1.8.22
    • @​reown/appkit@​1.8.22
    • @​reown/appkit-common@​1.8.22
    • @​reown/appkit-polyfills@​1.8.22
    • @​reown/appkit-controllers@​1.8.22

@​reown/appkit-common@​1.8.22

... (truncated)

Commits
  • dac1a5f chore: version packages (#5702)
  • fb09a6d feat(appkit): expose headless resetWalletConnectUri + resetConnectingWallet (...
  • 6b9c313 feat(controllers): expose WalletConnect URI on public state for headless QR (...
  • a4b2d2f feat: expose headless wallet list imperatively on the AppKit client (#5695)
  • 1c17897 fix(tron): respect wallet tron_method_version for tron_signTransaction payloa...
  • 32af290 Merge release/1.8.21 back to main (#5689)
  • ea99fd1 feat(controllers): add includePayOnly and sort options to fetchWallets (#5685)
  • 7726bcd chore: version packages (#5671) (#5673)
  • bf2209b fix: consolidated bug fixes batch (#5646)
  • cc75433 fix: honor enableInjected/enableEIP6963 and dedupe injected wallets (#5655)
  • Additional commits viewable in compare view

Updates @reown/appkit-adapter-wagmi from 1.8.19 to 1.8.22

Release notes

Sourced from @​reown/appkit-adapter-wagmi's releases.

@​reown/appkit-adapter-wagmi@​1.8.22

Patch Changes

  • #5697 6b9c313 Thanks @​enesozturk! - Add a headless read for the WalletConnect URI, so a host can render a QR without the useAppKitWallets React hook.

    The AppKit instance now exposes getWalletConnectUri() — returning { wcUri, wcError, wcFetchingUri } — and subscribeWalletConnectUri(). Both read the connection layer directly (mirroring the existing getWalletList() / subscribeWalletList() pair), so a headless host gets the URI ungated through the instance without importing @reown/appkit-controllers (which can otherwise resolve to a different valtio singleton). This replaces the connection-level subscribeConnections, which is gated behind the multiWallet remote feature and so can't serve the URI for a single-wallet QR.

    Breaking: the imperative pre-fetch trigger previously named getWalletConnectUri() is renamed to prefetchWalletConnectUri(), freeing getWalletConnectUri() for the new read.

  • #5701 fb09a6d Thanks @​enesozturk! - Add headless reset methods for the WalletConnect URI + connecting-wallet state.

    The AppKit instance now exposes resetWalletConnectUri() and resetConnectingWallet() — thin passthroughs to HeadlessWalletUtil.resetWcUri() / resetConnectingWallet(). A headless host that reads the URI via getWalletConnectUri() can now clear it (e.g. when a QR is dismissed or a connection is cancelled) through the instance, without importing @reown/appkit-controllers. This completes the headless WalletConnect-URI surface alongside getWalletConnectUri / subscribeWalletConnectUri / prefetchWalletConnectUri.

  • #5695 a4b2d2f Thanks @​enesozturk! - Expose the headless wallet list imperatively on the AppKit client, so a non-React host can list / search / connect wallets without the useAppKitWallets React hook.

    New AppKit instance methods: fetchWallets(options?), getWalletList(), subscribeWalletList(cb), getWalletConnectUri(options?), and connectWallet(wallet, namespace?, options?). The shared imperative logic lives in a new HeadlessWalletUtil (@reown/appkit-controllers), which both the client methods and the React hook can use — one tested code path for headless wallet listing, search, pagination, the WalletConnect URI, and programmatic connect (injected / API / mobile-deeplink).

  • #5694 1c17897 Thanks @​enesozturk! - Fixed TRON tron_signTransaction payload shape to respect the wallet's tron_method_version session property. The connector now sends the spec-mandated legacy nested transaction.transaction shape by default, and the simplified flat shape only when the wallet advertises tron_method_version: "v1" in sessionProperties.

  • Updated dependencies [6b9c313, fb09a6d, a4b2d2f, 1c17897]:

    • @​reown/appkit-utils@​1.8.22
    • @​reown/appkit@​1.8.22
    • @​reown/appkit-common@​1.8.22
    • @​reown/appkit-polyfills@​1.8.22
    • @​reown/appkit-scaffold-ui@​1.8.22
    • @​reown/appkit-wallet@​1.8.22
    • @​reown/appkit-controllers@​1.8.22

@​reown/appkit-adapter-wagmi@​1.8.21

Patch Changes

  • #5685 ea99fd1 Thanks @​enesozturk! - Add includePayOnly and sort options to useAppKitWallets().fetchWallets(). includePayOnly surfaces wallets that support WalletConnect Pay but are not v2-compatible (filtered out by default), and sort: 'wcpay' bubbles WalletConnect Pay-supporting wallets to the top.

  • Updated dependencies [ea99fd1]:

    • @​reown/appkit-utils@​1.8.21
    • @​reown/appkit@​1.8.21
    • @​reown/appkit-common@​1.8.21
    • @​reown/appkit-polyfills@​1.8.21
    • @​reown/appkit-scaffold-ui@​1.8.21
    • @​reown/appkit-wallet@​1.8.21
    • @​reown/appkit-controllers@​1.8.21

@​reown/appkit-adapter-wagmi@​1.8.20

Patch Changes

  • #5655 cc75433 Thanks @​rtomas! - Fix injected and EIP6963 wallets showing despite being disabled and appearing duplicated. enableInjected is now wired through to the controller state, the wagmi adapter no longer conflates the basic injected connector with EIP6963-discovered ones, featured/recommended wallets are deduped against connectors regardless of the enableEIP6963 flag, and includeWalletIds/excludeWalletIds now also filter injected and EIP6963 connectors in the connect view.

  • Updated dependencies [08f5c48, f913185, ed51ea6, cc75433, 6b7096e]:

    • @​reown/appkit@​1.8.20
    • @​reown/appkit-controllers@​1.8.20

... (truncated)

Commits
  • dac1a5f chore: version packages (#5702)
  • fb09a6d feat(appkit): expose headless resetWalletConnectUri + resetConnectingWallet (...
  • 6b9c313 feat(controllers): expose WalletConnect URI on public state for headless QR (...
  • a4b2d2f feat: expose headless wallet list imperatively on the AppKit client (#5695)
  • 1c17897 fix(tron): respect wallet tron_method_version for tron_signTransaction payloa...
  • 32af290 Merge release/1.8.21 back to main (#5689)
  • ea99fd1 feat(controllers): add includePayOnly and sort options to fetchWallets (#5685)
  • 7726bcd chore: version packages (#5671) (#5673)
  • bf2209b fix: consolidated bug fixes batch (#5646)
  • cc75433 fix: honor enableInjected/enableEIP6963 and dedupe injected wallets (#5655)
  • Additional commits viewable in compare view

Updates viem from 2.47.6 to 2.55.4

Release notes

Sourced from viem's releases.

viem@2.55.4

Patch Changes

viem@2.55.2

Patch Changes

viem@2.55.1

Patch Changes

viem@2.55.0

Minor Changes

Patch Changes

viem@2.54.6

Patch Changes

  • #4807 f1ac4480d0c1c6f29bf709f116068e903643ecad Thanks @​jxom! - viem/tempo: Supported calling token .call builders without a Client (restores the pre-2.54 call signature). When the Client is omitted, token must be a TIP20 token id or contract address, and formatted amounts require explicit decimals.

viem@2.54.5

Patch Changes

viem@2.54.4

Patch Changes

... (truncated)

Commits

Updates wagmi from 2.19.5 to 3.7.3

Release notes

Sourced from wagmi's releases.

wagmi@3.7.3

Patch Changes

  • Updated dependencies [57ac9b0]:
    • @​wagmi/core@​3.6.3
    • @​wagmi/connectors@​8.0.24

wagmi@3.7.2

Patch Changes

  • Fixed Tempo Zone hook compatibility with Viem 2.55.2. (#5198)

  • Updated dependencies [54497eb]:

    • @​wagmi/core@​3.6.2
    • @​wagmi/connectors@​8.0.23

wagmi@3.7.1

Patch Changes

  • Updated dependencies [18e9421]:
    • @​wagmi/core@​3.6.1
    • @​wagmi/connectors@​8.0.22

wagmi@3.7.0

Minor Changes

  • Breaking (wagmi/tempo): Updated Tempo APIs for viem 2.54.0: token balance and allowance reads now return Amount objects. (#5188)

Patch Changes

  • Updated dependencies [a45049e]:
    • @​wagmi/core@​3.6.0
    • @​wagmi/connectors@​8.0.21

wagmi@3.6.21

Patch Changes

  • Fixed Tempo types so transaction override parameters are optional. (#5171)

  • Updated dependencies [1d6989e]:

    • @​wagmi/core@​3.5.5
    • @​wagmi/connectors@​8.0.20

wagmi@3.6.20

Patch Changes

  • Fixed Tempo Zone types for optional fields. (#5167)

  • Updated dependencies [f0b78c3]:

    • @​wagmi/core@​3.5.4

... (truncated)

Changelog

Sourced from wagmi's changelog.

3.7.3

Patch Changes

  • Updated dependencies [57ac9b0]:
    • @​wagmi/core@​3.6.3
    • @​wagmi/connectors@​8.0.24

3.7.2

Patch Changes

  • Fixed Tempo Zone hook compatibility with Viem 2.55.2. (#5198)

  • Updated dependencies [54497eb]:

    • @​wagmi/core@​3.6.2
    • @​wagmi/connectors@​8.0.23

3.7.1

Patch Changes

  • Updated dependencies [18e9421]:
    • @​wagmi/core@​3.6.1
    • @​wagmi/connectors@​8.0.22

3.7.0

Minor Changes

  • Breaking (wagmi/tempo): Updated Tempo APIs for viem 2.54.0: token balance and allowance reads now return Amount objects. (#5188)

Patch Changes

  • Updated dependencies [a45049e]:
    • @​wagmi/core@​3.6.0
    • @​wagmi/connectors@​8.0.21

3.6.21

Patch Changes

  • Fixed Tempo types so transaction override parameters are optional. (#5171)

  • Updated dependencies [1d6989e]:

    • @​wagmi/core@​3.5.5
    • @​wagmi/connectors@​8.0.20

3.6.20

... (truncated)

Commits

@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/wallet-3fc74b491f branch 3 times, most recently from 7e4ce13 to 54e3365 Compare July 16, 2026 15:12
Bumps the wallet group with 4 updates in the / directory: [@reown/appkit](https://github.com/reown-com/appkit), [@reown/appkit-adapter-wagmi](https://github.com/reown-com/appkit), [viem](https://github.com/wevm/viem) and [wagmi](https://github.com/wevm/wagmi/tree/HEAD/packages/react).


Updates `@reown/appkit` from 1.8.19 to 1.8.22
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit@1.8.19...@reown/appkit@1.8.22)

Updates `@reown/appkit-adapter-wagmi` from 1.8.19 to 1.8.22
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-adapter-wagmi@1.8.19...@reown/appkit-adapter-wagmi@1.8.22)

Updates `viem` from 2.47.6 to 2.55.4
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.47.6...viem@2.55.4)

Updates `wagmi` from 2.19.5 to 3.7.3
- [Release notes](https://github.com/wevm/wagmi/releases)
- [Changelog](https://github.com/wevm/wagmi/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/wevm/wagmi/commits/wagmi@3.7.3/packages/react)

---
updated-dependencies:
- dependency-name: "@reown/appkit"
  dependency-version: 1.8.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: wallet
- dependency-name: "@reown/appkit-adapter-wagmi"
  dependency-version: 1.8.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: wallet
- dependency-name: viem
  dependency-version: 2.55.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wallet
- dependency-name: wagmi
  dependency-version: 3.7.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: wallet
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/wallet-3fc74b491f branch from 54e3365 to 8fe4b61 Compare July 20, 2026 22:15
@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants