5f3978aace935ebc68a3bbe625b0d50391868761
[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 pkgutil
21 import sys, os, time, json
22 import optparse
23 import platform
24 from decimal import Decimal
25 import traceback
26
27 try:
28     import ecdsa  
29 except ImportError:
30     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
31
32 try:
33     import aes
34 except ImportError:
35     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
36
37
38 is_local = os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
39 is_android = 'ANDROID_DATA' in os.environ
40
41 import __builtin__
42 __builtin__.use_local_modules = is_local or is_android
43
44 # load local module as electrum
45 if __builtin__.use_local_modules:
46     import imp
47     imp.load_module('electrum', *imp.find_module('lib'))
48     imp.load_module('electrum_gui', *imp.find_module('gui'))
49
50 from electrum import *
51
52 # get password routine
53 def prompt_password(prompt, confirm=True):
54     import getpass
55     if sys.stdin.isatty():
56         password = getpass.getpass(prompt)
57         if password and confirm:
58             password2 = getpass.getpass("Confirm: ")
59             if password != password2:
60                 sys.exit("Error: Passwords do not match.")
61     else:
62         password = raw_input(prompt)
63     if not password:
64         password = None
65     return password
66
67 def arg_parser():
68     usage = "%prog [options] command" 
69     parser = optparse.OptionParser(prog=usage)
70     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
71     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
72     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
73     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
74     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance of listed addresses")
75     parser.add_option("-l", "--labels", action="store_true", dest="show_labels", default=False, help="show the labels of listed addresses")
76     parser.add_option("-f", "--fee", dest="tx_fee", default=None, help="set tx fee")
77     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.")
78     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")
79     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
80     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
81     parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="show debugging information")
82     parser.add_option("-P", "--portable", action="store_true", dest="portable", default=False, help="portable wallet")
83     parser.add_option("-L", "--lang", dest="language", default=None, help="defaut language used in GUI")
84     parser.add_option("-u", "--usb", dest="bitkey", action="store_true", help="Turn on support for hardware wallets (EXPERIMENTAL)")
85     return parser
86
87
88 if __name__ == '__main__':
89
90     parser = arg_parser()
91     options, args = parser.parse_args()
92     if options.portable and options.wallet_path is None:
93         options.wallet_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electrum.dat')
94     set_verbosity(options.verbose)
95
96     # config is an object passed to the various constructors (wallet, interface, gui)
97     if is_android:
98         config_options = {'wallet_path':"/sdcard/electrum.dat", 'portable':True, 'verbose':True, 'gui':'android', 'auto_cycle':True}
99     else:
100         config_options = eval(str(options))
101         for k, v in config_options.items():
102             if v is None: config_options.pop(k)
103
104     # Wallet migration on Electrum 1.7
105     # Todo: In time we could remove this again
106     if platform.system() == "Windows":
107         util.check_windows_wallet_migration()
108
109     config = SimpleConfig(config_options)
110
111     if len(args)==0:
112         url = None
113         cmd = 'gui'
114     elif len(args)==1 and re.match('^bitcoin:', args[0]):
115         url = args[0]
116         cmd = 'gui'
117     else:
118         cmd = args[0]
119        
120
121     if cmd == 'gui':
122         gui_name = config.get('gui','classic')
123         try:
124             gui = __import__('electrum_gui.gui_' + gui_name, fromlist=['electrum_gui'])
125         except ImportError:
126             traceback.print_exc(file=sys.stdout)
127             sys.exit()
128             #sys.exit("Error: Unknown GUI: " + gui_name )
129         
130         # network interface
131         network = Network(config)
132         network.start()
133
134         gui = gui.ElectrumGui(config, network)
135         gui.main(url)
136         
137         network.stop()
138         # we use daemon threads, their termination is enforced.
139         # this sleep command gives them time to terminate cleanly. 
140         time.sleep(0.1)
141         sys.exit(0)
142
143
144     # instanciate wallet for command-line
145     storage = WalletStorage(config)
146     wallet = Wallet(storage)
147
148     if cmd not in known_commands:
149         cmd = 'help'
150
151     if not storage.file_exists and cmd not in ['help','create','restore']:
152         print_msg("Error: Wallet file not found.")
153         print_msg("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
154         sys.exit(0)
155     
156     if cmd in ['create', 'restore']:
157         if wallet.storage.file_exists:
158             sys.exit("Error: Remove the existing wallet first!")
159         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
160
161         server = config.get('server')
162         if not server: server = pick_random_server()
163         w_host, w_port, w_protocol = server.split(':')
164         host = raw_input("server (default:%s):"%w_host)
165         port = raw_input("port (default:%s):"%w_port)
166         protocol = raw_input("protocol [t=tcp;h=http] (default:%s):"%w_protocol)
167         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
168         gap = raw_input("gap limit (default 5):")
169         if host: w_host = host
170         if port: w_port = port
171         if protocol: w_protocol = protocol
172         config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
173         if fee: wallet.fee = float(fee)
174         if gap: wallet.gap_limit = int(gap)
175
176         network = Network(config)
177         network.start()
178         wallet.start_threads(network)
179
180         if cmd == 'restore':
181             seed = raw_input("seed:")
182             try:
183                 seed.decode('hex')
184             except:
185                 print_error("Warning: Not hex, trying decode.")
186                 seed = mnemonic_decode( seed.split(' ') )
187             if not seed:
188                 sys.exit("Error: No seed")
189
190             wallet.init_seed( str(seed) )
191             wallet.save_seed()
192             wallet.create_accounts()
193             wallet.synchronize()
194
195             print_msg("Recovering wallet...")
196             wallet.update()
197             if wallet.is_found():
198                 print_msg("Recovery successful")
199             else:
200                 print_msg("Warning: Found no history for this wallet")
201
202             print_msg("Wallet saved in '%s'"%config.path)
203         else:
204             wallet.init_seed(None)
205             wallet.save_seed()
206             wallet.create_accounts()
207             wallet.synchronize()
208             print_msg("Your wallet generation seed is: " + wallet.seed)
209             print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
210             print_msg("Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:")
211             print_msg("\""+' '.join(mnemonic_encode(wallet.seed))+"\"")
212             print_msg("Wallet saved in '%s'"%config.path)
213             
214         if password:
215             wallet.update_password(wallet.seed, None, password)
216
217         # terminate
218         sys.exit(0)
219
220
221
222     # important warning
223     if cmd in ['dumpprivkey', 'dumpprivkeys']:
224         print_msg("WARNING: ALL your private keys are secret.")
225         print_msg("Exposing a single private key can compromise your entire wallet!")
226         print_msg("In particular, DO NOT use 'redeem private key' services proposed by third parties.")
227
228     # commands needing password
229     if cmd in protected_commands:
230         if wallet.use_encryption:
231             password = prompt_password('Password:', False)
232             if not password:
233                 print_msg("Error: Password required")
234                 exit(1)
235             # check password
236             try:
237                 seed = wallet.decode_seed(password)
238             except:
239                 print_msg("Error: This password does not decode this wallet.")
240                 exit(1)
241         else:
242             password = None
243             seed = wallet.seed
244     else:
245         password = None
246
247
248     # add missing arguments, do type conversions
249     if cmd == 'importprivkey':
250         # See if they specificed a key on the cmd line, if not prompt
251         if len(args) == 1:
252             args[1] = prompt_password('Enter PrivateKey (will not echo):', False)
253
254     elif cmd == 'signrawtransaction':
255         args = [ cmd, args[1], json.loads(args[2]) if len(args)>2 else [], json.loads(args[3]) if len(args)>3 else []]
256
257     elif cmd == 'createmultisig':
258         args = [ cmd, int(args[1]), json.loads(args[2])]
259
260     elif cmd == 'createrawtransaction':
261         args = [ cmd, json.loads(args[1]), json.loads(args[2])]
262
263     elif cmd == 'listaddresses':
264         args = [cmd, options.show_all, options.show_balance, options.show_labels]
265
266     elif cmd in ['payto', 'mktx']:
267         domain = [options.from_addr] if options.from_addr else None
268         args = [ 'mktx', args[1], Decimal(args[2]), Decimal(options.tx_fee) if options.tx_fee else None, options.change_addr, domain ]
269         
270     elif cmd in ['paytomany', 'mksendmanytx']:
271         domain = [options.from_addr] if options.from_addr else None
272         outputs = []
273         for i in range(1, len(args), 2):
274             if len(args) < i+2:
275                 print_msg("Error: Mismatched arguments.")
276                 exit(1)
277             outputs.append((args[i], Decimal(args[i+1])))
278         args = [ 'mksendmanytx', outputs, Decimal(options.tx_fee) if options.tx_fee else None, options.change_addr, domain ]        
279
280     elif cmd == 'help':
281         if len(args) < 2:
282             parser.print_help()
283             print_msg("Type 'electrum help <command>' to see the help for a specific command")
284             print_msg("Type 'electrum --help' to see the list of options")
285
286
287                 
288
289     # check the number of arguments
290     min_args, max_args, description, syntax, options_syntax = known_commands[cmd]
291     if len(args) - 1 < min_args:
292         print_msg("Not enough arguments")
293         print_msg("Syntax:", syntax)
294         sys.exit(1)
295
296     if max_args >= 0 and len(args) - 1 > max_args:
297         print_msg("too many arguments", args)
298         print_msg("Syntax:", syntax)
299         sys.exit(1)
300
301     if max_args < 0:
302         if len(args) > min_args + 1:
303             message = ' '.join(args[min_args:])
304             print_msg("Warning: Final argument was reconstructed from several arguments:", repr(message))
305             args = args[0:min_args] + [ message ]
306
307
308     # open session
309     if cmd not in offline_commands and not options.offline:
310         network = Network(config)
311         network.register_callback('connected', lambda: sys.stderr.write("Connected to " + network.interface.connection_msg + "\n"))
312         if not network.start(wait=True):
313             print_msg("Not connected, aborting.")
314             sys.exit(1)
315
316         wallet.start_threads(network)
317         wallet.update()
318
319
320
321     # run the command
322
323     if cmd == 'deseed':
324         if not wallet.seed:
325             print_msg("Error: This wallet has no seed")
326         else:
327             ns = wallet.config.path + '.seedless'
328             print_msg("Warning: you are going to create a seedless wallet'\nIt will be saved in '%s'"%ns)
329             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
330                 wallet.config.path = ns
331                 wallet.seed = ''
332                 wallet.storage.put('seed', '', True)
333                 wallet.use_encryption = False
334                 wallet.storage.put('use_encryption', wallet.use_encryption, True)
335                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
336                 wallet.config.set_key('imported_keys',wallet.imported_keys, True)
337                 print_msg("Done.")
338             else:
339                 print_msg("Action canceled.")
340
341     elif cmd == 'getconfig':
342         key = args[1]
343         print_msg(config.get(key))
344
345     elif cmd == 'setconfig':
346         key, value = args[1:3]
347         if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']:
348             config.set_key(key, value, True)
349             print_msg(True)
350         else:
351             print_msg(False)
352
353     elif cmd == 'password':
354         new_password = prompt_password('New password:')
355         wallet.update_password(seed, password, new_password)
356
357     else:
358         cmd_runner = Commands(wallet, interface)
359         func = eval('cmd_runner.' + cmd)
360         cmd_runner.password = password
361         try:
362             result = func(*args[1:])
363         except BaseException, e:
364             import traceback
365             traceback.print_exc(file=sys.stdout)
366             sys.exit(1)
367             
368         if type(result) == str:
369             util.print_msg(result)
370         elif result is not None:
371             util.print_json(result)
372             
373         
374
375     if cmd not in offline_commands and not options.offline:
376         wallet.stop_threads()
377         network.stop()
378         time.sleep(0.1)
379         sys.exit(0)