From 2a85249bc844c676a79d62225ed465aaa0e58a8c Mon Sep 17 00:00:00 2001 From: Alicia Gansley Date: Tue, 1 Oct 2024 09:59:19 -0400 Subject: [PATCH] Order Zora and Rodeo first for mobile mint ingesting --- src/ingestors/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ingestors/index.ts b/src/ingestors/index.ts index dbabfda..fda2eac 100644 --- a/src/ingestors/index.ts +++ b/src/ingestors/index.ts @@ -15,6 +15,8 @@ export type MintIngestionMap = { }; export const ALL_MINT_INGESTORS: MintIngestionMap = { + 'zora-internal': new ZoraInternalIngestor(), + rodeo: new RodeoIngestor(), 'prohibition-daily': new ProhibitionDailyIngestor(), fxhash: new FxHashIngestor(), manifold: new ManifoldIngestor(), @@ -22,9 +24,7 @@ export const ALL_MINT_INGESTORS: MintIngestionMap = { transient: new TransientIngestor(), highlight: new HighlightIngestor(), foundation: new FoundationIngestor(), - 'coinbase-wallet': new CoinbaseWalletIngestor(), - 'zora-internal': new ZoraInternalIngestor(), - rodeo: new RodeoIngestor(), + 'coinbase-wallet': new CoinbaseWalletIngestor() }; export * from './';