rostrum 14.0.1

An efficient implementation of Electrum Server with token support
Documentation
import random
from test_framework import cashaddr

from .environment import on_bch, on_nex
from .script import OP_RETURN, CScript, OP_DUP, OP_HASH160, OP_EQUALVERIFY, OP_CHECKSIG

if on_bch():
    from .bch.nodemessages import CTxOut
elif on_nex():
    from .bch.nodemessages import CTxOut
else:
    raise NotImplementedError()

# Minimum size a transaction can have.
MIN_TX_SIZE = 65 if on_bch() else 0

# Maximum bytes in a TxOut pubkey script
MAX_TXOUT_PUBKEY_SCRIPT = 10000


def address2bin(btc_address):
    """convert a bitcoin address to binary data capable of being put in a CScript"""
    addr = cashaddr.decode(btc_address)
    return addr[2]


def p2pkh(btc_address):
    """create a pay-to-public-key-hash script"""
    ret = CScript(
        [OP_DUP, OP_HASH160, address2bin(btc_address), OP_EQUALVERIFY, OP_CHECKSIG]
    )
    return ret


def pad_tx(tx, pad_to_size=MIN_TX_SIZE):
    """
    Pad a transaction with op_return junk data until it is at least pad_to_size, or
    leave it alone if it's already bigger than that.
    """
    if MIN_TX_SIZE == 0:
        return

    curr_size = len(tx.serialize())
    if curr_size >= pad_to_size:
        # Tx is already big enough
        return

    # This code attempts to pad a transaction with opreturn vouts such that
    # it will be exactly pad_to_size.  In order to do this we have to create
    # vouts of size x (maximum OP_RETURN size - vout overhead), plus the final
    # one subsumes any runoff which would be less than vout overhead.
    #
    # There are two cases where this is not possible:
    # 1. The transaction size is between pad_to_size and pad_to_size - extrabytes
    # 2. The transaction is already greater than pad_to_size
    #
    # Visually:
    # | .. x  .. | .. x .. | .. x .. | .. x + desired_size % x |
    #    VOUT_1     VOUT_2    VOUT_3    VOUT_4
    # txout.value + txout.pk_script bytes + op_return
    extra_bytes = 8 + 1 + 1
    required_padding = pad_to_size - curr_size
    while required_padding > 0:
        # We need at least extra_bytes left over each time, or we can't
        # subsume the final (and possibly undersized) iteration of the loop
        padding_len = min(required_padding, MAX_TXOUT_PUBKEY_SCRIPT - extra_bytes)
        assert padding_len >= 0, "Can't pad less than 0 bytes, trying {padding_len}"
        # We will end up with less than 1 UTXO of bytes after this, add
        # them to this txn
        next_iteration_padding = required_padding - padding_len - extra_bytes
        if next_iteration_padding > 0 < next_iteration_padding < extra_bytes:
            padding_len += next_iteration_padding

        # If we're at exactly, or below, extra_bytes we don't want a 1 extra byte padding
        if padding_len <= extra_bytes:
            tx.vout.append(CTxOut(0, CScript([OP_RETURN])))
        else:
            # Subtract the overhead for the TxOut
            padding_len -= extra_bytes
            padding = random.randrange(
                1 << 8 * padding_len - 2, 1 << 8 * padding_len - 1
            )
            tx.vout.append(CTxOut(0, CScript([OP_RETURN, padding])))
        curr_size = len(tx.serialize())
        required_padding = pad_to_size - curr_size
    assert curr_size >= pad_to_size, f"{curr_size} !>= {pad_to_size}"
    tx.rehash()