Help with Serializing Block
for use in indexing
#1402
Unanswered
0xForerunner
asked this question in
Q&A
Replies: 1 comment
-
perhaps I could query both |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So first some context. I'm looking to build a partial indexer where I only index transactions from certain contract addresses.
Naturally
tx_search
andblock_search
seem like good contenders except:/tx_search
doesn't contain information I need like block time.block_search
returns transactions that are not fully deserialized.I'm assuming there is some way to deserialize the
data
field into a more useable form, but It's not clear to me how. When we look at the response fromblock_results
we get all the nice information, except now we're missing the headers.I'm certain there has got to be a good way to do this. Any help would be appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions