2018-06-14 06:53:38 +02:00
|
|
|
import struct
|
2018-08-04 18:10:41 +02:00
|
|
|
from binascii import hexlify, unhexlify
|
2018-10-05 15:02:02 +02:00
|
|
|
from typing import List, Iterable, Optional
|
2018-06-14 06:53:38 +02:00
|
|
|
|
2018-10-11 07:57:48 +02:00
|
|
|
from lbryschema.decode import smart_decode
|
2018-10-05 15:02:02 +02:00
|
|
|
from .account import Account
|
2018-06-14 06:53:38 +02:00
|
|
|
from torba.basetransaction import BaseTransaction, BaseInput, BaseOutput
|
|
|
|
from torba.hash import hash160
|
|
|
|
|
2018-10-05 15:02:02 +02:00
|
|
|
from lbryschema.claim import ClaimDict
|
2018-06-14 06:53:38 +02:00
|
|
|
from .script import InputScript, OutputScript
|
|
|
|
|
|
|
|
|
|
|
|
class Input(BaseInput):
|
2018-08-04 18:10:41 +02:00
|
|
|
script: InputScript
|
2018-06-14 06:53:38 +02:00
|
|
|
script_class = InputScript
|
|
|
|
|
|
|
|
|
|
|
|
class Output(BaseOutput):
|
2018-08-04 18:10:41 +02:00
|
|
|
script: OutputScript
|
2018-06-14 06:53:38 +02:00
|
|
|
script_class = OutputScript
|
|
|
|
|
2018-10-08 16:41:07 +02:00
|
|
|
__slots__ = '_claim_dict', 'channel', 'signature'
|
2018-10-05 15:02:02 +02:00
|
|
|
|
2018-10-08 16:41:07 +02:00
|
|
|
def __init__(self, *args, channel: Optional['Output'] = None,
|
|
|
|
signature: Optional[str] = None, **kwargs) -> None:
|
2018-10-05 15:02:02 +02:00
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self._claim_dict = None
|
|
|
|
self.channel = channel
|
2018-10-08 16:41:07 +02:00
|
|
|
self.signature = signature
|
2018-10-05 15:02:02 +02:00
|
|
|
|
|
|
|
def update_annotations(self, annotated):
|
|
|
|
super().update_annotations(annotated)
|
|
|
|
self.channel = annotated.channel if annotated else None
|
2018-10-08 16:41:07 +02:00
|
|
|
self.signature = annotated.signature if annotated else None
|
2018-10-05 15:02:02 +02:00
|
|
|
|
2018-08-03 18:31:50 +02:00
|
|
|
def get_fee(self, ledger):
|
|
|
|
name_fee = 0
|
|
|
|
if self.script.is_claim_name:
|
|
|
|
name_fee = len(self.script.values['claim_name']) * ledger.fee_per_name_char
|
|
|
|
return max(name_fee, super().get_fee(ledger))
|
|
|
|
|
2018-08-04 18:10:41 +02:00
|
|
|
@property
|
|
|
|
def claim_id(self) -> str:
|
|
|
|
if self.script.is_claim_name:
|
|
|
|
claim_id = hash160(self.tx_ref.hash + struct.pack('>I', self.position))
|
|
|
|
elif self.script.is_update_claim or self.script.is_support_claim:
|
|
|
|
claim_id = self.script.values['claim_id']
|
|
|
|
else:
|
|
|
|
raise ValueError('No claim_id associated.')
|
|
|
|
return hexlify(claim_id[::-1]).decode()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def claim_name(self) -> str:
|
|
|
|
if self.script.is_claim_involved:
|
|
|
|
return self.script.values['claim_name'].decode()
|
|
|
|
raise ValueError('No claim_name associated.')
|
|
|
|
|
|
|
|
@property
|
2018-10-05 15:02:02 +02:00
|
|
|
def claim(self) -> ClaimDict:
|
|
|
|
if self.script.is_claim_name or self.script.is_update_claim:
|
2018-10-11 07:57:48 +02:00
|
|
|
return smart_decode(self.script.values['claim'])
|
2018-10-05 15:02:02 +02:00
|
|
|
raise ValueError('Only claim name and claim update have the claim payload.')
|
|
|
|
|
|
|
|
@property
|
|
|
|
def claim_dict(self) -> dict:
|
|
|
|
if self._claim_dict is None:
|
|
|
|
self._claim_dict = self.claim.claim_dict
|
|
|
|
return self._claim_dict
|
|
|
|
|
|
|
|
@property
|
|
|
|
def permanent_url(self) -> str:
|
2018-08-04 18:10:41 +02:00
|
|
|
if self.script.is_claim_involved:
|
2018-10-05 15:02:02 +02:00
|
|
|
if self.channel is not None:
|
|
|
|
return "{0}#{1}/{2}".format(
|
|
|
|
self.channel.claim_name,
|
|
|
|
self.channel.claim_id,
|
|
|
|
self.claim_name
|
|
|
|
)
|
|
|
|
return "{}#{}".format(self.claim_name, self.claim_id)
|
2018-08-04 18:10:41 +02:00
|
|
|
raise ValueError('No claim associated.')
|
|
|
|
|
2018-10-08 16:41:07 +02:00
|
|
|
@property
|
|
|
|
def has_signature(self):
|
|
|
|
return self.signature is not None
|
|
|
|
|
2018-06-14 06:53:38 +02:00
|
|
|
@classmethod
|
2018-08-04 18:10:41 +02:00
|
|
|
def pay_claim_name_pubkey_hash(
|
|
|
|
cls, amount: int, claim_name: str, claim: bytes, pubkey_hash: bytes) -> 'Output':
|
|
|
|
script = cls.script_class.pay_claim_name_pubkey_hash(
|
|
|
|
claim_name.encode(), claim, pubkey_hash)
|
|
|
|
return cls(amount, script)
|
|
|
|
|
2018-08-14 22:16:29 +02:00
|
|
|
@classmethod
|
|
|
|
def purchase_claim_pubkey_hash(cls, amount: int, claim_id: str, pubkey_hash: bytes) -> 'Output':
|
|
|
|
script = cls.script_class.purchase_claim_pubkey_hash(unhexlify(claim_id)[::-1], pubkey_hash)
|
|
|
|
return cls(amount, script)
|
|
|
|
|
2018-08-04 18:10:41 +02:00
|
|
|
@classmethod
|
|
|
|
def pay_update_claim_pubkey_hash(
|
|
|
|
cls, amount: int, claim_name: str, claim_id: str, claim: bytes, pubkey_hash: bytes) -> 'Output':
|
|
|
|
script = cls.script_class.pay_update_claim_pubkey_hash(
|
|
|
|
claim_name.encode(), unhexlify(claim_id)[::-1], claim, pubkey_hash)
|
2018-06-14 06:53:38 +02:00
|
|
|
return cls(amount, script)
|
|
|
|
|
2018-08-29 21:43:05 +02:00
|
|
|
@classmethod
|
|
|
|
def pay_support_pubkey_hash(cls, amount: int, claim_name: str, claim_id: str, pubkey_hash: bytes) -> 'Output':
|
|
|
|
script = cls.script_class.pay_support_pubkey_hash(claim_name.encode(), unhexlify(claim_id)[::-1], pubkey_hash)
|
|
|
|
return cls(amount, script)
|
|
|
|
|
2018-06-14 06:53:38 +02:00
|
|
|
|
|
|
|
class Transaction(BaseTransaction):
|
|
|
|
|
|
|
|
input_class = Input
|
|
|
|
output_class = Output
|
|
|
|
|
2018-08-23 05:19:04 +02:00
|
|
|
@classmethod
|
|
|
|
def pay(cls, amount: int, address: bytes, funding_accounts: List[Account], change_account: Account):
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
output = Output.pay_pubkey_hash(amount, ledger.address_to_hash160(address))
|
|
|
|
return cls.create([], [output], funding_accounts, change_account)
|
|
|
|
|
2018-06-14 21:18:36 +02:00
|
|
|
@classmethod
|
2018-08-04 18:10:41 +02:00
|
|
|
def claim(cls, name: str, meta: ClaimDict, amount: int, holding_address: bytes,
|
|
|
|
funding_accounts: List[Account], change_account: Account):
|
2018-06-14 21:18:36 +02:00
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
claim_output = Output.pay_claim_name_pubkey_hash(
|
2018-07-16 00:40:12 +02:00
|
|
|
amount, name, meta.serialized, ledger.address_to_hash160(holding_address)
|
2018-06-14 21:18:36 +02:00
|
|
|
)
|
2018-08-04 18:10:41 +02:00
|
|
|
return cls.create([], [claim_output], funding_accounts, change_account)
|
|
|
|
|
2018-08-14 22:16:29 +02:00
|
|
|
@classmethod
|
|
|
|
def purchase(cls, claim: Output, amount: int, merchant_address: bytes,
|
|
|
|
funding_accounts: List[Account], change_account: Account):
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
claim_output = Output.purchase_claim_pubkey_hash(
|
|
|
|
amount, claim.claim_id, ledger.address_to_hash160(merchant_address)
|
|
|
|
)
|
|
|
|
return cls.create([], [claim_output], funding_accounts, change_account)
|
|
|
|
|
2018-08-04 18:10:41 +02:00
|
|
|
@classmethod
|
|
|
|
def update(cls, previous_claim: Output, meta: ClaimDict, amount: int, holding_address: bytes,
|
|
|
|
funding_accounts: List[Account], change_account: Account):
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
updated_claim = Output.pay_update_claim_pubkey_hash(
|
|
|
|
amount, previous_claim.claim_name, previous_claim.claim_id,
|
|
|
|
meta.serialized, ledger.address_to_hash160(holding_address)
|
|
|
|
)
|
|
|
|
return cls.create([Input.spend(previous_claim)], [updated_claim], funding_accounts, change_account)
|
2018-07-09 23:04:59 +02:00
|
|
|
|
2018-08-29 21:43:05 +02:00
|
|
|
@classmethod
|
|
|
|
def support(cls, claim_name: str, claim_id: str, amount: int, holding_address: bytes,
|
|
|
|
funding_accounts: List[Account], change_account: Account):
|
|
|
|
ledger = cls.ensure_all_have_same_ledger(funding_accounts, change_account)
|
|
|
|
output = Output.pay_support_pubkey_hash(
|
|
|
|
amount, claim_name, claim_id, ledger.address_to_hash160(holding_address)
|
|
|
|
)
|
|
|
|
return cls.create([], [output], funding_accounts, change_account)
|
|
|
|
|
2018-07-09 23:04:59 +02:00
|
|
|
@classmethod
|
2018-08-03 18:31:50 +02:00
|
|
|
def abandon(cls, claims: Iterable[Output], funding_accounts: Iterable[Account], change_account: Account):
|
|
|
|
return cls.create([Input.spend(txo) for txo in claims], [], funding_accounts, change_account)
|
2018-09-26 04:40:52 +02:00
|
|
|
|
|
|
|
def _filter_my_outputs(self, f):
|
|
|
|
for txo in self.outputs:
|
|
|
|
if txo.is_my_account and f(txo.script):
|
|
|
|
yield txo
|
|
|
|
|
|
|
|
@property
|
|
|
|
def my_claim_outputs(self):
|
|
|
|
return self._filter_my_outputs(lambda s: s.is_claim_name)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def my_update_outputs(self):
|
|
|
|
return self._filter_my_outputs(lambda s: s.is_update_claim)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def my_support_outputs(self):
|
|
|
|
return self._filter_my_outputs(lambda s: s.is_support_claim)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def my_abandon_outputs(self):
|
|
|
|
for txi in self.inputs:
|
|
|
|
abandon = txi.txo_ref.txo
|
|
|
|
if abandon is not None and abandon.is_my_account and abandon.script.is_claim_involved:
|
|
|
|
is_update = False
|
|
|
|
if abandon.script.is_claim_name or abandon.script.is_update_claim:
|
|
|
|
for update in self.my_update_outputs:
|
|
|
|
if abandon.claim_id == update.claim_id:
|
|
|
|
is_update = True
|
|
|
|
break
|
|
|
|
if not is_update:
|
|
|
|
yield abandon
|