We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdb835 commit bbd8052Copy full SHA for bbd8052
packages/finoaconnect/README.md
@@ -8,6 +8,18 @@
8
9
## Usage
10
11
+Optional initialization object
12
+```typescript
13
+ /** Optional object provided to the initiation of the wallet connector.
14
+ * When not included, the wallet connector service connects to FinoaConnect production systems.
15
+ * @field {url} URL of the FinoaConnect backend systems to be used
16
+ * @field {labelSuffix} arbitrary string label to denote the context of the URL field */
17
+ export interface FinoaWalletOption {
18
+ url?: string
19
+ labelSuffix?: string
20
+ }
21
+```
22
+
23
```typescript
24
import Onboard from '@web3-onboard/core';
25
import finoaConnectModule from '@web3-onboard/finoaconnect';
@@ -36,4 +48,4 @@ const onboard = Onboard({
36
48
37
49
const connectedWallets = await onboard.connectWallet()
38
50
console.log(connectedWallets)
39
-```
51
0 commit comments