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