forked from cerc-io/plugeth
accounts/usbwallet: enable the Nano X and upcoming Ledger IDs (#19623)
This commit is contained in:
parent
fec3b56f7f
commit
922e757f19
@ -68,7 +68,20 @@ type Hub struct {
|
|||||||
|
|
||||||
// NewLedgerHub creates a new hardware wallet manager for Ledger devices.
|
// NewLedgerHub creates a new hardware wallet manager for Ledger devices.
|
||||||
func NewLedgerHub() (*Hub, error) {
|
func NewLedgerHub() (*Hub, error) {
|
||||||
return newHub(LedgerScheme, 0x2c97, []uint16{0x0000 /* Ledger Blue */, 0x0001 /* Ledger Nano S */}, 0xffa0, 0, newLedgerDriver)
|
return newHub(LedgerScheme, 0x2c97, []uint16{
|
||||||
|
// Original product IDs
|
||||||
|
0x0000, /* Ledger Blue */
|
||||||
|
0x0001, /* Ledger Nano S */
|
||||||
|
0x0004, /* Ledger Nano X */
|
||||||
|
|
||||||
|
// Upcoming product IDs: https://www.ledger.com/2019/05/17/windows-10-update-sunsetting-u2f-tunnel-transport-for-ledger-devices/
|
||||||
|
0x0015, /* HID + U2F + WebUSB Ledger Blue */
|
||||||
|
0x1015, /* HID + U2F + WebUSB Ledger Nano S */
|
||||||
|
0x4015, /* HID + U2F + WebUSB Ledger Nano X */
|
||||||
|
0x0011, /* HID + WebUSB Ledger Blue */
|
||||||
|
0x1011, /* HID + WebUSB Ledger Nano S */
|
||||||
|
0x4011, /* HID + WebUSB Ledger Nano X */
|
||||||
|
}, 0xffa0, 0, newLedgerDriver)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTrezorHub creates a new hardware wallet manager for Trezor devices.
|
// NewTrezorHub creates a new hardware wallet manager for Trezor devices.
|
||||||
|
Loading…
Reference in New Issue
Block a user