Conversation
Fully shielded transactions explain that amounts are encrypted instead of rendering empty input and output columns. Fees come from value balances; transparent input values, which Zebra omits, are looked up on demand for at most 10 previous transactions.
12 tasks
MatiasOS
added this pull request to stack #414
September 15, 2026 00:17
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.
Description
Adds the Zcash transactions list (
/zec/txs) and transaction detail (/zec/tx/:filter) pages, plus theirtzecequivalents.The transaction page handles three things that make Zcash different from Bitcoin:
vinandvoutare both empty, the page explains that amounts and parties are encrypted. It doesn't render empty input and output columns.The transactions list pages client-side within a single block, which costs one
getblockcall. Newer/older block navigation works out the chain tip from the block's confirmations, so it needs no extra call.Related Issue
Part of #398. Stacked on #408.
Type of Change
Changes Made
ZcashTransactionsPage,ZcashTransactionPage,ZcashTransactionDisplayandZcashShieldedBundles.countPreviousTransactionsutil, with a unit test.labels.tsholding the typed i18n keys for pools and transaction kinds. The existing dashboard and block components now use it too.zec|tzec/txsandzec|tzec/tx/:filter.zcashlocale strings andtooltips.zcash.txin all 5 locales.e2e/tests/shared/mocked/zcash-transactions.spec.ts. The shared RPC mock now also serves transactions:Screenshots (if applicable)
Checked locally against mocked RPC data:
Checklist
npm run format:fixandnpm run lint:fixnpm run typecheckwith no errorsnpm run test:runAdditional Notes
36a167f6…, which is Ironwood only: 0.0001 ZEC.c973d2f1…, which uses Sapling and Ironwood: 0.0002 ZEC.717b54c3…has 15 transparent inputs, so the lookup stops at 10 and the page says so.npm run test:run: 151 passing.