sync: switch base from bitquery to cdp - #994
Closed
craigbidenbot[bot] wants to merge 5 commits into
Closed
Conversation
Enable cdp config, disable bitquery for base chain transfers.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Match the bitquery sync-state pattern on CDP so the cursor persists across runs, errors get recorded, and we skip the bitquery window to avoid log_index dupes (bitquery used Log.EnterIndex, CDP uses receipt log_index).
Allow passing a thunk for syncStateCutoverAt so the cutover anchors on deploy time, not a hardcoded UTC instant. base/cdp now uses () => new Date() so merging later doesn't leave a stale cutover in the past.
Hardcode to when Bitquery stopped indexing (3:20pm ET).
Reverted now that base/cdp uses a hardcoded cutover instant.
Member
|
Closing as obsolete: this was an emergency cutover for the 2026-06-21 Bitquery indexing outage, and it was never merged. Since then main has deliberately settled on Bitquery for Base sync ( |
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.
Summary
Switch the base chain transfer indexer from Bitquery to CDP. Just flips the
enabledflags on the two sync configs.Changes
sync/transfers/trigger/chains/evm/base/cdp/config.ts:enabled: false→truesync/transfers/trigger/chains/evm/base/bitquery/config.ts:enabled: true→falseTest Plan
*/5 * * * *cron and pulls base transfersRequested by @shafu0x in #craig-shafu.