Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/all-books-lead.md

This file was deleted.

49 changes: 0 additions & 49 deletions .changeset/cool-forks-raise.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/moody-mugs-sniff.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-views-swim.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/quick-moons-fall.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-poets-hope.md

This file was deleted.

6 changes: 6 additions & 0 deletions apps/pay-test-exchange/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# pay-test-exchange

## 0.1.18

### Patch Changes

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

## 0.1.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/pay-test-exchange/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pay-test-exchange",
"version": "0.1.17",
"version": "0.1.18",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port 4001",
Expand Down
52 changes: 52 additions & 0 deletions packages/adapters/bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
# @reown/appkit-adapter-bitcoin

## 1.8.14

### Patch Changes

- [#5180](https://github.com/reown-com/appkit/pull/5180) [`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14) Thanks [@enesozturk](https://github.com/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 '@reown/appkit'
import { ton, tonTestnet } from '@reown/appkit/networks'
import { TonAdapter } from '@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' })
```

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/bitcoin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-bitcoin",
"version": "1.8.13",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/exports/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/adapters/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @reown/appkit-adapter-ethers

## 1.8.14

### Patch Changes

- [#5334](https://github.com/reown-com/appkit/pull/5334) [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b) Thanks [@github-actions](https://github.com/apps/github-actions)! - Defers Coinbase SDK in ethers adapters to connection step

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit-scaffold-ui@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-wallet@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers",
"version": "1.8.13",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/adapters/ethers5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @reown/appkit-adapter-ethers5

## 1.8.14

### Patch Changes

- [#5334](https://github.com/reown-com/appkit/pull/5334) [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b) Thanks [@github-actions](https://github.com/apps/github-actions)! - Defers Coinbase SDK in ethers adapters to connection step

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit-scaffold-ui@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-wallet@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers5",
"version": "1.8.13",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/adapters/solana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @reown/appkit-adapter-solana

## 1.8.14

### Patch Changes

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-wallet@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-solana",
"version": "1.8.13",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
50 changes: 50 additions & 0 deletions packages/adapters/ton/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
# @reown/appkit-adapter-ton

## 1.8.14

### Patch Changes

- [#5180](https://github.com/reown-com/appkit/pull/5180) [`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14) Thanks [@enesozturk](https://github.com/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 '@reown/appkit'
import { ton, tonTestnet } from '@reown/appkit/networks'
import { TonAdapter } from '@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' })
```

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ton/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ton",
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The TON adapter package version is being updated from 1.8.7 to 1.8.14, skipping several intermediate versions (1.8.8 through 1.8.13). While this may be intentional to align with the monorepo versioning, it's worth verifying that no breaking changes or important updates from the skipped versions are missing.

Suggested change
"name": "@reown/appkit-adapter-ton",
"name": "@reown/appkit-adapter-ton",
// Version bump from 1.8.7 to 1.8.14 is intentional to align with monorepo versioning.
// Skipped versions (1.8.8–1.8.13) have been reviewed for breaking changes or important updates.

Copilot uses AI. Check for mistakes.
"version": "1.8.7",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/exports/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/adapters/wagmi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @reown/appkit-adapter-wagmi

## 1.8.14

### Patch Changes

- [#5321](https://github.com/reown-com/appkit/pull/5321) [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5) Thanks [@enesozturk](https://github.com/enesozturk)! - Upgrades WalletConnect dependencies to 2.23.0

- [#5317](https://github.com/reown-com/appkit/pull/5317) [`6e9f251`](https://github.com/reown-com/appkit/commit/6e9f251040d1150ae7a254309050cc2853c5a085) Thanks [@enesozturk](https://github.com/enesozturk)! - Fixes `writeContract` parameters when sending tranactions

- [#5296](https://github.com/reown-com/appkit/pull/5296) [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512) Thanks [@magiziz](https://github.com/magiziz)! - Improved wallet search to filter out non-walletconnect and walletconnect wallets based on platform and SDK type

- Updated dependencies [[`bd86560`](https://github.com/reown-com/appkit/commit/bd86560541de8a34696bb7deea6a405371b3db14), [`1dab4e5`](https://github.com/reown-com/appkit/commit/1dab4e5bfc4bf2e5219824f85128d264cd220f2b), [`2a7ece7`](https://github.com/reown-com/appkit/commit/2a7ece7a1b8ea13fe6ff2d9da151e4b877da75a5), [`bc4a961`](https://github.com/reown-com/appkit/commit/bc4a961b448cedd0a8485a2188549b413b4e6512), [`b1d8373`](https://github.com/reown-com/appkit/commit/b1d8373224c946cfbed4a609f925330768e93469)]:
- @reown/appkit-utils@1.8.14
- @reown/appkit-controllers@1.8.14
- @reown/appkit-scaffold-ui@1.8.14
- @reown/appkit@1.8.14
- @reown/appkit-common@1.8.14
- @reown/appkit-wallet@1.8.14
- @reown/appkit-polyfills@1.8.14

## 1.8.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/wagmi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-wagmi",
"version": "1.8.13",
"version": "1.8.14",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
Loading