@walletconnect/ethereum-provider 2.4.10 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@ Ethereum Provider for WalletConnect Protocol.
5
5
  ## Installation
6
6
 
7
7
  ```
8
- npm i @walletconnect/ethereum-provider
8
+ npm i @walletconnect/ethereum-provider @web3modal/standalone
9
9
  ```
10
10
 
11
11
  ## Initialization
@@ -20,7 +20,8 @@ const provider = await EthereumProvider.init({
20
20
  events, // OPTIONAL ethereum events
21
21
  rpcMap, // OPTIONAL rpc urls for each chain
22
22
  metadata, // OPTIONAL metadata of your app
23
- showQrModal, // OPTIONAL - `true` by default
23
+ showQrModal, // OPTIONAL - `true` by default,
24
+ qrModalOptions, // OPTIONAL - `undefined` by default, see https://docs.walletconnect.com/2.0/web3modal/theming
24
25
  });
25
26
  ```
26
27