ARTHASETU 2.0 — Financial Inclusion Platform
BUILD BANK 2026, IIT Delhi
ARTHASETU 2.0 is an adaptive financial inclusion platform built for BUILD BANK 2026 (Track 1: Financial Inclusion for the Underbanked). India has over 300 million credit-invisible gig workers — street vendors, domestic workers, delivery riders — who lack traditional credit histories despite having verifiable trust signals like rental payments, medical expenses, and bill payment histories. This project set out to bridge that gap by creating a system that could assess creditworthiness using alternative data, while simultaneously being accessible enough for first-time financial users who may never have interacted with a banking app before.
At the core of the platform is a statistical user-profiling engine that dynamically adapts the interface, guidance, and pacing for each user. Using K-Means clustering, the system segments users into behavioral cohorts and adjusts the onboarding flow accordingly — simpler language and larger buttons for first-time users, more advanced options for digitally literate ones. The credit scoring model combines XGBoost (achieving 99.5% AUC-ROC) with Random Forest for ensemble predictions, trained on a synthetic dataset that mimics real-world gig worker financial patterns. Feature engineering included payment regularity scores, expense volatility indices, and social trust signals derived from peer references.
Security was a first-class concern, not an afterthought. The platform implements a 10-layer post-quantum security stack: Zero-Knowledge Proofs (ZKP) allow users to prove creditworthiness without revealing raw financial data, Fully Homomorphic Encryption (FHE) enables computation on encrypted data so the server never sees plaintext, and Post-Quantum Cryptography (PQC) algorithms like CRYSTALS-Kyber and CRYSTALS-Dilithium protect against future quantum computing threats. This ensures that even if an adversary records encrypted traffic today, they cannot decrypt it once quantum computers become practical.
The project was built as a proof-of-concept for the hackathon but is designed with production in mind. The architecture separates the ML inference layer from the security layer, allowing either to be upgraded independently. Future work includes integrating with actual UPI transaction APIs, deploying the model on edge devices for offline scoring in rural areas, and adding multi-language support for Hindi, Bengali, and Tamil interfaces.
Mathematical & Computational Highlights
- Statistical user-profiling engine that dynamically adapts interface, guidance, and pacing for first-time financial users.
- Machine-learning credit scoring using XGBoost (99.5% AUC-ROC) and Random Forest.
- 10-layer post-quantum security stack including Zero-Knowledge Proofs (ZKP), Fully Homomorphic Encryption (FHE), and Post-Quantum Cryptography (PQC).