Skip to content

Commit b376925

Browse files
committed
first verision of AppKit FAQ
1 parent 682b8d3 commit b376925

File tree

1 file changed

+34
-11
lines changed

1 file changed

+34
-11
lines changed

appkit/faq.mdx

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: "FAQs"
2+
title: "AppKit FAQs"
3+
sidebarTitle: "FAQs"
34
---
45

56
## Error: Invalid App Configuration
67

78
<img src="/images/faq/invalidAppConfiguration.png" />
89

9-
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/
1011

1112
```javascript
1213
const modal = createAppKit({
@@ -17,11 +18,11 @@ const modal = createAppKit({
1718

1819
## No wallets are visible, only the title "Connect Wallet."
1920

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".
2122

2223
Solution: In general there are two possibilities for this error.
2324

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`.
2526

2627
``` json
2728
...
@@ -32,7 +33,7 @@ Solution: In general there are two possibilities for this error.
3233
}
3334
```
3435

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.".
3637

3738
```javascript
3839
// Create modal
@@ -55,11 +56,11 @@ export function App() {
5556

5657
```
5758
58-
## When will reown supports off-ramp?
59+
## When will Reown support off-ramp?
5960
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.
6162
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?
6364
6465
To resolve this issue, please refer to our multichain example:
6566
@@ -78,10 +79,32 @@ const solanaAccountState = useAppKitAccount({ namespace: 'solana' })
7879
``` javascript
7980
<>
8081
Address EVM : {eip155AccountState.address}<br />
81-
Addresss Solana: {solanaAccountState.address}<br />
82+
Address Solana: {solanaAccountState.address}<br />
8283
</>
8384
```
8485
85-
## How to hide UX by reown ?
86+
## How can I hide `UX by Reown`?
8687
87-
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

Comments
 (0)