AUTHORS file. encourages contributors through social proofing.
[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, getpass
20
21 try:
22     import ecdsa  
23 except:
24     print "python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'"
25     sys.exit(1)
26
27 try:
28     import aes
29 except:
30     print "AES does not seem to be installed. Try 'sudo pip install slowaes'"
31     sys.exit(1)
32
33 try:
34     from lib import Wallet, WalletSynchronizer, format_satoshis, mnemonic
35 except ImportError:
36     from electrum import Wallet, WalletSynchronizer, format_satoshis, mnemonic
37     
38 from optparse import OptionParser
39 from decimal import Decimal
40
41 known_commands = {
42     'help':'Prints this help',
43     'validateaddress':'Check that the address is valid', 
44     'balance': "Display the balance of your wallet or of an address.\nSyntax: balance [<address>]", 
45     'contacts': "Show your list of contacts", 
46     'create':'Create a wallet', 
47     'restore':'Restore a wallet', 
48     'payto':"""Create and broadcast a transaction.
49 Syntax: payto <recipient> <amount> [label]
50 <recipient> can be a bitcoin address or a label
51 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
52             """,
53     'sendtx':
54             'Broadcasts a transaction to the network. \nSyntax: sendtx <tx>\n<tx> must be in hexadecimal.',
55     'password': 
56             "Changes your password",
57     'addresses':  
58             """Shows your list of addresses.
59 options:
60   -a: show all addresses, including change addresses
61   -k: show private keys
62   -b: show the balance of addresses""",
63
64     'history':"Shows the transaction history",
65     'label':'Assign a label to an item\nSyntax: label <tx_hash> <label>',
66     'mktx':
67         """Create a signed transaction, password protected.
68 Syntax: mktx <recipient> <amount> [label]
69 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
70         """,
71     'seed':
72             "Print the generation seed of your wallet.",
73     'import': 
74             'Imports a key pair\nSyntax: import <address>:<privatekey>',
75     'signmessage':
76             'Signs a message with a key\nSyntax: signmessage <address> <message>',
77     'verifymessage':
78              'Verifies a signature\nSyntax: verifymessage <address> <signature> <message>',
79     'eval':  
80              "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
81     'deseed':
82             "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
83     'reseed':
84             "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
85     'freeze':'',
86     'unfreeze':'',
87     'prioritize':'',
88     'unprioritize':'',
89     }
90
91
92
93 offline_commands = [ 'password', 'mktx', 'label', 'contacts', 'help', 'validateaddress', 'signmessage', 'verifymessage', 'eval', 'create', 'addresses', 'import', 'seed','deseed','reseed','freeze','unfreeze','prioritize','unprioritize']
94
95 protected_commands = ['payto', 'password', 'mktx', 'seed', 'import','signmessage' ]
96
97 if __name__ == '__main__':
98
99     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
100     parser = OptionParser(usage=usage)
101     parser.add_option("-g", "--gui", dest="gui", default="lite", help="gui")
102     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
103     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
104     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
105     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
106     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
107     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
108     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.")
109     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")
110     parser.add_option("-r", "--remote", dest="remote_url", default=None, help="URL of a remote wallet")
111     options, args = parser.parse_args()
112
113     wallet = Wallet()
114     wallet.set_path(options.wallet_path)
115     wallet.read()
116     wallet.remote_url = options.remote_url
117
118     if len(args)==0:
119         url = None
120         cmd = 'gui'
121     elif len(args)==1 and re.match('^bitcoin:', args[0]):
122         url = args[0]
123         cmd = 'gui'
124     else:
125         cmd = args[0]
126         firstarg = args[1] if len(args) > 1 else ''
127         
128     if cmd == 'gui':
129         if options.gui=='gtk':
130             try:
131                 import lib.gui as gui
132             except ImportError:
133                 import electrum.gui as gui
134         elif options.gui=='qt':
135             try:
136                 import lib.gui_qt as gui
137             except ImportError:
138                 import electrum.gui_qt as gui
139         elif options.gui == 'lite':
140             try:
141                 import lib.gui_lite as gui
142             except ImportError:
143                 import electrum.gui_lite as gui
144         else:
145             print "unknown gui", options.gui
146             exit(1)
147
148         gui = gui.ElectrumGui(wallet)
149         WalletSynchronizer(wallet,True).start()
150
151         try:
152             found = wallet.file_exists
153             if not found:
154                 found = gui.restore_or_create()
155         except SystemExit, e:
156             exit(e)
157         except BaseException, e:
158             import traceback
159             traceback.print_exc(file=sys.stdout)
160             #gui.show_message(e.message)
161             exit(1)
162
163         if not found:
164             exit(1)
165         gui.main(url)
166         wallet.save()
167         sys.exit(0)
168
169     if cmd not in known_commands:
170         cmd = 'help'
171
172     if not wallet.file_exists and cmd not in ['help','create','restore']:
173         print "Wallet file not found."
174         print "Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option"
175         sys.exit(0)
176     
177     if cmd in ['create', 'restore']:
178         if wallet.file_exists:
179             print "remove the existing wallet first!"
180             sys.exit(0)
181         password = getpass.getpass("Password (hit return if you do not wish to encrypt your wallet):")
182         if password:
183             password2 = getpass.getpass("Confirm password:")
184             if password != password2:
185                 print "error"
186                 sys.exit(1)
187         else:
188             password = None
189
190         w_host, w_port, w_protocol = wallet.server.split(':')
191         host = raw_input("server (default:%s):"%w_host)
192         port = raw_input("port (default:%s):"%w_port)
193         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
194         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
195         gap = raw_input("gap limit (default 5):")
196         if host: w_host = host
197         if port: w_port = port
198         if protocol: w_protocol = protocol
199         wallet.server = w_host + ':' + w_port + ':' +w_protocol
200         if fee: wallet.fee = float(fee)
201         if gap: wallet.gap_limit = int(gap)
202
203         if cmd == 'restore':
204             seed = raw_input("seed:")
205             try:
206                 seed.decode('hex')
207             except:
208                 print "not hex, trying decode"
209                 seed = mnemonic.mn_decode( seed.split(' ') )
210             if not seed:
211                 print "no seed"
212                 sys.exit(1)
213
214             wallet.seed = str(seed)
215             wallet.init_mpk( wallet.seed )
216             if not options.offline:
217                 WalletSynchronizer(wallet).start()
218                 print "recovering wallet..."
219                 wallet.up_to_date_event.clear()
220                 wallet.up_to_date = False
221                 wallet.update()
222                 if wallet.is_found():
223                     print "recovery successful"
224                 else:
225                     print "found no history for this wallet"
226             wallet.fill_addressbook()
227             wallet.save()
228             print "Wallet saved in '%s'"%wallet.path
229         else:
230             wallet.new_seed(None)
231             wallet.init_mpk( wallet.seed )
232             wallet.synchronize() # there is no wallet thread 
233             wallet.save()
234             print "Your wallet generation seed is: " + wallet.seed
235             print "Please keep it in a safe place; if you lose it, you will not be able to restore your wallet."
236             print "Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:"
237             print "\""+' '.join(mnemonic.mn_encode(wallet.seed))+"\""
238             print "Wallet saved in '%s'"%wallet.path
239             
240         if password:
241             wallet.update_password(wallet.seed, None, password)
242
243     # check syntax
244     if cmd in ['payto', 'mktx']:
245         try:
246             to_address = args[1]
247             amount = int( 100000000 * Decimal(args[2]) )
248             change_addr = None
249             label = ' '.join(args[3:])
250             if options.tx_fee: 
251                 options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
252         except:
253             firstarg = cmd
254             cmd = 'help'
255
256     # open session
257     if cmd not in offline_commands and not options.offline:
258         WalletSynchronizer(wallet).start()
259         wallet.update()
260         wallet.save()
261
262     # check if --from_addr not in wallet (for mktx/payto)
263     is_temporary = False
264     from_addr = None
265     if options.from_addr:
266         from_addr = options.from_addr
267         if from_addr not in wallet.all_addresses():
268             is_temporary = True
269                 
270     # commands needing password
271     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
272         password = getpass.getpass('Password:') if wallet.use_encryption and not is_temporary else None
273         # check password
274         try:
275             wallet.pw_decode( wallet.seed, password)
276         except:
277             print "invalid password"
278             exit(1)
279
280     if cmd == 'import':
281         keypair = args[1]
282         try:
283             wallet.import_key(keypair,password)
284             wallet.save()
285             print "keypair imported"
286         except BaseException, e:
287             print( 'Error:' + str(e) )
288
289     if cmd=='help':
290         cmd2 = firstarg
291         if cmd2 not in known_commands:
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: This wallet has no seed"
305         elif wallet.use_encryption:
306             print "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 "Action canceled."
320
321     elif cmd == 'reseed':
322         if wallet.seed:
323             print "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 "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 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: 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 "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 + ":" + getpass.getpass('Private key:')
439             else:
440                 keypair = from_addr
441                 from_addr = keypair.split(':')[0]
442             if not wallet.import_key(keypair,password):
443                 print "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 "sorry"
488             sys.exit(1)
489         new_password = getpass.getpass('New password:')
490         if new_password == getpass.getpass('Confirm new password:'):
491             wallet.update_password(seed, password, new_password)
492         else:
493             print "error: mismatch"
494
495     elif cmd == 'signmessage':
496         address = args[1]
497         message = ' '.join(args[2:])
498         if len(args) > 3:
499             print "Warning: Message was reconstructed from several arguments:", repr(message)
500         print wallet.sign_message(address, message, password)
501
502     elif cmd == 'verifymessage':
503         try:
504             address = args[1]
505             signature = args[2]
506             message = ' '.join(args[3:])
507         except:
508             print "Not all parameters were given, displaying help instead."
509             print known_commands[cmd]
510             sys.exit(1)
511         if len(args) > 4:
512             print "Warning: Message was reconstructed from several arguments:", repr(message)
513         try:
514             wallet.verify_message(address, signature, message)
515             print True
516         except:
517             print False
518
519     elif cmd == 'freeze':
520         addr = args[1]
521         print self.wallet.freeze(addr)
522         
523     elif cmd == 'unfreeze':
524         addr = args[1]
525         print self.wallet.unfreeze(addr)
526
527     elif cmd == 'prioritize':
528         addr = args[1]
529         print self.wallet.prioritize(addr)
530
531     elif cmd == 'unprioritize':
532         addr = args[1]
533         print self.wallet.unprioritize(addr)
534