Files
LexiChain/docs/lexichain-full-system.md
2026-05-03 13:26:31 +01:00

5.5 KiB

LexiChain: Intelligent BFSI Contract Management System

🌟 The Platform Vision

LexiChain is a state-of-the-art enterprise platform designed specifically for the BFSI (Banking, Financial Services, and Insurance) sector. The core objective is to solve the historical problem of "Information Silos" and "Trust Gaps" in contract management.

In the traditional world, insurance policies and bank loans are long, complex, and opaque. LexiChain uses Generative AI to make these documents "conversational" and Blockchain Technology to make them "tamper-proof."


🏗️ System Architecture

The platform follows a Modular Full-Stack Architecture designed for scalability, security, and high performance. It is divided into three distinct layers:

1. The Presentation Layer (Frontend)

Built with React and Next.js, the interface provides a "Premium Executive" experience. It is fully responsive, theme-aware, and designed for high-density information display. It uses Server Components for fast loading and Client Components for interactive elements like the AI Chat and Blockchain Explorer.

2. The Intelligence & Processing Layer (Backend)

This is the "Brain" of LexiChain. It handles:

  • Authentication: Managed by Clerk, providing enterprise-grade security and multi-factor authentication.
  • File Orchestration: Securely handling document uploads and cloud storage.
  • AI Pipeline: Converting raw PDF data into structured knowledge.
  • Blockchain Bridge: Acting as a middleware between the web app and the decentralized network.

3. The Persistence Layer (Database)

We use a PostgreSQL database managed by Prisma ORM. This stores all user metadata, contract details, and the historical "Audit Trail" of blockchain transactions.


🤖 Core Pillar 1: AI & Retrieval-Augmented Generation (RAG)

LexiChain doesn't just "read" your contracts; it "understands" them. We implement a pattern called RAG (Retrieval-Augmented Generation).

How it works:

  1. Ingestion & Parsing: When a contract is uploaded, our AI service (powered by Google Gemini) breaks the document down into small "semantic chunks."
  2. Vector Indexing: These chunks are indexed based on their meaning.
  3. Contextual Retrieval: When you ask a question like "Does this policy cover water damage?", the system doesn't search for keywords. It searches for Concepts.
  4. Informed Response: The AI retrieves the relevant sections of your contract and uses them as "facts" to generate a precise, grounded answer. This eliminates "hallucinations" and ensures 100% accuracy based on your actual document.

🔗 Core Pillar 2: The Blockchain Trust Layer

In the BFSI industry, "when" and "what" was signed is everything. LexiChain uses an Ethereum-based Smart Contract to establish absolute trust.

The Problem it Solves:

If a user and a bank have a dispute, the bank could theoretically change the digital contract in their database. LexiChain prevents this through Immutable Proof-of-Deposit.

Key Concepts Implemented:

  • Cryptographic Fingerprinting (Hashing): We generate a unique SHA-256 hash of the contract. This fingerprint is mathematically tied to every single character in the document.
  • Smart Contract Execution: The platform automatically sends this fingerprint to a Solidity Smart Contract on the blockchain.
  • Immutable Timestamping: Once the transaction is "mined," it is given a permanent timestamp by the network. This provides an indisputable proof that the document existed in that exact state on that specific date.
  • Decentralized Verification: Anyone with the file can verify it against the blockchain record. If even one comma is changed in the PDF, the verification will fail.

🔄 The Integrated Workflow (The App Journey)

  1. Upload: The user securely uploads a contract (Insurance policy, Loan agreement, etc.).
  2. AI Extraction: The AI immediately extracts key data points (Expiration date, Total value, Involved parties) to populate the dashboard.
  3. Semantic Indexing: The document is prepared for the RAG-based Chat interface.
  4. On-Chain Registration: Simultaneously, the system computes the document's hash and registers it on the blockchain.
  5. Interaction: The user can now "Chat" with their document or verify its "Blockchain Status" via the Explorer.

🛠️ The Technology Stack

  • Frontend/Backend Framework: Next.js 15+ (App Router).
  • Styling: TailwindCSS with Custom Framer Motion animations.
  • Database: PostgreSQL with Prisma ORM.
  • AI Engine: Google Gemini Pro (Vision & Text).
  • Blockchain Environment: Hardhat (Local) & Sepolia (Public Testnet).
  • Smart Contract Language: Solidity 0.8.24.
  • Blockchain Integration: Ethers.js v6.
  • File Storage: UploadThing.
  • Security/Auth: Clerk Auth.

📈 Software Engineering Principles Used

  • Separation of Concerns: The AI, Blockchain, and Core Business logic are kept in separate services to prevent "God Objects."
  • Idempotency: Blockchain registrations are designed to be idempotent (you can't register the same hash twice).
  • Graceful Degradation: If the blockchain network is down, the AI and Core App features continue to work normally.
  • Data Integrity: Using SHA-256 ensures that the data being audited is exactly the data that was signed.
  • Scalability: The RAG architecture allows the system to handle thousands of documents without slowing down the AI responses.