Bump evolution-sdk to 0.3.20 and remove local patch for reference script UTxOs#38
Merged
Merged
Conversation
Co-authored-by: SynthLuvr <131367121+SynthLuvr@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update to latest @evolution-sdk and remove local patch
Remove local patch: update @evolution-sdk/evolution to latest
Mar 2, 2026
Co-authored-by: SynthLuvr <131367121+SynthLuvr@users.noreply.github.com>
Copilot
AI
changed the title
Remove local patch: update @evolution-sdk/evolution to latest
Fix @noble/hashes v2.x blake2b import path
Mar 2, 2026
SynthLuvr
approved these changes
Mar 2, 2026
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.
This PR removes our local
patch-packageoverride for@evolution-sdk/evolution@0.3.19and upgrades to@evolution-sdk/evolution@^0.3.20, which includes the fix upstream.Background
We previously added
patches/@evolution-sdk__evolution@0.3.19.patchto fix an issue whereBlockfrostEffect.evaluateTxsilently dropped reference scripts fromadditionalUTxOs. When evaluating transactions that relied on unconfirmed reference script UTxOs, this could lead tomissingRequiredScriptserrors.That fix has since been merged upstream (IntersectMBO/evolution-sdk#168), so we no longer need to maintain the patch locally.
Changes
@evolution-sdk/evolutionfrom^0.3.19→^0.3.20patchedDependenciesentry frompnpm-workspace.yamlpatches/@evolution-sdk__evolution@0.3.19.patch@noble/hashesto^2.0.1and adjust theblake2bimport path (@noble/hashes/blake2b→@noble/hashes/blake2.js)es-toolkit,eslint,@eslint/js,@types/node), and cleanup ofonlyBuiltDependencieslistExpected impact
additionalUTxOs, preventingmissingRequiredScriptsin the previously failing scenario.