diff --git a/.changeset/thirty-wings-stick.md b/.changeset/thirty-wings-stick.md deleted file mode 100644 index 9873f1c70..000000000 --- a/.changeset/thirty-wings-stick.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@reown/appkit-coinbase-react-native': patch -'@reown/appkit-bitcoin-react-native': patch -'@reown/appkit-react-native': patch -'@reown/appkit-common-react-native': patch -'@reown/appkit-ethers-react-native': patch -'@reown/appkit-solana-react-native': patch -'@reown/appkit-wagmi-react-native': patch -'@reown/appkit-core-react-native': patch -'@reown/appkit-ui-react-native': patch ---- - -Release v2.0.1 stable version diff --git a/package.json b/package.json index e67a2ff10..e8e606790 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ak-rn-monorepo", - "version": "2.0.0", + "version": "2.0.1", "private": true, "license": "SEE LICENSE IN LICENSE.md", "workspaces": [ diff --git a/packages/appkit/CHANGELOG.md b/packages/appkit/CHANGELOG.md index bd28c488d..899f4e89b 100644 --- a/packages/appkit/CHANGELOG.md +++ b/packages/appkit/CHANGELOG.md @@ -1,17 +1,87 @@ -# @reown/appkit-scaffold-react-native +# @reown/appkit-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 - - @reown/appkit-core-react-native@2.0.0 - - @reown/appkit-ui-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/appkit/package.json b/packages/appkit/package.json index 3ca61a063..2c5f7c453 100644 --- a/packages/appkit/package.json +++ b/packages/appkit/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-react-native", - "version": "2.0.0", + "version": "2.0.1", "main": "lib/commonjs/index.js", "types": "lib/typescript/index.d.ts", "module": "lib/module/index.js", @@ -39,9 +39,9 @@ "provenance": true }, "dependencies": { - "@reown/appkit-common-react-native": "2.0.0", - "@reown/appkit-core-react-native": "2.0.0", - "@reown/appkit-ui-react-native": "2.0.0", + "@reown/appkit-common-react-native": "2.0.1", + "@reown/appkit-core-react-native": "2.0.1", + "@reown/appkit-ui-react-native": "2.0.1", "@walletconnect/universal-provider": "2.21.10", "valtio": "2.1.8" }, diff --git a/packages/bitcoin/CHANGELOG.md b/packages/bitcoin/CHANGELOG.md index a1397055e..5027d8187 100644 --- a/packages/bitcoin/CHANGELOG.md +++ b/packages/bitcoin/CHANGELOG.md @@ -1,15 +1,87 @@ # @reown/appkit-bitcoin-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/bitcoin/package.json b/packages/bitcoin/package.json index 92b63e57e..95c798a0d 100644 --- a/packages/bitcoin/package.json +++ b/packages/bitcoin/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-bitcoin-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0" + "@reown/appkit-common-react-native": "2.0.1" }, "peerDependencies": { "@walletconnect/react-native-compat": ">=2.16.1", diff --git a/packages/coinbase/CHANGELOG.md b/packages/coinbase/CHANGELOG.md index 898cae603..25011fe45 100644 --- a/packages/coinbase/CHANGELOG.md +++ b/packages/coinbase/CHANGELOG.md @@ -1,15 +1,87 @@ # @reown/appkit-coinbase-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/coinbase/package.json b/packages/coinbase/package.json index bc1e23bf4..bf871d46e 100644 --- a/packages/coinbase/package.json +++ b/packages/coinbase/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-coinbase-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0" + "@reown/appkit-common-react-native": "2.0.1" }, "peerDependencies": { "@coinbase/wallet-mobile-sdk": ">=1.1.2", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 411cf6022..0c7c85afd 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,10 +1,87 @@ # @reown/appkit-common-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. + +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation + +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/common/package.json b/packages/common/package.json index 08b0ffbb0..04e39efcf 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-common-react-native", - "version": "2.0.0", + "version": "2.0.1", "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 6e2dd9639..ab5273c10 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.0-alpha.6', + VERSION: '2.0.1', EIP155: 'eip155', ADD_CHAIN_METHOD: 'wallet_addEthereumChain', diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 8ce50292e..211a972f6 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,15 +1,87 @@ # @reown/appkit-core-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/core/package.json b/packages/core/package.json index 7b852672c..56adf5573 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-core-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0", + "@reown/appkit-common-react-native": "2.0.1", "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 32e397a17..1c62a5fba 100644 --- a/packages/ethers/CHANGELOG.md +++ b/packages/ethers/CHANGELOG.md @@ -1,16 +1,87 @@ # @reown/appkit-ethers-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-react-native@2.0.0 - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/ethers/package.json b/packages/ethers/package.json index c3e9475c6..bb68927f9 100644 --- a/packages/ethers/package.json +++ b/packages/ethers/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-ethers-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0", - "@reown/appkit-react-native": "2.0.0" + "@reown/appkit-common-react-native": "2.0.1", + "@reown/appkit-react-native": "2.0.1" }, "peerDependencies": { "@react-native-community/netinfo": "*", diff --git a/packages/solana/CHANGELOG.md b/packages/solana/CHANGELOG.md index 98f80a2f4..fe944956f 100644 --- a/packages/solana/CHANGELOG.md +++ b/packages/solana/CHANGELOG.md @@ -1,15 +1,87 @@ # @reown/appkit-solana-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/solana/package.json b/packages/solana/package.json index 4df3313d7..d3897d190 100644 --- a/packages/solana/package.json +++ b/packages/solana/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-solana-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0", + "@reown/appkit-common-react-native": "2.0.1", "@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 6ee139bb0..aebd50371 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,15 +1,87 @@ # @reown/appkit-ui-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/ui/package.json b/packages/ui/package.json index 5cd147f3d..853261080 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-ui-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0", + "@reown/appkit-common-react-native": "2.0.1", "polished": "4.3.1", "qrcode": "1.5.3" }, diff --git a/packages/wagmi/CHANGELOG.md b/packages/wagmi/CHANGELOG.md index 8f04db80e..3f13e00e9 100644 --- a/packages/wagmi/CHANGELOG.md +++ b/packages/wagmi/CHANGELOG.md @@ -1,16 +1,87 @@ # @reown/appkit-wagmi-react-native -## 2.0.0 +## 2.0.1 ### Major Changes -- c8ec10d: Release v2.0.0 stable version +- **MULTICHAIN SUPPORT**: Complete architectural overhaul introducing comprehensive multichain support for EVM-compatible chains, Solana, Bitcoin, and more blockchain ecosystems coming soon. -### Patch Changes +- **SIWX AUTHENTICATION**: Introducing "Sign In With X" feature enabling decentralized authentication across multiple blockchain networks following CAIP-122 standard. + +### Added + +- **Core Multichain Architecture**: + - New `@reown/appkit-react-native` core library as the central hub for managing multichain connections, adapters, and events + - Modular adapter system with dedicated packages for different blockchain ecosystems: + - `@reown/appkit-ethers-react-native` - EVM support via Ethers.js + - `@reown/appkit-wagmi-react-native` - EVM support via Wagmi + - `@reown/appkit-solana-react-native` - Native Solana blockchain support + - `@reown/appkit-bitcoin-react-native` - Native Bitcoin blockchain support + +- **SIWX (Sign In With X) Authentication**: + - Chain-agnostic authentication framework supporting Ethereum, Polygon, Solana, and more + - Plugin-based architecture with `siwx` parameter in `createAppKit` configuration + - **Reown Authentication**: Cloud-managed SIWX sessions with Dashboard integration + - **Custom Implementation**: `DefaultSIWX` scaffold for custom authentication flows + - Automatic signature prompts and session management across network switches + - Session persistence and automatic sign-in for returning users + - Compliance with CAIP-122 standard for blockchain-based authentication + +- **Enhanced Social Login**: + - **Google Authentication**: Added missing Google social login provider + - Complete social authentication suite now includes Google, Apple, Facebook, GitHub, Discord, and more + +- **Enhanced Configuration**: + - New `createAppKit` factory function with centralized configuration + - `adapters` array for pluggable blockchain support + - `siwx` configuration for authentication setup + +### Changed + +- ⚠️ **BREAKING: Initialization Process**: + - Replaced monolithic package imports with modular adapter system + - `createAppKit` now requires `adapters` and `networks` arrays instead of chain-specific configs + - `createAppKit` now requires `storage` to handles data persistence + - Configuration moved from adapter-specific functions to centralized `AppKitConfig` + +- ⚠️ **BREAKING: Package Structure**: + - Primary entry point changed from `@reown/appkit-wagmi-react-native` or `@reown/appkit-ethers-react-native` to `@reown/appkit-react-native` + - Chain-specific packages now serve as adapters rather than primary libraries + - All hooks and components now imported from `@reown/appkit-react-native` + +- ⚠️ **BREAKING: Provider Setup**: + - New `AppKitProvider` wrapper required for all applications + - Wagmi users must now access config via `wagmiAdapter.wagmiConfig` + - Enhanced provider hierarchy supporting multiple blockchain contexts + +- **Configuration Options**: + - `defaultChain` renamed to `defaultNetwork` + - `chainImages` renamed to `networkImages` + - New `tokens` property for cross-chain token balance display + - New `siwx` property for authentication configuration + - Enhanced metadata and project configuration options + +### Deprecated + +- **SIWE Authentication**: + - **SIWE Configuration**: Deprecated in favor of new SIWX authentication system + - Legacy SIWE setup methods - Use `siwx` parameter with SIWX providers instead + +- **Hooks**: + - `useDisconnect()` - Use `const { disconnect } = useAppKit()` instead + - All hooks now available from core package + +### Migration Required + +This is a major release requiring migration for existing applications. + +For detailed migration instructions, see: [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) + +### Documentation -- Updated dependencies [c8ec10d] - - @reown/appkit-react-native@2.0.0 - - @reown/appkit-common-react-native@2.0.0 +- [Installation Guide](https://docs.reown.com/appkit/react-native/core/installation) for multichain setup +- [Migration Guide](https://docs.reown.com/appkit/react-native/core/migration-multichain) for v2 upgrade +- [SIWX Authentication Guide](https://docs.reown.com/appkit/react-native/core/siwx) ## 2.0.0-alpha.6 diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index 75877c266..f02192d8e 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-wagmi-react-native", - "version": "2.0.0", + "version": "2.0.1", "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.0", - "@reown/appkit-react-native": "2.0.0" + "@reown/appkit-common-react-native": "2.0.1", + "@reown/appkit-react-native": "2.0.1" }, "peerDependencies": { "@react-native-community/netinfo": "*", diff --git a/yarn.lock b/yarn.lock index 9e119c2f3..fa5753c08 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4243,7 +4243,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.0 + "@reown/appkit-common-react-native": 2.0.1 peerDependencies: "@walletconnect/react-native-compat": ">=2.16.1" react: ">=18" @@ -4255,7 +4255,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.0 + "@reown/appkit-common-react-native": 2.0.1 peerDependencies: "@coinbase/wallet-mobile-sdk": ">=1.1.2" react: ">=18" @@ -4263,7 +4263,7 @@ __metadata: languageName: unknown linkType: soft -"@reown/appkit-common-react-native@2.0.0, @reown/appkit-common-react-native@workspace:packages/common": +"@reown/appkit-common-react-native@2.0.1, @reown/appkit-common-react-native@workspace:packages/common": version: 0.0.0-use.local resolution: "@reown/appkit-common-react-native@workspace:packages/common" dependencies: @@ -4299,11 +4299,11 @@ __metadata: languageName: node linkType: hard -"@reown/appkit-core-react-native@2.0.0, @reown/appkit-core-react-native@workspace:packages/core": +"@reown/appkit-core-react-native@2.0.1, @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.0 + "@reown/appkit-common-react-native": 2.0.1 countries-and-timezones: 3.7.2 derive-valtio: 0.2.0 valtio: 2.1.8 @@ -4318,8 +4318,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.0 - "@reown/appkit-react-native": 2.0.0 + "@reown/appkit-common-react-native": 2.0.1 + "@reown/appkit-react-native": 2.0.1 peerDependencies: "@react-native-community/netinfo": "*" "@walletconnect/react-native-compat": ">=2.16.1" @@ -4352,13 +4352,13 @@ __metadata: languageName: node linkType: hard -"@reown/appkit-react-native@2.0.0, @reown/appkit-react-native@workspace:*, @reown/appkit-react-native@workspace:packages/appkit": +"@reown/appkit-react-native@2.0.1, @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.0 - "@reown/appkit-core-react-native": 2.0.0 - "@reown/appkit-ui-react-native": 2.0.0 + "@reown/appkit-common-react-native": 2.0.1 + "@reown/appkit-core-react-native": 2.0.1 + "@reown/appkit-ui-react-native": 2.0.1 "@walletconnect/universal-provider": 2.21.10 valtio: 2.1.8 peerDependencies: @@ -4389,7 +4389,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.0 + "@reown/appkit-common-react-native": 2.0.1 "@solana/spl-token": 0.4.13 "@solana/web3.js": 1.98.2 bs58: 6.0.0 @@ -4401,11 +4401,11 @@ __metadata: languageName: unknown linkType: soft -"@reown/appkit-ui-react-native@2.0.0, @reown/appkit-ui-react-native@workspace:*, @reown/appkit-ui-react-native@workspace:packages/ui": +"@reown/appkit-ui-react-native@2.0.1, @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.0 + "@reown/appkit-common-react-native": 2.0.1 polished: 4.3.1 qrcode: 1.5.3 peerDependencies: @@ -4450,8 +4450,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.0 - "@reown/appkit-react-native": 2.0.0 + "@reown/appkit-common-react-native": 2.0.1 + "@reown/appkit-react-native": 2.0.1 peerDependencies: "@react-native-community/netinfo": "*" "@walletconnect/react-native-compat": ">=2.16.1"