chore: bump tx3-resolver/tx3-cardano to 0.23.0#28
Merged
Conversation
Catch the TRP adapter up from 0.16.2 (seven minors behind) to 0.23.0 so a Hydra-backed endpoint resolves arguments of aggregate types (record/ list/tuple/map) via the resolver's self-describing tagged wire form. Bare scalar args are decoded exactly as before. Pulls tx3-tir 0.19.0. The only API break across the jump: `UtxoSet` is now a distinct struct (was a `HashSet<Utxo>` alias) — `fetch_utxos` converts via `.into()`. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Fold the inner `tx_id == hash` checks into match-arm guards on the TxInvalid/TxValid arms (clippy::collapsible_match). A failing guard falls through to the existing no-op `_ =>` arm, so the loop semantics are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Bumps
tx3-resolverandtx3-cardano0.16.2→0.23.0(pullstx3-tir 0.19.0transitively), catching the Hydra TRP adapter up after seven minors of lag.Why
The 0.23.0 resolver binds an argument of an aggregate type (record,
List,Map,Tuple) from a self-describing single-key tagged wire form, decoded without a schema. So a Hydra-backed TRP endpoint can now resolve complex arguments instead of returningtarget type not supported. Bare/scalar args are decoded exactly as before — existing clients are unaffected.Changes
tx3_resolver::UtxoSetis now a distinct struct (previously aHashSet<Utxo>alias).UtxoStore::fetch_utxosconverts its accumulated set via.into().Cargo.lockdiff is transitive-dependency churn from the seven-minor jump, not direct deps.Verification
cargo buildclean against the published0.23.0crates.cargo testgreen.Dependency pins + the one adapter fix; no service version bump (deploy-time concern).
🤖 Generated with Claude Code