From 83ee260ab73f67b4d7a40261fe9b526c1a4ec79f Mon Sep 17 00:00:00 2001 From: 3rd Iteration Date: Tue, 4 Apr 2023 03:27:38 -0400 Subject: [PATCH] Add Device IDs for DIY Jade on M5StickC-Plus (#8291) --- electrum/plugins/jade/jade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/jade/jade.py b/electrum/plugins/jade/jade.py index 2a68e0ad4..1493de8c2 100644 --- a/electrum/plugins/jade/jade.py +++ b/electrum/plugins/jade/jade.py @@ -349,7 +349,7 @@ class Jade_KeyStore(Hardware_KeyStore): class JadePlugin(HW_PluginBase): keystore_class = Jade_KeyStore minimum_library = (0, 0, 1) - DEVICE_IDS = [(0x10c4, 0xea60), (0x1a86, 0x55d4)] + DEVICE_IDS = [(0x10c4, 0xea60), (0x1a86, 0x55d4), (0x0403, 0x6001)] SUPPORTED_XTYPES = ('standard', 'p2wpkh-p2sh', 'p2wpkh', 'p2wsh-p2sh', 'p2wsh') MIN_SUPPORTED_FW_VERSION = (0, 1, 32)