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 aa78741 commit a90be31Copy full SHA for a90be31
src/modules/select/wallets/ledger.ts
@@ -188,12 +188,13 @@ async function ledgerProvider(options: {
188
i < numberToGet + addressesAlreadyFetched;
189
i++
190
) {
191
- const ledgerPath = `${basePath}/0'/${i}`
192
- const bipPath = `${basePath}/${i}'/0/0`
193
- paths.push(ledgerPath, bipPath)
+ const ledgerLive = `${basePath}/${i}'/0/0`
+ const legacy = `${basePath}/0'/${i}'`
+
194
+ paths.push(ledgerLive, legacy)
195
}
196
} else {
- paths.push(`${basePath}/0'/0`)
197
+ paths.push(`${basePath}/0'/0`, `${basePath}/0'/0/0`)
198
199
200
let transport
0 commit comments