You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
from functools import partial |
|
|
|
from electrum.i18n import _ |
|
from electrum.plugin import hook |
|
from electrum.wallet import Standard_Wallet |
|
|
|
from ..hw_wallet.qt import QtHandlerBase, QtPluginBase |
|
from ..hw_wallet.plugin import only_hook_if_libraries_available |
|
from .digitalbitbox import DigitalBitboxPlugin |
|
|
|
|
|
class Plugin(DigitalBitboxPlugin, QtPluginBase): |
|
icon_unpaired = ":icons/digitalbitbox_unpaired.png" |
|
icon_paired = ":icons/digitalbitbox.png" |
|
|
|
def create_handler(self, window): |
|
return DigitalBitbox_Handler(window) |
|
|
|
@only_hook_if_libraries_available |
|
@hook |
|
def receive_menu(self, menu, addrs, wallet): |
|
if type(wallet) is not Standard_Wallet: |
|
return |
|
|
|
keystore = wallet.get_keystore() |
|
if type(keystore) is not self.keystore_class: |
|
return |
|
|
|
if not self.is_mobile_paired(): |
|
return |
|
|
|
if not keystore.is_p2pkh(): |
|
return |
|
|
|
if len(addrs) == 1: |
|
def show_address(): |
|
keystore.thread.add(partial(self.show_address, wallet, addrs[0], keystore)) |
|
|
|
menu.addAction(_("Show on {}").format(self.device), show_address) |
|
|
|
|
|
class DigitalBitbox_Handler(QtHandlerBase): |
|
|
|
def __init__(self, win): |
|
super(DigitalBitbox_Handler, self).__init__(win, 'Digital Bitbox')
|
|
|