A real-time monitoring dashboard for Checkpoint indexer infrastructure. This console provides visibility into the synchronization status of blockchain indexers across multiple networks and endpoints.
Checkpoint Console is a web-based monitoring tool that tracks the indexing progress of various blockchain networks. It compares indexed blocks against current chain heights to show synchronization status, speed, and estimated time to completion.
- Multi-chain Support: Monitor Ethereum, Base, Optimism, Arbitrum, Polygon, Starknet, and other networks
- Real-time Updates: Automatic refresh every 5 seconds with live block synchronization data
- Testnet & Mainnet: Separate tracking for production and test networks
- Multiple Endpoints: Monitor several Checkpoint API endpoints simultaneously
- Custom Endpoints: Add your own GraphQL endpoints for monitoring
- Persistent Configuration: Endpoint preferences saved in browser localStorage
- Expandable Views: Click endpoints to view detailed network-by-network status
- Progress Bars: Visual representation of sync progress for each network
- Color Coding:
- Green: Fully synchronized
- Yellow: Slightly behind (< 100 blocks)
- Red: Significantly behind (> 100 blocks)
- Sync Metrics: Displays blocks behind, sync percentage, and estimated time to sync
- Vue 3: Modern reactive framework with Composition API
- TypeScript: Type-safe development
- Vite: Fast build tooling and HMR
- Tailwind CSS: Utility-first styling
- GraphQL APIs: Queries Checkpoint indexer metadata
- RPC Providers: Fetches current block heights from blockchain nodes
- Starknet.js: Special handling for Starknet network interactions
- Node.js 16+
- Yarn
# Clone the repository
git clone [repository-url]
cd console
# Install dependencies
yarn install
# Start development server with hot reload
yarn dev
# The console will be available at http://localhost:5173
# Build optimized production bundle
yarn build
# Preview production build locally
yarn preview
- View Default Endpoints: The console starts with pre-configured Snapshot API endpoints
- Add Custom Endpoint: Click "Add custom endpoint..." and enter your GraphQL endpoint URL
- Monitor Status: Click on any endpoint to expand and view detailed network synchronization
- Track Progress: Watch real-time updates showing:
- Current vs indexed block numbers
- Number of blocks behind
- Synchronization percentage
- Estimated time to catch up
The console expects GraphQL endpoints that support the following query:
query {
_metadatas(where: { id: "last_indexed_block" }) {
id
value
indexer
}
}
Networks are identified by their indexer names:
eth
: Ethereum Mainnetsep
: Sepolia Testnetbase
: Base Networkoeth
: Optimismarb1
: Arbitrum Onematic
: Polygonsn
: Starknet Mainnet- And more...
This is an internal monitoring tool for Checkpoint Labs infrastructure. For questions or issues, please contact the development team.
MIT - see LICENSE file for details