electrum-bitcoinprivate/client/electrum.py

889 lines
32 KiB
Python
Raw Normal View History

2011-11-04 10:00:37 -07:00
#!/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/>.
2011-11-09 12:42:13 -08:00
import sys, base64, os, re, hashlib, socket, getpass, copy, operator, ast
2011-12-06 12:05:46 -08:00
from decimal import Decimal
2011-11-04 10:00:37 -07:00
try:
import ecdsa
except:
print "python-ecdsa does not seem to be installed. Try 'sudo easy_install ecdsa'"
2011-11-10 00:34:27 -08:00
sys.exit(1)
2011-11-04 10:00:37 -07:00
try:
2011-11-29 01:26:47 -08:00
import aes
2011-11-04 10:00:37 -07:00
except:
2011-11-29 01:26:47 -08:00
print "AES does not seem to be installed. Try 'sudo easy_install slowaes'"
sys.exit(1)
2011-11-04 10:00:37 -07:00
############ functions from pywallet #####################
addrtype = 0
def hash_160(public_key):
md = hashlib.new('ripemd160')
md.update(hashlib.sha256(public_key).digest())
return md.digest()
def public_key_to_bc_address(public_key):
h160 = hash_160(public_key)
return hash_160_to_bc_address(h160)
def hash_160_to_bc_address(h160):
vh160 = chr(addrtype) + h160
h = Hash(vh160)
addr = vh160 + h[0:4]
return b58encode(addr)
def bc_address_to_hash_160(addr):
bytes = b58decode(addr, 25)
return bytes[1:21]
__b58chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
__b58base = len(__b58chars)
def b58encode(v):
""" encode v, which is a string of bytes, to base58.
"""
long_value = 0L
for (i, c) in enumerate(v[::-1]):
long_value += (256**i) * ord(c)
result = ''
while long_value >= __b58base:
div, mod = divmod(long_value, __b58base)
result = __b58chars[mod] + result
long_value = div
result = __b58chars[long_value] + result
# Bitcoin does a little leading-zero-compression:
# leading 0-bytes in the input become leading-1s
nPad = 0
for c in v:
if c == '\0': nPad += 1
else: break
return (__b58chars[0]*nPad) + result
def b58decode(v, length):
""" decode v into a string of len bytes
"""
long_value = 0L
for (i, c) in enumerate(v[::-1]):
long_value += __b58chars.find(c) * (__b58base**i)
result = ''
while long_value >= 256:
div, mod = divmod(long_value, 256)
result = chr(mod) + result
long_value = div
result = chr(long_value) + result
nPad = 0
for c in v:
if c == __b58chars[0]: nPad += 1
else: break
result = chr(0)*nPad + result
if length is not None and len(result) != length:
return None
return result
def Hash(data):
return hashlib.sha256(hashlib.sha256(data).digest()).digest()
def EncodeBase58Check(vchIn):
hash = Hash(vchIn)
return b58encode(vchIn + hash[0:4])
def DecodeBase58Check(psz):
vchRet = b58decode(psz, None)
key = vchRet[0:-4]
csum = vchRet[-4:]
hash = Hash(key)
cs32 = hash[0:4]
if cs32 != csum:
return None
else:
return key
def PrivKeyToSecret(privkey):
return privkey[9:9+32]
def SecretToASecret(secret):
vchIn = chr(addrtype+128) + secret
return EncodeBase58Check(vchIn)
def ASecretToSecret(key):
vch = DecodeBase58Check(key)
if vch and vch[0] == chr(addrtype+128):
return vch[1:]
else:
return False
########### end pywallet functions #######################
def int_to_hex(i, length=1):
2011-11-09 08:24:07 -08:00
s = hex(i)[2:].rstrip('L')
2011-11-04 10:00:37 -07:00
s = "0"*(2*length - len(s)) + s
return s.decode('hex')[::-1].encode('hex')
2011-11-29 01:26:47 -08:00
EncodeAES = lambda secret, s: base64.b64encode(aes.encryptData(secret,s))
DecodeAES = lambda secret, e: aes.decryptData(secret, base64.b64decode(e))
2011-11-04 10:00:37 -07:00
# secp256k1, http://www.oid-info.com/get/1.3.132.0.10
_p = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2FL
_r = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141L
_b = 0x0000000000000000000000000000000000000000000000000000000000000007L
_a = 0x0000000000000000000000000000000000000000000000000000000000000000L
_Gx = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798L
_Gy = 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8L
curve_secp256k1 = ecdsa.ellipticcurve.CurveFp( _p, _a, _b )
generator_secp256k1 = ecdsa.ellipticcurve.Point( curve_secp256k1, _Gx, _Gy, _r )
oid_secp256k1 = (1,3,132,0,10)
SECP256k1 = ecdsa.curves.Curve("SECP256k1", curve_secp256k1, generator_secp256k1, oid_secp256k1 )
def filter(s):
out = re.sub('( [^\n]*|)\n','',s)
out = out.replace(' ','')
out = out.replace('\n','')
return out
def raw_tx( inputs, outputs, for_sig = None ):
s = int_to_hex(1,4) + ' version\n'
s += int_to_hex( len(inputs) ) + ' number of inputs\n'
for i in range(len(inputs)):
_, _, p_hash, p_index, p_script, pubkey, sig = inputs[i]
s += p_hash.decode('hex')[::-1].encode('hex') + ' prev hash\n'
s += int_to_hex(p_index,4) + ' prev index\n'
if for_sig is None:
sig = sig + chr(1) # hashtype
script = int_to_hex( len(sig)) + ' push %d bytes\n'%len(sig)
script += sig.encode('hex') + ' sig\n'
pubkey = chr(4) + pubkey
script += int_to_hex( len(pubkey)) + ' push %d bytes\n'%len(pubkey)
script += pubkey.encode('hex') + ' pubkey\n'
elif for_sig==i:
script = p_script + ' scriptsig \n'
else:
script=''
s += int_to_hex( len(filter(script))/2 ) + ' script length \n'
s += script
s += "ffffffff" + ' sequence\n'
s += int_to_hex( len(outputs) ) + ' number of outputs\n'
for output in outputs:
addr, amount = output
s += int_to_hex( amount, 8) + ' amount: %d\n'%amount
script = '76a9' # op_dup, op_hash_160
script += '14' # push 0x14 bytes
script += bc_address_to_hash_160(addr).encode('hex')
script += '88ac' # op_equalverify, op_checksig
s += int_to_hex( len(filter(script))/2 ) + ' script length \n'
s += script + ' script \n'
s += int_to_hex(0,4) # lock time
if for_sig is not None: s += int_to_hex(1, 4) # hash type
return s
class InvalidPassword(Exception):
pass
2011-11-10 00:34:27 -08:00
2011-11-04 10:00:37 -07:00
2011-12-09 10:01:53 -08:00
SEED_VERSION = 3 # bump this everytime the seed generation is modified
from version import ELECTRUM_VERSION
2011-12-06 06:40:04 -08:00
2011-11-04 10:00:37 -07:00
class Wallet:
def __init__(self, wallet_path):
2011-11-14 11:35:54 -08:00
2011-12-09 10:01:53 -08:00
self.electrum_version = ELECTRUM_VERSION
self.seed_version = SEED_VERSION
2011-11-04 10:00:37 -07:00
self.gap_limit = 5 # configuration
self.host = 'ecdsa.org'
self.port = 50000
2011-12-06 13:28:05 -08:00
self.fee = 50000
2011-12-02 07:40:48 -08:00
self.servers = ['ecdsa.org','electrum.novit.ro'] # list of default servers
2011-11-04 10:00:37 -07:00
# saved fields
self.use_encryption = False
self.addresses = []
2011-11-08 09:45:21 -08:00
self.seed = '' # encrypted
2011-11-04 10:00:37 -07:00
self.private_keys = repr([]) # encrypted
self.change_addresses = [] # index of addresses used as change
self.status = {} # current status of addresses
self.history = {}
self.labels = {} # labels for addresses and transactions
self.addressbook = [] # outgoing addresses, for payments
self.blocks = 0
# not saved
self.message = ''
self.tx_history = {}
2011-11-10 13:21:40 -08:00
self.rtime = 0
2011-11-04 10:00:37 -07:00
self.init_path(wallet_path)
2011-11-14 11:35:54 -08:00
def init_path(self, wallet_path):
if wallet_path is not None:
self.path = wallet_path
else:
# backward compatibility: look for wallet file in the default data directory
2011-11-14 11:35:54 -08:00
if "HOME" in os.environ:
wallet_dir = os.path.join( os.environ["HOME"], '.electrum')
elif "LOCALAPPDATA" in os.environ:
wallet_dir = os.path.join( os.environ["LOCALAPPDATA"], 'Electrum' )
elif "APPDATA" in os.environ:
wallet_dir = os.path.join( os.environ["APPDATA"], 'Electrum' )
else:
raise BaseException("No home directory found in environment variables.")
2011-11-29 05:50:06 -08:00
2011-11-29 08:08:16 -08:00
if not os.path.exists( wallet_dir ): os.mkdir( wallet_dir )
self.path = os.path.join( wallet_dir, 'electrum.dat')
2011-11-14 11:35:54 -08:00
def new_seed(self, password):
seed = "%032x"%ecdsa.util.randrange( pow(2,128) )
self.seed = wallet.pw_encode( seed, password)
2011-11-04 10:00:37 -07:00
def is_mine(self, address):
return address in self.addresses
def is_change(self, address):
if not self.is_mine(address):
return False
k = self.addresses.index(address)
return k in self.change_addresses
def is_valid(self,addr):
ADDRESS_RE = re.compile('[1-9A-HJ-NP-Za-km-z]{26,}\\Z')
2011-11-16 16:55:29 -08:00
if not ADDRESS_RE.match(addr): return False
h = bc_address_to_hash_160(addr)
return addr == hash_160_to_bc_address(h)
2011-11-04 10:00:37 -07:00
def create_new_address(self, for_change, password):
2011-11-05 07:06:43 -07:00
seed = self.pw_decode( self.seed, password)
# strenghtening
2011-12-06 06:40:04 -08:00
oldseed = seed
for i in range(100000):
seed = hashlib.sha512(seed + oldseed).digest()
2011-11-14 11:41:55 -08:00
i = len( self.addresses ) - len(self.change_addresses) if not for_change else len(self.change_addresses)
2011-11-05 07:06:43 -07:00
seed = Hash( "%d:%d:"%(i,for_change) + seed )
2011-11-04 10:00:37 -07:00
order = generator_secp256k1.order()
secexp = ecdsa.util.randrange_from_seed__trytryagain( seed, order )
secret = SecretToASecret( ('%064x' % secexp).decode('hex') )
private_key = ecdsa.SigningKey.from_secret_exponent( secexp, curve = SECP256k1 )
public_key = private_key.get_verifying_key()
address = public_key_to_bc_address( '04'.decode('hex') + public_key.to_string() )
try:
private_keys = ast.literal_eval( self.pw_decode( self.private_keys, password) )
private_keys.append(secret)
except:
raise InvalidPassword("")
self.private_keys = self.pw_encode( repr(private_keys), password)
self.addresses.append(address)
2011-11-14 11:41:55 -08:00
if for_change: self.change_addresses.append( len(self.addresses) - 1 )
2011-11-16 06:16:36 -08:00
self.history[address] = []
self.status[address] = None
self.save()
2011-11-04 10:00:37 -07:00
return address
2011-11-16 06:16:36 -08:00
2011-11-04 10:00:37 -07:00
def recover(self, password):
2011-11-05 07:06:43 -07:00
seed = self.pw_decode( self.seed, password)
2011-11-04 10:00:37 -07:00
# todo: recover receiving addresses from tx
is_found = False
2011-11-04 10:00:37 -07:00
while True:
addr = self.create_new_address(True, password)
2011-11-16 06:16:36 -08:00
self.history[addr] = h = self.retrieve_history(addr)
self.status[addr] = h[-1]['blk_hash'] if h else None
#print "recovering", addr
if self.status[addr] is not None:
is_found = True
else:
break
2011-11-04 10:00:37 -07:00
num_gap = 0
while True:
addr = self.create_new_address(False, password)
2011-11-16 06:16:36 -08:00
self.history[addr] = h = self.retrieve_history(addr)
self.status[addr] = h[-1]['blk_hash'] if h else None
#print "recovering", addr
2011-11-04 10:00:37 -07:00
if self.status[addr] is None:
num_gap += 1
if num_gap == self.gap_limit: break
else:
is_found = True
2011-11-04 10:00:37 -07:00
num_gap = 0
if not is_found: return False
2011-11-04 10:00:37 -07:00
# remove limit-1 addresses. [ this is ok, because change addresses are at the beginning of the list]
n = self.gap_limit
self.addresses = self.addresses[:-n]
2011-11-05 00:09:04 -07:00
private_keys = ast.literal_eval( self.pw_decode( self.private_keys, password))
private_keys = private_keys[:-n]
self.private_keys = self.pw_encode( repr(private_keys), password)
2011-11-04 10:00:37 -07:00
# history and addressbook
self.update_tx_history()
for tx in self.tx_history.values():
if tx['value']<0:
for i in tx['outputs']:
if not self.is_mine(i) and i not in self.addressbook:
self.addressbook.append(i)
# redo labels
self.update_tx_labels()
return True
2011-11-04 10:00:37 -07:00
def save(self):
2011-12-09 10:01:53 -08:00
s = repr( (self.seed_version, self.use_encryption, self.fee, self.host, self.port, self.blocks,
2011-11-05 07:06:43 -07:00
self.seed, self.addresses, self.private_keys,
2011-11-04 10:00:37 -07:00
self.change_addresses, self.status, self.history,
self.labels, self.addressbook) )
2011-11-14 11:35:54 -08:00
f = open(self.path,"w")
2011-11-04 10:00:37 -07:00
f.write(s)
f.close()
def read(self):
try:
2011-11-14 11:35:54 -08:00
f = open(self.path,"r")
2011-11-04 10:00:37 -07:00
data = f.read()
f.close()
except:
return False
try:
sequence = ast.literal_eval( data )
2011-12-09 10:01:53 -08:00
(self.seed_version, self.use_encryption, self.fee, self.host, self.port, self.blocks,
2011-11-05 07:06:43 -07:00
self.seed, self.addresses, self.private_keys,
2011-11-04 10:00:37 -07:00
self.change_addresses, self.status, self.history,
self.labels, self.addressbook) = sequence
2011-12-06 13:28:05 -08:00
self.fee = int(self.fee)
2011-11-04 10:00:37 -07:00
except:
2011-12-06 12:05:46 -08:00
# it is safer to exit immediately
print "Error; could not parse wallet."
exit(1)
2011-12-09 10:01:53 -08:00
if self.seed_version != SEED_VERSION:
raise BaseException("Seed version mismatch.\nPlease move your balance to a new wallet.\nSee the release notes for more information.")
2011-11-04 10:00:37 -07:00
self.update_tx_history()
return True
def get_new_address(self, password):
n = 0
for addr in self.addresses[-self.gap_limit:]:
if self.history[addr] == []:
n = n + 1
if n < self.gap_limit:
try:
new_address = self.create_new_address(False, password)
except InvalidPassword:
return False, "wrong password"
self.save()
return True, new_address
else:
return False, "The last %d addresses in your list have never been used. You should use them first, or increase the allowed gap size in your preferences. "%self.gap_limit
def get_addr_balance(self, addr):
h = self.history.get(addr)
2011-12-04 03:50:32 -08:00
if not h: return 0,0
2011-11-04 10:00:37 -07:00
c = u = 0
for item in h:
v = item['value']
if item['height']:
c += v
else:
u += v
return c, u
def get_balance(self):
conf = unconf = 0
for addr in self.addresses:
c, u = self.get_addr_balance(addr)
conf += c
unconf += u
return conf, unconf
2011-11-10 13:21:40 -08:00
def use_http(self):
2011-11-16 02:51:39 -08:00
return self.port in [80,8080,443]
2011-11-10 12:50:22 -08:00
2011-11-10 13:21:40 -08:00
def request(self, request ):
import time
t1 = time.time()
2011-11-04 10:00:37 -07:00
2011-11-10 13:21:40 -08:00
if self.use_http():
2011-11-10 12:50:22 -08:00
import httplib, urllib
params = urllib.urlencode({'q':request})
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
2011-11-18 02:52:29 -08:00
conn = httplib.HTTPSConnection(self.host) if self.port == 443 else httplib.HTTPConnection(self.host)
2011-11-10 12:50:22 -08:00
conn.request("POST", "/electrum.php", params, headers)
response = conn.getresponse()
if response.status == 200:
out = response.read()
else: out = ''
conn.close()
2011-11-04 10:00:37 -07:00
else:
2011-11-09 12:42:13 -08:00
request += "#"
2011-11-10 12:50:22 -08:00
s = socket.socket( socket.AF_INET, socket.SOCK_STREAM)
s.connect(( self.host, self.port))
s.send( request )
out = ''
while 1:
msg = s.recv(1024)
if msg: out += msg
else: break
s.close()
2011-11-09 12:42:13 -08:00
2011-11-10 13:21:40 -08:00
self.rtime = time.time() - t1
2011-11-04 10:00:37 -07:00
return out
def send_tx(self, data):
return self.request( repr ( ('tx', data )))
def retrieve_history(self, address):
return ast.literal_eval( self.request( repr ( ('h', address ))) )
def poll(self):
2011-11-09 12:42:13 -08:00
return ast.literal_eval( self.request( repr ( ('poll', self.session_id ))))
2011-11-04 10:00:37 -07:00
def new_session(self):
2011-12-09 10:15:48 -08:00
self.session_id, self.message = ast.literal_eval( self.request( repr ( ('new_session', repr( (self.electrum_version, self.addresses)) ))))
2011-12-02 07:40:48 -08:00
2011-12-08 12:43:52 -08:00
def update_session(self):
return self.request( repr ( ('update_session', repr((self.session_id,self.addresses)))))
2011-12-02 07:40:48 -08:00
def get_servers(self):
self.servers = map( lambda x:x[1], ast.literal_eval( self.request( repr ( ('peers', '' )))) )
2011-11-04 10:00:37 -07:00
def update(self):
blocks, changed_addresses = self.poll()
2011-11-14 13:03:28 -08:00
if blocks == -1: raise BaseException("session not found")
2011-11-10 12:50:22 -08:00
self.blocks = int(blocks)
2011-11-04 10:00:37 -07:00
for addr, blk_hash in changed_addresses.items():
2011-12-04 03:50:32 -08:00
if self.status.get(addr) != blk_hash:
2011-11-04 10:00:37 -07:00
print "updating history for", addr
self.history[addr] = self.retrieve_history(addr)
self.status[addr] = blk_hash
self.update_tx_history()
if changed_addresses:
return True
else:
return False
def choose_tx_inputs( self, amount, fixed_fee ):
2011-11-04 10:00:37 -07:00
""" todo: minimize tx size """
2011-12-08 00:11:49 -08:00
total = 0
fee = self.fee if fixed_fee is None else fixed_fee
2011-11-04 10:00:37 -07:00
inputs = []
for addr in self.addresses:
h = self.history.get(addr)
for item in h:
if item.get('raw_scriptPubKey'):
v = item.get('value')
total += v
inputs.append((addr, v, item['tx_hash'], item['pos'], item['raw_scriptPubKey'], None, None) )
2011-12-08 00:11:49 -08:00
fee = self.fee*len(inputs) if fixed_fee is None else fixed_fee
2011-11-04 10:00:37 -07:00
if total >= amount + fee: break
if total >= amount + fee: break
else:
#print "not enough funds: %d %d"%(total, fee)
inputs = []
return inputs, total, fee
def choose_tx_outputs( self, to_addr, amount, fee, total, password ):
2011-11-04 10:00:37 -07:00
outputs = [ (to_addr, amount) ]
change_amount = total - ( amount + fee )
if change_amount != 0:
# first look for unused change addresses
for addr in self.addresses:
i = self.addresses.index(addr)
if i not in self.change_addresses: continue
if self.history.get(addr): continue
change_address = addr
break
else:
change_address = self.create_new_address(True, password)
print "new change address", change_address
outputs.append( (change_address, change_amount) )
return outputs
2011-11-04 10:00:37 -07:00
def sign_inputs( self, inputs, outputs, password ):
s_inputs = []
for i in range(len(inputs)):
addr, v, p_hash, p_pos, p_scriptPubKey, _, _ = inputs[i]
private_key = self.get_private_key(addr, password)
public_key = private_key.get_verifying_key()
pubkey = public_key.to_string()
tx = filter( raw_tx( inputs, outputs, for_sig = i ) )
sig = private_key.sign_digest( Hash( tx.decode('hex') ), sigencode = ecdsa.util.sigencode_der )
assert public_key.verify_digest( sig, Hash( tx.decode('hex') ), sigdecode = ecdsa.util.sigdecode_der)
s_inputs.append( (addr, v, p_hash, p_pos, p_scriptPubKey, pubkey, sig) )
return s_inputs
def pw_encode(self, s, password):
if password:
secret = Hash(password)
2011-11-29 01:26:47 -08:00
return EncodeAES(secret, s)
2011-11-04 10:00:37 -07:00
else:
return s
def pw_decode(self, s, password):
if password:
secret = Hash(password)
2011-11-29 01:26:47 -08:00
return DecodeAES(secret, s)
2011-11-04 10:00:37 -07:00
else:
return s
def get_private_key( self, addr, password ):
try:
private_keys = ast.literal_eval( self.pw_decode( self.private_keys, password ) )
except:
raise InvalidPassword("")
k = self.addresses.index(addr)
secret = private_keys[k]
b = ASecretToSecret(secret)
secexp = int( b.encode('hex'), 16)
private_key = ecdsa.SigningKey.from_secret_exponent( secexp, curve=SECP256k1 )
public_key = private_key.get_verifying_key()
assert addr == public_key_to_bc_address( chr(4) + public_key.to_string() )
return private_key
def get_tx_history(self):
lines = self.tx_history.values()
lines = sorted(lines, key=operator.itemgetter("nTime"))
return lines
def update_tx_history(self):
self.tx_history= {}
for addr in self.addresses:
2011-12-04 03:50:32 -08:00
h = self.history.get(addr)
if h is None: continue
for tx in h:
2011-11-04 10:00:37 -07:00
tx_hash = tx['tx_hash']
line = self.tx_history.get(tx_hash)
if not line:
self.tx_history[tx_hash] = copy.copy(tx)
line = self.tx_history.get(tx_hash)
else:
line['value'] += tx['value']
if line['height'] == 0:
2011-11-04 10:00:37 -07:00
line['nTime'] = 1e12
self.update_tx_labels()
def update_tx_labels(self):
for tx in self.tx_history.values():
default_label = ''
if tx['value']<0:
for o_addr in tx['outputs']:
if not self.is_change(o_addr):
dest_label = self.labels.get(o_addr)
if dest_label:
default_label = 'to: ' + dest_label
else:
default_label = 'to: ' + o_addr
else:
for o_addr in tx['outputs']:
if self.is_mine(o_addr) and not self.is_change(o_addr):
dest_label = self.labels.get(o_addr)
if dest_label:
default_label = 'at: ' + dest_label
else:
default_label = 'at: ' + o_addr
tx['default_label'] = default_label
2011-11-16 06:16:36 -08:00
def mktx(self, to_address, amount, label, password, fee=None):
2011-11-16 16:55:29 -08:00
if not self.is_valid(to_address):
return False, "Invalid address"
inputs, total, fee = wallet.choose_tx_inputs( amount, fee )
if not inputs: return False, "Not enough funds %d %d"%(total, fee)
2011-11-04 10:00:37 -07:00
try:
outputs = wallet.choose_tx_outputs( to_address, amount, fee, total, password )
2011-11-04 10:00:37 -07:00
s_inputs = wallet.sign_inputs( inputs, outputs, password )
except InvalidPassword:
return False, "Wrong password"
2011-11-16 06:16:36 -08:00
tx = filter( raw_tx( s_inputs, outputs ) )
2011-11-16 13:47:17 -08:00
if to_address not in self.addressbook:
self.addressbook.append(to_address)
if label:
tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
wallet.labels[tx_hash] = label
wallet.save()
2011-11-16 06:16:36 -08:00
return True, tx
def sendtx(self, tx):
2011-11-04 10:00:37 -07:00
tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
2011-11-16 06:16:36 -08:00
out = self.send_tx(tx)
if out != tx_hash:
return False, "error: " + out
2011-11-08 07:48:44 -08:00
return True, out
2011-11-04 10:00:37 -07:00
2011-11-14 11:35:54 -08:00
from optparse import OptionParser
2011-11-04 10:00:37 -07:00
if __name__ == '__main__':
2011-11-16 16:55:29 -08:00
known_commands = ['help', 'validateaddress', 'balance', 'contacts', 'create', 'payto', 'sendtx', 'password', 'newaddress', 'addresses', 'history', 'label', 'gui', 'mktx','seed']
2011-11-14 11:35:54 -08:00
usage = "usage: %prog [options] command args\nCommands: "+ (', '.join(known_commands))
parser = OptionParser(usage=usage)
parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
2011-11-14 11:35:54 -08:00
parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
parser.add_option("-f", "--fee", dest="tx_fee", default=0.005, help="set tx fee")
options, args = parser.parse_args()
2011-11-04 10:00:37 -07:00
try:
2011-11-14 11:35:54 -08:00
cmd = args[0]
2011-11-04 10:00:37 -07:00
except:
cmd = "gui"
2011-11-16 07:12:13 -08:00
try:
firstarg = args[1]
except:
firstarg = ''
2011-11-04 10:00:37 -07:00
if cmd not in known_commands:
2011-11-16 07:12:13 -08:00
cmd = 'help'
2011-11-04 10:00:37 -07:00
wallet = Wallet(options.wallet_path)
2011-11-14 11:35:54 -08:00
2011-11-16 07:26:06 -08:00
if cmd == 'gui':
2011-11-04 10:00:37 -07:00
import gui
gui.init_wallet(wallet)
gui = gui.BitcoinGUI(wallet)
gui.main()
2011-11-09 14:21:27 -08:00
wallet.save()
2011-11-10 00:34:27 -08:00
sys.exit(0)
2011-11-04 10:00:37 -07:00
2011-12-06 01:39:18 -08:00
if not wallet.read() and cmd not in ['help','create']:
2011-11-16 07:41:33 -08:00
print "Wallet file not found."
print "Type 'electrum.py create' to create a new wallet, or provide a path to a wallet with the -d option"
2011-11-16 07:26:06 -08:00
sys.exit(0)
if cmd == 'create':
if wallet.read():
print "remove the existing wallet first!"
sys.exit(0)
2011-11-29 01:26:47 -08:00
password = getpass.getpass("Password (hit return if you do not wish to encrypt your wallet):")
if password:
password2 = getpass.getpass("Confirm password:")
if password != password2:
print "error"
sys.exit(1)
2011-11-04 10:00:37 -07:00
else:
password = None
print "in order to use wallet encryption, please install pycrypto (sudo easy_install pycrypto)"
host = raw_input("server (default:ecdsa.org):")
port = raw_input("port (default:50000):")
fee = raw_input("fee (default 0.005):")
if fee: wallet.fee = float(fee)
if host: wallet.host = host
if port: wallet.port = int(port)
seed = raw_input("if you are restoring an existing wallet, enter the seed. otherwise just press enter: ")
2011-11-04 10:00:37 -07:00
wallet.gap_limit = 5
if seed:
2011-11-06 03:41:11 -08:00
wallet.seed = seed
gap = raw_input("gap limit (default 5):")
if gap: wallet.gap_limit = int(gap)
print "recovering wallet..."
r = wallet.recover(password)
if r:
print "recovery successful"
wallet.save()
else:
print "no wallet found"
else:
wallet.new_seed(None)
print "Your seed is", wallet.seed
print "Please store it safely"
# generate first key
wallet.create_new_address(False, None)
2011-11-04 10:00:37 -07:00
2011-11-11 15:07:41 -08:00
# check syntax
2011-11-16 06:16:36 -08:00
if cmd in ['payto', 'mktx']:
2011-11-11 15:07:41 -08:00
try:
2011-11-14 11:35:54 -08:00
to_address = args[1]
2011-12-06 12:05:46 -08:00
amount = int( 100000000 * Decimal(args[2]) )
2011-11-14 11:35:54 -08:00
label = ' '.join(args[3:])
2011-12-06 12:05:46 -08:00
if options.tx_fee: options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
2011-11-11 15:07:41 -08:00
except:
2011-11-16 07:12:13 -08:00
firstarg = cmd
cmd = 'help'
2011-11-11 15:07:41 -08:00
2011-11-14 11:35:54 -08:00
# open session
2011-11-16 16:55:29 -08:00
if cmd not in ['password', 'mktx', 'history', 'label','contacts','help','validateaddress']:
2011-11-14 11:35:54 -08:00
wallet.new_session()
wallet.update()
wallet.save()
# commands needing password
2011-11-16 06:16:36 -08:00
if cmd in ['payto', 'password', 'newaddress','mktx','seed'] or ( cmd=='addresses' and options.show_keys):
2011-11-04 10:00:37 -07:00
password = getpass.getpass('Password:') if wallet.use_encryption else None
2011-11-16 07:12:13 -08:00
if cmd=='help':
cmd2 = firstarg
if cmd2 not in known_commands:
print "known commands:", ', '.join(known_commands)
print "help <command> shows the help on a specific command"
elif cmd2 == 'balance':
print "display the balance of your wallet"
elif cmd2 == 'contacts':
print "show your list of contacts"
elif cmd2 == 'payto':
print "payto <recipient> <amount> [label]"
print "create and broadcast a transaction."
print "<recipient> can be a bitcoin address or a label"
elif cmd2== 'sendtx':
print "sendtx <tx>"
print "broadcast a transaction to the network. <tx> must be in hexadecimal"
elif cmd2 == 'password':
print "change your password"
elif cmd2 == 'newaddress':
print "create a new receiving address. password is needed."
elif cmd2 == 'addresses':
print "show your list of addresses. options: -a, -k, -b"
elif cmd2 == 'history':
print "show the transaction history"
elif cmd2 == 'label':
print "assign a label to an item"
elif cmd2 == 'gui':
print "start the GUI"
elif cmd2 == 'mktx':
print "create a signed transaction. password protected"
print "syntax: mktx <recipient> <amount> [label]"
elif cmd2 == 'seed':
print "show generation seed of your wallet. password protected."
elif cmd == 'seed':
2011-11-14 11:35:54 -08:00
import mnemonic
2011-11-18 04:07:28 -08:00
seed = wallet.pw_decode( wallet.seed, password)
print seed, '"'+' '.join(mnemonic.mn_encode(seed))+'"'
2011-11-14 11:35:54 -08:00
2011-11-16 16:55:29 -08:00
elif cmd == 'validateaddress':
addr = args[1]
print wallet.is_valid(addr)
2011-11-16 06:16:36 -08:00
elif cmd == 'balance':
2011-11-04 10:00:37 -07:00
c, u = wallet.get_balance()
if u:
print c*1e-8, u*1e-8
else:
print c*1e-8
2011-11-14 11:35:54 -08:00
elif cmd in [ 'contacts']:
2011-11-11 15:07:41 -08:00
for addr in wallet.addressbook:
print addr, " ", wallet.labels.get(addr)
2011-11-14 11:35:54 -08:00
elif cmd in [ 'addresses']:
if options.show_keys: private_keys = ast.literal_eval( wallet.pw_decode( wallet.private_keys, password ) )
2011-11-04 10:00:37 -07:00
for addr in wallet.addresses:
2011-11-14 11:35:54 -08:00
if options.show_all or not wallet.is_change(addr):
2011-11-04 10:00:37 -07:00
label = wallet.labels.get(addr) if not wallet.is_change(addr) else "[change]"
if label is None: label = ''
2011-11-14 11:35:54 -08:00
if options.show_balance:
h = wallet.history.get(addr)
ni = no = 0
for item in h:
if item['is_in']: ni += 1
else: no += 1
b = "%d %d %f"%(no, ni, wallet.get_addr_balance(addr)[0]*1e-8)
else: b=''
pk = private_keys[wallet.addresses.index(addr)] if options.show_keys else ''
print addr, pk, b, label
2011-11-04 10:00:37 -07:00
if cmd == 'history':
lines = wallet.get_tx_history()
b = 0
for line in lines:
import datetime
v = 1.*line['value']/1e8
b += v
v_str = "%f"%v if v<0 else "+%f"%v
try:
time_str = datetime.datetime.fromtimestamp( line['nTime'])
except:
print line['nTime']
time_str = 'pending'
label = line.get('label')
if not label: label = line['tx_hash']
else: label = label + ' '*(64 - len(label) )
print time_str, " ", label, " ", v_str, " ", "%f"%b
print "# balance: ", b
elif cmd == 'label':
try:
2011-11-14 11:35:54 -08:00
tx = args[1]
label = ' '.join(args[2:])
2011-11-04 10:00:37 -07:00
except:
print "syntax: label <tx_hash> <text>"
2011-11-10 00:34:27 -08:00
sys.exit(1)
2011-11-04 10:00:37 -07:00
wallet.labels[tx] = label
wallet.save()
2011-11-16 06:16:36 -08:00
elif cmd in ['payto', 'mktx']:
2011-11-11 15:07:41 -08:00
for k, v in wallet.labels.items():
if v == to_address:
to_address = k
2011-11-16 16:55:29 -08:00
print "alias", to_address
2011-11-11 15:07:41 -08:00
break
2011-11-16 06:16:36 -08:00
r, h = wallet.mktx( to_address, amount, label, password, fee = options.tx_fee )
if r and cmd=='payto':
r, h = wallet.sendtx( tx )
print h
else:
print h
elif cmd=='sendtx':
tx = args[1]
r, h = wallet.sendtx( tx )
print h
2011-11-04 10:00:37 -07:00
2011-11-14 11:35:54 -08:00
elif cmd == 'newaddress':
2011-12-07 16:42:55 -08:00
s, a = wallet.get_new_address(password)
print a
2011-11-04 10:00:37 -07:00
elif cmd == 'password':
try:
2011-11-05 07:06:43 -07:00
seed = wallet.pw_decode( wallet.seed, password)
2011-11-04 10:00:37 -07:00
private_keys = ast.literal_eval( wallet.pw_decode( wallet.private_keys, password) )
except:
print "sorry"
2011-11-10 00:34:27 -08:00
sys.exit(1)
2011-11-04 10:00:37 -07:00
new_password = getpass.getpass('New password:')
if new_password == getpass.getpass('Confirm new password:'):
wallet.use_encryption = (new_password != '')
2011-11-05 07:06:43 -07:00
wallet.seed = wallet.pw_encode( seed, new_password)
2011-11-04 10:00:37 -07:00
wallet.private_keys = wallet.pw_encode( repr( private_keys ), new_password)
wallet.save()
else:
print "error: mismatch"