Skip to content

Commit

Permalink
Order Zora and Rodeo first for mobile mint ingesting
Browse files Browse the repository at this point in the history
  • Loading branch information
agans committed Oct 1, 2024
1 parent e317914 commit 2a85249
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ingestors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ 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(),
rarible: new RaribleIngestor(),
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 './';

0 comments on commit 2a85249

Please sign in to comment.