Skip to content

Commit 2a85249

Browse files
committed
Order Zora and Rodeo first for mobile mint ingesting
1 parent e317914 commit 2a85249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ingestors/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ export type MintIngestionMap = {
1515
};
1616

1717
export const ALL_MINT_INGESTORS: MintIngestionMap = {
18+
'zora-internal': new ZoraInternalIngestor(),
19+
rodeo: new RodeoIngestor(),
1820
'prohibition-daily': new ProhibitionDailyIngestor(),
1921
fxhash: new FxHashIngestor(),
2022
manifold: new ManifoldIngestor(),
2123
rarible: new RaribleIngestor(),
2224
transient: new TransientIngestor(),
2325
highlight: new HighlightIngestor(),
2426
foundation: new FoundationIngestor(),
25-
'coinbase-wallet': new CoinbaseWalletIngestor(),
26-
'zora-internal': new ZoraInternalIngestor(),
27-
rodeo: new RodeoIngestor(),
27+
'coinbase-wallet': new CoinbaseWalletIngestor()
2828
};
2929

3030
export * from './';

0 commit comments

Comments
 (0)