File tree 1 file changed +13
-1
lines changed
docs/src/routes/docs/[...4]wallets/[...36]finoaconnect
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,18 @@ npm install @web3-onboard/core @web3-onboard/finoaconnect
25
25
26
26
## Usage
27
27
28
+ Optional initialization object
29
+ ``` typescript
30
+ /** Optional object provided to the initiation of the wallet connector.
31
+ * When not included, the wallet connector service connects to FinoaConnect production systems.
32
+ * @field {url} URL of the FinoaConnect backend systems to be used
33
+ * @field {labelSuffix} arbitrary string label to denote the context of the URL field */
34
+ export interface FinoaWalletOption {
35
+ url? : string
36
+ labelSuffix? : string
37
+ }
38
+ ```
39
+
28
40
``` typescript
29
41
import Onboard from ' @web3-onboard/core'
30
42
import finoaConnectModule from ' @web3-onboard/finoaconnect'
@@ -42,4 +54,4 @@ const onboard = Onboard({
42
54
43
55
const connectedWallets = await onboard .connectWallet ()
44
56
console .log (connectedWallets )
45
- ```
57
+ ```
You can’t perform that action at this time.
0 commit comments