alphabetical order
[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
41
42 register_command('contacts',             0, 0, False, True,  'Show your list of contacts')
43 register_command('create',               0, 0, False, True,  'Create a new wallet')
44 register_command('createmultisig',       2, 2, False, True,  'similar to bitcoind\'s command')
45 register_command('createrawtransaction', 2, 2, False, True,  'similar to bitcoind\'s command')
46 register_command('deseed',               0, 0, False, True,  'Create a seedless, watching-only wallet.')
47 register_command('decoderawtransaction', 1, 1, False, True,  'similar to bitcoind\'s command')
48 register_command('dumpprivkey',          1, 1, True,  True,  'similar to bitcoind\'s command')
49 register_command('dumpprivkeys',         0, 0, True,  True,  'dump all private keys')
50 register_command('eval',                 1, 1, False, True,  'Run python eval() on an object', 'eval <expression>\nExample: eval \"wallet.aliases\"')
51 register_command('freeze',               1, 1, False, True,  'Freeze the funds at one of your wallet\'s addresses')
52 register_command('getbalance',           0, 1, False, False, 'Display the balance of your wallet or of an address', 'getbalance [<address>]')
53 register_command('getaddresshistory',    1, 1, False, False, 'get history for an address')
54 register_command('getconfig',            1, 1, False, True,  'Return a configuration variable', 'getconfig <name>')
55 register_command('getseed',              0, 0, True,  True,  'Print the generation seed of your wallet.')
56 register_command('help',                 0, 1, False, True,  'Prints this help')
57 register_command('history',              0, 0, False, False, 'Returns the transaction history of your wallet')
58 register_command('importprivkey',        1, 1, True,  True,  'Import a private key', 'importprivkey <privatekey>')
59 register_command('listaddresses',        3, 3, False, True,  'Returns your list of addresses.', '', listaddr_options)
60 register_command('listunspent',          0, 0, False, True,  'Returns a list of unspent inputs in your wallet.')
61 register_command('mktx',                 5, 5, True,  True,  'Create a signed transaction', 'mktx <recipient> <amount> [label]', payto_options)
62 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)
63 register_command('password',             0, 0, True,  True,  'Change your password')
64 register_command('prioritize',           1, 1, False, True,  '')
65 register_command('restore',              0, 0, False, False, 'Restore a wallet')
66 register_command('setconfig',            2, 2, False, True,  'Set a configuration variable', 'setconfig <name> <value>')
67 register_command('setlabel',             2,-1, False, True,  'Assign a label to an item', 'setlabel <tx_hash> <label>')
68 register_command('sendrawtransaction',   1, 1, False, False, 'Broadcasts a transaction to the network.', 'sendrawtransaction <tx in hexadecimal>')
69 register_command('signrawtransaction',   1, 3, True,  True,  'similar to bitcoind\'s command')
70 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 "')
71 register_command('unfreeze',             1, 1, False, True,  '')
72 register_command('prioritize',           1, 1, False, True,  '')
73 register_command('validateaddress',      1, 1, False, True,  'Check that the address is valid')
74 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 "')
75     
76
77
78
79 class Commands:
80
81     def __init__(self, wallet, interface, callback = None):
82         self.wallet = wallet
83         self.interface = interface
84         self._callback = callback
85
86     def _run(self, method, args, password_getter):
87         if method in protected_commands:
88             self.password = apply(password_getter,())
89         f = eval('self.'+method)
90         result = apply(f,args)
91         self.password = None
92         if self._callback:
93             apply(self._callback, ())
94         return result
95
96     def getaddresshistory(self, addr):
97         h = self.wallet.get_history(addr)
98         if h is None: h = self.wallet.interface.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
99         return h
100
101     def listunspent(self):
102         import copy
103         l = copy.deepcopy(self.wallet.get_unspent_coins())
104         for i in l: i["value"] = str(Decimal(i["value"])/100000000)
105         return l
106
107     def createrawtransaction(self, inputs, outputs):
108         # convert to own format
109         for i in inputs:
110             i['tx_hash'] = i['txid']
111             i['index'] = i['vout']
112         outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items())
113         tx = Transaction.from_io(inputs, outputs)
114         return tx.as_dict()
115
116     def signrawtransaction(self, raw_tx, input_info, private_keys):
117         tx = Transaction(raw_tx)
118         self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)
119         return tx.as_dict()
120
121     def decoderawtransaction(self, raw):
122         tx = Transaction(raw)
123         return tx.deserialize()
124
125     def sendrawtransaction(self, raw):
126         tx = Transaction(raw)
127         r, h = wallet.sendtx( tx )
128         return h
129
130     def createmultisig(self, num, pubkeys):
131         assert isinstance(pubkeys, list)
132         return Transaction.multisig_script(pubkeys, num)
133     
134     def freeze(self,addr):
135         return self.wallet.freeze(addr)
136         
137     def unfreeze(self,addr):
138         return self.wallet.unfreeze(addr)
139
140     def prioritize(self, addr):
141         return self.wallet.prioritize(addr)
142
143     def unprioritize(self, addr):
144         return self.wallet.unprioritize(addr)
145
146     def dumpprivkey(self, addr):
147         return self.wallet.get_private_key(addr, self.password)
148
149     def dumpprivkeys(self, addresses = None):
150         if addresses is None:
151             addresses = self.wallet.all_addresses()
152         return self.wallet.get_private_keys(addresses, self.password)
153
154     def validateaddress(self,addr):
155         is_valid = self.wallet.is_valid(addr)
156         out = { 'isvalid':is_valid }
157         if is_valid:
158             is_mine = self.wallet.is_mine(addr)
159             out['address'] = addr
160             out['ismine'] = is_mine
161             if is_mine:
162                 out['pubkey'] = self.wallet.get_public_key(addr)
163             
164         return out
165
166         
167     def getbalance(self, addresses = []):
168         if addresses == []:
169             c, u = self.wallet.get_balance()
170         else:
171             c = u = 0
172             for addr in addresses:
173                 cc, uu = wallet.get_addr_balance(addr)
174                 c += cc
175                 u += uu
176
177         out = { "confirmed": str(Decimal(c)/100000000) }
178         if u: out["unconfirmed"] = str(Decimal(u)/100000000)
179         return out
180
181
182     def getseed(self):
183         import mnemonic
184         seed = self.wallet.decode_seed(self.password)
185         return { "hex":seed, "mnemonic": ' '.join(mnemonic.mn_encode(seed)) }
186
187     def importprivkey(self, sec):
188         try:
189             addr = wallet.import_key(sec,self.password)
190             wallet.save()
191             out = "Keypair imported: ", addr
192         except BaseException as e:
193             out = "Error: Keypair import failed: " + str(e)
194         return out
195
196
197     def signmessage(self, address, message):
198         return self.wallet.sign_message(address, message, self.password)
199
200
201     def verifymessage(self, address, signature, message):
202         try:
203             EC_KEY.verify_message(address, signature, message)
204             return True
205         except BaseException as e:
206             print_error("Verification error: {0}".format(e))
207             return False
208
209
210     def _mktx(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
211         for k, v in self.wallet.labels.items():
212             if v == to_address:
213                 to_address = k
214                 print_msg("alias", to_address)
215                 break
216             if change_addr and v == change_addr:
217                 change_addr = k
218
219         amount = int(10000000*amount)
220         if fee: fee = int(10000000*fee)
221         return self.wallet.mktx( [(to_address, amount)], self.password, fee , change_addr, from_addr)
222
223
224     def mktx(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
225         tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
226         return tx.as_dict()
227
228
229     def payto(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
230         tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
231         r, h = wallet.sendtx( tx )
232         return h
233
234
235     def history(self):
236         import datetime
237         balance = 0
238         out = []
239         for item in self.wallet.get_tx_history():
240             tx_hash, conf, is_mine, value, fee, balance, timestamp = item
241             try:
242                 time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
243             except:
244                 time_str = "----"
245
246             label, is_default_label = self.wallet.get_label(tx_hash)
247             if not label: label = tx_hash
248             else: label = label + ' '*(64 - len(label) )
249
250             out.append( "%16s"%time_str + "  " + label + "  " + format_satoshis(value)+ "  "+ format_satoshis(balance) )
251         return out
252
253
254
255     def setlabel(self, tx, label):
256         self.wallet.labels[tx] = label
257         self.wallet.save()
258             
259
260     def contacts(self):
261         c = {}
262         for addr in self.wallet.addressbook:
263             c[addr] = self.wallet.labels.get(addr)
264         return c
265
266
267     def listaddresses(self, show_all = False, show_balance = False, show_label = False):
268         out = []
269         for addr in self.wallet.all_addresses():
270             if show_all or not self.wallet.is_change(addr):
271                 if show_balance or show_label:
272                     item = { 'address': addr }
273                     if show_balance:
274                         item['balance'] = str(Decimal(self.wallet.get_addr_balance(addr)[0])/100000000)
275                     if show_label:
276                         label = self.wallet.labels.get(addr,'')
277                         if label:
278                             item['label'] = label
279                 else:
280                     item = addr
281                 out.append( item )
282         return out
283                          
284