Skip to content

Bump the reown group with 2 updates#202

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/reown-76b54a9820
Open

Bump the reown group with 2 updates#202
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/reown-76b54a9820

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the reown group with 2 updates: @reown/appkit and @reown/appkit-adapter-wagmi.

Updates @reown/appkit from 1.8.21 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)
  • See full diff in compare view

Updates @reown/appkit-adapter-wagmi from 1.8.21 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
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)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the reown group with 2 updates: [@reown/appkit](https://github.com/reown-com/appkit) and [@reown/appkit-adapter-wagmi](https://github.com/reown-com/appkit).


Updates `@reown/appkit` from 1.8.21 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.21...@reown/appkit@1.8.22)

Updates `@reown/appkit-adapter-wagmi` from 1.8.21 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.21...@reown/appkit-adapter-wagmi@1.8.22)

---
updated-dependencies:
- dependency-name: "@reown/appkit"
  dependency-version: 1.8.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: reown
- dependency-name: "@reown/appkit-adapter-wagmi"
  dependency-version: 1.8.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: reown
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 18, 2026
@dependabot
dependabot Bot requested a review from valefar-on-discord as a code owner July 18, 2026 07:13
@dependabot dependabot Bot added the javascript Pull requests that update javascript code label Jul 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants