Conversation
The page lists pending transactions from a single verbose getrawmempool call, sorted by fee rate, so it needs no per-transaction fetches and refreshes every 60s within hosted gateway rate limits.
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 mempool page (
/zec/mempool,/tzec/mempool) and shows the navbar mempool link on Zcash networks.The page gets every pending transaction from a single verbose
getrawmempoolcall and sorts them by fee rate. There are no per-transaction fetches. Pagination is client-side and the page refreshes every 60s, which keeps it within hosted gateway rate limits.Each row links to
/zec/mempool/:txid, which opens the transaction page.Related Issue
Part of #398. Stacked on #409.
Type of Change
Changes Made
ZcashMempoolPageshows the txid, age, size, fee and fee rate (zat/B) for each pending transaction. On narrow screens, age, size and fee rate are hidden; like the other explorer tables, the table scrolls horizontally, since.dash-tablekeeps a 600px minimum width.zec|tzec/mempoolandzec|tzec/mempool/:filter.NavbarLogonow shows the mempool link on Zcash networks too.zcashlocale strings for the mempool page in all 5 locales.e2e/tests/shared/mocked/zcash-mempool.spec.ts. The shared RPC mock now also serves a verbose mempool.Screenshots (if applicable)
Checked locally against mocked RPC data at desktop width and at 400px.
Checklist
npm run format:fixandnpm run lint:fixnpm run typecheckwith no errorsnpm run test:runAdditional Notes
sizeandfeebut no vsize or weight, so the fee rate is in zatoshis per byte.npm run test:run: 151 passing.