Skip to content

Commit

Permalink
Add wallet.coinbase ingestor
Browse files Browse the repository at this point in the history
  • Loading branch information
pbkompasz committed Jul 30, 2024
1 parent f001c69 commit b4c654d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ingestors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { FxHashIngestor } from './fxhash';
import { HighlightIngestor } from './highlight';
import { TransientIngestor } from './transient-base';
import { FoundationIngestor } from './foundation';
import { CoinbaseWalletIngestor } from './coinbase-wallet';

export type MintIngestionMap = {
[key: string]: MintIngestor;
Expand All @@ -15,6 +16,7 @@ export const ALL_MINT_INGESTORS: MintIngestionMap = {
highlight: new HighlightIngestor(),
transient: new TransientIngestor(),
foundation: new FoundationIngestor(),
'coinbase-wallet': new CoinbaseWalletIngestor(),
};

export * from './';

0 comments on commit b4c654d

Please sign in to comment.