fix: use dedicated address UTXO endpoint - #2
Open
tolga-tom-nook wants to merge 1 commit into
Open
Conversation
Fix `Address.getAddressUTXO()` so it calls the dedicated `/address/utxo/{address}` endpoint instead of duplicating the unconfirmed-transactions endpoint.\n\nThe wrong endpoint returns a paginated transaction response, while `getAddressUTXO()` is typed as `AddressUTXOs`. Added a focused Jest test that verifies the requested URL and returned data.
This was referenced May 24, 2026
|
Maintainer review assist for the Bitgesell #81 improvement queue: This PR looks like a focused SDK correctness fix: Suggested merge checks:
Main acceptance criterion: UTXO callers should deterministically hit |
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.
Summary
Address.getAddressUTXO()to call/address/utxo/{address}Root cause / acceptance proof
On the upstream
mainbranch,getAddressUTXO()calls the exact same endpoint asgetUnconfirmedAddressTransactions():That endpoint returns a paginated transaction-list shape, not UTXOs. The live API exposes a dedicated UTXO endpoint and returns a distinct UTXO shape:
Validation
npx jest src/__tests__/address-utxo-endpoint.test.ts --runInBand --no-cachenpx tsc -p tsconfig.jsonnpm test -- --runInBand --no-cacheBounty note
Submitting as a focused SDK correctness fix for the Bitgesell bounty/improvement program, especially BitgesellOfficial/bitgesell#81. If approved for payout, USDT/EVM-compatible address:
0x4a76c7E64C08cF29B59eFC640b4ada97A270d428.Assisted by Hermes Agent.