"Web data you can prove"
IndexNode is a production-grade blockchain infrastructure platform for indexing, verifying, and monetizing on-chain data.
- ✅ Blockchain Event Indexing - Real-time indexing of smart contract events
- ✅ On-Chain Timestamping - Cryptographic proof of data existence
- ✅ IPFS Storage - Decentralized content persistence
- ✅ AI-Powered Extraction - Claude API integration for intelligent data parsing
- ✅ Token Credits System - ERC-20 payment infrastructure
- ✅ Distributed Workers - Horizontal scaling with Redis
- ✅ Advanced Crawler - Chrome headless with CAPTCHA solving
- ✅ Data Marketplace - Buy/sell indexed datasets with escrow
- ✅ GraphQL API - Modern developer experience with WebSocket subscriptions
- ✅ Prometheus Metrics - Production observability
┌─────────────┐ ┌──────────────┐ ┌─────────────┐
│ GraphQL │────▶│ API Server │────▶│ PostgreSQL │
│ Endpoint │ │ (Axum) │ │ │
└─────────────┘ └──────────────┘ └─────────────┘
│
▼
┌──────────────┐
│ Redis │
│ (Job Queue) │
└──────────────┘
│
▼
┌──────────────┐
│ Workers │
│ (Distributed)│
└──────────────┘
│
┌──────────────┼──────────────┐
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│Ethereum │ │ IPFS │ │ Claude │
│ RPC │ │ │ │ API │
└──────────┘ └──────────┘ └──────────┘
- Rust 1.75+
- Docker & Docker Compose
- PostgreSQL 15+
- Redis 7+
git clone https://github.com/ChronoCoders/indexnode.git
cd indexnode
# Copy environment template
cp .env.example .env
# Configure your environment variables
# - Database credentials
# - Ethereum RPC endpoints
# - API keys (Anthropic, Pinata, 2captcha)
# Run migrations
sqlx migrate run
# Start services
cargo run --bin indexnode-api cd deploy
docker-compose up -d http://localhost:8080/graphql
Example Query:
query {
blockchainEvents(contractAddress: "0x...", limit: 10) {
id
eventName
blockNumber
transactionHash
}
} Example Mutation:
mutation {
createBlockchainJob(input: {
chain: "ethereum"
contractAddress: "0x..."
events: ["Transfer", "Swap"]
fromBlock: 18000000
}) {
id
status
}
} GET /health- Health checkPOST /api/v1/verify- Verify content hashGET /metrics- Prometheus metrics
See DEPLOYMENT.md for comprehensive deployment guide.
- Argon2 password hashing
- Rate limiting (10 req/s)
- Input validation on all endpoints
- SQL injection prevention
- Account lockout after failed attempts
Prometheus metrics available at /metrics:
http_requests_totalblockchain_events_indexedai_extractions_performedactive_workersqueue_depth
MIT License - see LICENSE
- Documentation: https://docs.indexnode.io
- GitHub Issues: https://github.com/ChronoCoders/indexnode/issues
- Email: support@indexnode.io