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
20 changes: 0 additions & 20 deletions .changeset/fix-fetch-image-blob-arraybuffer.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
18 changes: 18 additions & 0 deletions packages/appkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions packages/appkit/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
},
Expand Down
16 changes: 16 additions & 0 deletions packages/bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/bitcoin/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
16 changes: 16 additions & 0 deletions packages/coinbase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/coinbase/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
13 changes: 13 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/utils/ConstantsUtil.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const ConstantsUtil = {
VERSION: '2.0.5',
VERSION: '2.0.6',

EIP155: 'eip155',
ADD_CHAIN_METHOD: 'wallet_addEthereumChain',
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
17 changes: 17 additions & 0 deletions packages/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/ethers/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
16 changes: 16 additions & 0 deletions packages/solana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/solana/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
16 changes: 16 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
},
Expand Down
17 changes: 17 additions & 0 deletions packages/wagmi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/wagmi/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
Loading
Loading