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