Browse Source
contrib/requirements/requirements-hw.txt: bump bitbox02 dep to 5.0.0
Adds the api functions to sign a message and use p2wsh-p2sh legacy
segwit multisig.
patch-4
Marko Bencun
4 years ago
No known key found for this signature in database
GPG Key ID: 804538928C37EAE8
2 changed files with
2 additions and
2 deletions
-
contrib/requirements/requirements-hw.txt
-
electrum/plugins/bitbox02/bitbox02.py
|
@ -4,4 +4,4 @@ safet>=0.1.5 |
|
|
keepkey>=6.3.1 |
|
|
keepkey>=6.3.1 |
|
|
btchip-python>=0.1.30 |
|
|
btchip-python>=0.1.30 |
|
|
ckcc-protocol>=0.7.7 |
|
|
ckcc-protocol>=0.7.7 |
|
|
bitbox02>=4.0.0 |
|
|
bitbox02>=5.0.0 |
|
|
|
@ -599,7 +599,7 @@ class BitBox02_KeyStore(Hardware_KeyStore): |
|
|
|
|
|
|
|
|
class BitBox02Plugin(HW_PluginBase): |
|
|
class BitBox02Plugin(HW_PluginBase): |
|
|
keystore_class = BitBox02_KeyStore |
|
|
keystore_class = BitBox02_KeyStore |
|
|
minimum_library = (4, 0, 0) |
|
|
minimum_library = (5, 0, 0) |
|
|
DEVICE_IDS = [(0x03EB, 0x2403)] |
|
|
DEVICE_IDS = [(0x03EB, 0x2403)] |
|
|
|
|
|
|
|
|
SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh") |
|
|
SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh") |
|
|