2018-05-25 08:03:25 +02:00
|
|
|
import six
|
|
|
|
import logging
|
2018-06-18 05:22:15 +02:00
|
|
|
from typing import List, Iterable
|
2018-05-25 15:54:01 +02:00
|
|
|
from binascii import hexlify
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-06-12 16:02:04 +02:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-06-14 02:57:57 +02:00
|
|
|
import torba.baseaccount
|
|
|
|
import torba.baseledger
|
2018-05-25 08:03:25 +02:00
|
|
|
from torba.basescript import BaseInputScript, BaseOutputScript
|
2018-06-08 05:47:46 +02:00
|
|
|
from torba.coinselection import CoinSelector
|
2018-07-15 03:34:07 +02:00
|
|
|
from torba.constants import COIN, NULL_HASH32
|
2018-05-25 08:03:25 +02:00
|
|
|
from torba.bcd_data_stream import BCDataStream
|
2018-07-15 03:34:07 +02:00
|
|
|
from torba.hash import sha256, TXRef, TXRefImmutable, TXORef
|
2018-05-25 08:03:25 +02:00
|
|
|
from torba.util import ReadOnlyList
|
|
|
|
|
|
|
|
|
|
|
|
log = logging.getLogger()
|
|
|
|
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
class TXRefMutable(TXRef):
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
__slots__ = 'tx',
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def __init__(self, tx):
|
|
|
|
super(TXRefMutable, self).__init__()
|
|
|
|
self.tx = tx
|
|
|
|
|
|
|
|
@property
|
|
|
|
def id(self):
|
|
|
|
if self._id is None:
|
|
|
|
self._id = hexlify(self.hash[::-1]).decode()
|
|
|
|
return self._id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def hash(self):
|
|
|
|
if self._hash is None:
|
|
|
|
self._hash = sha256(sha256(self.tx.raw))
|
|
|
|
return self._hash
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def reset(self):
|
|
|
|
self._id = None
|
|
|
|
self._hash = None
|
|
|
|
|
|
|
|
|
|
|
|
class TXORefResolvable(TXORef):
|
|
|
|
|
|
|
|
__slots__ = '_txo',
|
|
|
|
|
|
|
|
def __init__(self, txo):
|
|
|
|
super(TXORefResolvable, self).__init__(txo.tx_ref, txo.position)
|
|
|
|
self._txo = txo
|
2018-06-08 05:47:46 +02:00
|
|
|
|
|
|
|
@property
|
2018-07-15 03:34:07 +02:00
|
|
|
def txo(self):
|
|
|
|
return self._txo
|
|
|
|
|
|
|
|
|
|
|
|
class InputOutput(object):
|
|
|
|
|
|
|
|
__slots__ = 'tx_ref', 'position'
|
|
|
|
|
|
|
|
def __init__(self, tx_ref=None, position=None):
|
|
|
|
self.tx_ref = tx_ref # type: TXRef
|
|
|
|
self.position = position # type: int
|
2018-06-08 05:47:46 +02:00
|
|
|
|
2018-05-25 08:03:25 +02:00
|
|
|
@property
|
|
|
|
def size(self):
|
|
|
|
""" Size of this input / output in bytes. """
|
|
|
|
stream = BCDataStream()
|
|
|
|
self.serialize_to(stream)
|
|
|
|
return len(stream.get_bytes())
|
|
|
|
|
|
|
|
def serialize_to(self, stream):
|
|
|
|
raise NotImplemented
|
|
|
|
|
|
|
|
|
|
|
|
class BaseInput(InputOutput):
|
|
|
|
|
2018-06-11 15:33:32 +02:00
|
|
|
script_class = BaseInputScript
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
NULL_SIGNATURE = b'\x00'*72
|
|
|
|
NULL_PUBLIC_KEY = b'\x00'*33
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
__slots__ = 'txo_ref', 'sequence', 'coinbase', 'script'
|
|
|
|
|
|
|
|
def __init__(self, txo_ref, script, sequence=0xFFFFFFFF, tx_ref=None, position=None):
|
|
|
|
# type: (TXORef, BaseInputScript, int, TXRef, int) -> None
|
|
|
|
super(BaseInput, self).__init__(tx_ref, position)
|
|
|
|
self.txo_ref = txo_ref
|
2018-05-25 08:03:25 +02:00
|
|
|
self.sequence = sequence
|
2018-07-15 03:34:07 +02:00
|
|
|
self.coinbase = script if txo_ref.is_null else None
|
|
|
|
self.script = script if not txo_ref.is_null else None # type: BaseInputScript
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_coinbase(self):
|
|
|
|
return self.coinbase is not None
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@classmethod
|
2018-07-15 03:34:07 +02:00
|
|
|
def spend(cls, txo): # type: (BaseOutput) -> BaseInput
|
2018-05-25 08:03:25 +02:00
|
|
|
""" Create an input to spend the output."""
|
2018-07-15 03:34:07 +02:00
|
|
|
assert txo.script.is_pay_pubkey_hash, 'Attempting to spend unsupported output.'
|
2018-05-25 08:03:25 +02:00
|
|
|
script = cls.script_class.redeem_pubkey_hash(cls.NULL_SIGNATURE, cls.NULL_PUBLIC_KEY)
|
2018-07-15 03:34:07 +02:00
|
|
|
return cls(txo.ref, script)
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def amount(self):
|
|
|
|
""" Amount this input adds to the transaction. """
|
2018-07-15 03:34:07 +02:00
|
|
|
if self.txo_ref.txo is None:
|
|
|
|
raise ValueError('Cannot resolve output to get amount.')
|
|
|
|
return self.txo_ref.txo.amount
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def deserialize_from(cls, stream):
|
2018-07-15 03:34:07 +02:00
|
|
|
tx_ref = TXRefImmutable.from_hash(stream.read(32))
|
|
|
|
position = stream.read_uint32()
|
2018-05-25 08:03:25 +02:00
|
|
|
script = stream.read_string()
|
|
|
|
sequence = stream.read_uint32()
|
|
|
|
return cls(
|
2018-07-15 03:34:07 +02:00
|
|
|
TXORef(tx_ref, position),
|
|
|
|
cls.script_class(script) if not tx_ref.is_null else script,
|
2018-05-25 08:03:25 +02:00
|
|
|
sequence
|
|
|
|
)
|
|
|
|
|
|
|
|
def serialize_to(self, stream, alternate_script=None):
|
2018-07-15 03:34:07 +02:00
|
|
|
stream.write(self.txo_ref.tx_ref.hash)
|
|
|
|
stream.write_uint32(self.txo_ref.position)
|
2018-05-25 08:03:25 +02:00
|
|
|
if alternate_script is not None:
|
|
|
|
stream.write_string(alternate_script)
|
|
|
|
else:
|
|
|
|
if self.is_coinbase:
|
|
|
|
stream.write_string(self.coinbase)
|
|
|
|
else:
|
|
|
|
stream.write_string(self.script.source)
|
|
|
|
stream.write_uint32(self.sequence)
|
|
|
|
|
|
|
|
|
2018-06-08 05:47:46 +02:00
|
|
|
class BaseOutputEffectiveAmountEstimator(object):
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
__slots__ = 'txo', 'txi', 'fee', 'effective_amount'
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-06-14 02:57:57 +02:00
|
|
|
def __init__(self, ledger, txo): # type: (torba.baseledger.BaseLedger, BaseOutput) -> None
|
2018-06-04 02:13:30 +02:00
|
|
|
self.txo = txo
|
2018-06-08 05:47:46 +02:00
|
|
|
self.txi = ledger.transaction_class.input_class.spend(txo)
|
|
|
|
self.fee = ledger.get_input_output_fee(self.txi)
|
2018-05-25 08:03:25 +02:00
|
|
|
self.effective_amount = txo.amount - self.fee
|
|
|
|
|
|
|
|
def __lt__(self, other):
|
|
|
|
return self.effective_amount < other.effective_amount
|
|
|
|
|
|
|
|
|
|
|
|
class BaseOutput(InputOutput):
|
|
|
|
|
2018-06-11 15:33:32 +02:00
|
|
|
script_class = BaseOutputScript
|
2018-06-08 05:47:46 +02:00
|
|
|
estimator_class = BaseOutputEffectiveAmountEstimator
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
__slots__ = 'amount', 'script'
|
|
|
|
|
|
|
|
def __init__(self, amount, script, tx_ref=None, position=None):
|
|
|
|
# type: (int, BaseOutputScript, TXRef, int) -> None
|
|
|
|
super(BaseOutput, self).__init__(tx_ref, position)
|
|
|
|
self.amount = amount
|
|
|
|
self.script = script
|
|
|
|
|
|
|
|
@property
|
|
|
|
def ref(self):
|
|
|
|
return TXORefResolvable(self)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def id(self):
|
|
|
|
return self.ref.id
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-06-08 05:47:46 +02:00
|
|
|
def get_estimator(self, ledger):
|
|
|
|
return self.estimator_class(ledger, self)
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def pay_pubkey_hash(cls, amount, pubkey_hash):
|
|
|
|
return cls(amount, cls.script_class.pay_pubkey_hash(pubkey_hash))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def deserialize_from(cls, stream):
|
|
|
|
return cls(
|
|
|
|
amount=stream.read_uint64(),
|
|
|
|
script=cls.script_class(stream.read_string())
|
|
|
|
)
|
|
|
|
|
|
|
|
def serialize_to(self, stream):
|
|
|
|
stream.write_uint64(self.amount)
|
|
|
|
stream.write_string(self.script.source)
|
|
|
|
|
|
|
|
|
|
|
|
class BaseTransaction:
|
|
|
|
|
2018-06-11 15:33:32 +02:00
|
|
|
input_class = BaseInput
|
|
|
|
output_class = BaseOutput
|
2018-05-25 08:03:25 +02:00
|
|
|
|
2018-06-08 05:47:46 +02:00
|
|
|
def __init__(self, raw=None, version=1, locktime=0):
|
2018-05-25 08:03:25 +02:00
|
|
|
self._raw = raw
|
2018-07-15 03:34:07 +02:00
|
|
|
self.ref = TXRefMutable(self)
|
2018-05-25 08:03:25 +02:00
|
|
|
self.version = version # type: int
|
|
|
|
self.locktime = locktime # type: int
|
|
|
|
self._inputs = [] # type: List[BaseInput]
|
|
|
|
self._outputs = [] # type: List[BaseOutput]
|
|
|
|
if raw is not None:
|
|
|
|
self._deserialize()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def id(self):
|
2018-07-15 03:34:07 +02:00
|
|
|
return self.ref.id
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def hash(self):
|
2018-07-15 03:34:07 +02:00
|
|
|
return self.ref.hash
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def raw(self):
|
|
|
|
if self._raw is None:
|
|
|
|
self._raw = self._serialize()
|
|
|
|
return self._raw
|
|
|
|
|
|
|
|
def _reset(self):
|
|
|
|
self._raw = None
|
2018-07-15 03:34:07 +02:00
|
|
|
self.ref.reset()
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def inputs(self): # type: () -> ReadOnlyList[BaseInput]
|
|
|
|
return ReadOnlyList(self._inputs)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def outputs(self): # type: () -> ReadOnlyList[BaseOutput]
|
|
|
|
return ReadOnlyList(self._outputs)
|
|
|
|
|
2018-06-08 05:47:46 +02:00
|
|
|
def _add(self, new_ios, existing_ios):
|
2018-07-15 03:34:07 +02:00
|
|
|
# type: (List[InputOutput], List[InputOutput]) -> BaseTransaction
|
2018-06-08 05:47:46 +02:00
|
|
|
for txio in new_ios:
|
2018-07-15 03:34:07 +02:00
|
|
|
txio.tx_ref = self.ref
|
|
|
|
txio.position = len(existing_ios)
|
2018-06-08 05:47:46 +02:00
|
|
|
existing_ios.append(txio)
|
2018-05-25 08:03:25 +02:00
|
|
|
self._reset()
|
|
|
|
return self
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def add_inputs(self, inputs): # type: (List[BaseInput]) -> BaseTransaction
|
2018-06-08 05:47:46 +02:00
|
|
|
return self._add(inputs, self._inputs)
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def add_outputs(self, outputs): # type: (List[BaseOutput]) -> BaseTransaction
|
2018-06-08 05:47:46 +02:00
|
|
|
return self._add(outputs, self._outputs)
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
2018-07-15 03:34:07 +02:00
|
|
|
def fee(self): # type: () -> int
|
2018-05-25 08:03:25 +02:00
|
|
|
""" Fee that will actually be paid."""
|
|
|
|
return self.input_sum - self.output_sum
|
|
|
|
|
|
|
|
@property
|
2018-07-15 03:34:07 +02:00
|
|
|
def size(self): # type: () -> int
|
2018-05-25 08:03:25 +02:00
|
|
|
""" Size in bytes of the entire transaction. """
|
|
|
|
return len(self.raw)
|
|
|
|
|
|
|
|
@property
|
2018-07-15 03:34:07 +02:00
|
|
|
def base_size(self): # type: () -> int
|
2018-05-25 08:03:25 +02:00
|
|
|
""" Size in bytes of transaction meta data and all outputs; without inputs. """
|
|
|
|
return len(self._serialize(with_inputs=False))
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def _serialize(self, with_inputs=True): # type: (bool) -> bytes
|
2018-05-25 08:03:25 +02:00
|
|
|
stream = BCDataStream()
|
|
|
|
stream.write_uint32(self.version)
|
|
|
|
if with_inputs:
|
|
|
|
stream.write_compact_size(len(self._inputs))
|
|
|
|
for txin in self._inputs:
|
|
|
|
txin.serialize_to(stream)
|
|
|
|
stream.write_compact_size(len(self._outputs))
|
|
|
|
for txout in self._outputs:
|
|
|
|
txout.serialize_to(stream)
|
|
|
|
stream.write_uint32(self.locktime)
|
|
|
|
return stream.get_bytes()
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
def _serialize_for_signature(self, signing_input): # type: (int) -> bytes
|
2018-05-25 08:03:25 +02:00
|
|
|
stream = BCDataStream()
|
|
|
|
stream.write_uint32(self.version)
|
|
|
|
stream.write_compact_size(len(self._inputs))
|
|
|
|
for i, txin in enumerate(self._inputs):
|
|
|
|
if signing_input == i:
|
2018-07-15 03:34:07 +02:00
|
|
|
txin.serialize_to(stream, txin.txo_ref.txo.script.source)
|
2018-05-25 08:03:25 +02:00
|
|
|
else:
|
|
|
|
txin.serialize_to(stream, b'')
|
|
|
|
stream.write_compact_size(len(self._outputs))
|
|
|
|
for txout in self._outputs:
|
|
|
|
txout.serialize_to(stream)
|
|
|
|
stream.write_uint32(self.locktime)
|
2018-06-14 02:57:57 +02:00
|
|
|
stream.write_uint32(self.signature_hash_type(1)) # signature hash type: SIGHASH_ALL
|
2018-05-25 08:03:25 +02:00
|
|
|
return stream.get_bytes()
|
|
|
|
|
|
|
|
def _deserialize(self):
|
|
|
|
if self._raw is not None:
|
|
|
|
stream = BCDataStream(self._raw)
|
|
|
|
self.version = stream.read_uint32()
|
|
|
|
input_count = stream.read_compact_size()
|
|
|
|
self.add_inputs([
|
|
|
|
self.input_class.deserialize_from(stream) for _ in range(input_count)
|
|
|
|
])
|
|
|
|
output_count = stream.read_compact_size()
|
|
|
|
self.add_outputs([
|
|
|
|
self.output_class.deserialize_from(stream) for _ in range(output_count)
|
|
|
|
])
|
|
|
|
self.locktime = stream.read_uint32()
|
|
|
|
|
2018-06-08 05:47:46 +02:00
|
|
|
@classmethod
|
|
|
|
def ensure_all_have_same_ledger(cls, funding_accounts, change_account=None):
|
2018-06-14 02:57:57 +02:00
|
|
|
# type: (Iterable[torba.baseaccount.BaseAccount], torba.baseaccount.BaseAccount) -> torba.baseledger.BaseLedger
|
2018-06-08 05:47:46 +02:00
|
|
|
ledger = None
|
|
|
|
for account in funding_accounts:
|
|
|
|
if ledger is None:
|
2018-06-11 15:33:32 +02:00
|
|
|
ledger = account.ledger
|
|
|
|
if ledger != account.ledger:
|
2018-06-08 05:47:46 +02:00
|
|
|
raise ValueError(
|
|
|
|
'All funding accounts used to create a transaction must be on the same ledger.'
|
|
|
|
)
|
2018-06-11 15:33:32 +02:00
|
|
|
if change_account is not None and change_account.ledger != ledger:
|
2018-06-08 05:47:46 +02:00
|
|
|
raise ValueError('Change account must use same ledger as funding accounts.')
|
|
|
|
return ledger
|
|
|
|
|
|
|
|
@classmethod
|
2018-06-12 16:02:04 +02:00
|
|
|
@defer.inlineCallbacks
|
2018-06-26 23:22:05 +02:00
|
|
|
def pay(cls, outputs, funding_accounts, change_account, reserve_outputs=True):
|
2018-06-14 21:17:59 +02:00
|
|
|
# type: (List[BaseOutput], List[torba.baseaccount.BaseAccount], torba.baseaccount.BaseAccount) -> defer.Deferred
|
2018-06-08 05:47:46 +02:00
|
|
|
""" Efficiently spend utxos from funding_accounts to cover the new outputs. """
|
|
|
|
|
|
|
|
tx = cls().add_outputs(outputs)
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
2018-06-14 02:57:57 +02:00
|
|
|
amount = tx.output_sum + ledger.get_transaction_base_fee(tx)
|
2018-06-18 05:22:15 +02:00
|
|
|
txos = yield ledger.get_effective_amount_estimators(funding_accounts)
|
2018-06-08 05:47:46 +02:00
|
|
|
selector = CoinSelector(
|
2018-06-12 16:02:04 +02:00
|
|
|
txos, amount,
|
2018-06-08 05:47:46 +02:00
|
|
|
ledger.get_input_output_fee(
|
2018-07-15 03:34:07 +02:00
|
|
|
cls.output_class.pay_pubkey_hash(COIN, NULL_HASH32)
|
2018-06-08 05:47:46 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
spendables = selector.select()
|
|
|
|
if not spendables:
|
|
|
|
raise ValueError('Not enough funds to cover this transaction.')
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
reserved_outputs = [s.txo.id for s in spendables]
|
2018-06-26 23:22:05 +02:00
|
|
|
if reserve_outputs:
|
|
|
|
yield ledger.db.reserve_spent_outputs(reserved_outputs)
|
|
|
|
|
|
|
|
try:
|
|
|
|
spent_sum = sum(s.effective_amount for s in spendables)
|
|
|
|
if spent_sum > amount:
|
|
|
|
change_address = yield change_account.change.get_or_create_usable_address()
|
|
|
|
change_hash160 = change_account.ledger.address_to_hash160(change_address)
|
|
|
|
change_amount = spent_sum - amount
|
|
|
|
tx.add_outputs([cls.output_class.pay_pubkey_hash(change_amount, change_hash160)])
|
|
|
|
|
|
|
|
tx.add_inputs([s.txi for s in spendables])
|
|
|
|
yield tx.sign(funding_accounts)
|
|
|
|
|
|
|
|
except Exception:
|
|
|
|
if reserve_outputs:
|
|
|
|
yield ledger.db.release_reserved_outputs(reserved_outputs)
|
|
|
|
raise
|
2018-06-08 05:47:46 +02:00
|
|
|
|
2018-06-12 16:02:04 +02:00
|
|
|
defer.returnValue(tx)
|
2018-06-08 05:47:46 +02:00
|
|
|
|
|
|
|
@classmethod
|
2018-07-10 02:22:04 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def liquidate(cls, assets, funding_accounts, change_account, reserve_outputs=True):
|
2018-06-08 05:47:46 +02:00
|
|
|
""" Spend assets (utxos) supplementing with funding_accounts if fee is higher than asset value. """
|
|
|
|
|
2018-07-10 02:22:04 +02:00
|
|
|
tx = cls().add_inputs([
|
|
|
|
cls.input_class.spend(utxo) for utxo in assets
|
|
|
|
])
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
|
2018-07-15 03:34:07 +02:00
|
|
|
reserved_outputs = [utxo.id for utxo in assets]
|
2018-07-10 02:22:04 +02:00
|
|
|
if reserve_outputs:
|
|
|
|
yield ledger.db.reserve_spent_outputs(reserved_outputs)
|
|
|
|
|
|
|
|
try:
|
|
|
|
cost_of_change = (
|
|
|
|
ledger.get_transaction_base_fee(tx) +
|
2018-07-15 03:34:07 +02:00
|
|
|
ledger.get_input_output_fee(cls.output_class.pay_pubkey_hash(COIN, NULL_HASH32))
|
2018-07-10 02:22:04 +02:00
|
|
|
)
|
|
|
|
liquidated_total = sum(utxo.amount for utxo in assets)
|
|
|
|
if liquidated_total > cost_of_change:
|
|
|
|
change_address = yield change_account.change.get_or_create_usable_address()
|
|
|
|
change_hash160 = change_account.ledger.address_to_hash160(change_address)
|
|
|
|
change_amount = liquidated_total - cost_of_change
|
|
|
|
tx.add_outputs([cls.output_class.pay_pubkey_hash(change_amount, change_hash160)])
|
|
|
|
|
|
|
|
yield tx.sign(funding_accounts)
|
|
|
|
|
|
|
|
except Exception:
|
|
|
|
if reserve_outputs:
|
|
|
|
yield ledger.db.release_reserved_outputs(reserved_outputs)
|
|
|
|
raise
|
|
|
|
|
|
|
|
defer.returnValue(tx)
|
|
|
|
|
2018-06-14 02:57:57 +02:00
|
|
|
def signature_hash_type(self, hash_type):
|
|
|
|
return hash_type
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def sign(self, funding_accounts): # type: (Iterable[torba.baseaccount.BaseAccount]) -> BaseTransaction
|
2018-06-08 05:47:46 +02:00
|
|
|
ledger = self.ensure_all_have_same_ledger(funding_accounts)
|
2018-05-25 08:03:25 +02:00
|
|
|
for i, txi in enumerate(self._inputs):
|
2018-07-15 03:34:07 +02:00
|
|
|
txo_script = txi.txo_ref.txo.script
|
2018-05-25 08:03:25 +02:00
|
|
|
if txo_script.is_pay_pubkey_hash:
|
2018-06-11 15:33:32 +02:00
|
|
|
address = ledger.hash160_to_address(txo_script.values['pubkey_hash'])
|
2018-06-14 02:57:57 +02:00
|
|
|
private_key = yield ledger.get_private_key_for_address(address)
|
2018-05-25 08:03:25 +02:00
|
|
|
tx = self._serialize_for_signature(i)
|
2018-06-14 02:57:57 +02:00
|
|
|
txi.script.values['signature'] = \
|
|
|
|
private_key.sign(tx) + six.int2byte(self.signature_hash_type(1))
|
2018-05-25 08:03:25 +02:00
|
|
|
txi.script.values['pubkey'] = private_key.public_key.pubkey_bytes
|
|
|
|
txi.script.generate()
|
2018-06-08 05:47:46 +02:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("Don't know how to spend this output.")
|
2018-05-25 08:03:25 +02:00
|
|
|
self._reset()
|
|
|
|
|
|
|
|
def sort(self):
|
|
|
|
# See https://github.com/kristovatlas/rfc/blob/master/bips/bip-li01.mediawiki
|
|
|
|
self._inputs.sort(key=lambda i: (i['prevout_hash'], i['prevout_n']))
|
|
|
|
self._outputs.sort(key=lambda o: (o[2], pay_script(o[0], o[1])))
|
|
|
|
|
|
|
|
@property
|
|
|
|
def input_sum(self):
|
2018-06-14 02:57:57 +02:00
|
|
|
return sum(i.amount for i in self.inputs)
|
2018-05-25 08:03:25 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def output_sum(self):
|
2018-06-14 02:57:57 +02:00
|
|
|
return sum(o.amount for o in self.outputs)
|
2018-06-26 23:22:05 +02:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_my_addresses(self, ledger):
|
|
|
|
addresses = set()
|
|
|
|
for txo in self.outputs:
|
|
|
|
address = ledger.hash160_to_address(txo.script.values['pubkey_hash'])
|
|
|
|
record = yield ledger.db.get_address(address)
|
|
|
|
if record is not None:
|
|
|
|
addresses.add(address)
|
|
|
|
defer.returnValue(list(addresses))
|