From 2beec3c698c2641f4ab11884812adf0e960a17d3 Mon Sep 17 00:00:00 2001 From: Murat Akdeniz Date: Tue, 21 Jun 2022 17:46:35 -0700 Subject: [PATCH 1/2] Update README.md added account center & notify descriptions under features header --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2b4d4d45e..7116915b6 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ - **Wallet Provider Standardization**: All wallet modules expose a provider that is patched to be compliant with the [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193), [EIP-1102](https://eips.ethereum.org/EIPS/eip-1102), [EIP-3085](https://eips.ethereum.org/EIPS/eip-3085) and [EIP-3326](https://ethereum-magicians.org/t/eip-3326-wallet-switchethereumchain/5471) specifications. - **Dynamic Imports**: Supporting multiple wallets in your app requires a lot of dependencies. Onboard dynamically imports a wallet and it's dependencies only when the user selects it, so that minimal bandwidth is used. +- **Account Center**: A persistent interface to manage wallet connections and networks, with a minimal version for mobile +- **Notify**: Real-time transaction notifications for the connected wallet addresses for all transaction states + ## Quickstart Install the core Onboard library and the injected wallets module to support browser extension and mobile wallets: From fd0d8f5f7e7edfe4ef438f0334decbf061f79828 Mon Sep 17 00:00:00 2001 From: Murat Akdeniz Date: Tue, 21 Jun 2022 17:50:13 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7116915b6..92fe4a95c 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,10 @@ - **Minimal Dependencies**: All wallet dependencies are included in separate packages, so you only include the ones you want to use in your app. - **Multiple Wallets and Accounts Connection**: Allow your users to connect multiple wallets and multiple accounts within each wallet at the same time to your app. - **Multiple Chain Support**: Allow users to switch between chains/networks with ease. -- **Wallet Provider Standardization**: All wallet modules expose a provider that is patched to be compliant with the [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193), [EIP-1102](https://eips.ethereum.org/EIPS/eip-1102), [EIP-3085](https://eips.ethereum.org/EIPS/eip-3085) and [EIP-3326](https://ethereum-magicians.org/t/eip-3326-wallet-switchethereumchain/5471) specifications. -- **Dynamic Imports**: Supporting multiple wallets in your app requires a lot of dependencies. Onboard dynamically imports a wallet and it's dependencies only when the user selects it, so that minimal bandwidth is used. - - **Account Center**: A persistent interface to manage wallet connections and networks, with a minimal version for mobile - **Notify**: Real-time transaction notifications for the connected wallet addresses for all transaction states +- **Wallet Provider Standardization**: All wallet modules expose a provider that is patched to be compliant with the [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193), [EIP-1102](https://eips.ethereum.org/EIPS/eip-1102), [EIP-3085](https://eips.ethereum.org/EIPS/eip-3085) and [EIP-3326](https://ethereum-magicians.org/t/eip-3326-wallet-switchethereumchain/5471) specifications. +- **Dynamic Imports**: Supporting multiple wallets in your app requires a lot of dependencies. Onboard dynamically imports a wallet and its dependencies only when the user selects it, so that minimal bandwidth is used. ## Quickstart