feat(abstract-utxo): migrate to wasm-utxo and use coin name instead of network#7903
Merged
OttoAllmendinger merged 4 commits intomasterfrom Jan 28, 2026
Merged
feat(abstract-utxo): migrate to wasm-utxo and use coin name instead of network#7903OttoAllmendinger merged 4 commits intomasterfrom
OttoAllmendinger merged 4 commits intomasterfrom
Conversation
bfef631 to
299f4ad
Compare
Replace usages of utxolib.address with wasmAddress throughout test files for improved performance and consistency. This change: - Updates address functionality to use @bitgo/wasm-utxo address module - Adapts function signatures to work with CoinName instead of Network - Maintains compatibility with existing test cases - Reduces dependency on legacy utxolib code Issue: BTC-2916 Co-authored-by: llm-git <llm-git@ttll.de>
Refactor chain determination to use coin name instead of deprecated direct network usage. This approach is more consistent and avoids accessing internal network objects directly. Issue: BTC-2916 Co-authored-by: llm-git <llm-git@ttll.de>
Use wasm-utxo module's fixed script wallet functionality for address generation. Convert types and chain codes to work with the wasm implementation. Issue: BTC-2916 Co-authored-by: llm-git <llm-git@ttll.de>
299f4ad to
6215189
Compare
Simplify FixedScriptAddressCoinSpecific by removing redeem and witness script fields, which are no longer needed with the WASM implementation. Also update parameter type to use WalletKeysArg from wasm-utxo instead of the deprecated bitgo.RootWalletKeys. Issue: BTC-2916 Co-authored-by: llm-git <llm-git@ttll.de>
6215189 to
a71a702
Compare
davidkaplanbitgo
approved these changes
Jan 28, 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 includes two main changes to the abstract-utxo module:
Migrating from utxolib to wasm-utxo address module:
Refactoring chain determination to use coin name instead of deprecated
direct network usage:
BTC-2916