optional wait parameter for interface
[electrum-nvc.git] / electrum
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2011 thomasv@gitorious
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 import re
20 import pkgutil
21 import sys, os, time, json
22 import optparse
23 import platform
24 from decimal import Decimal
25
26 try:
27     import ecdsa  
28 except ImportError:
29     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
30
31 try:
32     import aes
33 except ImportError:
34     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
35
36
37 # load local module as electrum
38 if os.path.exists("lib"):
39     import imp
40     fp, pathname, description = imp.find_module('lib')
41     imp.load_module('electrum', fp, pathname, description)
42     fp, pathname, description = imp.find_module('gui')
43     imp.load_module('electrum_gui', fp, pathname, description)
44
45
46 from electrum import *
47
48
49 # get password routine
50 def prompt_password(prompt, confirm=True):
51     import getpass
52     if sys.stdin.isatty():
53         password = getpass.getpass(prompt)
54         if password and confirm:
55             password2 = getpass.getpass("Confirm: ")
56             if password != password2:
57                 sys.exit("Error: Passwords do not match.")
58     else:
59         password = raw_input(prompt)
60     if not password:
61         password = None
62     return password
63
64 def arg_parser():
65     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
66     parser = optparse.OptionParser(prog=usage)
67     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
68     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
69     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
70     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
71     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance of listed addresses")
72     parser.add_option("-l", "--labels", action="store_true", dest="show_labels", default=False, help="show the labels of listed addresses")
73     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
74     parser.add_option("-F", "--fromaddr", dest="from_addr", default=None, help="set source address for payto/mktx. if it isn't in the wallet, it will ask for the private key unless supplied in the format public_key:private_key. It's not saved in the wallet.")
75     parser.add_option("-c", "--changeaddr", dest="change_addr", default=None, help="set the change address for payto/mktx. default is a spare address, or the source address if it's not in the wallet")
76     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
77     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
78     parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="show debugging information")
79     parser.add_option("-P", "--portable", action="store_true", dest="portable", default=False, help="portable wallet")
80     parser.add_option("-L", "--lang", dest="language", default=None, help="defaut language used in GUI")
81     parser.add_option("-u", "--usb", dest="bitkey", action="store_true", help="Turn on support for hardware wallets (EXPERIMENTAL)")
82     return parser
83
84
85 if __name__ == '__main__':
86
87     parser = arg_parser()
88     options, args = parser.parse_args()
89     set_verbosity(options.verbose)
90
91     # config is an object passed to the various constructors (wallet, interface, gui)
92     if 'ANDROID_DATA' in os.environ:
93         config_options = {'wallet_path':"/sdcard/electrum.dat", 'portable':True, 'verbose':True, 'gui':'android'}
94     else:
95         config_options = eval(str(options))
96         for k, v in config_options.items():
97             if v is None: config_options.pop(k)
98
99     # Wallet migration on Electrum 1.7
100     # Todo: In time we could remove this again
101     if platform.system() == "Windows":
102         util.check_windows_wallet_migration()
103
104     config = SimpleConfig(config_options)
105     wallet = Wallet(config)
106
107
108     if len(args)==0:
109         url = None
110         cmd = 'gui'
111     elif len(args)==1 and re.match('^bitcoin:', args[0]):
112         url = args[0]
113         cmd = 'gui'
114     else:
115         cmd = args[0]
116        
117
118     if cmd == 'gui':
119         gui_name = config.get('gui','classic')
120         try:
121             gui = __import__('electrum_gui.gui_' + gui_name, fromlist=['electrum_gui'])
122         except ImportError:
123             sys.exit("Error: Unknown GUI: " + gui_name )
124         
125         interface = Interface(config, True)
126         wallet.interface = interface
127         interface.start(wait = False)
128         interface.send([('server.peers.subscribe',[])])
129
130         gui = gui.ElectrumGui(wallet, config)
131
132         found = config.wallet_file_exists
133         if not found:
134             a = gui.restore_or_create()
135             if not a: exit()
136             # select a server.
137             s = gui.network_dialog()
138
139             if a =='create':
140                 wallet.init_seed(None)
141             else:
142                 # ask for seed and gap.
143                 sg = gui.seed_dialog()
144                 if not sg: exit()
145                 seed, gap = sg
146                 if not seed: exit()
147                 wallet.gap_limit = gap
148                 if len(seed) == 128:
149                     wallet.seed = ''
150                     wallet.init_sequence(str(seed))
151                 else:
152                     wallet.init_seed(str(seed))
153             
154
155             # generate the first addresses, in case we are offline
156             if s is None or a == 'create':
157                 wallet.synchronize()
158             if a == 'create':
159                 # display seed
160                 gui.show_seed()
161
162         verifier = WalletVerifier(interface, config)
163         wallet.set_verifier(verifier)
164         synchronizer = WalletSynchronizer(wallet, config)
165         synchronizer.start()
166
167         if not found and a == 'restore' and s is not None:
168             try:
169                 keep_it = gui.restore_wallet()
170                 wallet.fill_addressbook()
171             except:
172                 import traceback
173                 traceback.print_exc(file=sys.stdout)
174                 exit()
175
176             if not keep_it: exit()
177
178         if not found:
179             gui.password_dialog()
180
181         wallet.save()
182         verifier.start()
183         gui.main(url)
184         wallet.save()
185
186         verifier.stop()
187         synchronizer.stop()
188         interface.stop()
189
190         # we use daemon threads, their termination is enforced.
191         # this sleep command gives them time to terminate cleanly. 
192         time.sleep(0.1)
193         sys.exit(0)
194
195     if cmd not in known_commands:
196         cmd = 'help'
197
198     if not config.wallet_file_exists and cmd not in ['help','create','restore']:
199         print_msg("Error: Wallet file not found.")
200         print_msg("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
201         sys.exit(0)
202     
203     if cmd in ['create', 'restore']:
204         if config.wallet_file_exists:
205             sys.exit("Error: Remove the existing wallet first!")
206         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
207
208         server = config.get('server')
209         if not server: server = pick_random_server()
210         w_host, w_port, w_protocol = server.split(':')
211         host = raw_input("server (default:%s):"%w_host)
212         port = raw_input("port (default:%s):"%w_port)
213         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
214         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
215         gap = raw_input("gap limit (default 5):")
216         if host: w_host = host
217         if port: w_port = port
218         if protocol: w_protocol = protocol
219         wallet.config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
220         if fee: wallet.fee = float(fee)
221         if gap: wallet.gap_limit = int(gap)
222
223         if cmd == 'restore':
224             seed = raw_input("seed:")
225             try:
226                 seed.decode('hex')
227             except:
228                 print_error("Warning: Not hex, trying decode.")
229                 seed = mnemonic_decode( seed.split(' ') )
230             if not seed:
231                 sys.exit("Error: No seed")
232
233             if len(seed) == 128:
234                 wallet.seed = None
235                 wallet.init_sequence(str(seed))
236             else:
237                 wallet.seed = str(seed)
238                 wallet.init_mpk( wallet.seed )
239
240             if not options.offline:
241                 interface = Interface(config)
242                 interface.start(wait=True)
243                 wallet.interface = interface
244                 verifier = WalletVerifier(interface, config)
245                 wallet.set_verifier(verifier)
246
247                 print_msg("Recovering wallet...")
248                 WalletSynchronizer(wallet, config).start()
249                 wallet.update()
250                 if wallet.is_found():
251                     print_msg("Recovery successful")
252                 else:
253                     print_msg("Warning: Found no history for this wallet")
254             else:
255                 wallet.synchronize()
256             wallet.fill_addressbook()
257             wallet.save()
258             print_msg("Wallet saved in '%s'"%wallet.config.path)
259         else:
260             wallet.init_seed(None)
261             wallet.synchronize() # there is no wallet thread 
262             wallet.save()
263             print_msg("Your wallet generation seed is: " + wallet.seed)
264             print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
265             print_msg("Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:")
266             print_msg("\""+' '.join(mnemonic_encode(wallet.seed))+"\"")
267             print_msg("Wallet saved in '%s'"%wallet.config.path)
268             
269         if password:
270             wallet.update_password(wallet.seed, None, password)
271
272         # terminate
273         sys.exit(0)
274
275
276
277     # important warning
278     if cmd in ['dumpprivkey', 'dumpprivkeys']:
279         print_msg("WARNING: ALL your private keys are secret.")
280         print_msg("Exposing a single private key can compromise your entire wallet!")
281         print_msg("In particular, DO NOT use 'redeem private key' services proposed by third parties.")
282
283     # commands needing password
284     if cmd in protected_commands:
285         if wallet.use_encryption:
286             password = prompt_password('Password:', False)
287             if not password:
288                 print_msg("Error: Password required")
289                 exit(1)
290             # check password
291             try:
292                 seed = wallet.decode_seed(password)
293             except:
294                 print_msg("Error: This password does not decode this wallet.")
295                 exit(1)
296         else:
297             password = None
298             seed = wallet.seed
299     else:
300         password = None
301
302
303     # add missing arguments, do type conversions
304     if cmd == 'importprivkey':
305         # See if they specificed a key on the cmd line, if not prompt
306         if len(args) == 1:
307             args[1] = prompt_password('Enter PrivateKey (will not echo):', False)
308
309     elif cmd == 'signrawtransaction':
310         args = [ cmd, args[1], json.loads(args[2]) if len(args)>2 else [], json.loads(args[3]) if len(args)>3 else []]
311
312     elif cmd == 'createmultisig':
313         args = [ cmd, int(args[1]), json.loads(args[2])]
314
315     elif cmd == 'createrawtransaction':
316         args = [ cmd, json.loads(args[1]), json.loads(args[2])]
317
318     elif cmd == 'listaddresses':
319         args = [cmd, options.show_all, options.show_balance, options.show_labels]
320
321     elif cmd in ['payto', 'mktx']:
322         args = [ 'mktx', args[1], Decimal(args[2]), Decimal(options.tx_fee) if options.tx_fee else None, options.change_addr, options.from_addr ]
323
324     elif cmd == 'help':
325         if len(args) < 2:
326             parser.print_help()
327             print_msg("Type 'electrum help <command>' to see the help for a specific command")
328             print_msg("Type 'electrum --help' to see the list of options")
329
330
331                 
332
333     # check the number of arguments
334     min_args, max_args, description, syntax, options_syntax = known_commands[cmd]
335     if len(args) - 1 < min_args:
336         print_msg("Not enough arguments")
337         print_msg("Syntax:", syntax)
338         sys.exit(1)
339
340     if max_args >= 0 and len(args) - 1 > max_args:
341         print_msg("too many arguments", args)
342         print_msg("Syntax:", syntax)
343         sys.exit(1)
344
345     if max_args < 0:
346         if len(args) > min_args:
347             message = ' '.join(args[min_args:])
348             print_msg("Warning: Final argument was reconstructed from several arguments:", repr(message))
349             args = args[0:min_args] + [ message ]
350         
351
352
353
354
355     # open session
356     if cmd not in offline_commands and not options.offline:
357         interface = Interface(config)
358         interface.register_callback('connected', lambda: sys.stderr.write("Connected to " + interface.connection_msg + "\n"))
359         interface.start()
360         wallet.interface = interface
361         verifier = WalletVerifier(interface, config)
362         wallet.set_verifier(verifier)
363         synchronizer = WalletSynchronizer(wallet, config)
364         synchronizer.start()
365         wallet.update()
366         wallet.save()
367
368
369     # run the command
370
371     if cmd == 'deseed':
372         if not wallet.seed:
373             print_msg("Error: This wallet has no seed")
374         else:
375             ns = wallet.config.path + '.seedless'
376             print_msg("Warning: you are going to create a seedless wallet'\nIt will be saved in '%s'"%ns)
377             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
378                 wallet.config.path = ns
379                 wallet.seed = ''
380                 wallet.use_encryption = False
381                 wallet.config.set_key('seed','', True)
382                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
383                 wallet.save()
384                 print_msg("Done.")
385             else:
386                 print_msg("Action canceled.")
387
388     elif cmd == 'eval':
389         print_msg(eval(args[1]))
390         wallet.save()
391
392     elif cmd == 'getconfig':
393         key = args[1]
394         print_msg(wallet.config.get(key))
395
396     elif cmd == 'setconfig':
397         key, value = args[1:3]
398         if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']:
399             wallet.config.set_key(key, value, True)
400             print_msg(True)
401         else:
402             print_msg(False)
403
404     elif cmd == 'password':
405         new_password = prompt_password('New password:')
406         wallet.update_password(seed, password, new_password)
407
408     else:
409         cmd_runner = Commands(wallet, interface)
410         func = eval('cmd_runner.' + cmd)
411         cmd_runner.password = password
412         try:
413             result = func(*args[1:])
414         except BaseException, e:
415             print_msg("Error: " + str(e))
416             sys.exit(1)
417             
418         if type(result) == str:
419             util.print_msg(result)
420         elif result is not None:
421             util.print_json(result)
422             
423         
424
425     if cmd not in offline_commands and not options.offline:
426         verifier.stop()
427         synchronizer.stop()
428         interface.stop()
429         time.sleep(0.1)
430         sys.exit(0)