frontend/backend: show outputs as individual row for receive transactions #2843
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.
Closes: #1728
Display each output of a receive transaction as one transaction in the app. The outputs data is only added to the endpoint response if the transaction is of type receive. Non-utxo model transactions e.g. ETH will just contain a single item in the
outputs
field which is weird but fine imo.In the current implementation the index used for the note key (
txid:idx
) is set/defined by the order of theAdresses
in theTransactionData
struct returned bytxInfo
(here)outputs
field right now kind of implies that we are dealing with the actualoutpoint
/output index of the transaction which is not true and could be confusing when working on the code after some time.Probably it would be better to add
index
toTransactionOutput
and actually set it to the transactions output index and then use that in the frontend. Let me know if you think the current implementation is fine or if I should change that.