You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in the sync pipeline, we have no way of knowing how far we synced in a previous run. For backfilling contract events & epochs, we should keep a persistent table with that information:
sync_state
block_number: last synced block number
epoch: last synced epoch
slot: last synced slot
Interacting with this table should ideally be done in a transaction: we only update the sync_state when all other updates have been completed.
The text was updated successfully, but these errors were encountered:
Currently, in the sync pipeline, we have no way of knowing how far we synced in a previous run. For backfilling contract events & epochs, we should keep a persistent table with that information:
sync_state
block_number
: last synced block numberepoch
: last synced epochslot
: last synced slotInteracting with this table should ideally be done in a transaction: we only update the sync_state when all other updates have been completed.
The text was updated successfully, but these errors were encountered: