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