diff --git a/.changeset/fix-fetch-image-blob-arraybuffer.md b/.changeset/fix-fetch-image-blob-arraybuffer.md deleted file mode 100644 index 34bef3dc3..000000000 --- a/.changeset/fix-fetch-image-blob-arraybuffer.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'@reown/appkit-react-native': patch -'@reown/appkit-bitcoin-react-native': patch -'@reown/appkit-coinbase-react-native': patch -'@reown/appkit-common-react-native': patch -'@reown/appkit-core-react-native': patch -'@reown/appkit-ethers-react-native': patch -'@reown/appkit-solana-react-native': patch -'@reown/appkit-ui-react-native': patch -'@reown/appkit-wagmi-react-native': patch ---- - -fix(core): load wallet & network images on React Native - -`FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, -but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' -and 'ArrayBufferView' are not supported" for binary responses — so wallet and -network images silently failed to load (placeholders only). Read the bytes via -`response.arrayBuffer()` and base64-encode them into the data URL instead, using -a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). diff --git a/package.json b/package.json index cdc02ae4a..8d61e657f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ak-rn-monorepo", - "version": "2.0.5", + "version": "2.0.6", "private": true, "license": "SEE LICENSE IN LICENSE.md", "workspaces": [ diff --git a/packages/appkit/CHANGELOG.md b/packages/appkit/CHANGELOG.md index 3e6e11203..7f81eaae6 100644 --- a/packages/appkit/CHANGELOG.md +++ b/packages/appkit/CHANGELOG.md @@ -1,5 +1,23 @@ # @reown/appkit-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + - @reown/appkit-core-react-native@2.0.6 + - @reown/appkit-ui-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/appkit/package.json b/packages/appkit/package.json index 8a0feff3d..c4fcea97a 100644 --- a/packages/appkit/package.json +++ b/packages/appkit/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -40,9 +40,9 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", - "@reown/appkit-core-react-native": "2.0.5", - "@reown/appkit-ui-react-native": "2.0.5", + "@reown/appkit-common-react-native": "2.0.6", + "@reown/appkit-core-react-native": "2.0.6", + "@reown/appkit-ui-react-native": "2.0.6", "@walletconnect/universal-provider": "2.21.10", "valtio": "2.1.8" }, diff --git a/packages/bitcoin/CHANGELOG.md b/packages/bitcoin/CHANGELOG.md index 0d64ef1f5..998fee82f 100644 --- a/packages/bitcoin/CHANGELOG.md +++ b/packages/bitcoin/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-bitcoin-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/bitcoin/package.json b/packages/bitcoin/package.json index 1cea1e7e5..574f1a428 100644 --- a/packages/bitcoin/package.json +++ b/packages/bitcoin/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-bitcoin-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -40,7 +40,7 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5" + "@reown/appkit-common-react-native": "2.0.6" }, "peerDependencies": { "@walletconnect/react-native-compat": ">=2.16.1", diff --git a/packages/coinbase/CHANGELOG.md b/packages/coinbase/CHANGELOG.md index f01438f95..d316254da 100644 --- a/packages/coinbase/CHANGELOG.md +++ b/packages/coinbase/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-coinbase-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/coinbase/package.json b/packages/coinbase/package.json index cec29d131..77edfa797 100644 --- a/packages/coinbase/package.json +++ b/packages/coinbase/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-coinbase-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -37,7 +37,7 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5" + "@reown/appkit-common-react-native": "2.0.6" }, "peerDependencies": { "@coinbase/wallet-mobile-sdk": ">=1.1.2", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index e18587bc4..ced2d20bf 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,18 @@ # @reown/appkit-common-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + ## 2.0.5 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index 11f18b273..4330e6f25 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-common-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", diff --git a/packages/common/src/utils/ConstantsUtil.ts b/packages/common/src/utils/ConstantsUtil.ts index 452b19b98..529277db6 100644 --- a/packages/common/src/utils/ConstantsUtil.ts +++ b/packages/common/src/utils/ConstantsUtil.ts @@ -1,5 +1,5 @@ export const ConstantsUtil = { - VERSION: '2.0.5', + VERSION: '2.0.6', EIP155: 'eip155', ADD_CHAIN_METHOD: 'wallet_addEthereumChain', diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b6cc714c0..e7b7a05ac 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-core-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 6386e8b2b..dac1462fb 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-core-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -40,7 +40,7 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", + "@reown/appkit-common-react-native": "2.0.6", "countries-and-timezones": "3.7.2", "derive-valtio": "0.2.0", "valtio": "2.1.8" diff --git a/packages/ethers/CHANGELOG.md b/packages/ethers/CHANGELOG.md index dd86528cb..99dee8c8a 100644 --- a/packages/ethers/CHANGELOG.md +++ b/packages/ethers/CHANGELOG.md @@ -1,5 +1,22 @@ # @reown/appkit-ethers-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-react-native@2.0.6 + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/ethers/package.json b/packages/ethers/package.json index acbdc6170..7c50311c8 100644 --- a/packages/ethers/package.json +++ b/packages/ethers/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-ethers-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -39,8 +39,8 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", - "@reown/appkit-react-native": "2.0.5" + "@reown/appkit-common-react-native": "2.0.6", + "@reown/appkit-react-native": "2.0.6" }, "peerDependencies": { "@react-native-community/netinfo": ">=11.0.0", diff --git a/packages/solana/CHANGELOG.md b/packages/solana/CHANGELOG.md index 5029637a6..a75fb50f3 100644 --- a/packages/solana/CHANGELOG.md +++ b/packages/solana/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-solana-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/solana/package.json b/packages/solana/package.json index 74e8e52a0..efa458a55 100644 --- a/packages/solana/package.json +++ b/packages/solana/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-solana-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -40,7 +40,7 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", + "@reown/appkit-common-react-native": "2.0.6", "@solana/spl-token": "0.4.13", "@solana/web3.js": "1.98.2", "bs58": "6.0.0", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index e0dd8f361..276f384dd 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-ui-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index a08f3320b..db653dd9b 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-ui-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -40,7 +40,7 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", + "@reown/appkit-common-react-native": "2.0.6", "polished": "4.3.1", "qrcode": "1.5.3" }, diff --git a/packages/wagmi/CHANGELOG.md b/packages/wagmi/CHANGELOG.md index 062d173a9..b028c251a 100644 --- a/packages/wagmi/CHANGELOG.md +++ b/packages/wagmi/CHANGELOG.md @@ -1,5 +1,22 @@ # @reown/appkit-wagmi-react-native +## 2.0.6 + +### Patch Changes + +- [#574](https://github.com/reown-com/appkit-react-native/pull/574) [`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b) Thanks [@ignaciosantise](https://github.com/ignaciosantise)! - fix(core): load wallet & network images on React Native + + `FetchUtil.fetchImage` built its data URL with `response.blob()` + `FileReader`, + but on React Native `fetch(...).blob()` throws "Creating blobs from 'ArrayBuffer' + and 'ArrayBufferView' are not supported" for binary responses — so wallet and + network images silently failed to load (placeholders only). Read the bytes via + `response.arrayBuffer()` and base64-encode them into the data URL instead, using + a dependency-free encoder (RN guarantees neither `Buffer` nor `btoa`). + +- Updated dependencies [[`7201173`](https://github.com/reown-com/appkit-react-native/commit/7201173564cccc7182fa226bc7596a75a959404b)]: + - @reown/appkit-react-native@2.0.6 + - @reown/appkit-common-react-native@2.0.6 + ## 2.0.5 ### Patch Changes diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index c7a1aa1df..033b241a9 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-wagmi-react-native", - "version": "2.0.5", + "version": "2.0.6", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -41,8 +41,8 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.5", - "@reown/appkit-react-native": "2.0.5" + "@reown/appkit-common-react-native": "2.0.6", + "@reown/appkit-react-native": "2.0.6" }, "peerDependencies": { "@react-native-community/netinfo": ">=11.0.0", diff --git a/yarn.lock b/yarn.lock index 11dd9b6fd..89ceafdb6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4365,7 +4365,7 @@ __metadata: version: 0.0.0-use.local resolution: "@reown/appkit-bitcoin-react-native@workspace:packages/bitcoin" dependencies: - "@reown/appkit-common-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 peerDependencies: "@walletconnect/react-native-compat": ">=2.16.1" react: ">=18" @@ -4377,7 +4377,7 @@ __metadata: version: 0.0.0-use.local resolution: "@reown/appkit-coinbase-react-native@workspace:packages/coinbase" dependencies: - "@reown/appkit-common-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 peerDependencies: "@coinbase/wallet-mobile-sdk": ">=1.1.2" react: ">=18" @@ -4385,7 +4385,7 @@ __metadata: languageName: unknown linkType: soft -"@reown/appkit-common-react-native@2.0.5, @reown/appkit-common-react-native@workspace:packages/common": +"@reown/appkit-common-react-native@2.0.6, @reown/appkit-common-react-native@workspace:packages/common": version: 0.0.0-use.local resolution: "@reown/appkit-common-react-native@workspace:packages/common" dependencies: @@ -4421,11 +4421,11 @@ __metadata: languageName: node linkType: hard -"@reown/appkit-core-react-native@2.0.5, @reown/appkit-core-react-native@workspace:packages/core": +"@reown/appkit-core-react-native@2.0.6, @reown/appkit-core-react-native@workspace:packages/core": version: 0.0.0-use.local resolution: "@reown/appkit-core-react-native@workspace:packages/core" dependencies: - "@reown/appkit-common-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 countries-and-timezones: 3.7.2 derive-valtio: 0.2.0 valtio: 2.1.8 @@ -4440,8 +4440,8 @@ __metadata: version: 0.0.0-use.local resolution: "@reown/appkit-ethers-react-native@workspace:packages/ethers" dependencies: - "@reown/appkit-common-react-native": 2.0.5 - "@reown/appkit-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 + "@reown/appkit-react-native": 2.0.6 peerDependencies: "@react-native-community/netinfo": ">=11.0.0" "@walletconnect/react-native-compat": ">=2.16.1" @@ -4474,13 +4474,13 @@ __metadata: languageName: node linkType: hard -"@reown/appkit-react-native@2.0.5, @reown/appkit-react-native@workspace:*, @reown/appkit-react-native@workspace:packages/appkit": +"@reown/appkit-react-native@2.0.6, @reown/appkit-react-native@workspace:*, @reown/appkit-react-native@workspace:packages/appkit": version: 0.0.0-use.local resolution: "@reown/appkit-react-native@workspace:packages/appkit" dependencies: - "@reown/appkit-common-react-native": 2.0.5 - "@reown/appkit-core-react-native": 2.0.5 - "@reown/appkit-ui-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 + "@reown/appkit-core-react-native": 2.0.6 + "@reown/appkit-ui-react-native": 2.0.6 "@walletconnect/universal-provider": 2.21.10 valtio: 2.1.8 peerDependencies: @@ -4511,7 +4511,7 @@ __metadata: version: 0.0.0-use.local resolution: "@reown/appkit-solana-react-native@workspace:packages/solana" dependencies: - "@reown/appkit-common-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 "@solana/spl-token": 0.4.13 "@solana/web3.js": 1.98.2 bs58: 6.0.0 @@ -4523,11 +4523,11 @@ __metadata: languageName: unknown linkType: soft -"@reown/appkit-ui-react-native@2.0.5, @reown/appkit-ui-react-native@workspace:*, @reown/appkit-ui-react-native@workspace:packages/ui": +"@reown/appkit-ui-react-native@2.0.6, @reown/appkit-ui-react-native@workspace:*, @reown/appkit-ui-react-native@workspace:packages/ui": version: 0.0.0-use.local resolution: "@reown/appkit-ui-react-native@workspace:packages/ui" dependencies: - "@reown/appkit-common-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 polished: 4.3.1 qrcode: 1.5.3 peerDependencies: @@ -4572,8 +4572,8 @@ __metadata: version: 0.0.0-use.local resolution: "@reown/appkit-wagmi-react-native@workspace:packages/wagmi" dependencies: - "@reown/appkit-common-react-native": 2.0.5 - "@reown/appkit-react-native": 2.0.5 + "@reown/appkit-common-react-native": 2.0.6 + "@reown/appkit-react-native": 2.0.6 peerDependencies: "@react-native-community/netinfo": ">=11.0.0" "@walletconnect/react-native-compat": ">=2.16.1"