Query optimization + add new col for transaction in/out - #43
Merged
Conversation
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.
Note
Medium Risk
Home and search metrics switch data sources and filters, so dashboards and search results can diverge from the old aggregates; block reward rows depend on the null-hash immediate-transfer heuristic.
Overview
GraphQL operations are reshaped for cheaper reads and clearer block/search behavior, with this PR’s visible diff in the generated
gql.tsregistry.Home dashboard (
GetHomeChainStats) drops the old pattern of fourteen timestamp variables and per-dayblock_aggregate/transfer_aggregate/ distinctfrom_idcounts. It now takes$last24HourWhereonunified_transaction_aggregateand loads chart series fromdaily_chain_stats(blocks_count,tx_count,active_accounts) with$dayLimit.Global search replaces monolithic
SearchAllwithSearchHex,SearchNumeric, andSearchTextso each input shape hits a smaller query (e.g._likeon hashes/detail ids, numeric block height, accounts/errors only on text). Broadid/_iliketransaction matches are removed from the combined search path.Block detail (
GetBlockById) addsrewardTransfers: immediateunified_transactionrows with nullhashfor the block, includingfrom/tofor in/out display.Codegen no longer registers
GetUnifiedTransactions,GetRecentUnifiedTransactions, orGetUnifiedTransactionsStatshere (those operations are defined elsewhere, e.g. inline in the unified-transactions API with optimized totals).Reviewed by Cursor Bugbot for commit 48672ee. Configure here.