File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ const manager = new WalletManager({
63
63
WalletId .PERA ,
64
64
WalletId .EXODUS ,
65
65
WalletId .KIBISIS ,
66
+ WalletId .LUTE ,
66
67
67
68
// Example of a wallet with optional customizations
68
69
{
@@ -89,12 +90,6 @@ const manager = new WalletManager({
89
90
apiKey: ' <MAGIC_API_KEY>' // Required
90
91
}
91
92
},
92
- {
93
- id: WalletId .LUTE ,
94
- options: {
95
- siteName: ' <YOUR_SITE_NAME>' // Required
96
- }
97
- },
98
93
{
99
94
id: WalletId .BIATEC ,
100
95
options: {
Original file line number Diff line number Diff line change @@ -115,11 +115,14 @@ Web and browser extension wallet with Ledger hardware support. [Installation ins
115
115
``` typescript
116
116
import { WalletId } from ' @txnlab/use-wallet'
117
117
118
- // Configuration required
118
+ // Basic usage (no options required)
119
+ WalletId .LUTE
120
+
121
+ // With optional configuration
119
122
{
120
123
id : WalletId .LUTE ,
121
124
options : {
122
- siteName : string // Required: Your site name
125
+ siteName ? : string // Defaults to document title
123
126
}
124
127
}
125
128
```
You can’t perform that action at this time.
0 commit comments