mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
* [LABS-480] Remove interested_ph_cache and initialize coin cache in init * [LABS-481] Remove unnecessary `server` field from WSM * [LABS-486] Remove useless `add_transaction` from WSM * [LABS-488] Extract signing functionality to its own module * Test coverage
483 lines
20 KiB
Python
483 lines
20 KiB
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import TYPE_CHECKING, Any, ClassVar, cast
|
|
|
|
from chia_rs import CoinSpend, G1Element, G2Element, PrivateKey
|
|
from chia_rs.sized_bytes import bytes32
|
|
from chia_rs.sized_ints import uint32, uint64, uint128
|
|
from typing_extensions import Unpack
|
|
|
|
from chia.types.blockchain_format.coin import Coin
|
|
from chia.types.blockchain_format.program import Program
|
|
from chia.types.blockchain_format.serialized_program import SerializedProgram
|
|
from chia.types.coin_spend import make_spend
|
|
from chia.util.hash import std_hash
|
|
from chia.wallet.coin_selection import select_coins
|
|
from chia.wallet.conditions import (
|
|
AssertCoinAnnouncement,
|
|
Condition,
|
|
CreateCoin,
|
|
CreateCoinAnnouncement,
|
|
)
|
|
from chia.wallet.derive_keys import _derive_path
|
|
from chia.wallet.puzzles.p2_delegated_puzzle_or_hidden_puzzle import (
|
|
DEFAULT_HIDDEN_PUZZLE_HASH,
|
|
calculate_synthetic_public_key,
|
|
calculate_synthetic_secret_key,
|
|
puzzle_for_pk,
|
|
puzzle_hash_for_pk,
|
|
solution_for_conditions,
|
|
)
|
|
from chia.wallet.puzzles.puzzle_utils import make_reserve_fee_condition
|
|
from chia.wallet.transaction_record import TransactionRecord
|
|
from chia.wallet.util.puzzle_decorator import PuzzleDecoratorManager
|
|
from chia.wallet.util.transaction_type import CLAWBACK_INCOMING_TRANSACTION_TYPES
|
|
from chia.wallet.util.wallet_types import WalletIdentifier, WalletType
|
|
from chia.wallet.wallet_action_scope import WalletActionScope
|
|
from chia.wallet.wallet_coin_record import WalletCoinRecord
|
|
from chia.wallet.wallet_info import WalletInfo
|
|
from chia.wallet.wallet_protocol import GSTOptionalArgs, WalletProtocol
|
|
from chia.wallet.wallet_spend_bundle import WalletSpendBundle
|
|
|
|
if TYPE_CHECKING:
|
|
from chia.server.ws_connection import WSChiaConnection
|
|
from chia.wallet.wallet_state_manager import WalletStateManager
|
|
|
|
|
|
class Wallet:
|
|
if TYPE_CHECKING:
|
|
_protocol_check: ClassVar[WalletProtocol] = cast("Wallet", None)
|
|
|
|
wallet_info: WalletInfo
|
|
wallet_state_manager: WalletStateManager
|
|
log: logging.Logger
|
|
wallet_id: uint32
|
|
|
|
@staticmethod
|
|
async def create(
|
|
wallet_state_manager: Any,
|
|
info: WalletInfo,
|
|
name: str = __name__,
|
|
) -> Wallet:
|
|
self = Wallet()
|
|
self.log = logging.getLogger(name)
|
|
self.wallet_state_manager = wallet_state_manager
|
|
self.wallet_id = info.id
|
|
|
|
return self
|
|
|
|
@property
|
|
def cost_of_single_tx(self) -> int:
|
|
return 11000000 # Estimate
|
|
|
|
@property
|
|
def max_send_quantity(self) -> int:
|
|
# avoid full block TXs
|
|
return int(self.wallet_state_manager.constants.MAX_BLOCK_COST_CLVM / 5 / self.cost_of_single_tx)
|
|
|
|
async def get_max_send_amount(self, records: set[WalletCoinRecord] | None = None) -> uint128:
|
|
return uint128(
|
|
sum(
|
|
cr.coin.amount
|
|
for cr in await self.wallet_state_manager.get_spendable_coins_for_wallet(
|
|
self.id(), records, in_one_block=True
|
|
)
|
|
)
|
|
)
|
|
|
|
@classmethod
|
|
def type(cls) -> WalletType:
|
|
return WalletType.STANDARD_WALLET
|
|
|
|
def id(self) -> uint32:
|
|
return self.wallet_id
|
|
|
|
def convert_secret_key_to_synthetic(self, secret_key: PrivateKey) -> PrivateKey:
|
|
return calculate_synthetic_secret_key(secret_key, DEFAULT_HIDDEN_PUZZLE_HASH)
|
|
|
|
def convert_public_key_to_synthetic(self, public_key: G1Element) -> G1Element:
|
|
return calculate_synthetic_public_key(public_key, DEFAULT_HIDDEN_PUZZLE_HASH)
|
|
|
|
async def get_confirmed_balance(self, record_list: set[WalletCoinRecord] | None = None) -> uint128:
|
|
return await self.wallet_state_manager.get_confirmed_balance_for_wallet(self.id(), record_list)
|
|
|
|
async def get_unconfirmed_balance(self, unspent_records: set[WalletCoinRecord] | None = None) -> uint128:
|
|
return await self.wallet_state_manager.get_unconfirmed_balance(self.id(), unspent_records)
|
|
|
|
async def get_spendable_balance(self, unspent_records: set[WalletCoinRecord] | None = None) -> uint128:
|
|
spendable = await self.wallet_state_manager.get_confirmed_spendable_balance_for_wallet(
|
|
self.id(), unspent_records
|
|
)
|
|
return spendable
|
|
|
|
async def get_pending_change_balance(self) -> uint64:
|
|
unconfirmed_tx: list[TransactionRecord] = await self.wallet_state_manager.tx_store.get_unconfirmed_for_wallet(
|
|
self.id()
|
|
)
|
|
addition_amount = 0
|
|
|
|
for record in unconfirmed_tx:
|
|
if record.type in CLAWBACK_INCOMING_TRANSACTION_TYPES:
|
|
# We do not wish to consider clawback-able funds as pending change.
|
|
# That is reserved for when the action to actually claw a tx back or forward is initiated.
|
|
continue
|
|
if not record.is_in_mempool():
|
|
if record.spend_bundle is not None:
|
|
self.log.warning(
|
|
f"TransactionRecord SpendBundle ID: {record.spend_bundle.name()} not in mempool. "
|
|
f"(peer, included, error) list: {record.sent_to}"
|
|
)
|
|
continue
|
|
our_spend = False
|
|
for coin in record.removals:
|
|
if await self.wallet_state_manager.does_coin_belong_to_wallet(coin, self.id()):
|
|
our_spend = True
|
|
break
|
|
|
|
if our_spend is not True:
|
|
continue
|
|
|
|
for coin in record.additions:
|
|
if await self.wallet_state_manager.does_coin_belong_to_wallet(coin, self.id()):
|
|
addition_amount += coin.amount
|
|
|
|
return uint64(addition_amount)
|
|
|
|
def require_derivation_paths(self) -> bool:
|
|
return True
|
|
|
|
def puzzle_for_pk(self, pubkey: G1Element) -> Program:
|
|
return puzzle_for_pk(pubkey)
|
|
|
|
def puzzle_hash_for_pk(self, pubkey: G1Element) -> bytes32:
|
|
return puzzle_hash_for_pk(pubkey)
|
|
|
|
async def convert_puzzle_hash(self, puzzle_hash: bytes32) -> bytes32:
|
|
return puzzle_hash # Looks unimpressive, but it's more complicated in other wallets
|
|
|
|
async def puzzle_for_puzzle_hash(self, puzzle_hash: bytes32) -> Program:
|
|
public_key = await self.wallet_state_manager.get_public_key(puzzle_hash)
|
|
return puzzle_for_pk(G1Element.from_bytes(public_key))
|
|
|
|
def make_solution(
|
|
self,
|
|
primaries: list[CreateCoin],
|
|
conditions: tuple[Condition, ...] = tuple(),
|
|
fee: uint64 = uint64(0),
|
|
) -> Program:
|
|
assert fee >= 0
|
|
condition_list: list[Any] = [condition.to_program() for condition in conditions]
|
|
if len(primaries) > 0:
|
|
for primary in primaries:
|
|
condition_list.append(primary.to_program())
|
|
if fee:
|
|
condition_list.append(make_reserve_fee_condition(fee))
|
|
|
|
return solution_for_conditions(condition_list)
|
|
|
|
def add_condition_to_solution(self, condition: Program, solution: Program) -> Program:
|
|
python_program = solution.as_python()
|
|
python_program[1].append(condition)
|
|
return Program.to(python_program)
|
|
|
|
async def select_coins(
|
|
self,
|
|
amount: uint64,
|
|
action_scope: WalletActionScope,
|
|
) -> set[Coin]:
|
|
"""
|
|
Returns a set of coins that can be used for generating a new transaction.
|
|
Note: Must be called under wallet state manager lock
|
|
"""
|
|
spendable_amount: uint128 = await self.get_spendable_balance()
|
|
spendable_coins: list[WalletCoinRecord] = list(
|
|
await self.wallet_state_manager.get_spendable_coins_for_wallet(self.id(), in_one_block=True)
|
|
)
|
|
|
|
# Try to use coins from the store, if there isn't enough of "unused"
|
|
# coins use change coins that are not confirmed yet
|
|
unconfirmed_removals: dict[bytes32, Coin] = await self.wallet_state_manager.unconfirmed_removals_for_wallet(
|
|
self.id()
|
|
)
|
|
async with action_scope.use() as interface:
|
|
coins = await select_coins(
|
|
spendable_amount,
|
|
action_scope.config.adjust_for_side_effects(interface.side_effects).tx_config.coin_selection_config,
|
|
spendable_coins,
|
|
unconfirmed_removals,
|
|
self.log,
|
|
uint128(amount),
|
|
)
|
|
interface.side_effects.selected_coins.extend([*coins])
|
|
assert sum(c.amount for c in coins) >= amount
|
|
return coins
|
|
|
|
async def _generate_unsigned_transaction(
|
|
self,
|
|
amounts: list[uint64],
|
|
newpuzzlehashes: list[bytes32],
|
|
action_scope: WalletActionScope,
|
|
fee: uint64 = uint64(0),
|
|
origin_id: bytes32 | None = None,
|
|
coins: set[Coin] | None = None,
|
|
memos: list[list[bytes]] | None = None,
|
|
negative_change_allowed: bool = False,
|
|
puzzle_decorator_override: list[dict[str, Any]] | None = None,
|
|
extra_conditions: tuple[Condition, ...] = tuple(),
|
|
reserve_fee: uint64 | None = None,
|
|
preferred_change_puzzle_hash: bytes32 | None = None,
|
|
) -> list[CoinSpend]:
|
|
"""
|
|
Generates a unsigned transaction in form of List(Puzzle, Solutions)
|
|
Note: this must be called under a wallet state manager lock
|
|
"""
|
|
decorator_manager: PuzzleDecoratorManager = self.wallet_state_manager.decorator_manager
|
|
if puzzle_decorator_override is not None:
|
|
decorator_manager = PuzzleDecoratorManager.create(puzzle_decorator_override)
|
|
|
|
total_amount = sum(amounts) + fee
|
|
total_balance = await self.get_spendable_balance()
|
|
if coins is None:
|
|
if total_amount > total_balance:
|
|
raise ValueError(
|
|
f"Can't spend more than wallet balance: {total_balance} mojos, tried to spend: {total_amount} mojos"
|
|
)
|
|
coins = await self.select_coins(
|
|
uint64(total_amount),
|
|
action_scope,
|
|
)
|
|
|
|
assert len(coins) > 0
|
|
self.log.info(f"coins is not None {coins}")
|
|
spend_value = sum(coin.amount for coin in coins)
|
|
self.log.info(f"spend_value is {spend_value} and total_amount is {total_amount}")
|
|
change = spend_value - total_amount
|
|
if negative_change_allowed:
|
|
change = max(0, change)
|
|
|
|
assert change >= 0
|
|
|
|
spends: list[CoinSpend] = []
|
|
primary_announcement: AssertCoinAnnouncement | None = None
|
|
|
|
# Check for duplicates
|
|
all_primaries_list = list(zip(amounts, newpuzzlehashes))
|
|
if len(set(all_primaries_list)) != len(all_primaries_list):
|
|
raise ValueError("Cannot create two identical coins")
|
|
for coin in coins:
|
|
# Only one coin creates outputs
|
|
if origin_id in {None, coin.name()}:
|
|
origin_id = coin.name()
|
|
inner_puzzle = await self.puzzle_for_puzzle_hash(coin.puzzle_hash)
|
|
decorated_target_puzzle_hashes = [
|
|
decorator_manager.decorate_target_puzzle_hash(inner_puzzle, newpuzzlehash)
|
|
for newpuzzlehash in newpuzzlehashes
|
|
]
|
|
if memos is None:
|
|
memos = [[]] * len(amounts)
|
|
decorated_memos = [
|
|
decorator_manager.decorate_memos(inner_puzzle, newpuzzlehash, mems)
|
|
for newpuzzlehash, mems in zip(newpuzzlehashes, memos)
|
|
]
|
|
|
|
primaries = [
|
|
CreateCoin(decorated_target_puzzle_hash, amount, mems)
|
|
for decorated_target_puzzle_hash, amount, mems in zip(
|
|
decorated_target_puzzle_hashes, amounts, decorated_memos
|
|
)
|
|
]
|
|
target_primaries = [
|
|
CreateCoin(newpuzzlehash, amount, mems)
|
|
for newpuzzlehash, amount, mems in zip(newpuzzlehashes, amounts, decorated_memos)
|
|
]
|
|
|
|
if change > 0:
|
|
change_puzzle_hash = (
|
|
preferred_change_puzzle_hash
|
|
if preferred_change_puzzle_hash is not None
|
|
else await action_scope.get_puzzle_hash(self.wallet_state_manager)
|
|
)
|
|
for primary in primaries:
|
|
if change_puzzle_hash == primary.puzzle_hash and change == primary.amount:
|
|
if preferred_change_puzzle_hash is not None:
|
|
raise ValueError(
|
|
"A `preferred_change_puzzle_hash` was specified that would make a duplicate output"
|
|
)
|
|
# We cannot create two coins has same id, create a new puzhash for the change:
|
|
change_puzzle_hash = await action_scope.get_puzzle_hash(
|
|
self.wallet_state_manager, override_reuse_puzhash_with=False
|
|
)
|
|
break
|
|
primaries.append(CreateCoin(change_puzzle_hash, uint64(change)))
|
|
message_list: list[bytes32] = [c.name() for c in coins]
|
|
for primary in primaries:
|
|
message_list.append(Coin(coin.name(), primary.puzzle_hash, primary.amount).name())
|
|
message: bytes32 = std_hash(b"".join(message_list))
|
|
puzzle: Program = await self.puzzle_for_puzzle_hash(coin.puzzle_hash)
|
|
solution: Program = self.make_solution(
|
|
primaries=primaries,
|
|
fee=fee if reserve_fee is None else reserve_fee,
|
|
conditions=(*extra_conditions, CreateCoinAnnouncement(message)),
|
|
)
|
|
solution = decorator_manager.solve(inner_puzzle, target_primaries, solution)
|
|
primary_announcement = AssertCoinAnnouncement(asserted_id=coin.name(), asserted_msg=message)
|
|
|
|
spends.append(
|
|
make_spend(
|
|
coin, SerializedProgram.from_bytes(bytes(puzzle)), SerializedProgram.from_bytes(bytes(solution))
|
|
)
|
|
)
|
|
break
|
|
else:
|
|
raise ValueError("origin_id is not in the set of selected coins")
|
|
|
|
# Process the non-origin coins now that we have the primary announcement hash
|
|
for coin in coins:
|
|
if coin.name() == origin_id:
|
|
continue
|
|
puzzle = await self.puzzle_for_puzzle_hash(coin.puzzle_hash)
|
|
solution = self.make_solution(primaries=[], conditions=(primary_announcement,))
|
|
solution = decorator_manager.solve(puzzle, [], solution)
|
|
spends.append(
|
|
make_spend(
|
|
coin, SerializedProgram.from_bytes(bytes(puzzle)), SerializedProgram.from_bytes(bytes(solution))
|
|
)
|
|
)
|
|
|
|
self.log.debug(f"Spends is {spends}")
|
|
return spends
|
|
|
|
async def generate_signed_transaction(
|
|
self,
|
|
amounts: list[uint64],
|
|
puzzle_hashes: list[bytes32],
|
|
action_scope: WalletActionScope,
|
|
fee: uint64 = uint64(0),
|
|
coins: set[Coin] | None = None,
|
|
memos: list[list[bytes]] | None = None,
|
|
extra_conditions: tuple[Condition, ...] = tuple(),
|
|
**kwargs: Unpack[GSTOptionalArgs],
|
|
) -> None:
|
|
origin_id: bytes32 | None = kwargs.get("origin_id", None)
|
|
negative_change_allowed: bool = kwargs.get("negative_change_allowed", False)
|
|
puzzle_decorator_override: list[dict[str, Any]] | None = kwargs.get("puzzle_decorator_override", None)
|
|
reserve_fee: uint64 | None = kwargs.get("reserve_fee", None)
|
|
preferred_change_puzzle_hash: bytes32 | None = kwargs.get("preferred_change_puzzle_hash", None)
|
|
"""
|
|
Use this to generate transaction.
|
|
Note: this must be called under a wallet state manager lock
|
|
The first output is (amount, puzzle_hash, memos), and the rest of the outputs are in primaries.
|
|
"""
|
|
non_change_amount = uint64(sum(amounts))
|
|
if (
|
|
origin_id is not None
|
|
and action_scope.config.tx_config.coin_selection_config.primary_coin is not None
|
|
and origin_id != action_scope.config.tx_config.coin_selection_config.primary_coin
|
|
):
|
|
raise ValueError("`origin_id` must match `primary_coin` if both are specified")
|
|
elif origin_id is None:
|
|
origin_id = action_scope.config.tx_config.coin_selection_config.primary_coin
|
|
|
|
self.log.debug("Generating transaction for: %s %s %r", puzzle_hashes, amounts, coins)
|
|
transaction = await self._generate_unsigned_transaction(
|
|
amounts,
|
|
puzzle_hashes,
|
|
action_scope,
|
|
fee,
|
|
origin_id,
|
|
coins,
|
|
memos,
|
|
negative_change_allowed,
|
|
puzzle_decorator_override=puzzle_decorator_override,
|
|
extra_conditions=extra_conditions,
|
|
reserve_fee=reserve_fee,
|
|
preferred_change_puzzle_hash=preferred_change_puzzle_hash,
|
|
)
|
|
assert len(transaction) > 0
|
|
spend_bundle = WalletSpendBundle(transaction, G2Element())
|
|
|
|
add_list: list[Coin] = list(spend_bundle.additions())
|
|
rem_list: list[Coin] = list(spend_bundle.removals())
|
|
|
|
output_amount = sum(a.amount for a in add_list) + fee
|
|
input_amount = sum(r.amount for r in rem_list)
|
|
if negative_change_allowed:
|
|
assert output_amount >= input_amount
|
|
else:
|
|
assert output_amount == input_amount
|
|
|
|
to_ph = add_list[0].puzzle_hash if len(add_list) > 0 else bytes32.zeros
|
|
async with action_scope.use() as interface:
|
|
interface.side_effects.transactions.append(
|
|
self.wallet_state_manager.new_outgoing_transaction(
|
|
wallet_id=self.id(),
|
|
puzzle_hash=to_ph,
|
|
amount=uint64(non_change_amount),
|
|
fee=fee,
|
|
spend_bundle=spend_bundle,
|
|
additions=add_list,
|
|
removals=rem_list,
|
|
name=spend_bundle.name(),
|
|
extra_conditions=extra_conditions,
|
|
)
|
|
)
|
|
|
|
async def create_tandem_xch_tx(
|
|
self,
|
|
fee: uint64,
|
|
action_scope: WalletActionScope,
|
|
coins: set[Coin] | None = None,
|
|
extra_conditions: tuple[Condition, ...] = tuple(),
|
|
reserve_fee: uint64 | None = None,
|
|
preferred_change_puzzle_hash: bytes32 | None = None,
|
|
) -> None:
|
|
if action_scope.config.tx_config.primary_coin is not None:
|
|
raise ValueError("Using a primary coin is not supported for this wallet")
|
|
if coins is None:
|
|
coins = await self.select_coins(fee, action_scope)
|
|
await self.generate_signed_transaction(
|
|
[],
|
|
[],
|
|
action_scope,
|
|
fee=fee,
|
|
coins=coins,
|
|
extra_conditions=extra_conditions,
|
|
reserve_fee=reserve_fee,
|
|
preferred_change_puzzle_hash=preferred_change_puzzle_hash,
|
|
)
|
|
|
|
async def get_coins_to_offer(
|
|
self,
|
|
asset_id: bytes32 | None,
|
|
amount: uint64,
|
|
action_scope: WalletActionScope,
|
|
) -> set[Coin]:
|
|
if asset_id is not None:
|
|
raise ValueError(f"The standard wallet cannot offer coins with asset id {asset_id}")
|
|
balance = await self.get_spendable_balance()
|
|
if balance < amount:
|
|
raise Exception(f"insufficient funds in wallet {self.id()}")
|
|
# We need to sandbox this because this method isn't supposed to lock up the coins
|
|
async with self.wallet_state_manager.new_action_scope(action_scope.config.tx_config) as sandbox:
|
|
return await self.select_coins(amount, sandbox)
|
|
|
|
# WSChiaConnection is only imported for type checking
|
|
async def coin_added(self, coin: Coin, height: uint32, peer: WSChiaConnection, coin_data: object | None) -> None:
|
|
pass
|
|
|
|
def get_name(self) -> str:
|
|
return "Standard Wallet"
|
|
|
|
async def match_hinted_coin(self, coin: Coin, hint: bytes32) -> bool:
|
|
if hint == coin.puzzle_hash:
|
|
wallet_identifier: (
|
|
WalletIdentifier | None
|
|
) = await self.wallet_state_manager.puzzle_store.get_wallet_identifier_for_puzzle_hash(coin.puzzle_hash)
|
|
if wallet_identifier is not None and wallet_identifier.id == self.id():
|
|
return True
|
|
return False
|
|
|
|
def hardened_pubkey_for_path(self, path: list[int]) -> G1Element:
|
|
return _derive_path(self.wallet_state_manager.get_master_private_key(), path).get_g1()
|