76: Add indexing of ExecutionPayloads (and other Merge-related updates). #73
No reviewers
Labels
No Label
backlog
beacon
bug
critical
documentation
duplicate
enhancement
epic
feature
good first issue
help wanted
in review
invalid
question
test
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/ipld-eth-beacon-indexer#73
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "telackey/the_merge"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR:
Updates or replaces outdated dependencies (eg, replacing a version of the Prysm client with the latest zrnt).
Add support for parsing Bellatrix-era BeaconState and BeaconBlocks
Adds flags for toggling the processing of BeaconBlocks and BeaconState. This is particularly important because processing and storing the BeaconState at this time would be too expensive to really do (see: https://github.com/vulcanize/ipld-eth-beacon-indexer/issues/75 and https://github.com/vulcanize/ipld-eth-beacon-indexer/issues/71)
Fixes flaky event handling. The previous code would not reconnect in the case of errors with the SSE connection. This enables automatic reconnection in the case of error (default in the updated v2 SSE library dependency), and also adds a timeout so that if no event is received in 2.5x the block time, the SSE connection is closed and re-established.
Other refactoring and cleanup (eg, changing the type of slot from int to Slot (uint64)).