electrum-bitcoinprivate/lib/wallet.py

1702 lines
56 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2011 thomasv@gitorious
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-08-23 18:21:17 -07:00
import sys
import os
import hashlib
import ast
import threading
import random
import time
import math
2014-08-20 03:47:53 -07:00
import json
from util import print_msg, print_error
from bitcoin import *
2013-08-01 11:08:56 -07:00
from account import *
from version import *
from transaction import Transaction
2013-09-29 01:16:17 -07:00
from plugins import run_hook
2014-04-29 12:04:16 -07:00
import bitcoin
from synchronizer import WalletSynchronizer
2012-02-14 03:45:39 -08:00
2013-10-07 10:24:06 -07:00
COINBASE_MATURITY = 100
2013-11-06 14:09:24 -08:00
DUST_THRESHOLD = 5430
2013-10-07 10:24:06 -07:00
2014-05-04 05:13:34 -07:00
# internal ID for imported account
IMPORTED_ACCOUNT = '/x'
class WalletStorage(object):
def __init__(self, config):
self.lock = threading.RLock()
2014-02-27 01:21:41 -08:00
self.config = config
self.data = {}
self.file_exists = False
self.path = self.init_path(config)
print_error( "wallet path", self.path )
if self.path:
self.read(self.path)
def init_path(self, config):
"""Set the path of the wallet."""
# command line -w option
path = config.get('wallet_path')
if path:
return path
# path in config file
path = config.get('default_wallet_path')
if path:
return path
# default path
dirpath = os.path.join(config.path, "wallets")
if not os.path.exists(dirpath):
os.mkdir(dirpath)
2013-10-24 02:43:55 -07:00
new_path = os.path.join(config.path, "wallets", "default_wallet")
# default path in pre 1.9 versions
old_path = os.path.join(config.path, "electrum.dat")
if os.path.exists(old_path) and not os.path.exists(new_path):
os.rename(old_path, new_path)
return new_path
def read(self, path):
"""Read the contents of the wallet file."""
try:
with open(self.path, "r") as f:
data = f.read()
except IOError:
return
try:
2014-08-20 03:47:53 -07:00
d = json.loads(data)
except:
try:
d = ast.literal_eval(data) #parse raw data from reading wallet file
except Exception:
raise IOError("Cannot read wallet file.")
self.data = d
self.file_exists = True
def get(self, key, default=None):
with self.lock:
v = self.data.get(key)
if v is None:
v = default
return v
def put(self, key, value, save = True):
2013-09-29 09:33:54 -07:00
with self.lock:
if value is not None:
self.data[key] = value
2014-06-05 22:48:08 -07:00
elif key in self.data:
self.data.pop(key)
if save:
2013-09-29 09:33:54 -07:00
self.write()
def write(self):
2014-08-20 03:47:53 -07:00
s = json.dumps(self.data, indent=4, sort_keys=True)
f = open(self.path,"w")
2014-08-20 03:47:53 -07:00
f.write(s)
f.close()
2013-10-08 05:12:56 -07:00
if 'ANDROID_DATA' not in os.environ:
2014-06-24 06:48:50 -07:00
import stat
os.chmod(self.path,stat.S_IREAD | stat.S_IWRITE)
class Abstract_Wallet(object):
"""
Wallet classes are created to handle various address generation methods.
Completion states (watching-only, single account, no seed, etc) are handled inside classes.
"""
def __init__(self, storage):
self.storage = storage
self.electrum_version = ELECTRUM_VERSION
2013-01-29 05:53:13 -08:00
self.gap_limit_for_change = 3 # constant
# saved fields
2014-02-27 01:21:41 -08:00
self.seed_version = storage.get('seed_version', NEW_SEED_VERSION)
self.gap_limit = storage.get('gap_limit', 5)
self.use_change = storage.get('use_change',True)
self.use_encryption = storage.get('use_encryption', False)
self.seed = storage.get('seed', '') # encrypted
self.labels = storage.get('labels', {})
self.frozen_addresses = storage.get('frozen_addresses',[])
self.addressbook = storage.get('contacts', [])
self.history = storage.get('addr_history',{}) # address -> list(txid, height)
2013-02-27 00:04:22 -08:00
2014-04-23 07:10:01 -07:00
self.fee = int(storage.get('fee_per_kb', 10000))
2013-08-01 11:08:56 -07:00
2013-09-11 08:42:32 -07:00
self.next_addresses = storage.get('next_addresses',{})
# This attribute is set when wallet.start_threads is called.
self.synchronizer = None
2013-08-31 06:02:20 -07:00
# imported_keys is deprecated. The GUI should call convert_imported_keys
self.imported_keys = self.storage.get('imported_keys',{})
self.load_accounts()
2014-07-13 17:20:24 -07:00
self.load_transactions()
2013-09-04 10:37:56 -07:00
# not saved
self.prevout_values = {} # my own transaction outputs
self.spent_outputs = []
# spv
self.verifier = None
2012-10-14 22:43:00 -07:00
# there is a difference between wallet.up_to_date and interface.is_up_to_date()
# interface.is_up_to_date() returns true when all requests have been answered and processed
# wallet.up_to_date is true when the wallet is synchronized (stronger requirement)
2012-03-28 05:22:46 -07:00
self.up_to_date = False
2012-03-31 02:47:16 -07:00
self.lock = threading.Lock()
2013-03-23 23:34:28 -07:00
self.transaction_lock = threading.Lock()
2012-03-24 05:15:23 -07:00
self.tx_event = threading.Event()
2013-06-01 10:26:07 -07:00
for tx_hash, tx in self.transactions.items():
self.update_tx_outputs(tx_hash)
2014-08-20 09:54:37 -07:00
# save wallet type the first time
if self.storage.get('wallet_type') is None:
self.storage.put('wallet_type', self.wallet_type, True)
2014-07-13 17:20:24 -07:00
def load_transactions(self):
self.transactions = {}
tx_list = self.storage.get('transactions',{})
for k, raw in tx_list.items():
try:
tx = Transaction.deserialize(raw)
except Exception:
print_msg("Warning: Cannot deserialize transactions. skipping")
continue
self.add_pubkey_addresses(tx)
self.transactions[k] = tx
for h,tx in self.transactions.items():
if not self.check_new_tx(h, tx):
print_error("removing unreferenced tx", h)
self.transactions.pop(h)
def add_pubkey_addresses(self, tx):
# find the address corresponding to pay-to-pubkey inputs
h = tx.hash()
# inputs
tx.add_pubkey_addresses(self.transactions)
# outputs of tx: inputs of tx2
2014-07-08 10:38:16 -07:00
for type, x, v in tx.outputs:
if type == 'pubkey':
for tx2 in self.transactions.values():
tx2.add_pubkey_addresses({h:tx})
2014-04-28 08:30:48 -07:00
def get_action(self):
pass
2014-06-01 23:59:41 -07:00
def convert_imported_keys(self, password):
for k, v in self.imported_keys.items():
sec = pw_decode(v, password)
pubkey = public_key_from_private_key(sec)
address = public_key_to_bc_address(pubkey.decode('hex'))
assert address == k
self.import_key(sec, password)
self.imported_keys.pop(k)
self.storage.put('imported_keys', self.imported_keys)
2014-04-30 02:18:13 -07:00
def load_accounts(self):
2014-04-30 02:40:53 -07:00
self.accounts = {}
d = self.storage.get('accounts', {})
for k, v in d.items():
if k == 0:
v['mpk'] = self.storage.get('master_public_key')
self.accounts[k] = OldAccount(v)
elif v.get('imported'):
self.accounts[k] = ImportedAccount(v)
elif v.get('xpub3'):
self.accounts[k] = BIP32_Account_2of3(v)
elif v.get('xpub2'):
self.accounts[k] = BIP32_Account_2of2(v)
elif v.get('xpub'):
self.accounts[k] = BIP32_Account(v)
elif v.get('pending'):
self.accounts[k] = PendingAccount(v)
else:
print_error("cannot load account", v)
2014-04-30 02:40:53 -07:00
def synchronize(self):
2014-04-30 02:18:13 -07:00
pass
2014-04-24 05:29:08 -07:00
def can_create_accounts(self):
2014-04-30 01:40:47 -07:00
return False
2012-11-20 12:36:06 -08:00
def set_up_to_date(self,b):
with self.lock: self.up_to_date = b
def is_up_to_date(self):
with self.lock: return self.up_to_date
2012-04-01 08:50:12 -07:00
def update(self):
self.up_to_date = False
while not self.is_up_to_date():
2013-09-11 23:41:27 -07:00
time.sleep(0.1)
def is_imported(self, addr):
account = self.accounts.get(IMPORTED_ACCOUNT)
if account:
return addr in account.get_addresses(0)
else:
return False
2014-06-01 23:59:41 -07:00
def has_imported_keys(self):
account = self.accounts.get(IMPORTED_ACCOUNT)
return account is not None
def import_key(self, sec, password):
try:
pubkey = public_key_from_private_key(sec)
address = public_key_to_bc_address(pubkey.decode('hex'))
2013-11-09 21:23:57 -08:00
except Exception:
2013-11-09 20:21:02 -08:00
raise Exception('Invalid private key')
if self.is_mine(address):
2013-11-09 20:21:02 -08:00
raise Exception('Address already in wallet')
if self.accounts.get(IMPORTED_ACCOUNT) is None:
self.accounts[IMPORTED_ACCOUNT] = ImportedAccount({'imported':{}})
self.accounts[IMPORTED_ACCOUNT].add(address, pubkey, sec, password)
self.save_accounts()
2013-09-15 06:06:42 -07:00
if self.synchronizer:
self.synchronizer.subscribe_to_addresses([address])
return address
2013-05-02 00:54:43 -07:00
def delete_imported_key(self, addr):
account = self.accounts[IMPORTED_ACCOUNT]
account.remove(addr)
if not account.get_addresses(0):
self.accounts.pop(IMPORTED_ACCOUNT)
self.save_accounts()
2013-09-29 03:14:01 -07:00
def set_label(self, name, text = None):
changed = False
old_text = self.labels.get(name)
if text:
if old_text != text:
self.labels[name] = text
changed = True
else:
if old_text:
self.labels.pop(name)
changed = True
if changed:
self.storage.put('labels', self.labels, True)
run_hook('set_label', name, text, changed)
return changed
def addresses(self, include_change = True, _next=True):
2014-05-04 04:46:37 -07:00
o = []
for a in self.accounts.keys():
o += self.get_account_addresses(a, include_change)
2013-09-04 08:46:13 -07:00
if _next:
2013-09-11 08:42:32 -07:00
for addr in self.next_addresses.values():
if addr not in o:
o += [addr]
2013-02-27 00:04:22 -08:00
return o
def is_mine(self, address):
return address in self.addresses(True)
def is_change(self, address):
2013-03-17 13:13:10 -07:00
if not self.is_mine(address): return False
2013-03-16 09:51:58 -07:00
acct, s = self.get_address_index(address)
2013-09-11 03:05:28 -07:00
if s is None: return False
2013-03-16 09:51:58 -07:00
return s[0] == 1
def get_address_index(self, address):
2013-02-27 00:04:22 -08:00
for account in self.accounts.keys():
for for_change in [0,1]:
2013-08-01 11:08:56 -07:00
addresses = self.accounts[account].get_addresses(for_change)
2013-02-27 00:04:22 -08:00
for addr in addresses:
if address == addr:
2013-03-03 01:24:30 -08:00
return account, (for_change, addresses.index(addr))
for k,v in self.next_addresses.items():
if v == address:
return k, (0,0)
2013-11-09 20:21:02 -08:00
raise Exception("Address not found", address)
2012-02-06 09:10:30 -08:00
def get_private_key(self, address, password):
if self.is_watching_only():
return []
account_id, sequence = self.get_address_index(address)
return self.accounts[account_id].get_private_key(sequence, self, password)
def get_public_keys(self, address):
account_id, sequence = self.get_address_index(address)
2014-07-13 17:39:14 -07:00
return self.accounts[account_id].get_pubkeys(*sequence)
def add_keypairs(self, tx, keypairs, password):
2014-07-30 03:46:03 -07:00
if self.is_watching_only():
return
self.check_password(password)
addr_list, xpub_list = tx.inputs_to_sign()
for addr in addr_list:
if self.is_mine(addr):
private_keys = self.get_private_key(addr, password)
for sec in private_keys:
pubkey = public_key_from_private_key(sec)
keypairs[ pubkey ] = sec
2013-02-27 07:15:56 -08:00
for xpub, sequence in xpub_list:
# look for account that can sign
for k, account in self.accounts.items():
if xpub in account.get_master_pubkeys():
break
else:
continue
2014-07-06 13:10:26 -07:00
pk = account.get_private_key(sequence, self, password)
for sec in pk:
pubkey = public_key_from_private_key(sec)
keypairs[pubkey] = sec
def signrawtransaction(self, tx, private_keys, password):
# check that the password is correct. This will raise if it's not.
2014-07-13 17:57:12 -07:00
self.check_password(password)
# build a list of public/private keys
keypairs = {}
# add private keys from parameter
for sec in private_keys:
pubkey = public_key_from_private_key(sec)
keypairs[ pubkey ] = sec
# add private_keys
self.add_keypairs(tx, keypairs, password)
2014-04-26 09:44:45 -07:00
# sign the transaction
2014-03-10 08:05:54 -07:00
self.sign_transaction(tx, keypairs, password)
2013-09-29 01:16:17 -07:00
def sign_message(self, address, message, password):
2013-09-10 07:18:34 -07:00
keys = self.get_private_key(address, password)
assert len(keys) == 1
sec = keys[0]
key = regenerate_key(sec)
compressed = is_compressed(sec)
return key.sign_message(message, compressed, address)
2013-02-27 00:04:22 -08:00
2014-03-03 01:39:10 -08:00
def decrypt_message(self, pubkey, message, password):
address = public_key_to_bc_address(pubkey.decode('hex'))
keys = self.get_private_key(address, password)
secret = keys[0]
ec = regenerate_key(secret)
decrypted = ec.decrypt_message(message)
return decrypted
2014-03-03 01:39:10 -08:00
2014-04-30 02:18:13 -07:00
def is_found(self):
return self.history.values() != [[]] * len(self.history)
2013-02-27 00:04:22 -08:00
2014-04-30 02:18:13 -07:00
def add_contact(self, address, label=None):
self.addressbook.append(address)
self.storage.put('contacts', self.addressbook, True)
if label:
2014-04-30 02:18:13 -07:00
self.set_label(address, label)
2013-09-08 11:10:43 -07:00
2013-05-02 01:19:18 -07:00
def delete_contact(self, addr):
if addr in self.addressbook:
self.addressbook.remove(addr)
self.storage.put('addressbook', self.addressbook, True)
2013-05-02 01:10:22 -07:00
def fill_addressbook(self):
for tx_hash, tx in self.transactions.items():
is_relevant, is_send, _, _ = self.get_tx_value(tx)
if is_send:
for addr in tx.get_output_addresses():
2012-11-04 11:53:27 -08:00
if not self.is_mine(addr) and addr not in self.addressbook:
self.addressbook.append(addr)
# redo labels
2012-11-04 11:53:27 -08:00
# self.update_tx_labels()
2013-03-16 10:17:50 -07:00
def get_num_tx(self, address):
n = 0
2013-03-16 10:17:50 -07:00
for tx in self.transactions.values():
if address in tx.get_output_addresses(): n += 1
2013-03-16 10:17:50 -07:00
return n
def get_tx_value(self, tx, account=None):
domain = self.get_account_addresses(account)
return tx.get_value(domain, self.prevout_values)
def update_tx_outputs(self, tx_hash):
tx = self.transactions.get(tx_hash)
2013-03-24 04:20:13 -07:00
for i, (addr, value) in enumerate(tx.get_outputs()):
2013-02-22 10:22:22 -08:00
key = tx_hash+ ':%d'%i
2013-03-23 23:34:28 -07:00
self.prevout_values[key] = value
2013-02-22 10:22:22 -08:00
for item in tx.inputs:
if self.is_mine(item.get('address')):
key = item['prevout_hash'] + ':%d'%item['prevout_n']
self.spent_outputs.append(key)
def get_addr_balance(self, address):
#assert self.is_mine(address)
h = self.history.get(address,[])
2012-11-14 06:33:44 -08:00
if h == ['*']: return 0,0
c = u = 0
2012-12-28 08:57:33 -08:00
received_coins = [] # list of coins received at address
2012-11-22 04:24:44 -08:00
for tx_hash, tx_height in h:
2013-02-22 10:22:22 -08:00
tx = self.transactions.get(tx_hash)
if not tx: continue
2013-03-24 04:20:13 -07:00
for i, (addr, value) in enumerate(tx.get_outputs()):
2012-12-28 08:57:33 -08:00
if addr == address:
2013-02-22 10:22:22 -08:00
key = tx_hash + ':%d'%i
2012-12-28 08:57:33 -08:00
received_coins.append(key)
2012-11-22 04:24:44 -08:00
for tx_hash, tx_height in h:
2013-02-22 10:22:22 -08:00
tx = self.transactions.get(tx_hash)
if not tx: continue
v = 0
2013-02-22 10:22:22 -08:00
for item in tx.inputs:
addr = item.get('address')
if addr == address:
key = item['prevout_hash'] + ':%d'%item['prevout_n']
value = self.prevout_values.get( key )
if key in received_coins:
v -= value
2013-02-22 10:22:22 -08:00
for i, (addr, value) in enumerate(tx.get_outputs()):
2013-02-22 10:22:22 -08:00
key = tx_hash + ':%d'%i
if addr == address:
2013-02-22 10:22:22 -08:00
v += value
if tx_height:
c += v
else:
u += v
return c, u
2013-09-03 01:09:13 -07:00
def get_account_name(self, k):
2014-05-04 04:46:37 -07:00
return self.labels.get(k, self.accounts[k].get_name(k))
2013-09-03 01:09:13 -07:00
def get_account_names(self):
2014-05-04 04:46:37 -07:00
account_names = {}
for k in self.accounts.keys():
account_names[k] = self.get_account_name(k)
return account_names
def get_account_addresses(self, a, include_change=True):
if a is None:
o = self.addresses(include_change)
elif a in self.accounts:
ac = self.accounts[a]
2013-08-01 11:08:56 -07:00
o = ac.get_addresses(0)
if include_change: o += ac.get_addresses(1)
return o
2013-03-02 05:20:21 -08:00
2013-02-27 00:04:22 -08:00
def get_account_balance(self, account):
2013-10-07 13:02:17 -07:00
return self.get_balance(self.get_account_addresses(account))
2013-04-12 05:29:11 -07:00
def get_frozen_balance(self):
2013-10-07 13:02:17 -07:00
return self.get_balance(self.frozen_addresses)
2013-10-07 13:02:17 -07:00
def get_balance(self, domain=None):
if domain is None: domain = self.addresses(True)
2013-02-27 00:04:22 -08:00
cc = uu = 0
2013-10-07 13:02:17 -07:00
for addr in domain:
c, u = self.get_addr_balance(addr)
2013-02-27 00:04:22 -08:00
cc += c
uu += u
return cc, uu
def get_unspent_coins(self, domain=None):
coins = []
if domain is None: domain = self.addresses(True)
for addr in domain:
h = self.history.get(addr, [])
2012-11-15 00:14:24 -08:00
if h == ['*']: continue
2012-11-15 03:14:29 -08:00
for tx_hash, tx_height in h:
tx = self.transactions.get(tx_hash)
2013-11-09 20:21:02 -08:00
if tx is None: raise Exception("Wallet not synchronized")
2013-10-07 10:24:06 -07:00
is_coinbase = tx.inputs[0].get('prevout_hash') == '0'*64
for i, (address, value) in enumerate(tx.get_outputs()):
output = {'address':address, 'value':value, 'prevout_n':i}
if address != addr: continue
key = tx_hash + ":%d"%i
if key in self.spent_outputs: continue
output['prevout_hash'] = tx_hash
output['height'] = tx_height
2013-10-07 10:24:06 -07:00
output['coinbase'] = is_coinbase
coins.append((tx_height, output))
# sort by age
if coins:
coins = sorted(coins)
if coins[-1][0] != 0:
while coins[0][0] == 0:
coins = coins[1:] + [ coins[0] ]
return [x[1] for x in coins]
2014-06-05 12:55:11 -07:00
def choose_tx_inputs( self, amount, fixed_fee, num_outputs, domain = None, coins = None ):
""" todo: minimize tx size """
total = 0
fee = self.fee if fixed_fee is None else fixed_fee
2014-06-05 12:55:11 -07:00
if not coins:
if domain is None:
domain = self.addresses(True)
for i in self.frozen_addresses:
if i in domain: domain.remove(i)
coins = self.get_unspent_coins(domain)
inputs = []
2012-06-06 06:40:57 -07:00
2013-10-07 10:24:06 -07:00
for item in coins:
2014-03-11 01:38:08 -07:00
if item.get('coinbase') and item.get('height') + COINBASE_MATURITY > self.network.get_local_height():
2013-10-07 10:24:06 -07:00
continue
v = item.get('value')
total += v
inputs.append(item)
fee = self.estimated_fee(inputs, num_outputs) if fixed_fee is None else fixed_fee
if total >= amount + fee: break
else:
inputs = []
2013-03-03 01:24:30 -08:00
return inputs, total, fee
2013-09-01 14:09:27 -07:00
def set_fee(self, fee):
if self.fee != fee:
self.fee = fee
self.storage.put('fee_per_kb', self.fee, True)
def estimated_fee(self, inputs, num_outputs):
estimated_size = len(inputs) * 180 + num_outputs * 34 # this assumes non-compressed keys
fee = self.fee * int(math.ceil(estimated_size/1000.))
return fee
2013-09-15 05:51:46 -07:00
def add_tx_change( self, inputs, outputs, amount, fee, total, change_addr=None):
"add change to a transaction"
change_amount = total - ( amount + fee )
2013-11-06 14:09:24 -08:00
if change_amount > DUST_THRESHOLD:
if not change_addr:
2013-09-15 05:51:46 -07:00
# send change to one of the accounts involved in the tx
address = inputs[0].get('address')
account, _ = self.get_address_index(address)
2014-05-04 05:13:34 -07:00
if not self.use_change or account == IMPORTED_ACCOUNT:
change_addr = inputs[-1]['address']
else:
change_addr = self.accounts[account].get_addresses(1)[-self.gap_limit_for_change]
# Insert the change output at a random position in the outputs
posn = random.randint(0, len(outputs))
outputs[posn:posn] = [( 'address', change_addr, change_amount)]
return outputs
def get_history(self, address):
with self.lock:
return self.history.get(address)
def get_status(self, h):
if not h: return None
2012-11-14 06:33:44 -08:00
if h == ['*']: return '*'
status = ''
for tx_hash, height in h:
status += tx_hash + ':%d:' % height
return hashlib.sha256( status ).digest().encode('hex')
2013-02-22 10:22:22 -08:00
def receive_tx_callback(self, tx_hash, tx, tx_height):
2013-03-23 23:34:28 -07:00
with self.transaction_lock:
self.add_pubkey_addresses(tx)
2013-09-04 10:37:56 -07:00
if not self.check_new_tx(tx_hash, tx):
# may happen due to pruning
print_error("received transaction that is no longer referenced in history", tx_hash)
return
2013-09-04 10:37:56 -07:00
self.transactions[tx_hash] = tx
self.network.pending_transactions_for_notifications.append(tx)
self.save_transactions()
if self.verifier and tx_height>0:
2013-03-23 23:34:28 -07:00
self.verifier.add(tx_hash, tx_height)
self.update_tx_outputs(tx_hash)
def save_transactions(self):
tx = {}
for k,v in self.transactions.items():
tx[k] = str(v)
self.storage.put('transactions', tx, True)
def receive_history_callback(self, addr, hist):
if not self.check_new_history(addr, hist):
2013-11-09 20:21:02 -08:00
raise Exception("error: received history for %s is not consistent with known transactions"%addr)
with self.lock:
self.history[addr] = hist
self.storage.put('addr_history', self.history, True)
2012-11-14 06:33:44 -08:00
if hist != ['*']:
for tx_hash, tx_height in hist:
if tx_height>0:
2012-11-15 03:14:29 -08:00
# add it in case it was previously unconfirmed
2012-11-18 02:34:52 -08:00
if self.verifier: self.verifier.add(tx_hash, tx_height)
def get_tx_history(self, account=None):
2013-11-05 10:18:23 -08:00
if not self.verifier:
return []
2013-03-23 23:34:28 -07:00
with self.transaction_lock:
2013-02-22 10:22:22 -08:00
history = self.transactions.items()
history.sort(key = lambda x: self.verifier.get_txpos(x[0]))
2013-03-23 23:34:28 -07:00
result = []
2013-03-23 23:34:28 -07:00
balance = 0
for tx_hash, tx in history:
is_relevant, is_mine, v, fee = self.get_tx_value(tx, account)
2013-03-23 23:34:28 -07:00
if v is not None: balance += v
c, u = self.get_account_balance(account)
2013-03-23 23:34:28 -07:00
if balance != c+u:
result.append( ('', 1000, 0, c+u-balance, None, c+u-balance, None ) )
balance = c + u - balance
for tx_hash, tx in history:
is_relevant, is_mine, value, fee = self.get_tx_value(tx, account)
if not is_relevant:
continue
2013-03-23 23:34:28 -07:00
if value is not None:
balance += value
conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else (None, None)
2013-03-23 23:34:28 -07:00
result.append( (tx_hash, conf, is_mine, value, fee, balance, timestamp) )
return result
2012-11-05 02:08:16 -08:00
def get_label(self, tx_hash):
label = self.labels.get(tx_hash)
is_default = (label == '') or (label is None)
if is_default: label = self.get_default_label(tx_hash)
return label, is_default
def get_default_label(self, tx_hash):
tx = self.transactions.get(tx_hash)
2012-11-18 02:34:52 -08:00
default_label = ''
if tx:
is_relevant, is_mine, _, _ = self.get_tx_value(tx)
if is_mine:
for o_addr in tx.get_output_addresses():
if not self.is_mine(o_addr):
try:
default_label = self.labels[o_addr]
except KeyError:
default_label = '>' + o_addr
2013-03-14 05:08:50 -07:00
break
else:
default_label = '(internal)'
else:
for o_addr in tx.get_output_addresses():
if self.is_mine(o_addr) and not self.is_change(o_addr):
break
else:
for o_addr in tx.get_output_addresses():
if self.is_mine(o_addr):
break
else:
o_addr = None
if o_addr:
try:
default_label = self.labels[o_addr]
except KeyError:
default_label = '<' + o_addr
return default_label
2014-06-05 12:55:11 -07:00
def make_unsigned_transaction(self, outputs, fee=None, change_addr=None, domain=None, coins=None ):
2014-07-08 10:38:16 -07:00
for type, address, x in outputs:
if type == 'op_return':
2014-06-27 08:08:20 -07:00
continue
2014-07-08 10:38:16 -07:00
if type == 'address':
assert is_address(address), "Address " + address + " is invalid!"
amount = sum( map(lambda x:x[2], outputs) )
2014-06-05 12:55:11 -07:00
inputs, total, fee = self.choose_tx_inputs( amount, fee, len(outputs), domain, coins )
if not inputs:
2012-08-23 18:16:27 -07:00
raise ValueError("Not enough funds")
2014-04-26 09:44:45 -07:00
for txin in inputs:
self.add_input_info(txin)
2013-09-15 05:51:46 -07:00
outputs = self.add_tx_change(inputs, outputs, amount, fee, total, change_addr)
return Transaction(inputs, outputs)
2013-09-04 01:33:14 -07:00
2014-06-05 12:55:11 -07:00
def mktx(self, outputs, password, fee=None, change_addr=None, domain= None, coins = None ):
tx = self.make_unsigned_transaction(outputs, fee, change_addr, domain, coins)
keypairs = {}
self.add_keypairs(tx, keypairs, password)
if keypairs:
2014-03-10 08:05:54 -07:00
self.sign_transaction(tx, keypairs, password)
2013-09-04 01:33:14 -07:00
return tx
2014-04-26 09:44:45 -07:00
def add_input_info(self, txin):
address = txin['address']
account_id, sequence = self.get_address_index(address)
account = self.accounts[account_id]
redeemScript = account.redeem_script(*sequence)
pubkeys = account.get_pubkeys(*sequence)
x_pubkeys = account.get_xpubkeys(*sequence)
# sort pubkeys and x_pubkeys, using the order of pubkeys
pubkeys, x_pubkeys = zip( *sorted(zip(pubkeys, x_pubkeys)))
txin['pubkeys'] = list(pubkeys)
txin['x_pubkeys'] = list(x_pubkeys)
txin['signatures'] = [None] * len(pubkeys)
if redeemScript:
2014-04-26 09:44:45 -07:00
txin['redeemScript'] = redeemScript
txin['num_sig'] = 2
2014-04-26 09:44:45 -07:00
else:
txin['redeemPubkey'] = account.get_pubkey(*sequence)
txin['num_sig'] = 1
2014-03-10 08:05:54 -07:00
def sign_transaction(self, tx, keypairs, password):
tx.sign(keypairs)
2014-03-10 08:05:54 -07:00
run_hook('sign_transaction', tx, password)
2013-02-27 00:04:22 -08:00
def sendtx(self, tx):
# synchronous
h = self.send_tx(tx)
self.tx_event.wait()
2014-01-05 00:19:23 -08:00
return self.receive_tx(h, tx)
def send_tx(self, tx):
# asynchronous
2012-03-24 05:15:23 -07:00
self.tx_event.clear()
2014-04-17 08:05:36 -07:00
self.network.send([('blockchain.transaction.broadcast', [str(tx)])], self.on_broadcast)
2013-02-25 09:15:14 -08:00
return tx.hash()
def on_broadcast(self, r):
2013-09-12 21:43:22 -07:00
self.tx_result = r.get('result')
2013-09-11 23:41:27 -07:00
self.tx_event.set()
2014-01-05 00:19:23 -08:00
def receive_tx(self, tx_hash, tx):
out = self.tx_result
if out != tx_hash:
return False, "error: " + out
2014-01-05 00:19:23 -08:00
run_hook('receive_tx', tx, self)
return True, out
2013-10-26 02:54:11 -07:00
def update_password(self, old_password, new_password):
if new_password == '':
new_password = None
if self.has_seed():
decoded = self.get_seed(old_password)
self.seed = pw_encode( decoded, new_password)
self.storage.put('seed', self.seed, True)
imported_account = self.accounts.get(IMPORTED_ACCOUNT)
if imported_account:
imported_account.update_password(old_password, new_password)
self.save_accounts()
if hasattr(self, 'master_private_keys'):
for k, v in self.master_private_keys.items():
b = pw_decode(v, old_password)
c = pw_encode(b, new_password)
self.master_private_keys[k] = c
self.storage.put('master_private_keys', self.master_private_keys, True)
self.use_encryption = (new_password != None)
self.storage.put('use_encryption', self.use_encryption,True)
def freeze(self,addr):
if self.is_mine(addr) and addr not in self.frozen_addresses:
self.frozen_addresses.append(addr)
self.storage.put('frozen_addresses', self.frozen_addresses, True)
return True
else:
return False
def unfreeze(self,addr):
if self.is_mine(addr) and addr in self.frozen_addresses:
self.frozen_addresses.remove(addr)
self.storage.put('frozen_addresses', self.frozen_addresses, True)
return True
else:
return False
2012-03-30 05:15:05 -07:00
def set_verifier(self, verifier):
self.verifier = verifier
2012-11-15 03:14:29 -08:00
# review transactions that are in the history
2012-11-15 03:14:29 -08:00
for addr, hist in self.history.items():
if hist == ['*']: continue
for tx_hash, tx_height in hist:
if tx_height>0:
# add it in case it was previously unconfirmed
self.verifier.add(tx_hash, tx_height)
2013-02-22 10:22:22 -08:00
# if we are on a pruning server, remove unverified transactions
vr = self.verifier.transactions.keys() + self.verifier.verified_tx.keys()
for tx_hash in self.transactions.keys():
if tx_hash not in vr:
self.transactions.pop(tx_hash)
def check_new_history(self, addr, hist):
# check that all tx in hist are relevant
if hist != ['*']:
for tx_hash, height in hist:
tx = self.transactions.get(tx_hash)
if not tx: continue
2013-02-22 10:22:22 -08:00
if not tx.has_address(addr):
return False
# check that we are not "orphaning" a transaction
2012-11-23 08:11:32 -08:00
old_hist = self.history.get(addr,[])
if old_hist == ['*']: return True
for tx_hash, height in old_hist:
if tx_hash in map(lambda x:x[0], hist): continue
found = False
for _addr, _hist in self.history.items():
if _addr == addr: continue
if _hist == ['*']: continue
_tx_hist = map(lambda x:x[0], _hist)
if tx_hash in _tx_hist:
found = True
break
if not found:
tx = self.transactions.get(tx_hash)
# tx might not be there
if not tx: continue
# already verified?
if self.verifier.get_height(tx_hash):
continue
# unconfirmed tx
print_error("new history is orphaning transaction:", tx_hash)
# check that all outputs are not mine, request histories
ext_requests = []
for _addr in tx.get_output_addresses():
# assert not self.is_mine(_addr)
ext_requests.append( ('blockchain.address.get_history', [_addr]) )
ext_h = self.network.synchronous_get(ext_requests)
2013-03-24 04:20:13 -07:00
print_error("sync:", ext_requests, ext_h)
height = None
for h in ext_h:
if h == ['*']: continue
for item in h:
if item.get('tx_hash') == tx_hash:
height = item.get('height')
if height:
print_error("found height for", tx_hash, height)
self.verifier.add(tx_hash, height)
else:
print_error("removing orphaned tx from history", tx_hash)
self.transactions.pop(tx_hash)
return True
def check_new_tx(self, tx_hash, tx):
# 1 check that tx is referenced in addr_history.
addresses = []
for addr, hist in self.history.items():
2012-11-14 06:33:44 -08:00
if hist == ['*']:continue
for txh, height in hist:
if txh == tx_hash:
addresses.append(addr)
if not addresses:
return False
# 2 check that referencing addresses are in the tx
for addr in addresses:
2013-02-22 10:22:22 -08:00
if not tx.has_address(addr):
return False
return True
2013-09-08 08:23:01 -07:00
def start_threads(self, network):
2013-09-01 09:44:19 -07:00
from verifier import TxVerifier
2013-09-08 08:23:01 -07:00
self.network = network
2014-01-23 08:06:47 -08:00
if self.network is not None:
2013-11-05 09:55:53 -08:00
self.verifier = TxVerifier(self.network, self.storage)
self.verifier.start()
self.set_verifier(self.verifier)
self.synchronizer = WalletSynchronizer(self, network)
self.synchronizer.start()
else:
self.verifier = None
self.synchronizer =None
2013-09-01 09:44:19 -07:00
def stop_threads(self):
2013-11-05 09:55:53 -08:00
if self.network:
self.verifier.stop()
self.synchronizer.stop()
2013-09-01 09:44:19 -07:00
2014-04-30 02:40:53 -07:00
def restore(self, cb):
pass
2014-05-04 04:46:37 -07:00
def get_accounts(self):
return self.accounts
2014-08-19 03:38:01 -07:00
def add_account(self, account_id, account):
self.accounts[account_id] = account
self.save_accounts()
def save_accounts(self):
d = {}
for k, v in self.accounts.items():
d[k] = v.dump()
self.storage.put('accounts', d, True)
2014-05-07 02:53:32 -07:00
def can_import(self):
return not self.is_watching_only()
2014-05-12 02:28:00 -07:00
def is_used(self, address):
h = self.history.get(address,[])
c, u = self.get_addr_balance(address)
return len(h), len(h) > 0 and c == -u
def address_is_old(self, address, age_limit=2):
age = -1
h = self.history.get(address, [])
if h == ['*']:
return True
for tx_hash, tx_height in h:
if tx_height == 0:
tx_age = 0
else:
tx_age = self.network.get_local_height() - tx_height + 1
if tx_age > age:
age = tx_age
return age > age_limit
2014-07-27 23:27:21 -07:00
def can_sign(self, tx):
pass
2014-04-30 02:18:13 -07:00
def is_watching_only(self):
False
def can_change_password(self):
return not self.is_watching_only()
2014-04-30 02:18:13 -07:00
class Imported_Wallet(Abstract_Wallet):
2014-08-20 09:54:37 -07:00
wallet_type = 'imported'
2014-04-30 02:18:13 -07:00
def __init__(self, storage):
Abstract_Wallet.__init__(self, storage)
a = self.accounts.get(IMPORTED_ACCOUNT)
if not a:
self.accounts[IMPORTED_ACCOUNT] = ImportedAccount({'imported':{}})
2014-04-30 02:18:13 -07:00
def is_watching_only(self):
acc = self.accounts[IMPORTED_ACCOUNT]
n = acc.keypairs.values()
return n == [(None, None)] * len(n)
2014-04-30 02:18:13 -07:00
2014-04-30 02:40:53 -07:00
def has_seed(self):
return False
def is_deterministic(self):
return False
def check_password(self, password):
self.accounts[IMPORTED_ACCOUNT].get_private_key((0,0), self, password)
2014-05-12 02:28:00 -07:00
def is_used(self, address):
h = self.history.get(address,[])
return len(h), False
def get_master_public_keys(self):
return {}
def is_beyond_limit(self, address, account, is_change):
return False
2014-04-30 02:18:13 -07:00
2014-04-30 02:18:13 -07:00
class Deterministic_Wallet(Abstract_Wallet):
def __init__(self, storage):
Abstract_Wallet.__init__(self, storage)
2014-04-30 02:40:53 -07:00
def has_seed(self):
2014-04-30 06:44:46 -07:00
return self.seed != ''
2014-04-30 02:40:53 -07:00
def is_deterministic(self):
return True
2014-04-30 02:18:13 -07:00
def is_watching_only(self):
2014-04-30 06:44:46 -07:00
return not self.has_seed()
2014-04-30 02:40:53 -07:00
2014-05-01 09:58:24 -07:00
def add_seed(self, seed, password):
if self.seed:
2014-05-01 09:58:24 -07:00
raise Exception("a seed exists")
2014-05-01 09:58:24 -07:00
self.seed_version, self.seed = self.prepare_seed(seed)
if password:
2014-05-01 09:58:24 -07:00
self.seed = pw_encode( self.seed, password)
self.use_encryption = True
else:
self.use_encryption = False
self.storage.put('seed', self.seed, True)
self.storage.put('seed_version', self.seed_version, True)
self.storage.put('use_encryption', self.use_encryption,True)
self.create_master_keys(password)
2014-04-30 02:18:13 -07:00
def get_seed(self, password):
return pw_decode(self.seed, password)
2014-04-30 02:18:13 -07:00
def get_mnemonic(self, password):
return self.get_seed(password)
2014-04-30 02:18:13 -07:00
def change_gap_limit(self, value):
if value >= self.gap_limit:
self.gap_limit = value
self.storage.put('gap_limit', self.gap_limit, True)
#self.interface.poke('synchronizer')
return True
elif value >= self.min_acceptable_gap():
for key, account in self.accounts.items():
addresses = account[0]
k = self.num_unused_trailing_addresses(addresses)
n = len(addresses) - k + value
addresses = addresses[0:n]
self.accounts[key][0] = addresses
self.gap_limit = value
self.storage.put('gap_limit', self.gap_limit, True)
self.save_accounts()
return True
else:
return False
def num_unused_trailing_addresses(self, addresses):
k = 0
for a in addresses[::-1]:
if self.history.get(a):break
k = k + 1
return k
def min_acceptable_gap(self):
# fixme: this assumes wallet is synchronized
n = 0
nmax = 0
for account in self.accounts.values():
addresses = account.get_addresses(0)
k = self.num_unused_trailing_addresses(addresses)
for a in addresses[0:-k]:
if self.history.get(a):
n = 0
else:
n += 1
if n > nmax: nmax = n
return nmax + 1
def create_new_address(self, account=None, for_change=0):
if account is None:
account = self.default_account()
address = account.create_new_address(for_change)
self.history[address] = []
2014-06-30 08:59:36 -07:00
if self.synchronizer:
self.synchronizer.add(address)
self.save_accounts()
return address
2014-04-30 02:18:13 -07:00
def synchronize_sequence(self, account, for_change):
limit = self.gap_limit_for_change if for_change else self.gap_limit
while True:
addresses = account.get_addresses(for_change)
if len(addresses) < limit:
self.create_new_address(account, for_change)
2014-04-30 02:18:13 -07:00
continue
if map( lambda a: self.address_is_old(a), addresses[-limit:] ) == limit*[False]:
break
else:
self.create_new_address(account, for_change)
2014-04-30 02:18:13 -07:00
def check_pending_accounts(self):
2014-08-19 03:38:01 -07:00
pass
2014-04-30 02:18:13 -07:00
def synchronize_account(self, account):
self.synchronize_sequence(account, 0)
self.synchronize_sequence(account, 1)
2014-04-30 02:18:13 -07:00
def synchronize(self):
self.check_pending_accounts()
for account in self.accounts.values():
2014-05-04 04:46:37 -07:00
if type(account) in [ImportedAccount, PendingAccount]:
continue
self.synchronize_account(account)
2014-04-30 02:18:13 -07:00
def restore(self, callback):
from i18n import _
def wait_for_wallet():
self.set_up_to_date(False)
while not self.is_up_to_date():
msg = "%s\n%s %d\n%s %.1f"%(
_("Please wait..."),
_("Addresses generated:"),
len(self.addresses(True)),
_("Kilobytes received:"),
self.network.interface.bytes_received/1024.)
apply(callback, (msg,))
time.sleep(0.1)
def wait_for_network():
2013-11-02 10:10:18 -07:00
while not self.network.is_connected():
msg = "%s \n" % (_("Connecting..."))
apply(callback, (msg,))
time.sleep(0.1)
# wait until we are connected, because the user might have selected another server
2013-11-05 09:55:53 -08:00
if self.network:
wait_for_network()
wait_for_wallet()
else:
self.synchronize()
self.fill_addressbook()
2014-04-30 02:18:13 -07:00
def is_beyond_limit(self, address, account, is_change):
if type(account) == ImportedAccount:
return False
addr_list = account.get_addresses(is_change)
i = addr_list.index(address)
prev_addresses = addr_list[:max(0, i)]
limit = self.gap_limit_for_change if is_change else self.gap_limit
if len(prev_addresses) < limit:
return False
prev_addresses = prev_addresses[max(0, i - limit):]
for addr in prev_addresses:
if self.history.get(addr):
return False
return True
def get_action(self):
2014-07-07 14:35:01 -07:00
if not self.get_master_public_key():
return 'create_seed'
if not self.accounts:
return 'create_accounts'
2014-08-13 07:05:43 -07:00
def get_master_public_keys(self):
out = {}
for k, account in self.accounts.items():
name = self.get_account_name(k)
mpk_text = '\n\n'.join( account.get_master_pubkeys() )
out[name] = mpk_text
return out
2014-04-29 12:04:16 -07:00
2014-08-19 03:38:01 -07:00
class BIP32_Wallet(Deterministic_Wallet):
2014-08-13 07:05:43 -07:00
# Wallet with a single BIP32 account, no seed
# gap limit 20
2014-08-20 09:54:37 -07:00
root_name = 'x/'
def __init__(self, storage):
2014-04-30 02:18:13 -07:00
Deterministic_Wallet.__init__(self, storage)
self.master_public_keys = storage.get('master_public_keys', {})
self.master_private_keys = storage.get('master_private_keys', {})
2014-08-13 07:05:43 -07:00
self.gap_limit = 20
def default_account(self):
2014-08-13 07:05:43 -07:00
return self.accounts['0']
2014-06-25 07:45:55 -07:00
def is_watching_only(self):
return not bool(self.master_private_keys)
2014-06-25 07:45:55 -07:00
2014-04-30 02:18:13 -07:00
def get_master_public_key(self):
2014-08-13 07:05:43 -07:00
return self.master_public_keys.get(self.root_name)
2014-04-30 02:18:13 -07:00
def get_master_private_key(self, account, password):
k = self.master_private_keys.get(account)
if not k: return
2014-08-13 07:05:43 -07:00
xprv = pw_decode(k, password)
return xprv
2014-04-30 02:18:13 -07:00
def check_password(self, password):
2014-08-13 07:05:43 -07:00
xpriv = self.get_master_private_key(self.root_name, password)
xpub = self.master_public_keys[self.root_name]
assert deserialize_xkey(xpriv)[3] == deserialize_xkey(xpub)[3]
2014-04-30 02:18:13 -07:00
2014-06-25 07:45:55 -07:00
def create_xprv_wallet(self, xprv, password):
xpub = bitcoin.xpub_from_xprv(xprv)
account = BIP32_Account({'xpub':xpub})
2014-04-30 02:18:13 -07:00
self.storage.put('seed_version', self.seed_version, True)
2014-08-13 07:05:43 -07:00
self.add_master_private_key(self.root_name, xprv, password)
self.add_master_public_key(self.root_name, xpub)
self.add_account('0', account)
2014-06-25 07:45:55 -07:00
2014-08-19 03:38:01 -07:00
def create_xpub_wallet(self, xpub):
2014-04-30 02:18:13 -07:00
account = BIP32_Account({'xpub':xpub})
2014-06-25 07:45:55 -07:00
self.storage.put('seed_version', self.seed_version, True)
2014-08-13 07:05:43 -07:00
self.add_master_public_key(self.root_name, xpub)
self.add_account('0', account)
2014-04-30 02:18:13 -07:00
2014-06-25 07:45:55 -07:00
def add_master_public_key(self, name, xpub):
self.master_public_keys[name] = xpub
2014-04-30 02:18:13 -07:00
self.storage.put('master_public_keys', self.master_public_keys, True)
def add_master_private_key(self, name, xpriv, password):
self.master_private_keys[name] = pw_encode(xpriv, password)
self.storage.put('master_private_keys', self.master_private_keys, True)
2014-08-20 12:01:30 -07:00
def derive_xkeys(self, root, derivation, password):
x = self.master_private_keys[root]
root_xprv = pw_decode(x, password)
xprv, xpub = bip32_private_derivation(root_xprv, root, derivation)
return xpub, xprv
2014-08-13 07:05:43 -07:00
def can_sign(self, tx):
if self.is_watching_only():
return False
if tx.is_complete():
return False
addr_list, xpub_list = tx.inputs_to_sign()
for addr in addr_list:
if self.is_mine(addr):
return True
mpk = [ self.master_public_keys[k] for k in self.master_private_keys.keys() ]
for xpub, sequence in xpub_list:
if xpub in mpk:
return True
return False
2014-08-19 03:38:01 -07:00
class BIP32_HD_Wallet(BIP32_Wallet):
2014-08-13 07:05:43 -07:00
# wallet that can create accounts
def create_main_account(self, password):
# First check the password is valid (this raises if it isn't).
if not self.is_watching_only():
self.check_password(password)
self.create_account('Main account', password)
def can_create_accounts(self):
return self.root_name in self.master_private_keys.keys()
2014-04-30 02:18:13 -07:00
2014-08-19 03:38:01 -07:00
def create_account(self, name, password):
2014-08-13 07:05:43 -07:00
account_id = "%d"%self.num_accounts()
2014-08-19 03:38:01 -07:00
account = self.make_account(account_id, password)
self.add_account(account_id, account)
if name:
self.set_label(account_id, name)
# add address of the next account
_, _ = self.next_account_address(password)
def account_is_pending(self, k):
return type(self.accounts.get(k)) == PendingAccount
def delete_pending_account(self, k):
assert self.account_is_pending(k)
self.accounts.pop(k)
self.save_accounts()
def create_pending_account(self, name, password):
account_id, addr = self.next_account_address(password)
self.set_label(account_id, name)
self.accounts[account_id] = PendingAccount({'pending':addr})
self.save_accounts()
def check_pending_accounts(self):
for account_id, addr in self.next_addresses.items():
if self.address_is_old(addr):
print_error( "creating account", account_id )
xpub = self.master_public_keys[account_id]
account = BIP32_Account({'xpub':xpub})
self.add_account(account_id, account)
self.next_addresses.pop(account_id)
2014-04-30 02:18:13 -07:00
2014-08-19 03:38:01 -07:00
def next_account_address(self, password):
2014-08-13 07:05:43 -07:00
account_id = '%d'%self.num_accounts()
2014-04-30 02:18:13 -07:00
addr = self.next_addresses.get(account_id)
if not addr:
2014-04-30 02:18:13 -07:00
account = self.make_account(account_id, password)
addr = account.first_address()
self.next_addresses[account_id] = addr
self.storage.put('next_addresses', self.next_addresses)
return account_id, addr
def make_account(self, account_id, password):
"""Creates and saves the master keys, but does not save the account"""
2014-08-13 07:05:43 -07:00
derivation = self.root_name + "%d'"%int(account_id)
2014-08-20 12:01:30 -07:00
xpub, xprv = self.derive_xkeys(self.root_name, derivation, password)
self.add_master_public_key(derivation, xpub)
if xprv:
self.add_master_private_key(derivation, xprv, password)
2014-04-30 02:18:13 -07:00
account = BIP32_Account({'xpub':xpub})
return account
2014-08-19 03:38:01 -07:00
def num_accounts(self):
keys = []
for k, v in self.accounts.items():
if type(v) != BIP32_Account:
continue
keys.append(k)
i = 0
while True:
2014-08-13 07:05:43 -07:00
account_id = '%d'%i
if account_id not in keys:
break
2014-08-19 03:38:01 -07:00
i += 1
return i
2014-08-13 07:05:43 -07:00
class BIP39_Wallet(BIP32_Wallet):
2014-08-19 03:38:01 -07:00
# BIP39 seed generation
2014-08-01 03:04:38 -07:00
2014-08-13 07:05:43 -07:00
def create_master_keys(self, password):
seed = self.get_seed(password)
xprv, xpub = bip32_root(seed)
xprv, xpub = bip32_private_derivation(xprv, "m/", self.root_derivation)
self.add_master_public_key(self.root_name, xpub)
self.add_master_private_key(self.root_name, xprv, password)
2014-08-01 03:04:38 -07:00
@classmethod
def make_seed(self, custom_entropy=1):
import mnemonic
import ecdsa
import math
n = int(math.ceil(math.log(custom_entropy,2)))
n_added = max(16, 160-n)
print_error("make_seed: adding %d bits"%n_added)
my_entropy = ecdsa.util.randrange( pow(2, n_added) )
nonce = 0
while True:
2014-08-01 03:04:38 -07:00
s = "%x"% ( custom_entropy * (my_entropy + nonce))
if len(s) % 8:
s = "0"* (8 - len(s) % 8) + s
words = mnemonic.mn_encode(s)
seed = ' '.join(words)
2014-08-01 03:04:38 -07:00
# this removes 8 bits of entropy
2014-08-05 01:00:15 -07:00
if not is_old_seed(seed) and is_new_seed(seed):
2014-08-01 03:04:38 -07:00
break
nonce += 1
2014-08-01 03:04:38 -07:00
print_error(seed)
return seed
def prepare_seed(self, seed):
import unicodedata
return NEW_SEED_VERSION, unicodedata.normalize('NFC', unicode(seed.strip()))
2014-08-19 04:03:29 -07:00
2014-08-13 07:05:43 -07:00
class NewWallet(BIP32_HD_Wallet, BIP39_Wallet):
# bip 44
root_name = 'root/'
root_derivation = "m/44'/0'"
2014-08-20 09:54:37 -07:00
wallet_type = 'standard'
2014-08-19 03:38:01 -07:00
2014-08-13 07:05:43 -07:00
class Wallet_2of2(BIP39_Wallet):
# Wallet with multisig addresses.
# Cannot create accounts
root_name = "x1/"
root_derivation = "m/44'/0'"
2014-08-20 09:54:37 -07:00
wallet_type = '2of2'
2014-04-06 12:38:53 -07:00
2014-05-07 02:53:32 -07:00
def can_import(self):
return False
2014-08-13 07:05:43 -07:00
def create_main_account(self, password):
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
account = BIP32_Account_2of2({'xpub':xpub1, 'xpub2':xpub2})
2014-08-13 07:05:43 -07:00
self.add_account('0', account)
2014-04-06 12:38:53 -07:00
2014-04-25 01:16:07 -07:00
def get_master_public_keys(self):
2014-08-13 07:05:43 -07:00
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
return {'x1':xpub1, 'x2':xpub2}
2014-04-06 12:38:53 -07:00
def get_action(self):
2014-08-13 07:05:43 -07:00
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
if xpub1 is None:
return 'create_seed'
if xpub2 is None:
return 'add_cosigner'
if not self.accounts:
return 'create_accounts'
2014-04-25 08:51:41 -07:00
2014-04-06 12:38:53 -07:00
class Wallet_2of3(Wallet_2of2):
2014-08-20 09:54:37 -07:00
# multisig 2 of 3
wallet_type = '2of3'
2014-04-06 12:38:53 -07:00
2014-08-13 07:05:43 -07:00
def create_main_account(self, password):
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
xpub3 = self.master_public_keys.get("x3/")
account = BIP32_Account_2of3({'xpub':xpub1, 'xpub2':xpub2, 'xpub3':xpub3})
2014-08-13 07:05:43 -07:00
self.add_account('0', account)
2014-04-06 12:38:53 -07:00
2014-04-25 01:16:07 -07:00
def get_master_public_keys(self):
2014-08-13 07:05:43 -07:00
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
xpub3 = self.master_public_keys.get("x3/")
return {'x1':xpub1, 'x2':xpub2, 'x3':xpub3}
2014-04-06 12:38:53 -07:00
2014-04-28 08:30:48 -07:00
def get_action(self):
2014-08-13 07:05:43 -07:00
xpub1 = self.master_public_keys.get("x1/")
xpub2 = self.master_public_keys.get("x2/")
xpub3 = self.master_public_keys.get("x3/")
2014-04-28 08:30:48 -07:00
if xpub1 is None:
return 'create_seed'
2014-05-12 01:53:04 -07:00
if xpub2 is None or xpub3 is None:
return 'add_two_cosigners'
if not self.accounts:
return 'create_accounts'
2014-04-28 08:30:48 -07:00
2013-09-03 01:58:07 -07:00
2014-04-30 02:18:13 -07:00
class OldWallet(Deterministic_Wallet):
def default_account(self):
return self.accounts[0]
def make_seed(self):
import mnemonic
seed = random_seed(128)
return ' '.join(mnemonic.mn_encode(seed))
def prepare_seed(self, seed):
import mnemonic
# see if seed was entered as hex
2014-02-26 07:24:37 -08:00
seed = seed.strip()
try:
2014-02-26 07:24:37 -08:00
assert seed
seed.decode('hex')
return OLD_SEED_VERSION, str(seed)
except Exception:
pass
words = seed.split()
seed = mnemonic.mn_decode(words)
if not seed:
raise Exception("Invalid seed")
return OLD_SEED_VERSION, seed
2014-04-06 12:38:53 -07:00
def create_master_keys(self, password):
seed = self.get_seed(password)
2014-04-06 12:38:53 -07:00
mpk = OldAccount.mpk_from_seed(seed)
2014-04-08 22:36:33 -07:00
self.storage.put('master_public_key', mpk, True)
def get_master_public_key(self):
return self.storage.get("master_public_key")
2014-04-25 01:16:07 -07:00
def get_master_public_keys(self):
return {'Main Account':self.get_master_public_key()}
2014-08-13 07:05:43 -07:00
def create_main_account(self, password):
2014-04-25 01:39:07 -07:00
mpk = self.storage.get("master_public_key")
self.create_account(mpk)
def create_account(self, mpk):
self.accounts[0] = OldAccount({'mpk':mpk, 0:[], 1:[]})
self.save_accounts()
2014-04-01 02:25:12 -07:00
def create_watching_only_wallet(self, mpk):
2014-02-27 01:21:41 -08:00
self.seed_version = OLD_SEED_VERSION
self.storage.put('seed_version', self.seed_version, True)
2014-04-20 01:42:13 -07:00
self.storage.put('master_public_key', mpk, True)
2014-04-01 02:25:12 -07:00
self.create_account(mpk)
def get_seed(self, password):
2014-05-04 16:19:04 -07:00
seed = pw_decode(self.seed, password).encode('utf8')
return seed
def check_password(self, password):
2014-06-11 04:10:48 -07:00
seed = self.get_seed(password)
self.accounts[0].check_seed(seed)
def get_mnemonic(self, password):
import mnemonic
2014-05-04 16:19:04 -07:00
s = self.get_seed(password)
return ' '.join(mnemonic.mn_encode(s))
def can_sign(self, tx):
if self.is_watching_only():
return False
if tx.is_complete():
return False
addr_list, xpub_list = tx.inputs_to_sign()
for addr in addr_list:
if self.is_mine(addr):
return True
for xpub, sequence in xpub_list:
if xpub == self.master_public_key:
return True
return False
2014-02-27 01:21:41 -08:00
# former WalletFactory
class Wallet(object):
"""The main wallet "entry point".
This class is actually a factory that will return a wallet of the correct
type when passed a WalletStorage instance."""
2014-02-27 01:21:41 -08:00
def __new__(self, storage):
config = storage.config
2014-04-06 12:38:53 -07:00
self.wallet_types = [
2014-08-13 07:05:43 -07:00
('standard', ("Standard wallet"), NewWallet),
2014-07-07 06:43:02 -07:00
('imported', ("Imported wallet"), Imported_Wallet),
('2of2', ("Multisig wallet (2 of 2)"), Wallet_2of2),
('2of3', ("Multisig wallet (2 of 3)"), Wallet_2of3)
]
run_hook('add_wallet_types', self.wallet_types)
for t, l, WalletClass in self.wallet_types:
if t == storage.get('wallet_type'):
return WalletClass(storage)
2014-04-29 12:04:16 -07:00
2014-02-27 01:21:41 -08:00
if not storage.file_exists:
2014-08-13 07:05:43 -07:00
seed_version = NEW_SEED_VERSION
2014-02-27 01:21:41 -08:00
else:
seed_version = storage.get('seed_version')
2014-03-13 02:42:39 -07:00
if not seed_version:
seed_version = OLD_SEED_VERSION if len(storage.get('master_public_key')) == 128 else NEW_SEED_VERSION
2014-02-27 01:21:41 -08:00
if seed_version == OLD_SEED_VERSION:
return OldWallet(storage)
elif seed_version == NEW_SEED_VERSION:
return NewWallet(storage)
else:
msg = "This wallet seed is not supported."
if seed_version in [5]:
msg += "\nTo open this wallet, try 'git checkout seed_v%d'"%seed_version
print msg
sys.exit(1)
@classmethod
2014-04-05 01:34:51 -07:00
def is_seed(self, seed):
2014-02-27 01:21:41 -08:00
if not seed:
2014-04-05 01:34:51 -07:00
return False
elif is_old_seed(seed):
2014-04-19 11:23:27 -07:00
return True
2014-04-05 01:34:51 -07:00
elif is_new_seed(seed):
2014-04-19 11:23:27 -07:00
return True
else:
2014-04-05 01:34:51 -07:00
return False
2014-02-27 01:21:41 -08:00
2014-04-19 11:23:27 -07:00
@classmethod
2014-06-25 07:45:55 -07:00
def is_old_mpk(self, mpk):
2014-04-19 11:23:27 -07:00
try:
int(mpk, 16)
2014-06-25 07:45:55 -07:00
assert len(mpk) == 128
return True
2014-04-19 11:23:27 -07:00
except:
2014-06-25 07:45:55 -07:00
return False
2014-06-25 07:45:55 -07:00
@classmethod
def is_xpub(self, text):
try:
assert text[0:4] == 'xpub'
deserialize_xkey(text)
return True
except:
return False
@classmethod
def is_xprv(self, text):
try:
assert text[0:4] == 'xprv'
deserialize_xkey(text)
return True
except:
return False
2014-04-29 12:04:16 -07:00
@classmethod
def is_address(self, text):
if not text:
return False
2014-04-29 12:04:16 -07:00
for x in text.split():
if not bitcoin.is_address(x):
return False
return True
@classmethod
def is_private_key(self, text):
if not text:
return False
2014-04-29 12:04:16 -07:00
for x in text.split():
if not bitcoin.is_private_key(x):
return False
return True
2014-04-19 11:23:27 -07:00
2014-04-05 01:34:51 -07:00
@classmethod
def from_seed(self, seed, storage):
2014-04-19 11:23:27 -07:00
if is_old_seed(seed):
klass = OldWallet
elif is_new_seed(seed):
klass = NewWallet
2014-04-05 01:34:51 -07:00
w = klass(storage)
return w
2014-04-29 12:04:16 -07:00
@classmethod
def from_address(self, text, storage):
w = Imported_Wallet(storage)
for x in text.split():
w.accounts[IMPORTED_ACCOUNT].add(x, None, None, None)
w.save_accounts()
2014-04-29 12:04:16 -07:00
return w
@classmethod
def from_private_key(self, text, storage):
w = Imported_Wallet(storage)
for x in text.split():
w.import_key(x, None)
return w
@classmethod
2014-06-25 07:45:55 -07:00
def from_old_mpk(self, mpk, storage):
w = OldWallet(storage)
w.seed = ''
w.create_watching_only_wallet(mpk)
return w
2014-06-25 07:45:55 -07:00
@classmethod
def from_xpub(self, xpub, storage):
2014-08-19 03:38:01 -07:00
w = BIP32_Wallet(storage)
w.create_xpub_wallet(xpub)
2014-06-25 07:45:55 -07:00
return w
2014-02-27 01:21:41 -08:00
2014-06-25 07:45:55 -07:00
@classmethod
def from_xprv(self, xprv, password, storage):
2014-08-19 03:38:01 -07:00
w = BIP32_Wallet(storage)
2014-06-25 07:45:55 -07:00
w.create_xprv_wallet(xprv, password)
2014-02-27 01:21:41 -08:00
return w