You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a very common error that happens mainly when you didn't make a correct setup of the projectId. Please create and use a valid projectid from https://cloud.reown.com/
10
+
This is a very common error that happens mainly when you did not set up the `projectId` correctly. Please create and use a valid projectId from https://cloud.reown.com/
10
11
11
12
```javascript
12
13
constmodal=createAppKit({
@@ -17,11 +18,11 @@ const modal = createAppKit({
17
18
18
19
## No wallets are visible, only the title "Connect Wallet."
19
20
20
-
Problem: After clicking in the connect button users are only seeing the modal with the title "Connect Wallet".
21
+
Problem: After clicking the connect button users are only seeing the modal with the title "Connect Wallet".
21
22
22
23
Solution: In general there are two possibilities for this error.
23
24
24
-
1. Check all the libraries from @reown are using the **same version** in the packages.json.
25
+
1. Check all the libraries from @reown are using the **same version** in `packages.json`.
25
26
26
27
```json
27
28
...
@@ -32,7 +33,7 @@ Solution: In general there are two possibilities for this error.
32
33
}
33
34
```
34
35
35
-
2.The`createAppKit`call must be outside the component in order to work correctly.
36
+
2.Call`createAppKit` outside of the component to ensure correct behavior.".
36
37
37
38
```javascript
38
39
// Create modal
@@ -55,11 +56,11 @@ export function App() {
55
56
56
57
```
57
58
58
-
## When will reown supports off-ramp?
59
+
## When will Reown support off-ramp?
59
60
60
-
For the moment, Reown do not have plans to do off-ramp.
61
+
For the moment, Reown does not currently plan to support off-ramp.
61
62
62
-
## How can i retrieve more than one address from the currently connected wallets?
63
+
## How can I retrieve more than one address from the currently connected wallets?
63
64
64
65
To resolve this issue, please refer to our multichain example:
Currently, only enterprise clients can hide "UX by reown" in our modal by adjusting this option on our Dashboard.
88
+
Currently, only enterprise clients can hide "UX by reown" in our modal by adjusting this option on our Dashboard.
89
+
90
+
## Do I need to wait for my dApp approval before using it, as it is still in "Pending Review"?
91
+
92
+
No, dApps do not need approval in order to use your projectId.
93
+
94
+
## Can `createAppKit` be lazily initialized and torn down for re-initialization with a different network configuration?
95
+
96
+
A: Currently, `createAppKit` can only be called once during the application's lifecycle.
97
+
It cannot be lazily initialized and then torn down for re-initialization.
98
+
This means you must pass in all the networks you plan to support during the initial setup.
99
+
100
+
## Can we use our own RPC in APPkit?
101
+
A: Yes, you can use your own RPC by setting the customRpcUrls option in the APPkit configuration. This lets you define custom RPC URLs for specific chains. Each entry must follow the format:
102
+
103
+
``` javascript
104
+
customRpcUrls: {
105
+
[ChainId.Ethereum]:'https://your.custom.rpc.url',
106
+
[ChainId.Polygon]:'https://your.polygon.rpc.url',
107
+
}
108
+
```
109
+
110
+
APPkit will prioritize these URLs over the default ones.
0 commit comments