792cbb24f847e0b2bbddad09f7501349b6f94b40
[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 sys
21 import optparse
22
23 try:
24     from lib.util import print_error
25 except ImportError:
26     from electrum.util import print_error
27
28 try:
29     import ecdsa  
30 except ImportError:
31     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
32
33 try:
34     import aes
35 except ImportError:
36     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
37
38 try:
39     from lib import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
40 except ImportError:
41     from electrum import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
42
43 from decimal import Decimal
44
45 known_commands = {
46     'help':'Prints this help',
47     'validateaddress':'Check that the address is valid', 
48     'balance': "Display the balance of your wallet or of an address.\nSyntax: balance [<address>]", 
49     'contacts': "Show your list of contacts", 
50     'create':'Create a wallet', 
51     'restore':'Restore a wallet', 
52     'payto':"""Create and broadcast a transaction.
53 Syntax: payto <recipient> <amount> [label]
54 <recipient> can be a bitcoin address or a label
55 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
56             """,
57     'sendtx':
58             'Broadcasts a transaction to the network. \nSyntax: sendtx <tx>\n<tx> must be in hexadecimal.',
59     'password': 
60             "Changes your password",
61     'addresses':  
62             """Shows your list of addresses.
63 options:
64   -a: show all addresses, including change addresses
65   -k: show private keys
66   -b: show the balance of addresses""",
67
68     'history':"Shows the transaction history",
69     'label':'Assign a label to an item\nSyntax: label <tx_hash> <label>',
70     'mktx':
71         """Create a signed transaction, password protected.
72 Syntax: mktx <recipient> <amount> [label]
73 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
74         """,
75     'seed':
76             "Print the generation seed of your wallet.",
77     'import': 
78             'Imports a key pair\nSyntax: import <address>:<privatekey>',
79     'signmessage':
80             'Signs a message with a key\nSyntax: signmessage <address> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "',
81     'verifymessage':
82              'Verifies a signature\nSyntax: verifymessage <address> <signature> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "',
83     'eval':  
84              "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
85     'set': 
86              "Set wallet parameter. (gui)",
87     'deseed':
88             "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
89     'reseed':
90             "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
91     'freeze':'',
92     'unfreeze':'',
93     'prioritize':'',
94     'unprioritize':'',
95     }
96
97
98
99 offline_commands = [ 'password', 'mktx',
100                      'label', 'contacts',
101                      'help', 'validateaddress',
102                      'signmessage', 'verifymessage',
103                      'eval', 'set', 'create', 'addresses',
104                      'import', 'seed',
105                      'deseed','reseed',
106                      'freeze','unfreeze',
107                      'prioritize','unprioritize']
108
109
110 protected_commands = ['payto', 'password', 'mktx', 'seed', 'import','signmessage' ]
111
112 # get password routine
113 def prompt_password(prompt, confirm=True):
114     import getpass
115     if sys.stdin.isatty():
116         password = getpass.getpass(prompt)
117         if password and confirm:
118             password2 = getpass.getpass("Confirm: ")
119             if password != password2:
120                 sys.exit("Error: Passwords do not match.")
121     else:
122         password = raw_input(prompt)
123     if not password:
124         password = None
125     return password
126
127
128
129 if __name__ == '__main__':
130
131     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
132     parser = optparse.OptionParser(prog=usage)
133     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
134     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
135     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
136     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
137     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
138     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
139     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
140     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.")
141     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")
142     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
143     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
144     options, args = parser.parse_args()
145
146     # config is an object passed to the various constructors (wallet, interface, gui)
147     config = SimpleConfig(options)
148     wallet = Wallet(config)
149
150     if len(args)==0:
151         url = None
152         cmd = 'gui'
153     elif len(args)==1 and re.match('^bitcoin:', args[0]):
154         url = args[0]
155         cmd = 'gui'
156     else:
157         cmd = args[0]
158         firstarg = args[1] if len(args) > 1 else ''
159        
160     #this entire if/else block is just concerned with importing the 
161     #right GUI toolkit based the GUI command line option given 
162     if cmd == 'gui':
163         pref_gui = config.get('gui','classic')
164         if pref_gui == 'gtk':
165             try:
166                 import lib.gui as gui
167             except ImportError:
168                 import electrum.gui as gui
169         elif pref_gui in ['classic', 'qt']:
170             try:
171                 import lib.gui_qt as gui
172             except ImportError:
173                 import electrum.gui_qt as gui
174         elif pref_gui == 'lite':
175               try:
176                   import lib.gui_lite as gui
177               except ImportError:
178                   import electrum.gui_lite as gui
179         elif pref_gui == 'text':
180               try:
181                   import lib.gui_text as gui
182               except ImportError:
183                   import electrum.gui_text as gui
184         else:
185             sys.exit("Error: Unknown GUI: " + pref_gui )
186
187         gui = gui.ElectrumGui(wallet, config)
188         interface = Interface(config, True)
189         interface.register_callback('peers', gui.server_list_changed)
190         interface.start()
191         wallet.interface = interface
192
193         WalletSynchronizer(wallet, config).start()
194         WalletVerifier(wallet, config).start()
195
196         try:
197             found = config.wallet_file_exists
198             if not found:
199                 found = gui.restore_or_create()
200         except SystemExit, e:
201             exit(e)
202         except BaseException, e:
203             import traceback
204             traceback.print_exc(file=sys.stdout)
205             #gui.show_message(e.message)
206             exit(1)
207
208         if not found:
209             exit(1)
210         gui.main(url)
211         wallet.save()
212         sys.exit(0)
213
214     if cmd not in known_commands:
215         cmd = 'help'
216
217     if not config.wallet_file_exists and cmd not in ['help','create','restore']:
218         print "Error: Wallet file not found."
219         print "Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option"
220         sys.exit(0)
221     
222     if cmd in ['create', 'restore']:
223         if config.wallet_file_exists:
224             sys.exit("Error: Remove the existing wallet first!")
225         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
226
227         server = config.get('server')
228         if not server: server = pick_random_server()
229         w_host, w_port, w_protocol = server.split(':')
230         host = raw_input("server (default:%s):"%w_host)
231         port = raw_input("port (default:%s):"%w_port)
232         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
233         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
234         gap = raw_input("gap limit (default 5):")
235         if host: w_host = host
236         if port: w_port = port
237         if protocol: w_protocol = protocol
238         wallet.config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
239         if fee: wallet.fee = float(fee)
240         if gap: wallet.gap_limit = int(gap)
241
242         if cmd == 'restore':
243             seed = raw_input("seed:")
244             try:
245                 seed.decode('hex')
246             except:
247                 print_error("Warning: Not hex, trying decode.")
248                 seed = mnemonic.mn_decode( seed.split(' ') )
249             if not seed:
250                 sys.exit("Error: No seed")
251
252             wallet.seed = str(seed)
253             wallet.init_mpk( wallet.seed )
254             if not options.offline:
255                 WalletSynchronizer(wallet, config).start()
256                 print "Recovering wallet..."
257                 wallet.up_to_date_event.clear()
258                 wallet.up_to_date = False
259                 wallet.update()
260                 if wallet.is_found():
261                     print "Recovery successful"
262                 else:
263                     print_error("Warning: Found no history for this wallet")
264             else:
265                 wallet.synchronize()
266             wallet.fill_addressbook()
267             wallet.save()
268             print_error("Wallet saved in '" + wallet.path)
269         else:
270             wallet.new_seed(None)
271             wallet.init_mpk( wallet.seed )
272             wallet.synchronize() # there is no wallet thread 
273             wallet.save()
274             print "Your wallet generation seed is: " + wallet.seed
275             print "Please keep it in a safe place; if you lose it, you will not be able to restore your wallet."
276             print "Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:"
277             print "\""+' '.join(mnemonic.mn_encode(wallet.seed))+"\""
278             print "Wallet saved in '%s'"%wallet.config.path
279             
280         if password:
281             wallet.update_password(wallet.seed, None, password)
282
283     # check syntax
284     if cmd in ['payto', 'mktx']:
285         try:
286             to_address = args[1]
287             amount = int( 100000000 * Decimal(args[2]) )
288             change_addr = None
289             label = ' '.join(args[3:])
290             if options.tx_fee: 
291                 options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
292         except:
293             firstarg = cmd
294             cmd = 'help'
295
296     # open session
297     if cmd not in offline_commands and not options.offline:
298         interface = Interface(config)
299         interface.register_callback('connected', lambda: print_error("Connected to " + interface.connection_msg))
300         interface.start()
301         wallet.interface = interface
302         WalletSynchronizer(wallet, config).start()
303         wallet.update()
304         wallet.save()
305
306     # check if --from_addr not in wallet (for mktx/payto)
307     is_temporary = False
308     from_addr = None
309     if options.from_addr:
310         from_addr = options.from_addr
311         if from_addr not in wallet.all_addresses():
312             is_temporary = True
313                 
314     # important warning
315     if cmd=='addresses' and options.show_keys:
316         print "WARNING: ALL your private keys are secret."
317         print "Exposing a single private key can compromise your entire wallet!"
318         print "In particular, DO NOT use 'redeem private key' services proposed by third parties."
319
320     # commands needing password
321     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
322         password = prompt_password('Password:', False) if wallet.use_encryption and not is_temporary else None
323         # check password
324         try:
325             wallet.pw_decode( wallet.seed, password)
326         except:
327             print_error("Error: This password does not decode this wallet.")
328             exit(1)
329
330     if cmd == 'import':
331         # See if they specificed a key on the cmd line, if not prompt
332         if len(args) > 1:
333             keypair = args[1]
334         else:
335             keypair = prompt_password('Enter Address:PrivateKey (will not echo):', False)
336         try:
337             wallet.import_key(keypair,password)
338             wallet.save()
339             print "Keypair imported"
340         except BaseException, e:
341             print_error("Error: Keypair import failed: " + str(e))
342
343     if cmd == 'help':
344         cmd2 = firstarg
345         if cmd2 not in known_commands:
346             parser.print_help()
347             print "Type 'electrum help <command>' to see the help for a specific command"
348             print "Type 'electrum --help' to see the list of options"
349             print "List of commands:", ', '.join(known_commands)
350         else:
351             print known_commands[cmd2]
352
353     elif cmd == 'seed':
354         seed = wallet.pw_decode( wallet.seed, password)
355         print seed + ' "' + ' '.join(mnemonic.mn_encode(seed)) + '"'
356
357     elif cmd == 'deseed':
358         if not wallet.seed:
359             print_error("Error: This wallet has no seed")
360         elif wallet.use_encryption:
361             print_error("Error: This wallet is encrypted")
362         else:
363             ns = wallet.path + '.seed'
364             print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(wallet.path,ns)
365             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
366                 f = open(ns,'w')
367                 f.write(repr({'seed':wallet.seed, 'imported_keys':wallet.imported_keys})+"\n")
368                 f.close()
369                 wallet.seed = ''
370                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
371                 wallet.save()
372                 print "Done."
373             else:
374                 print_error("Action canceled.")
375
376     elif cmd == 'reseed':
377         if wallet.seed:
378             print "Warning: This wallet already has a seed", wallet.seed
379         else:
380             ns = wallet.path + '.seed'
381             try:
382                 f = open(ns,'r')
383                 data = f.read()
384                 f.close()
385             except IOError:
386                 sys.exit("Error: Seed file not found")
387             try:
388                 import ast
389                 d = ast.literal_eval( data )
390                 seed = d['seed']
391                 imported_keys = d.get('imported_keys',{})
392             except:
393                 sys.exit("Error: Error with seed file")
394
395             mpk = wallet.master_public_key
396             wallet.seed = seed
397             wallet.imported_keys = imported_keys
398             wallet.use_encryption = False
399             wallet.init_mpk(seed)
400             if mpk == wallet.master_public_key:
401                 wallet.save()
402                 print "Done: " + wallet.path
403             else:
404                 print_error("Error: Master public key does not match")
405
406     elif cmd == 'validateaddress':
407         addr = args[1]
408         print wallet.is_valid(addr)
409
410     elif cmd == 'balance':
411         try:
412             addrs = args[1:]
413         except:
414             pass
415         if addrs == []:
416             c, u = wallet.get_balance()
417             if u:
418                 print Decimal( c ) / 100000000 , Decimal( u ) / 100000000
419             else:
420                 print Decimal( c ) / 100000000
421         else:
422             for addr in addrs:
423                 c, u = wallet.get_addr_balance(addr)
424                 if u:
425                     print "%s %s, %s" % (addr, str(Decimal(c)/100000000), str(Decimal(u)/100000000))
426                 else:
427                     print "%s %s" % (addr, str(Decimal(c)/100000000))
428
429     elif cmd in [ 'contacts']:
430         for addr in wallet.addressbook:
431             print addr, "   ", wallet.labels.get(addr)
432
433     elif cmd == 'eval':
434         print eval(args[1])
435         wallet.save()
436
437     elif cmd == 'set':
438         key, value = args[1:3]
439         if key in ['gui', 'server', 'proxy', 'fee', 'gap_limit', 'use_change']:
440             wallet.config.set_key(key, value, True)
441             print True
442         else:
443             print False
444
445     elif cmd in [ 'addresses']:
446         for addr in wallet.all_addresses():
447             if options.show_all or not wallet.is_change(addr):
448
449                 flags = wallet.get_address_flags(addr)
450                 label = wallet.labels.get(addr,'')
451                 
452                 if label: label = "\"%s\""%label
453
454                 if options.show_balance:
455                     h = wallet.history.get(addr,[])
456                     #ni = no = 0
457                     #for item in h:
458                     #    if item['is_input']:  ni += 1
459                     #    else:              no += 1
460                     b = format_satoshis(wallet.get_addr_balance(addr)[0])
461                 else: b=''
462                 m_addr = "%34s"%addr
463                 if options.show_keys:
464                     m_addr += ':' + str(wallet.get_private_key_base58(addr, password))
465                 print flags, m_addr, b, label
466
467     if cmd == 'history':
468         lines = wallet.get_tx_history()
469         b = 0 
470         for line in lines:
471             import datetime
472             v = line['value'] 
473             b += v
474             try:
475                 time_str = str( datetime.datetime.fromtimestamp( line['timestamp']))
476             except:
477                 print line['timestamp']
478                 time_str = 'pending'
479             label = line.get('label')
480             if not label: label = line['tx_hash']
481             else: label = label + ' '*(64 - len(label) )
482
483             print time_str , "  " + label + "  " + format_satoshis(v)+ "  "+ format_satoshis(b)
484         print "# balance: ", format_satoshis(b)
485
486     elif cmd == 'label':
487         try:
488             tx = args[1]
489             label = ' '.join(args[2:])
490         except:
491             print_error("Error. Syntax:  label <tx_hash> <text>")
492             sys.exit(1)
493         wallet.labels[tx] = label
494         wallet.save()
495             
496     elif cmd in ['payto', 'mktx']:
497         if from_addr and is_temporary:
498             if from_addr.find(":") == -1:
499                 keypair = from_addr + ":" + prompt_password('Private key:', False)
500             else:
501                 keypair = from_addr
502                 from_addr = keypair.split(':')[0]
503             if not wallet.import_key(keypair,password):
504                 print_error("Error: Invalid key pair")
505                 exit(1)
506             wallet.history[from_addr] = interface.retrieve_history(from_addr)
507             wallet.update_tx_history()
508             change_addr = from_addr
509
510         if options.change_addr:
511             change_addr = options.change_addr
512
513         for k, v in wallet.labels.items():
514             if v == to_address:
515                 to_address = k
516                 print "alias", to_address
517                 break
518             if change_addr and v == change_addr:
519                 change_addr = k
520         try:
521             tx = wallet.mktx( to_address, amount, label, password,
522                 fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
523         except:
524             import traceback
525             traceback.print_exc(file=sys.stdout)
526             tx = None
527
528         if tx and cmd=='payto': 
529             r, h = wallet.sendtx( tx )
530             print h
531         else:
532             print tx
533
534         if is_temporary:
535             wallet.imported_keys.pop(from_addr)
536             del(wallet.history[from_addr])
537         wallet.save()
538
539     elif cmd == 'sendtx':
540         tx = args[1]
541         r, h = wallet.sendtx( tx )
542         print h
543
544     elif cmd == 'password':
545         try:
546             seed = wallet.pw_decode( wallet.seed, password)
547         except ValueError:
548             sys.exit("Error: Password does not decrypt this wallet.")
549
550         new_password = prompt_password('New password:')
551         wallet.update_password(seed, password, new_password)
552
553     elif cmd == 'signmessage':
554         if len(args) < 3:
555             print_error("Error: Invalid usage of signmessage.")
556             print known_commands[cmd]
557             sys.exit(1)
558         address = args[1]
559         message = ' '.join(args[2:])
560         if len(args) > 3:
561             print "Warning: Message was reconstructed from several arguments:", repr(message)
562         print wallet.sign_message(address, message, password)
563
564     elif cmd == 'verifymessage':
565         try:
566             address = args[1]
567             signature = args[2]
568             message = ' '.join(args[3:])
569         except:
570             print_error("Error: Not all parameters were given, displaying help instead.")
571             print known_commands[cmd]
572             sys.exit(1)
573         if len(args) > 4:
574             print "Warning: Message was reconstructed from several arguments:", repr(message)
575         try:
576             wallet.verify_message(address, signature, message)
577             print True
578         except BaseException as e:
579             print "Verification error: {0}".format(e)
580             print False
581
582     elif cmd == 'freeze':
583         addr = args[1]
584         print wallet.freeze(addr)
585         
586     elif cmd == 'unfreeze':
587         addr = args[1]
588         print wallet.unfreeze(addr)
589
590     elif cmd == 'prioritize':
591         addr = args[1]
592         print wallet.prioritize(addr)
593
594     elif cmd == 'unprioritize':
595         addr = args[1]
596         print wallet.unprioritize(addr)
597