Fix comment.
[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, sys
20 try:
21     from lib.util import print_error
22 except ImportError:
23     from electrum.util import print_error
24
25 try:
26     import ecdsa  
27 except:
28     print_error("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
29     sys.exit(1)
30
31 try:
32     import aes
33 except:
34     print_error("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
35     sys.exit(1)
36
37 try:
38     from lib import Wallet, WalletSynchronizer, format_satoshis, mnemonic, prompt_password
39 except ImportError:
40     from electrum import Wallet, WalletSynchronizer, format_satoshis, mnemonic, prompt_password
41     
42 from optparse import OptionParser
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>',
81     'verifymessage':
82              'Verifies a signature\nSyntax: verifymessage <address> <signature> <message>',
83     'eval':  
84              "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
85     'deseed':
86             "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
87     'reseed':
88             "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
89     'freeze':'',
90     'unfreeze':'',
91     'prioritize':'',
92     'unprioritize':'',
93     }
94
95
96
97 offline_commands = [ 'password', 'mktx', 'label', 'contacts', 'help', 'validateaddress', 'signmessage', 'verifymessage', 'eval', 'create', 'addresses', 'import', 'seed','deseed','reseed','freeze','unfreeze','prioritize','unprioritize']
98
99 protected_commands = ['payto', 'password', 'mktx', 'seed', 'import','signmessage' ]
100
101 if __name__ == '__main__':
102
103     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
104     parser = OptionParser(usage=usage)
105     parser.add_option("-g", "--gui", dest="gui", default="lite", help="gui")
106     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
107     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
108     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
109     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
110     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
111     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
112     parser.add_option("-s", "--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.")
113     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")
114     parser.add_option("-r", "--remote", dest="remote_url", default=None, help="URL of a remote wallet")
115     options, args = parser.parse_args()
116
117     wallet = Wallet()
118     wallet.set_path(options.wallet_path)
119     wallet.read()
120     wallet.remote_url = options.remote_url
121
122     if len(args)==0:
123         url = None
124         cmd = 'gui'
125     elif len(args)==1 and re.match('^bitcoin:', args[0]):
126         url = args[0]
127         cmd = 'gui'
128     else:
129         cmd = args[0]
130         firstarg = args[1] if len(args) > 1 else ''
131         
132     if cmd == 'gui':
133         if options.gui=='gtk':
134             try:
135                 import lib.gui as gui
136             except ImportError:
137                 import electrum.gui as gui
138         elif options.gui=='qt':
139             try:
140                 import lib.gui_qt as gui
141             except ImportError:
142                 import electrum.gui_qt as gui
143         elif options.gui == 'lite':
144             try:
145                 import lib.gui_lite as gui
146             except ImportError:
147                 import electrum.gui_lite as gui
148         else:
149             print_error("Error: Unknown GUI: " + options.gui)
150             exit(1)
151
152         gui = gui.ElectrumGui(wallet)
153         WalletSynchronizer(wallet,True).start()
154
155         try:
156             found = wallet.file_exists
157             if not found:
158                 found = gui.restore_or_create()
159         except SystemExit, e:
160             exit(e)
161         except BaseException, e:
162             import traceback
163             traceback.print_exc(file=sys.stdout)
164             #gui.show_message(e.message)
165             exit(1)
166
167         if not found:
168             exit(1)
169         gui.main(url)
170         wallet.save()
171         sys.exit(0)
172
173     if cmd not in known_commands:
174         cmd = 'help'
175
176     if not wallet.file_exists and cmd not in ['help','create','restore']:
177         print_error("Error: Wallet file not found.")
178         print_error("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
179         sys.exit(0)
180     
181     if cmd in ['create', 'restore']:
182         if wallet.file_exists:
183             print_error("Error: Remove the existing wallet first!")
184             sys.stderr.flush()
185             sys.exit(0)
186         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
187
188         w_host, w_port, w_protocol = wallet.server.split(':')
189         host = raw_input("server (default:%s):"%w_host)
190         port = raw_input("port (default:%s):"%w_port)
191         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
192         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
193         gap = raw_input("gap limit (default 5):")
194         if host: w_host = host
195         if port: w_port = port
196         if protocol: w_protocol = protocol
197         wallet.server = w_host + ':' + w_port + ':' +w_protocol
198         if fee: wallet.fee = float(fee)
199         if gap: wallet.gap_limit = int(gap)
200
201         if cmd == 'restore':
202             seed = raw_input("seed:")
203             try:
204                 seed.decode('hex')
205             except:
206                 print_error("Warning: Not hex, trying decode.")
207                 seed = mnemonic.mn_decode( seed.split(' ') )
208             if not seed:
209                 print_error("Error: No seed")
210                 sys.exit(1)
211
212             wallet.seed = str(seed)
213             wallet.init_mpk( wallet.seed )
214             if not options.offline:
215                 WalletSynchronizer(wallet).start()
216                 print "Recovering wallet..."
217                 wallet.up_to_date_event.clear()
218                 wallet.up_to_date = False
219                 wallet.update()
220                 if wallet.is_found():
221                     print "Recovery successful"
222                 else:
223                     print_error("Warning: Found no history for this wallet")
224             wallet.fill_addressbook()
225             wallet.save()
226             print_error("Wallet saved in '" + wallet.path)
227         else:
228             wallet.new_seed(None)
229             wallet.init_mpk( wallet.seed )
230             wallet.synchronize() # there is no wallet thread 
231             wallet.save()
232             print "Your wallet generation seed is: " + wallet.seed
233             print "Please keep it in a safe place; if you lose it, you will not be able to restore your wallet."
234             print "Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:"
235             print "\""+' '.join(mnemonic.mn_encode(wallet.seed))+"\""
236             print "Wallet saved in '%s'"%wallet.path
237             
238         if password:
239             wallet.update_password(wallet.seed, None, password)
240
241     # check syntax
242     if cmd in ['payto', 'mktx']:
243         try:
244             to_address = args[1]
245             amount = int( 100000000 * Decimal(args[2]) )
246             change_addr = None
247             label = ' '.join(args[3:])
248             if options.tx_fee: 
249                 options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
250         except:
251             firstarg = cmd
252             cmd = 'help'
253
254     # open session
255     if cmd not in offline_commands and not options.offline:
256         WalletSynchronizer(wallet).start()
257         wallet.update()
258         wallet.save()
259
260     # check if --from_addr not in wallet (for mktx/payto)
261     is_temporary = False
262     from_addr = None
263     if options.from_addr:
264         from_addr = options.from_addr
265         if from_addr not in wallet.all_addresses():
266             is_temporary = True
267                 
268     # commands needing password
269     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
270         password = prompt_password('Password:') if wallet.use_encryption and not is_temporary else None
271         # check password
272         try:
273             wallet.pw_decode( wallet.seed, password)
274         except:
275             print_error("Error: This password does not decode this wallet.")
276             exit(1)
277
278     if cmd == 'import':
279         keypair = args[1]
280         try:
281             wallet.import_key(keypair,password)
282             wallet.save()
283             print "Keypair imported"
284         except BaseException, e:
285             print_error("Error: Keypair import failed: " + str(e))
286
287     if cmd == 'help':
288         cmd2 = firstarg
289         if cmd2 not in known_commands:
290             parser.print_help()
291             print
292             print "Type 'electrum help <command>' to see the help for a specific command"
293             print "Type 'electrum --help' to see the list of options"
294             print "List of commands:", ', '.join(known_commands)
295         else:
296             print known_commands[cmd2]
297
298     elif cmd == 'seed':
299         seed = wallet.pw_decode( wallet.seed, password)
300         print seed + ' "' + ' '.join(mnemonic.mn_encode(seed)) + '"'
301
302     elif cmd == 'deseed':
303         if not wallet.seed:
304             print_error("Error: This wallet has no seed")
305         elif wallet.use_encryption:
306             print_error("Error: This wallet is encrypted")
307         else:
308             ns = wallet.path + '.seed'
309             print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(wallet.path,ns)
310             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
311                 f = open(ns,'w')
312                 f.write(repr({'seed':wallet.seed, 'imported_keys':wallet.imported_keys})+"\n")
313                 f.close()
314                 wallet.seed = ''
315                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
316                 wallet.save()
317                 print "Done."
318             else:
319                 print_error("Action canceled.")
320
321     elif cmd == 'reseed':
322         if wallet.seed:
323             print "Warning: This wallet already has a seed", wallet.seed
324         else:
325             ns = wallet.path + '.seed'
326             try:
327                 f = open(ns,'r')
328                 data = f.read()
329                 f.close()
330             except:
331                 print_error("Error: Seed file not found")
332                 sys.exit()
333             try:
334                 import ast
335                 d = ast.literal_eval( data )
336                 seed = d['seed']
337                 imported_keys = d.get('imported_keys',{})
338             except:
339                 print_error("Error: Error with seed file")
340                 sys.exit(1)
341
342             mpk = wallet.master_public_key
343             wallet.seed = seed
344             wallet.imported_keys = imported_keys
345             wallet.use_encryption = False
346             wallet.init_mpk(seed)
347             if mpk == wallet.master_public_key:
348                 wallet.save()
349                 print "Done: " + wallet.path
350             else:
351                 print_error("Error: Master public key does not match")
352
353     elif cmd == 'validateaddress':
354         addr = args[1]
355         print wallet.is_valid(addr)
356
357     elif cmd == 'balance':
358         try:
359             addrs = args[1:]
360         except:
361             pass
362         if addrs == []:
363             c, u = wallet.get_balance()
364             if u:
365                 print Decimal( c ) / 100000000 , Decimal( u ) / 100000000
366             else:
367                 print Decimal( c ) / 100000000
368         else:
369             for addr in addrs:
370                 c, u = wallet.get_addr_balance(addr)
371                 if u:
372                     print "%s %s, %s" % (addr, str(Decimal(c)/100000000), str(Decimal(u)/100000000))
373                 else:
374                     print "%s %s" % (addr, str(Decimal(c)/100000000))
375
376     elif cmd in [ 'contacts']:
377         for addr in wallet.addressbook:
378             print addr, "   ", wallet.labels.get(addr)
379
380     elif cmd == 'eval':
381         print eval(args[1])
382         wallet.save()
383
384     elif cmd in [ 'addresses']:
385         for addr in wallet.all_addresses():
386             if options.show_all or not wallet.is_change(addr):
387
388                 flags = wallet.get_address_flags(addr)
389                 label = wallet.labels.get(addr,'')
390                 
391                 if label: label = "\"%s\""%label
392
393                 if options.show_balance:
394                     h = wallet.history.get(addr,[])
395                     #ni = no = 0
396                     #for item in h:
397                     #    if item['is_input']:  ni += 1
398                     #    else:              no += 1
399                     b = format_satoshis(wallet.get_addr_balance(addr)[0])
400                 else: b=''
401                 m_addr = "%34s"%addr
402                 if options.show_keys:
403                     m_addr += ':' + str(wallet.get_private_key_base58(addr, password))
404                 print flags, m_addr, b, label
405
406     if cmd == 'history':
407         lines = wallet.get_tx_history()
408         b = 0 
409         for line in lines:
410             import datetime
411             v = line['value'] 
412             b += v
413             try:
414                 time_str = str( datetime.datetime.fromtimestamp( line['timestamp']))
415             except:
416                 print line['timestamp']
417                 time_str = 'pending'
418             label = line.get('label')
419             if not label: label = line['tx_hash']
420             else: label = label + ' '*(64 - len(label) )
421
422             print time_str , "  " + label + "  " + format_satoshis(v)+ "  "+ format_satoshis(b)
423         print "# balance: ", format_satoshis(b)
424
425     elif cmd == 'label':
426         try:
427             tx = args[1]
428             label = ' '.join(args[2:])
429         except:
430             print_error("Error. Syntax:  label <tx_hash> <text>")
431             sys.exit(1)
432         wallet.labels[tx] = label
433         wallet.save()
434             
435     elif cmd in ['payto', 'mktx']:
436         if from_addr and is_temporary:
437             if from_addr.find(":") == -1:
438                 keypair = from_addr + ":" + prompt_password('Private key:', False)
439             else:
440                 keypair = from_addr
441                 from_addr = keypair.split(':')[0]
442             if not wallet.import_key(keypair,password):
443                 print_error("Error: Invalid key pair")
444                 exit(1)
445             wallet.history[from_addr] = interface.retrieve_history(from_addr)
446             wallet.update_tx_history()
447             change_addr = from_addr
448
449         if options.change_addr:
450             change_addr = options.change_addr
451
452         for k, v in wallet.labels.items():
453             if v == to_address:
454                 to_address = k
455                 print "alias", to_address
456                 break
457             if change_addr and v == change_addr:
458                 change_addr = k
459         try:
460             tx = wallet.mktx( to_address, amount, label, password,
461                 fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
462         except:
463             import traceback
464             traceback.print_exc(file=sys.stdout)
465             tx = None
466
467         if tx and cmd=='payto': 
468             r, h = wallet.sendtx( tx )
469             print h
470         else:
471             print tx
472
473         if is_temporary:
474             wallet.imported_keys.pop(from_addr)
475             del(wallet.history[from_addr])
476         wallet.save()
477
478     elif cmd == 'sendtx':
479         tx = args[1]
480         r, h = wallet.sendtx( tx )
481         print h
482
483     elif cmd == 'password':
484         try:
485             seed = wallet.pw_decode( wallet.seed, password)
486         except:
487             print_error("Error: Password does not decrypt this wallet.")
488             sys.exit(1)
489
490         new_password = prompt_password('New password:')
491         wallet.update_password(seed, password, new_password)
492
493     elif cmd == 'signmessage':
494         if len(args) < 3:
495             print_error("Error: Invalid usage of signmessage.")
496             print known_commands[cmd]
497             sys.exit(1)
498         address = args[1]
499         message = ' '.join(args[2:])
500         if len(args) > 3:
501             print "Warning: Message was reconstructed from several arguments:", repr(message)
502         print wallet.sign_message(address, message, password)
503
504     elif cmd == 'verifymessage':
505         try:
506             address = args[1]
507             signature = args[2]
508             message = ' '.join(args[3:])
509         except:
510             print_error("Error: Not all parameters were given, displaying help instead.")
511             print known_commands[cmd]
512             sys.exit(1)
513         if len(args) > 4:
514             print "Warning: Message was reconstructed from several arguments:", repr(message)
515         try:
516             wallet.verify_message(address, signature, message)
517             print True
518         except:
519             print False
520
521     elif cmd == 'freeze':
522         addr = args[1]
523         print self.wallet.freeze(addr)
524         
525     elif cmd == 'unfreeze':
526         addr = args[1]
527         print self.wallet.unfreeze(addr)
528
529     elif cmd == 'prioritize':
530         addr = args[1]
531         print self.wallet.prioritize(addr)
532
533     elif cmd == 'unprioritize':
534         addr = args[1]
535         print self.wallet.unprioritize(addr)
536