Skip to content

Commit 36e7065

Browse files
authored
ledger: Support new Ledger product IDs (Electron-Cash#3191)
* ledger: Support new Ledger product IDs Update existing product IDs according to Ledger documentation: https://github.com/LedgerHQ/app-openpgp/blob/d8ff80a80f66ddd147052aeba6d8c1f154eda47d/doc/user/app-openpgp.rst#manual-update-of-ccid Closes Electron-Cash#3161
1 parent 21a4170 commit 36e7065

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

electroncash_plugins/ledger/ledger.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,14 +569,20 @@ class LedgerPlugin(HW_PluginBase):
569569
(0x2c97, 0x0011), # Blue app-bitcoin >= 1.5.1
570570
(0x2c97, 0x0015), # Blue app-bitcoin >= 1.5.1
571571
(0x2c97, 0x0001), # Nano-S
572+
(0x2c97, 0x1000), # Nano-S
572573
(0x2c97, 0x1011), # Nano-S app-bitcoin >= 1.5.1
573574
(0x2c97, 0x1015), # Nano-S app-bitcoin >= 1.5.1
574575
(0x2c97, 0x0004), # Nano-X
576+
(0x2c97, 0x4000), # Nano-X
575577
(0x2c97, 0x4011), # Nano-X app-bitcoin >= 1.5.1
576578
(0x2c97, 0x4015), # Nano-X app-bitcoin >= 1.5.1
577579
(0x2c97, 0x0005), # Nano-S-Plus
580+
(0x2c97, 0x5000), # Nano-S-Plus
578581
(0x2c97, 0x5011), # Nano-S-Plus app-bitcoin >= 1.5.1
579582
(0x2c97, 0x5015), # Nano-S-Plus app-bitcoin >= 1.5.1
583+
(0x2c97, 0x6000), # Stax
584+
(0x2c97, 0x7000), # Flex
585+
(0x2c97, 0x8000), # Apex P
580586
]
581587

582588
def __init__(self, parent, config, name):

0 commit comments

Comments
 (0)