electrum-bitcoinprivate/lib/wallet.py

1878 lines
65 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
2014-09-05 03:04:03 -07:00
import copy
2014-11-20 10:10:43 -08:00
from util import print_msg, print_error, NotEnoughFunds
from util import profiler
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
from mnemonic import Mnemonic
2012-02-14 03:45:39 -08:00
2013-10-07 10:24:06 -07:00
2014-09-07 09:45: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')
2015-02-17 01:30:10 -08:00
if path and os.path.exists(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-09-05 03:04:03 -07:00
self.data = json.loads(data)
2014-08-20 03:47:53 -07:00
except:
try:
d = ast.literal_eval(data) #parse raw data from reading wallet file
except Exception as e:
raise IOError("Cannot read wallet file '%s'" % self.path)
2014-09-05 03:04:03 -07:00
self.data = {}
2014-09-05 03:08:09 -07:00
for key, value in d.items():
2014-09-05 03:04:03 -07:00
try:
json.dumps(key)
json.dumps(value)
except:
continue
self.data[key] = value
self.file_exists = True
def basename(self):
return os.path.basename(self.path)
def get(self, key, default=None):
with self.lock:
v = self.data.get(key)
if v is None:
v = default
2014-09-05 03:04:03 -07:00
else:
v = copy.deepcopy(v)
return v
def put(self, key, value, save = True):
2014-09-05 03:04:03 -07:00
try:
json.dumps(key)
json.dumps(value)
except:
print_error("json error: cannot save", key)
return
2013-09-29 09:33:54 -07:00
with self.lock:
if value is not None:
2014-09-05 03:04:03 -07:00
self.data[key] = copy.deepcopy(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):
assert not threading.currentThread().isDaemon()
2015-04-24 04:14:17 -07:00
temp_path = self.path + '.tmp'
2014-08-20 03:47:53 -07:00
s = json.dumps(self.data, indent=4, sort_keys=True)
2015-04-24 04:14:17 -07:00
with open(temp_path, "w") as f:
2015-03-13 15:04:29 -07:00
f.write(s)
# perform atomic write on POSIX systems
try:
os.rename(temp_path, self.path)
except:
os.remove(self.path)
os.rename(temp_path, self.path)
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)
2015-04-24 04:14:17 -07:00
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.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.history = storage.get('addr_history',{}) # address -> list(txid, height)
2014-09-14 22:35:05 -07:00
self.fee_per_kb = int(storage.get('fee_per_kb', RECOMMENDED_FEE))
2013-08-01 11:08:56 -07:00
# 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
# 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()
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)
@profiler
2014-07-13 17:20:24 -07:00
def load_transactions(self):
self.txi = self.storage.get('txi', {})
self.txo = self.storage.get('txo', {})
2015-03-30 03:58:52 -07:00
self.pruned_txo = self.storage.get('pruned_txo', {})
tx_list = self.storage.get('transactions', {})
2014-07-13 17:20:24 -07:00
self.transactions = {}
for tx_hash, raw in tx_list.items():
tx = Transaction(raw)
self.transactions[tx_hash] = tx
if self.txi.get(tx_hash) is None and self.txo.get(tx_hash) is None:
print_error("removing unreferenced tx", tx_hash)
self.transactions.pop(tx_hash)
@profiler
def save_transactions(self):
with self.transaction_lock:
tx = {}
for k,v in self.transactions.items():
tx[k] = str(v)
self.storage.put('transactions', tx)
self.storage.put('txi', self.txi)
self.storage.put('txo', self.txo)
2015-03-30 03:58:52 -07:00
self.storage.put('pruned_txo', self.pruned_txo)
def clear_history(self):
with self.transaction_lock:
self.txi = {}
self.txo = {}
self.pruned_txo = {}
self.history = {}
self.save_transactions()
# wizard action
2014-04-28 08:30:48 -07:00
def get_action(self):
pass
def basename(self):
return self.storage.basename()
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'))
2014-12-03 13:35:05 -08:00
if address != k:
raise InvalidPassword()
2014-06-01 23:59:41 -07:00
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():
2014-08-20 13:38:20 -07:00
if self.wallet_type == 'old' and k in [0, '0']:
v['mpk'] = self.storage.get('master_public_key')
2015-03-31 13:44:00 -07:00
self.accounts['0'] = 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'):
try:
self.accounts[k] = PendingAccount(v)
except:
pass
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:
2014-09-09 16:33:52 -07:00
self.synchronizer.add(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):
2014-11-04 15:37:43 -08:00
return list(addr for acc in self.accounts for addr in self.get_account_addresses(acc, include_change))
2013-02-27 00:04:22 -08:00
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):
2014-11-04 15:37:43 -08:00
for acc_id in self.accounts:
2013-02-27 00:04:22 -08:00
for for_change in [0,1]:
2014-11-04 15:37:43 -08:00
addresses = self.accounts[acc_id].get_addresses(for_change)
if address in addresses:
return acc_id, (for_change, addresses.index(address))
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 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
2013-03-16 10:17:50 -07:00
def get_num_tx(self, address):
""" return number of transactions where address is involved """
return len(self.history.get(address, []))
def get_tx_delta(self, tx_hash, address):
"effect of tx on address"
2015-03-30 03:58:52 -07:00
# pruned
if tx_hash in self.pruned_txo.values():
return None
delta = 0
# substract the value of coins sent from address
d = self.txi.get(tx_hash, {}).get(address, [])
for n, v in d:
delta -= v
# add the value of the coins received at address
d = self.txo.get(tx_hash, {}).get(address, [])
for n, v, cb in d:
delta += v
return delta
def get_wallet_delta(self, tx):
""" effect of tx on wallet """
addresses = self.addresses(True)
is_relevant = False
is_send = False
is_pruned = False
is_partial = False
v_in = v_out = v_out_mine = 0
2013-02-22 10:22:22 -08:00
for item in tx.inputs:
addr = item.get('address')
if addr in addresses:
is_send = True
is_relevant = True
d = self.txo.get(item['prevout_hash'], {}).get(addr, [])
for n, v, cb in d:
if n == item['prevout_n']:
value = v
break
else:
value = None
if value is None:
is_pruned = True
else:
v_in += value
else:
is_partial = True
if not is_send:
is_partial = False
for addr, value in tx.get_outputs():
v_out += value
if addr in addresses:
v_out_mine += value
is_relevant = True
if is_pruned:
# some inputs are mine:
fee = None
if is_send:
v = v_out_mine - v_out
else:
# no input is mine
v = v_out_mine
else:
v = v_out_mine - v_in
if is_partial:
# some inputs are mine, but not all
fee = None
is_send = v < 0
else:
# all inputs are mine
fee = v_out - v_in
return is_relevant, is_send, v, fee
def get_addr_utxo(self, address):
h = self.history.get(address, [])
coins = {}
for tx_hash, height in h:
l = self.txo.get(tx_hash, {}).get(address, [])
for n, v, is_cb in l:
coins[tx_hash + ':%d'%n] = (height, v, is_cb)
for tx_hash, height in h:
l = self.txi.get(tx_hash, {}).get(address, [])
for txi, v in l:
coins.pop(txi)
return coins.items()
#return the total amount ever received by an address
def get_addr_received(self, address):
h = self.history.get(address, [])
received = 0
for tx_hash, height in h:
l = self.txo.get(tx_hash, {}).get(address, [])
for n, v, is_cb in l:
received += v
return received
2015-03-30 03:58:52 -07:00
def get_addr_balance(self, address):
"returns the confirmed balance and pending (unconfirmed) balance change of a bitcoin address"
coins = self.get_addr_utxo(address)
c = u = 0
for txo, v in coins:
tx_height, v, is_cb = v
if tx_height > 0:
c += v
else:
u += v
return c, u
def get_unspent_coins(self, domain=None):
coins = []
if domain is None:
domain = self.addresses(True)
for addr in domain:
c = self.get_addr_utxo(addr)
for txo, v in c:
tx_height, value, is_cb = v
prevout_hash, prevout_n = txo.split(':')
output = {
'address':addr,
'value':value,
'prevout_n':int(prevout_n),
'prevout_hash':prevout_hash,
'height':tx_height,
'coinbase':is_cb
}
coins.append((tx_height, output))
continue
# sort by age
if coins:
coins = sorted(coins)
if coins[-1][0] != 0:
while coins[0][0] == 0:
coins = coins[1:] + [ coins[0] ]
return [value for height, value in coins]
def get_addr_balance2(self, address):
"returns the confirmed balance and pending (unconfirmed) balance change of a bitcoin address"
coins = self.get_addr_utxo(address)
c = u = 0
for txo, v, height in coins:
if height > 0:
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
2014-11-04 15:37:43 -08:00
def get_account_addresses(self, acc_id, include_change=True):
if acc_id is None:
addr_list = self.addresses(include_change)
elif acc_id in self.accounts:
acc = self.accounts[acc_id]
addr_list = acc.get_addresses(0)
if include_change:
addr_list += acc.get_addresses(1)
return addr_list
def get_account_from_address(self, addr):
2014-11-24 03:28:11 -08:00
"Returns the account that contains this address, or None"
2014-11-04 15:37:43 -08:00
for acc_id in self.accounts: # similar to get_address_index but simpler
if addr in self.get_account_addresses(acc_id):
2014-11-24 03:28:11 -08:00
return acc_id
2014-11-04 15:37:43 -08:00
return None
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
2013-09-01 14:09:27 -07:00
def set_fee(self, fee):
2014-09-07 09:45:06 -07:00
if self.fee_per_kb != fee:
self.fee_per_kb = fee
self.storage.put('fee_per_kb', self.fee_per_kb, True)
def get_address_history(self, address):
with self.lock:
return self.history.get(address, [])
def get_status(self, h):
if not h:
return None
status = ''
for tx_hash, height in h:
status += tx_hash + ':%d:' % height
return hashlib.sha256( status ).digest().encode('hex')
2015-03-28 12:53:49 -07:00
def find_pay_to_pubkey_address(self, prevout_hash, prevout_n):
dd = self.txo.get(prevout_hash, {})
for addr, l in dd.items():
for n, v, is_cb in l:
if n == prevout_n:
return addr
def add_transaction(self, tx_hash, tx, tx_height):
is_coinbase = tx.inputs[0].get('prevout_hash') == '0'*64
2013-03-23 23:34:28 -07:00
with self.transaction_lock:
# add inputs
self.txi[tx_hash] = d = {}
for txi in tx.inputs:
addr = txi.get('address')
2015-03-28 12:53:49 -07:00
if not txi.get('is_coinbase'):
prevout_hash = txi['prevout_hash']
prevout_n = txi['prevout_n']
ser = prevout_hash + ':%d'%prevout_n
2015-03-28 12:53:49 -07:00
if addr == "(pubkey)":
addr = self.find_pay_to_pubkey_address(prevout_hash, prevout_n)
if addr:
print_error("found pay-to-pubkey address:", addr)
else:
2015-03-30 03:58:52 -07:00
self.pruned_txo[ser] = tx_hash
# find value from prev output
2015-03-28 12:53:49 -07:00
if addr and self.is_mine(addr):
dd = self.txo.get(prevout_hash, {})
for n, v, is_cb in dd.get(addr, []):
if n == prevout_n:
if d.get(addr) is None:
d[addr] = []
d[addr].append((ser, v))
break
else:
2015-03-30 03:58:52 -07:00
self.pruned_txo[ser] = tx_hash
# add outputs
self.txo[tx_hash] = d = {}
for n, txo in enumerate(tx.outputs):
ser = tx_hash + ':%d'%n
_type, x, v = txo
if _type == 'address':
addr = x
elif _type == 'pubkey':
addr = public_key_to_bc_address(x.decode('hex'))
else:
addr = None
if addr and self.is_mine(addr):
if d.get(addr) is None:
d[addr] = []
d[addr].append((n, v, is_coinbase))
2015-03-30 03:58:52 -07:00
# give v to txi that spends me
next_tx = self.pruned_txo.get(ser)
if next_tx is not None:
2015-03-30 03:58:52 -07:00
self.pruned_txo.pop(ser)
dd = self.txi.get(next_tx, {})
if dd.get(addr) is None:
dd[addr] = []
dd[addr].append((ser, v))
# save
2013-09-04 10:37:56 -07:00
self.transactions[tx_hash] = tx
2015-03-30 03:58:52 -07:00
def remove_transaction(self, tx_hash, tx_height):
with self.transaction_lock:
print_error("removing tx from history", tx_hash)
#tx = self.transactions.pop(tx_hash)
for ser, hh in self.pruned_txo.items():
if hh == tx_hash:
self.pruned_txo.pop(ser)
# add tx to pruned_txo, and undo the txi addition
for next_tx, dd in self.txi.items():
for addr, l in dd.items():
ll = l[:]
for item in ll:
ser, v = item
prev_hash, prev_n = ser.split(':')
if prev_hash == tx_hash:
l.remove(item)
self.pruned_txo[ser] = next_tx
if l == []:
dd.pop(addr)
else:
dd[addr] = l
self.txi.pop(tx_hash)
self.txo.pop(tx_hash)
def receive_tx_callback(self, tx_hash, tx, tx_height):
self.add_transaction(tx_hash, tx, tx_height)
#self.network.pending_transactions_for_notifications.append(tx)
if self.verifier and tx_height>0:
self.verifier.add(tx_hash, tx_height)
def receive_history_callback(self, addr, hist):
with self.lock:
2015-03-30 03:58:52 -07:00
old_hist = self.history.get(addr, [])
for tx_hash, height in old_hist:
if (tx_hash, height) not in hist:
self.remove_transaction(tx_hash, height)
self.history[addr] = hist
self.storage.put('addr_history', self.history, True)
2012-11-14 06:33:44 -08:00
for tx_hash, tx_height in hist:
if tx_height>0:
# add it in case it was previously unconfirmed
if self.verifier:
self.verifier.add(tx_hash, tx_height)
# if addr is new, we have to recompute txi and txo
tx = self.transactions.get(tx_hash)
if tx is not None and self.txi.get(tx_hash, {}).get(addr) is None and self.txo.get(tx_hash, {}).get(addr) is None:
tx.deserialize()
self.add_transaction(tx_hash, tx, tx_height)
2013-03-23 23:34:28 -07:00
def get_history(self, domain=None):
# get domain
if domain is None:
domain = self.get_account_addresses(None)
2013-03-23 23:34:28 -07:00
hh = []
# 1. Get the history of each address in the domain
for addr in domain:
h = self.get_address_history(addr)
for tx_hash, height in h:
delta = self.get_tx_delta(tx_hash, addr)
hh.append([addr, tx_hash, height, delta])
# 2. merge: the delta of a tx on the domain is the sum of its deltas on addresses
merged = {}
for addr, tx_hash, height, delta in hh:
if tx_hash not in merged:
merged[tx_hash] = (height, delta)
else:
h, d = merged.get(tx_hash)
2015-03-30 11:39:06 -07:00
merged[tx_hash] = (h, d + delta if (d is not None and delta is not None) else None)
# 3. create sorted list
history = []
for tx_hash, v in merged.items():
height, value = v
conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else (None, None)
history.append((tx_hash, conf, value, timestamp))
history.sort(key = lambda x: self.verifier.get_txpos(x[0]))
2015-03-30 03:58:52 -07:00
# 4. add balance
2015-03-30 03:58:52 -07:00
c, u = self.get_balance(domain)
balance = c + u
h2 = []
for item in history[::-1]:
tx_hash, conf, value, timestamp = item
h2.insert(0, (tx_hash, conf, value, timestamp, balance))
2015-03-30 03:58:52 -07:00
if balance is not None and value is not None:
balance -= value
else:
balance = None
# fixme: this may happen if history is incomplete
if balance not in [None, 0]:
print_error("Error: history not synchronized")
return []
2015-03-30 05:01:07 -07:00
2015-03-30 03:58:52 -07:00
return h2
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)
2012-11-05 02:08:16 -08:00
return label, is_default
def get_default_label(self, tx_hash):
if self.txi.get(tx_hash) == {}:
d = self.txo.get(tx_hash, {})
for addr in d.keys():
assert self.is_mine(addr)
label = self.labels.get(addr)
if label:
return label
return ''
2014-09-15 03:57:56 -07:00
def get_tx_fee(self, tx):
# this method can be overloaded
return tx.get_fee()
2014-09-07 09:45:06 -07:00
def estimated_fee(self, tx):
estimated_size = len(tx.serialize(-1))/2
2014-09-14 12:58:13 -07:00
fee = int(self.fee_per_kb*estimated_size/1000.)
if fee < MIN_RELAY_TX_FEE: # and tx.requires_fee(self.verifier):
fee = MIN_RELAY_TX_FEE
return fee
2014-09-07 09:45:06 -07:00
def make_unsigned_transaction(self, outputs, fixed_fee=None, change_addr=None, domain=None, coins=None ):
# check outputs
2014-09-03 07:35:35 -07:00
for type, data, value in outputs:
2014-07-08 10:38:16 -07:00
if type == 'address':
2014-09-03 07:35:35 -07:00
assert is_address(data), "Address " + data + " is invalid!"
2014-09-07 09:45:06 -07:00
# get coins
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)
2014-07-08 10:38:16 -07:00
amount = sum( map(lambda x:x[2], outputs) )
total = fee = 0
2014-09-07 09:45:06 -07:00
inputs = []
tx = Transaction.from_io(inputs, outputs)
2014-09-07 09:45:06 -07:00
for item in coins:
if item.get('coinbase') and item.get('height') + COINBASE_MATURITY > self.network.get_local_height():
continue
v = item.get('value')
total += v
self.add_input_info(item)
tx.add_input(item)
fee = fixed_fee if fixed_fee is not None else self.estimated_fee(tx)
if total >= amount + fee: break
else:
2014-11-20 10:10:43 -08:00
raise NotEnoughFunds()
2014-09-07 09:45:06 -07:00
# change address
if not change_addr:
# send change to one of the accounts involved in the tx
address = inputs[0].get('address')
account, _ = self.get_address_index(address)
if not self.use_change or not self.accounts[account].has_change():
2014-09-07 09:45:06 -07:00
change_addr = address
else:
change_addr = self.accounts[account].get_addresses(1)[-self.gap_limit_for_change]
# if change is above dust threshold, add a change output.
change_amount = total - ( amount + fee )
2014-09-08 11:44:19 -07:00
if fixed_fee is not None and change_amount > 0:
# Insert the change output at a random position in the outputs
posn = random.randint(0, len(tx.outputs))
tx.outputs[posn:posn] = [( 'address', change_addr, change_amount)]
elif change_amount > DUST_THRESHOLD:
2014-09-07 09:45:06 -07:00
# Insert the change output at a random position in the outputs
posn = random.randint(0, len(tx.outputs))
tx.outputs[posn:posn] = [( 'address', change_addr, change_amount)]
# recompute fee including change output
fee = self.estimated_fee(tx)
2014-09-07 09:45:06 -07:00
# remove change output
tx.outputs.pop(posn)
# if change is still above dust threshold, re-add change output.
change_amount = total - ( amount + fee )
if change_amount > DUST_THRESHOLD:
tx.outputs[posn:posn] = [( 'address', change_addr, change_amount)]
print_error('change', change_amount)
else:
print_error('not keeping dust', change_amount)
else:
print_error('not keeping dust', change_amount)
run_hook('make_unsigned_transaction', tx)
return tx
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)
self.sign_transaction(tx, 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
def sign_transaction(self, tx, password):
if self.is_watching_only():
return
# check that the password is correct. This will raise if it's not.
self.check_password(password)
keypairs = {}
x_pubkeys = tx.inputs_to_sign()
for x in x_pubkeys:
sec = self.get_private_key_from_xpubkey(x, password)
if sec:
keypairs[ x ] = sec
if keypairs:
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():
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:
2015-03-30 03:58:52 -07:00
print_error("removing transaction", tx_hash)
self.transactions.pop(tx_hash)
def check_new_history(self, addr, hist):
# check that all tx in hist are relevant
for tx_hash, height in hist:
tx = self.transactions.get(tx_hash)
if not tx:
continue
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,[])
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
_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:
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
2013-09-08 08:23:01 -07:00
def start_threads(self, network):
2015-03-14 01:20:27 -07:00
from verifier import SPV
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:
2015-03-14 01:20:27 -07:00
self.verifier = SPV(self.network, self.storage)
2013-11-05 09:55:53 -08:00
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()
def can_export(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, [])
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):
if self.is_watching_only():
return False
if tx.is_complete():
return False
for x in tx.inputs_to_sign():
if self.can_sign_xpubkey(x):
return True
return False
def get_private_key_from_xpubkey(self, x_pubkey, password):
if x_pubkey[0:2] in ['02','03','04']:
addr = bitcoin.public_key_to_bc_address(x_pubkey.decode('hex'))
if self.is_mine(addr):
return self.get_private_key(addr, password)[0]
elif x_pubkey[0:2] == 'ff':
xpub, sequence = BIP32_Account.parse_xpubkey(x_pubkey)
2014-11-04 01:50:28 -08:00
for k, v in self.master_public_keys.items():
if v == xpub:
xprv = self.get_master_private_key(k, password)
if xprv:
_, _, _, c, k = deserialize_xkey(xprv)
return bip32_private_key(sequence, k, c)
elif x_pubkey[0:2] == 'fe':
xpub, sequence = OldAccount.parse_xpubkey(x_pubkey)
for k, account in self.accounts.items():
if xpub in account.get_master_pubkeys():
pk = account.get_private_key(sequence, self, password)
return pk[0]
elif x_pubkey[0:2] == 'fd':
addrtype = ord(x_pubkey[2:4].decode('hex'))
addr = hash_160_to_bc_address(x_pubkey[4:].decode('hex'), addrtype)
if self.is_mine(addr):
return self.get_private_key(addr, password)[0]
else:
raise BaseException("z")
def can_sign_xpubkey(self, x_pubkey):
if x_pubkey[0:2] in ['02','03','04']:
addr = bitcoin.public_key_to_bc_address(x_pubkey.decode('hex'))
return self.is_mine(addr)
elif x_pubkey[0:2] == 'ff':
if not isinstance(self, BIP32_Wallet): return False
xpub, sequence = BIP32_Account.parse_xpubkey(x_pubkey)
return xpub in [ self.master_public_keys[k] for k in self.master_private_keys.keys() ]
elif x_pubkey[0:2] == 'fe':
if not isinstance(self, OldWallet): return False
xpub, sequence = OldAccount.parse_xpubkey(x_pubkey)
return xpub == self.get_master_public_key()
elif x_pubkey[0:2] == 'fd':
addrtype = ord(x_pubkey[2:4].decode('hex'))
addr = hash_160_to_bc_address(x_pubkey[4:].decode('hex'), addrtype)
return self.is_mine(addr)
else:
raise BaseException("z")
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")
self.seed_version, self.seed = self.format_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)
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):
2015-03-07 09:51:35 -08:00
assert isinstance(value, int), 'gap limit must be of type int, not of %s'%type(value)
2014-04-30 02:18:13 -07:00
if value >= self.gap_limit:
self.gap_limit = value
self.storage.put('gap_limit', self.gap_limit, True)
return True
elif value >= self.min_acceptable_gap():
for key, account in self.accounts.items():
2015-02-03 07:18:42 -08:00
addresses = account.get_addresses(False)
2014-04-30 02:18:13 -07:00
k = self.num_unused_trailing_addresses(addresses)
n = len(addresses) - k + value
2015-02-03 07:18:42 -08:00
account.receiving_pubkeys = account.receiving_pubkeys[0:n]
account.receiving_addresses = account.receiving_addresses[0:n]
2014-04-30 02:18:13 -07:00
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
2014-08-20 13:38:20 -07:00
def default_account(self):
return self.accounts['0']
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.add_address(address)
return address
def add_address(self, address):
2014-09-09 16:33:52 -07:00
if address not in self.history:
self.history[address] = []
2014-06-30 08:59:36 -07:00
if self.synchronizer:
self.synchronizer.add(address)
self.save_accounts()
2014-04-30 02:18:13 -07:00
def synchronize(self):
with self.lock:
for account in self.accounts.values():
account.synchronize(self)
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():
2014-09-07 20:17:56 -07:00
msg = "%s\n%s %d"%(
_("Please wait..."),
_("Addresses generated:"),
2014-09-07 20:17:56 -07:00
len(self.addresses(True)))
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()
2015-02-25 13:48:47 -08: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
2014-08-21 01:04:06 -07:00
2014-08-19 03:38:01 -07:00
class BIP32_Wallet(Deterministic_Wallet):
2014-08-21 01:04:06 -07:00
# abstract class, bip32 logic
2015-01-11 10:58:03 -08: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', {})
self.gap_limit = storage.get('gap_limit', 20)
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
def can_import(self):
return False
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)
2014-12-03 13:35:05 -08:00
try:
deserialize_xkey(xprv)
except:
raise InvalidPassword()
2014-08-13 07:05:43 -07:00
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]
2014-12-03 13:35:05 -08:00
if deserialize_xkey(xpriv)[3] != deserialize_xkey(xpub)[3]:
raise InvalidPassword()
2014-04-30 02:18:13 -07:00
2014-06-25 07:45:55 -07:00
def add_master_public_key(self, name, xpub):
2014-12-31 10:21:54 -08:00
if xpub in self.master_public_keys.values():
raise BaseException('Duplicate master public key')
2014-06-25 07:45:55 -07:00
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 create_master_keys(self, password):
seed = self.get_seed(password)
self.add_cosigner_seed(seed, self.root_name, password)
def add_cosigner_seed(self, seed, name, password, passphrase=''):
# we don't store the seed, only the master xpriv
xprv, xpub = bip32_root(self.mnemonic_to_seed(seed, passphrase))
xprv, xpub = bip32_private_derivation(xprv, "m/", self.root_derivation)
self.add_master_public_key(name, xpub)
self.add_master_private_key(name, xprv, password)
def add_cosigner_xpub(self, seed, name):
# store only master xpub
xprv, xpub = bip32_root(self.mnemonic_to_seed(seed,''))
xprv, xpub = bip32_private_derivation(xprv, "m/", self.root_derivation)
self.add_master_public_key(name, xpub)
def mnemonic_to_seed(self, seed, password):
return Mnemonic.mnemonic_to_seed(seed, password)
def make_seed(self):
lang = self.storage.config.get('language')
return Mnemonic(lang).make_seed()
def format_seed(self, seed):
return NEW_SEED_VERSION, ' '.join(seed.split())
2014-08-21 01:04:06 -07:00
class BIP32_Simple_Wallet(BIP32_Wallet):
# Wallet with a single BIP32 account, no seed
# gap limit 20
wallet_type = 'xpub'
def create_xprv_wallet(self, xprv, password):
xpub = bitcoin.xpub_from_xprv(xprv)
account = BIP32_Account({'xpub':xpub})
self.storage.put('seed_version', self.seed_version, True)
self.add_master_private_key(self.root_name, xprv, password)
self.add_master_public_key(self.root_name, xpub)
self.add_account('0', account)
2015-03-04 09:57:28 -08:00
self.use_encryption = (password != None)
self.storage.put('use_encryption', self.use_encryption,True)
2014-08-21 01:04:06 -07:00
def create_xpub_wallet(self, xpub):
account = BIP32_Account({'xpub':xpub})
self.storage.put('seed_version', self.seed_version, True)
self.add_master_public_key(self.root_name, xpub)
self.add_account('0', account)
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
2014-09-09 16:33:52 -07:00
def __init__(self, storage):
self.next_account = storage.get('next_account2', None)
2014-09-09 16:33:52 -07:00
BIP32_Wallet.__init__(self, storage)
2014-08-13 07:05:43 -07:00
def can_create_accounts(self):
return self.root_name in self.master_private_keys.keys()
2014-04-30 02:18:13 -07:00
2014-09-13 05:54:02 -07:00
def addresses(self, b=True):
2014-09-09 16:33:52 -07:00
l = BIP32_Wallet.addresses(self, b)
if self.next_account:
_, _, _, next_address = self.next_account
2014-09-09 16:33:52 -07:00
if next_address not in l:
l.append(next_address)
return l
def get_address_index(self, address):
if self.next_account:
next_id, next_xpub, next_pubkey, next_address = self.next_account
if address == next_address:
return next_id, (0,0)
return BIP32_Wallet.get_address_index(self, address)
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:
account_id = '%d'%i
if account_id not in keys:
break
i += 1
return i
2014-09-09 16:33:52 -07:00
def get_next_account(self, password):
account_id = '%d'%self.num_accounts()
derivation = self.root_name + "%d'"%int(account_id)
xpub, xprv = self.derive_xkeys(self.root_name, derivation, password)
self.add_master_public_key(derivation, xpub)
2014-09-09 16:33:52 -07:00
if xprv:
self.add_master_private_key(derivation, xprv, password)
account = BIP32_Account({'xpub':xpub})
addr, pubkey = account.first_address()
2014-09-10 01:33:49 -07:00
self.add_address(addr)
return account_id, xpub, pubkey, addr
def create_main_account(self, password):
# First check the password is valid (this raises if it isn't).
2014-09-09 16:33:52 -07:00
self.check_password(password)
assert self.num_accounts() == 0
self.create_account('Main account', password)
2014-08-19 03:38:01 -07:00
2014-09-09 16:33:52 -07:00
def create_account(self, name, password):
account_id, xpub, _, _ = self.get_next_account(password)
2014-09-09 16:33:52 -07:00
account = BIP32_Account({'xpub':xpub})
self.add_account(account_id, account)
self.set_label(account_id, name)
# add address of the next account
self.next_account = self.get_next_account(password)
self.storage.put('next_account2', self.next_account)
2014-09-09 16:33:52 -07:00
2014-08-19 03:38:01 -07:00
def account_is_pending(self, k):
return type(self.accounts.get(k)) == PendingAccount
def delete_pending_account(self, k):
2014-09-09 16:33:52 -07:00
assert type(self.accounts.get(k)) == PendingAccount
2014-08-19 03:38:01 -07:00
self.accounts.pop(k)
self.save_accounts()
def create_pending_account(self, name, password):
if self.next_account is None:
self.next_account = self.get_next_account(password)
self.storage.put('next_account2', self.next_account)
next_id, next_xpub, next_pubkey, next_address = self.next_account
if name:
self.set_label(next_id, name)
self.accounts[next_id] = PendingAccount({'pending':True, 'address':next_address, 'pubkey':next_pubkey})
2014-08-19 03:38:01 -07:00
self.save_accounts()
2014-09-09 16:33:52 -07:00
def synchronize(self):
# synchronize existing accounts
BIP32_Wallet.synchronize(self)
if self.next_account is None and not self.use_encryption:
try:
self.next_account = self.get_next_account(None)
self.storage.put('next_account2', self.next_account)
except:
print_error('cannot get next account')
2014-09-09 16:33:52 -07:00
# check pending account
if self.next_account is not None:
next_id, next_xpub, next_pubkey, next_address = self.next_account
2014-09-09 16:33:52 -07:00
if self.address_is_old(next_address):
print_error("creating account", next_id)
self.add_account(next_id, BIP32_Account({'xpub':next_xpub}))
# here the user should get a notification
self.next_account = None
self.storage.put('next_account2', self.next_account)
elif self.history.get(next_address, []):
if next_id not in self.accounts:
print_error("create pending account", next_id)
self.accounts[next_id] = PendingAccount({'pending':True, 'address':next_address, 'pubkey':next_pubkey})
self.save_accounts()
2014-08-19 03:38:01 -07:00
class NewWallet(BIP32_Wallet, Mnemonic):
# Standard wallet
root_derivation = "m/"
2014-08-20 09:54:37 -07:00
wallet_type = 'standard'
2014-08-19 03:38:01 -07:00
def create_main_account(self, password):
xpub = self.master_public_keys.get("x/")
account = BIP32_Account({'xpub':xpub})
self.add_account('0', account)
2014-08-19 03:38:01 -07:00
class Wallet_2of2(BIP32_Wallet, Mnemonic):
# Wallet with multisig addresses.
2014-08-13 07:05:43 -07:00
root_name = "x1/"
root_derivation = "m/"
2014-08-20 09:54:37 -07:00
wallet_type = '2of2'
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/")
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):
return self.master_public_keys
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-08-22 08:22:08 -07:00
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-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):
2014-08-20 13:38:20 -07:00
wallet_type = 'old'
2014-08-21 01:04:06 -07:00
def __init__(self, storage):
Deterministic_Wallet.__init__(self, storage)
self.gap_limit = storage.get('gap_limit', 5)
def make_seed(self):
import old_mnemonic
seed = random_seed(128)
return ' '.join(old_mnemonic.mn_encode(seed))
def format_seed(self, seed):
import old_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 = old_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):
2014-08-20 13:38:20 -07:00
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)
2014-08-20 13:38:20 -07:00
self.accounts['0'].check_seed(seed)
def get_mnemonic(self, password):
import old_mnemonic
2014-05-04 16:19:04 -07:00
s = self.get_seed(password)
return ' '.join(old_mnemonic.mn_encode(s))
2014-02-27 01:21:41 -08:00
wallet_types = [
2014-09-05 07:28:53 -07:00
# category type description constructor
('standard', 'old', ("Old wallet"), OldWallet),
('standard', 'xpub', ("BIP32 Import"), BIP32_Simple_Wallet),
('standard', 'standard', ("Standard wallet"), NewWallet),
('standard', 'imported', ("Imported wallet"), Imported_Wallet),
('multisig', '2of2', ("Multisig wallet (2 of 2)"), Wallet_2of2),
('multisig', '2of3', ("Multisig wallet (2 of 3)"), Wallet_2of3)
]
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):
2014-04-06 12:38:53 -07:00
2014-09-13 10:28:09 -07:00
seed_version = storage.get('seed_version')
if not seed_version:
seed_version = OLD_SEED_VERSION if len(storage.get('master_public_key','')) == 128 else NEW_SEED_VERSION
if seed_version not in [OLD_SEED_VERSION, NEW_SEED_VERSION]:
msg = "Your wallet has an unsupported seed version."
msg += '\n\nWallet file: %s' % os.path.abspath(storage.path)
if seed_version in [5, 7, 8, 9, 10]:
msg += "\n\nTo open this wallet, try 'git checkout seed_v%d'"%seed_version
if seed_version == 6:
# version 1.9.8 created v6 wallets when an incorrect seed was entered in the restore dialog
msg += '\n\nThis file was created because of a bug in version 1.9.8.'
if storage.get('master_public_keys') is None and storage.get('master_private_keys') is None and storage.get('imported_keys') is None:
# pbkdf2 was not included with the binaries, and wallet creation aborted.
msg += "\nIt does not contain any keys, and can safely be removed."
else:
# creation was complete if electrum was run from source
msg += "\nPlease open this file with Electrum 1.9.8, and move your coins to a new wallet."
raise BaseException(msg)
2014-09-13 10:28:09 -07:00
wallet_type = storage.get('wallet_type')
if wallet_type:
2014-09-13 01:16:09 -07:00
for cat, t, name, c in wallet_types:
if t == wallet_type:
2014-09-13 01:16:09 -07:00
WalletClass = c
break
else:
raise BaseException('unknown wallet type', wallet_type)
2014-02-27 01:21:41 -08:00
else:
2014-09-13 01:16:09 -07:00
if seed_version == OLD_SEED_VERSION:
WalletClass = OldWallet
else:
WalletClass = NewWallet
return WalletClass(storage)
2014-02-27 01:21:41 -08:00
@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, password, 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)
2015-04-09 09:59:51 -07:00
w.add_seed(seed, password)
w.create_master_keys(password)
w.create_main_account(password)
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, password, storage):
2014-04-29 12:04:16 -07:00
w = Imported_Wallet(storage)
w.update_password(None, password)
2014-04-29 12:04:16 -07:00
for x in text.split():
w.import_key(x, password)
2014-04-29 12:04:16 -07:00
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-21 01:04:06 -07:00
w = BIP32_Simple_Wallet(storage)
2014-08-19 03:38:01 -07:00
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-21 01:04:06 -07:00
w = BIP32_Simple_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
@classmethod
def from_multisig(klass, key_list, password, storage):
if len(key_list) == 2:
self = Wallet_2of2(storage)
elif len(key_list) == 3:
self = Wallet_2of3(storage)
key_list = sorted(key_list, key = lambda x: klass.is_xpub(x))
for i, text in enumerate(key_list):
assert klass.is_seed(text) or klass.is_xprv(text) or klass.is_xpub(text)
name = "x%d/"%(i+1)
if klass.is_seed(text):
if name == 'x1/':
2015-04-03 02:30:36 -07:00
self.add_seed(text, password)
self.create_master_keys(password)
else:
self.add_cosigner_seed(text, name, password)
elif klass.is_xprv(text):
xpub = bitcoin.xpub_from_xprv(text)
self.add_master_public_key(name, xpub)
self.add_master_private_key(name, text, password)
elif klass.is_xpub(text):
self.add_master_public_key(name, text)
self.use_encryption = (password != None)
self.storage.put('use_encryption', self.use_encryption, True)
self.create_main_account(password)
return self