set_label
[electrum-nvc.git] / lib / commands.py
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
20 from util import *
21 from bitcoin import *
22 from decimal import Decimal
23 import bitcoin
24
25 known_commands = {}
26 offline_commands = []
27 protected_commands = []
28
29 def register_command(name, min_args, max_args, is_protected, is_offline, description, syntax = '', options_syntax = ''):
30     global known_commands, protected_commands, offline_commands
31     known_commands[name] = (min_args, max_args, description, syntax, options_syntax)
32     if is_protected:
33         protected_commands.append(name)
34     if is_offline:
35         offline_commands.append(name)
36
37
38 payto_options = ' --fee, -f: set transaction fee\n --fromaddr, -s: send from address -\n --changeaddr, -c: send change to address'
39 listaddr_options = " -a: show all addresses, including change addresses\n -b: include balance in results\n -l: include labels in results"
40 restore_options = " accepts a seed or master public key."
41 config_options = " accounts, addr_history, auto_cycle, column_widths, console-history, contacts,\n fee_per_kb, frozen_addresses, gap_limit, imported_keys, labels,\n master_public_key, num_zeros, prioritized_addresses, proxy, seed,\n seed_version, server, transactions, use_change, use_encryption, winpos-qt"
42
43 register_command('contacts',             0, 0, False, True,  'Show your list of contacts')
44 register_command('create',               0, 0, False, True,  'Create a new wallet')
45 register_command('createmultisig',       2, 2, False, True,  'similar to bitcoind\'s command')
46 register_command('createrawtransaction', 2, 2, False, True,  'similar to bitcoind\'s command')
47 register_command('deseed',               0, 0, False, True,  'Remove seed from wallet, creating a seedless, watching-only wallet.')
48 register_command('decoderawtransaction', 1, 1, False, True,  'similar to bitcoind\'s command')
49 register_command('dumpprivkey',          1, 1, True,  True,  'Dumps a specified private key for a given address', 'dumpprivkey <bitcoin address>')
50 register_command('dumpprivkeys',         0, 0, True,  True,  'dump all private keys')
51 register_command('freeze',               1, 1, False, True,  'Freeze the funds at one of your wallet\'s addresses', 'freeze <address>')
52 register_command('getbalance',           0, 1, False, False, 'Return the balance of your wallet, or of one account in your wallet', 'getbalance [<account>]')
53 register_command('getaddressbalance',    1, 1, False, False, 'Return the balance of an address', 'getbalance <address>')
54 register_command('getaddresshistory',    1, 1, False, False, 'Return the transaction history of an address', 'getaddresshistory <address>')
55 register_command('getconfig',            1, 1, False, True,  'Return a configuration variable', 'getconfig <name>', config_options)
56 register_command('getseed',              0, 0, True,  True,  'Print the generation seed of your wallet.')
57 register_command('help',                 0, 1, False, True,  'Prints this help')
58 register_command('history',              0, 0, False, False, 'Returns the transaction history of your wallet')
59 register_command('importprivkey',        1, 1, True,  True,  'Import a private key', 'importprivkey <privatekey>')
60 register_command('listaddresses',        3, 3, False, True,  'Returns your list of addresses.', '', listaddr_options)
61 register_command('listunspent',          0, 0, False, True,  'Returns a list of unspent inputs in your wallet.')
62 register_command('mktx',                 5, 5, True,  True,  'Create a signed transaction', 'mktx <recipient> <amount> [label]', payto_options)
63 register_command('mksendmanytx',         4, 4, True,  True,  'Create a signed transaction', 'mksendmanytx <recipient> <amount> [<recipient> <amount> ...]', payto_options)
64 register_command('payto',                5, 5, True,  False, 'Create and broadcast a transaction.', "payto <recipient> <amount> [label]\n<recipient> can be a bitcoin address or a label", payto_options)
65 register_command('paytomany',            4, 4, True,  False, 'Create and broadcast a transaction.', "paytomany <recipient> <amount> [<recipient> <amount> ...]\n<recipient> can be a bitcoin address or a label", payto_options)
66 register_command('password',             0, 0, True,  True,  'Change your password')
67 register_command('prioritize',           1, 1, False, True,  'Coins at prioritized addresses are spent first.', 'prioritize <address>')
68 register_command('restore',              0, 0, False, False, 'Restore a wallet', '', restore_options)
69 register_command('setconfig',            2, 2, False, True,  'Set a configuration variable', 'setconfig <name> <value>', config_options)
70 register_command('setlabel',             2,-1, False, True,  'Assign a label to an item', 'setlabel <tx_hash> <label>')
71 register_command('sendrawtransaction',   1, 1, False, False, 'Broadcasts a transaction to the network.', 'sendrawtransaction <tx in hexadecimal>')
72 register_command('signrawtransaction',   1, 3, True,  True,  'similar to bitcoind\'s command')
73 register_command('signmessage',          2,-1, True,  True,  'Sign a message with a key', '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 "')
74 register_command('unfreeze',             1, 1, False, True,  'Unfreeze the funds at one of your wallet\'s address', 'unfreeze <address>')
75 register_command('unprioritize',         1, 1, False, True,  'Unprioritize an address', 'unprioritize <address>')
76 register_command('validateaddress',      1, 1, False, True,  'Check that the address is valid', 'validateaddress <address>')
77 register_command('verifymessage',        3,-1, False, True,  'Verifies a signature', '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     
79
80
81
82 class Commands:
83
84     def __init__(self, wallet, interface, callback = None):
85         self.wallet = wallet
86         self.interface = interface
87         self._callback = callback
88         self.password = None
89
90     def _run(self, method, args, password_getter):
91         if method in protected_commands and self.wallet.use_encryption:
92             self.password = apply(password_getter,())
93         f = eval('self.'+method)
94         result = apply(f,args)
95         self.password = None
96         if self._callback:
97             apply(self._callback, ())
98         return result
99
100     def getaddresshistory(self, addr):
101         h = self.wallet.get_history(addr)
102         if h is None: h = self.wallet.interface.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
103         return h
104
105     def listunspent(self):
106         import copy
107         l = copy.deepcopy(self.wallet.get_unspent_coins())
108         for i in l: i["value"] = str(Decimal(i["value"])/100000000)
109         return l
110
111     def createrawtransaction(self, inputs, outputs):
112         # convert to own format
113         for i in inputs:
114             i['tx_hash'] = i['txid']
115             i['index'] = i['vout']
116         outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items())
117         tx = Transaction.from_io(inputs, outputs)
118         return tx.as_dict()
119
120     def signrawtransaction(self, raw_tx, input_info, private_keys):
121         tx = Transaction(raw_tx)
122         self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)
123         return tx.as_dict()
124
125     def decoderawtransaction(self, raw):
126         tx = Transaction(raw)
127         return tx.deserialize()
128
129     def sendrawtransaction(self, raw):
130         tx = Transaction(raw)
131         r, h = self.wallet.sendtx( tx )
132         return h
133
134     def createmultisig(self, num, pubkeys):
135         assert isinstance(pubkeys, list)
136         redeem_script = Transaction.multisig_script(pubkeys, num)
137         address = hash_160_to_bc_address(hash_160(redeem_script.decode('hex')), 5)
138         return {'address':address, 'redeemScript':redeem_script}
139     
140     def freeze(self,addr):
141         return self.wallet.freeze(addr)
142         
143     def unfreeze(self,addr):
144         return self.wallet.unfreeze(addr)
145
146     def prioritize(self, addr):
147         return self.wallet.prioritize(addr)
148
149     def unprioritize(self, addr):
150         return self.wallet.unprioritize(addr)
151
152     def dumpprivkey(self, addr):
153         return self.wallet.get_private_key(addr, self.password)
154
155     def dumpprivkeys(self, addresses = None):
156         if addresses is None:
157             addresses = self.wallet.addresses(True)
158         return self.wallet.get_private_keys(addresses, self.password)
159
160     def validateaddress(self,addr):
161         isvalid = is_valid(addr)
162         out = { 'isvalid':isvalid }
163         if isvalid:
164             is_mine = self.wallet.is_mine(addr)
165             out['address'] = addr
166             out['ismine'] = is_mine
167             if is_mine:
168                 out['pubkey'] = self.wallet.get_public_key(addr)
169             
170         return out
171
172     def getbalance(self, account= None):
173         if account is None:
174             c, u = self.wallet.get_balance()
175         else:
176             c, u = self.wallet.get_account_balance(account)
177
178         out = { "confirmed": str(Decimal(c)/100000000) }
179         if u: out["unconfirmed"] = str(Decimal(u)/100000000)
180         return out
181
182     def getaddressbalance(self, addr):
183         c, u = self.wallet.get_addr_balance(addr)
184         out = { "confirmed": str(Decimal(c)/100000000) }
185         if u: out["unconfirmed"] = str(Decimal(u)/100000000)
186         return out
187
188
189     def getseed(self):
190         import mnemonic
191         seed = self.wallet.decode_seed(self.password)
192         return { "hex":seed, "mnemonic": ' '.join(mnemonic.mn_encode(seed)) }
193
194     def importprivkey(self, sec):
195         try:
196             addr = self.wallet.import_key(sec,self.password)
197             out = "Keypair imported: ", addr
198         except BaseException as e:
199             out = "Error: Keypair import failed: " + str(e)
200         return out
201
202
203     def signmessage(self, address, message):
204         return self.wallet.sign_message(address, message, self.password)
205
206
207     def verifymessage(self, address, signature, message):
208         return self.wallet.verify_message(address, signature, message)
209
210
211     def _mktx(self, outputs, fee = None, change_addr = None, domain = None):
212
213         for to_address, amount in outputs:
214             if not is_valid(to_address):
215                 raise BaseException("Invalid Bitcoin address", to_address)
216
217         if change_addr:
218             if not is_valid(change_addr):
219                 raise BaseException("Invalid Bitcoin address", change_addr)
220
221         if domain is not None:
222             for addr in domain:
223                 if not is_valid(addr):
224                     raise BaseException("invalid Bitcoin address", addr)
225             
226                 if not self.wallet.is_mine(addr):
227                     raise BaseException("address not in wallet", addr)
228
229         for k, v in self.wallet.labels.items():
230             if change_addr and v == change_addr:
231                 change_addr = k
232
233         final_outputs = []
234         for to_address, amount in outputs:
235             for k, v in self.wallet.labels.items():
236                 if v == to_address:
237                     to_address = k
238                     print_msg("alias", to_address)
239                     break
240
241             amount = int(100000000*amount)
242             final_outputs.append((to_address, amount))
243             
244         if fee: fee = int(100000000*fee)
245         return self.wallet.mktx(final_outputs, self.password, fee , change_addr, domain)
246
247
248     def mktx(self, to_address, amount, fee = None, change_addr = None, domain = None):
249         tx = self._mktx([(to_address, amount)], fee, change_addr, domain)
250         return tx.as_dict()
251
252     def mksendmanytx(self, outputs, fee = None, change_addr = None, domain = None):
253         tx = self._mktx(outputs, fee, change_addr, domain)
254         return tx.as_dict()
255
256
257     def payto(self, to_address, amount, fee = None, change_addr = None, domain = None):
258         tx = self._mktx([(to_address, amount)], fee, change_addr, domain)
259         r, h = self.wallet.sendtx( tx )
260         return h
261
262     def paytomany(self, outputs, fee = None, change_addr = None, domain = None):
263         tx = self._mktx(outputs, fee, change_addr, domain)
264         r, h = self.wallet.sendtx( tx )
265         return h
266
267
268     def history(self):
269         import datetime
270         balance = 0
271         out = []
272         for item in self.wallet.get_tx_history():
273             tx_hash, conf, is_mine, value, fee, balance, timestamp = item
274             try:
275                 time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
276             except:
277                 time_str = "----"
278
279             label, is_default_label = self.wallet.get_label(tx_hash)
280             if not label: label = tx_hash
281             else: label = label + ' '*(64 - len(label) )
282
283             out.append( "%16s"%time_str + "  " + label + "  " + format_satoshis(value)+ "  "+ format_satoshis(balance) )
284         return out
285
286
287
288     def setlabel(self, key, label):
289         self.wallet.set_labels(key, label)
290
291             
292
293     def contacts(self):
294         c = {}
295         for addr in self.wallet.addressbook:
296             c[addr] = self.wallet.labels.get(addr)
297         return c
298
299
300     def listaddresses(self, show_all = False, show_balance = False, show_label = False):
301         out = []
302         for addr in self.wallet.addresses(True):
303             if show_all or not self.wallet.is_change(addr):
304                 if show_balance or show_label:
305                     item = { 'address': addr }
306                     if show_balance:
307                         item['balance'] = str(Decimal(self.wallet.get_addr_balance(addr)[0])/100000000)
308                     if show_label:
309                         label = self.wallet.labels.get(addr,'')
310                         if label:
311                             item['label'] = label
312                 else:
313                     item = addr
314                 out.append( item )
315         return out
316                          
317     def help(self, cmd2=None):
318         if cmd2 not in known_commands:
319             print_msg("\nList of commands:", ', '.join(sorted(known_commands)))
320         else:
321             _, _, description, syntax, options_syntax = known_commands[cmd2]
322             print_msg(description)
323             if syntax: print_msg("Syntax: " + syntax)
324             if options_syntax: print_msg("options:\n" + options_syntax)
325         return None
326
327