Mint Indexer
The Mint indexer is a service that indexes on-chain data from the Factory and Mint contracts to provide fast and efficient data access for clients.
Overview
The indexer uses Ponder as its core engine, providing real-time and historical blockchain data indexing. Data is stored in PostgreSQL using the Drizzle ORM, enabling powerful queries and data relationships.
The indexer:
- Tracks all collections created through Factory contracts
- Indexes minted artifacts and their metadata
- Maintains ownership records for all artifacts
- Resolves and caches ENS profile data
- Exposes a GraphQL API for clients to query indexed data
- Provides a dedicated profiles endpoint for user profile management
Architecture
The indexer consists of several components:
Event Handlers
Event handlers process blockchain events from the Factory and Mint contracts:
- Factory: Creation of new collections and collection updates
- Mint: Artifact minting, transfers, and metadata updates
Database
The indexer uses a relational database structure to maintain relationships between:
- Accounts (creators and collectors)
- Collections
- Artifacts (minted tokens)
- Ownership records
- Profile data
API Layer
The indexer exposes two API interfaces:
- GraphQL API at the root domain for querying indexed data
- Profiles REST API at
/profiles/:id
for looking up and updating user profiles by Ethereum address or ENS domain
How It Works
When a new collection is created or an artifact is minted, the indexer:
- Detects the relevant on-chain event
- Processes the event data
- Updates the database
- Makes the new data available via the GraphQL API
For profile data, the indexer:
- Resolves ENS names to addresses and vice versa
- Fetches and caches associated profile metadata
- Provides profile data through the dedicated
/profiles/:id
endpoint
Getting Started
To set up and run the indexer locally:
cd indexer
pnpm install
pnpm dev
For deployment and configuration options, see the Setup Guide.