Skip to content

Commit c5d8ab6

Browse files
committed
update docs
1 parent fb253bc commit c5d8ab6

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

docs/getting-started/configuration.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ const manager = new WalletManager({
6363
WalletId.PERA,
6464
WalletId.EXODUS,
6565
WalletId.KIBISIS,
66+
WalletId.LUTE,
6667

6768
// Example of a wallet with optional customizations
6869
{
@@ -89,12 +90,6 @@ const manager = new WalletManager({
8990
apiKey: '<MAGIC_API_KEY>' // Required
9091
}
9192
},
92-
{
93-
id: WalletId.LUTE,
94-
options: {
95-
siteName: '<YOUR_SITE_NAME>' // Required
96-
}
97-
},
9893
{
9994
id: WalletId.BIATEC,
10095
options: {

docs/getting-started/supported-wallets.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,14 @@ Web and browser extension wallet with Ledger hardware support. [Installation ins
115115
```typescript
116116
import { WalletId } from '@txnlab/use-wallet'
117117

118-
// Configuration required
118+
// Basic usage (no options required)
119+
WalletId.LUTE
120+
121+
// With optional configuration
119122
{
120123
id: WalletId.LUTE,
121124
options: {
122-
siteName: string // Required: Your site name
125+
siteName?: string // Defaults to document title
123126
}
124127
}
125128
```

0 commit comments

Comments
 (0)