Skip to content

chore(deps): update dependency @reown/appkit-adapter-wagmi to v1.8.19#87

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/reown-appkit-adapter-wagmi-1.x-lockfile
Open

chore(deps): update dependency @reown/appkit-adapter-wagmi to v1.8.19#87
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/reown-appkit-adapter-wagmi-1.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@reown/appkit-adapter-wagmi 1.8.121.8.19 age confidence

Release Notes

reown-com/appkit (@​reown/appkit-adapter-wagmi)

v1.8.19

Compare Source

Patch Changes

v1.8.18

Compare Source

Patch Changes

v1.8.17

Compare Source

Patch Changes

v1.8.16

Compare Source

Patch Changes

v1.8.15

Compare Source

Patch Changes
Features
-   List, and connect with extension wallets.
-   List, search and connect the WalletConnect wallets.
-   Multi-chain.
-   Multi-platform.
Examples
**Listing injected wallets:**

```tsx
const { data } = useAppKitWallets()

const injectedWallets = data.filter(wallet => wallet.isInjected)

injectedWallets.map(wallet => {
  return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
})
```

**Listing WalletConnect wallets:**

```tsx
const { data } = useAppKitWallets()

const wcWallets = data.filter(wallet => !wallet.isInjected)

wcWallets.map(wallet => {
  return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
})
```

**Connecting to a wallet:**

```tsx
const { connect } = useAppKitWallets()
...
await connect(wallet)
```

v1.8.14

Compare Source

Patch Changes
  • #​5180 bd86560 Thanks @​enesozturk! - Add full support for the TON (The Open Network) blockchain to AppKit, enabling users to connect TON wallets and perform TON-specific operations within the new WalletConnect protocol and TonConnect protocol.

Examples

Create AppKit with TON adapter
    import { createAppKit } from '@&#8203;reown/appkit'
    import { ton, tonTestnet } from '@&#8203;reown/appkit/networks'
    import { TonAdapter } from '@&#8203;reown/appkit-adapters-ton'

    createAppKit({
      ...,
      networks: [ton, tonTestnet],
      adapters: [new TonAdapter()]
    })
Use TON adapter
    const { address, isConnected } = useAppKitAccount({ namespace: "ton" })
Multi-chain use cases
    const { open } = useAppKit()
    const { disconnect } = useDisconnect()

    // Open AppKit with only TON connectors
    open({ namespace: 'ton' })

    // Disconnect only TON namespace
    disconnect({ namespace: 'ton' })

v1.8.13

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel

vercel Bot commented Mar 20, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
biequity Error Error Mar 20, 2026 0:21am

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