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.
32 lines
839 B
32 lines
839 B
from keepkey import KeepKeyPlugin
|
|
from electrum.util import print_msg
|
|
from electrum.plugins import hook
|
|
|
|
class KeepKeyCmdLineHandler:
|
|
|
|
def get_passphrase(self, msg):
|
|
import getpass
|
|
print_msg(msg)
|
|
return getpass.getpass('')
|
|
|
|
def get_pin(self, msg):
|
|
t = { 'a':'7', 'b':'8', 'c':'9', 'd':'4', 'e':'5', 'f':'6', 'g':'1', 'h':'2', 'i':'3'}
|
|
print_msg(msg)
|
|
print_msg("a b c\nd e f\ng h i\n-----")
|
|
o = raw_input()
|
|
return ''.join(map(lambda x: t[x], o))
|
|
|
|
def stop(self):
|
|
pass
|
|
|
|
def show_message(self, msg):
|
|
print_msg(msg)
|
|
|
|
class Plugin(KeepKeyPlugin):
|
|
@hook
|
|
def cmdline_load_wallet(self, wallet):
|
|
self.wallet = wallet
|
|
self.wallet.plugin = self
|
|
if self.handler is None:
|
|
self.handler = KeepKeyCmdLineHandler()
|
|
|
|
|