Pre-Final Backup
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
### The Problem (in simple terms)
|
||||
|
||||
When a client sends an insurance claim or uploads a contract, they need **proof** that they submitted it on a specific date. Without proof:
|
||||
|
||||
- The insurance company could claim "we never received it"
|
||||
- Deadlines could be disputed
|
||||
- There's no transparency
|
||||
@@ -40,6 +41,7 @@ When a client sends an insurance claim or uploads a contract, they need **proof*
|
||||
A **blockchain** is like a public, tamper-proof notebook. Once you write something in it, **nobody can erase or modify it** — not even the person who wrote it.
|
||||
|
||||
We use the blockchain as a **digital notary**:
|
||||
|
||||
1. We take the uploaded contract PDF
|
||||
2. We create a unique **fingerprint** (hash) of that file
|
||||
3. We write that fingerprint into the blockchain with a timestamp
|
||||
@@ -50,11 +52,13 @@ We use the blockchain as a **digital notary**:
|
||||
### What is a Smart Contract?
|
||||
|
||||
A **smart contract** is a program that runs on the blockchain. Think of it as a vending machine:
|
||||
|
||||
- You put in a coin (send a transaction)
|
||||
- The machine executes its programmed logic
|
||||
- The result is permanent and visible to everyone
|
||||
|
||||
Our smart contract (`DocumentRegistry.sol`) has two main functions:
|
||||
|
||||
- **Register**: Store a document fingerprint with a timestamp
|
||||
- **Verify**: Check if a fingerprint exists and when it was stored
|
||||
|
||||
@@ -64,14 +68,14 @@ Our smart contract (`DocumentRegistry.sol`) has two main functions:
|
||||
|
||||
### Features Implemented
|
||||
|
||||
| Feature | Description |
|
||||
|---------|-------------|
|
||||
| **Auto-Registration** | After AI analyzes a contract, its hash is automatically registered on-chain |
|
||||
| **Manual Registration** | Users can register unregistered contracts via the Blockchain Explorer |
|
||||
| **Document Verification** | Paste any document hash to check if it exists on-chain |
|
||||
| **Transaction Explorer** | View all blockchain transactions with details |
|
||||
| **Network Stats** | Live stats: verified documents, latest block, network status |
|
||||
| **Proof Badges** | Contract list shows which contracts are blockchain-verified |
|
||||
| Feature | Description |
|
||||
| ------------------------- | --------------------------------------------------------------------------- |
|
||||
| **Auto-Registration** | After AI analyzes a contract, its hash is automatically registered on-chain |
|
||||
| **Manual Registration** | Users can register unregistered contracts via the Blockchain Explorer |
|
||||
| **Document Verification** | Paste any document hash to check if it exists on-chain |
|
||||
| **Transaction Explorer** | View all blockchain transactions with details |
|
||||
| **Network Stats** | Live stats: verified documents, latest block, network status |
|
||||
| **Proof Badges** | Contract list shows which contracts are blockchain-verified |
|
||||
|
||||
### What Happens When a User Uploads a Contract?
|
||||
|
||||
@@ -80,6 +84,7 @@ User uploads PDF → AI analyzes it → Blockchain registers the hash
|
||||
```
|
||||
|
||||
The entire flow is automatic. The user doesn't need:
|
||||
|
||||
- ❌ MetaMask or any wallet
|
||||
- ❌ Cryptocurrency knowledge
|
||||
- ❌ To pay anything
|
||||
@@ -129,10 +134,10 @@ flowchart TD
|
||||
|
||||
### Network Modes
|
||||
|
||||
| Mode | When | URL | Cost |
|
||||
|------|------|-----|------|
|
||||
| **Hardhat** | Development | `http://127.0.0.1:8545` | Free (local) |
|
||||
| **Sepolia** | Demo/Presentation | Via Alchemy/Infura RPC | Free (testnet) |
|
||||
| Mode | When | URL | Cost |
|
||||
| ----------- | ----------------- | ----------------------- | -------------- |
|
||||
| **Hardhat** | Development | `http://127.0.0.1:8545` | Free (local) |
|
||||
| **Sepolia** | Demo/Presentation | Via Alchemy/Infura RPC | Free (testnet) |
|
||||
|
||||
The mode is controlled by a single env variable: `BLOCKCHAIN_NETWORK`.
|
||||
|
||||
@@ -178,12 +183,14 @@ flowchart LR
|
||||
```
|
||||
|
||||
#### `registerDocument(bytes32 _docHash)`
|
||||
|
||||
- **Purpose**: Store a document hash on-chain
|
||||
- **Access**: Only the contract owner (our server wallet)
|
||||
- **Guard**: Prevents duplicate registration (same hash can't be registered twice)
|
||||
- **Event**: Emits `DocumentRegistered` for off-chain indexing
|
||||
|
||||
#### `verifyDocument(bytes32 _docHash)`
|
||||
|
||||
- **Purpose**: Check if a hash exists and get its details
|
||||
- **Cost**: Free (read-only, no gas)
|
||||
- **Returns**: `(exists, timestamp, depositor)`
|
||||
@@ -231,6 +238,7 @@ flowchart LR
|
||||
### Why Server-Side?
|
||||
|
||||
Most blockchain dApps require users to install MetaMask and sign transactions. This is bad UX for a BFSI enterprise platform because:
|
||||
|
||||
- Users shouldn't need crypto knowledge
|
||||
- The platform manages documents, not individual users
|
||||
- Server-side signing is more reliable
|
||||
@@ -260,14 +268,14 @@ sequenceDiagram
|
||||
|
||||
### Key Methods
|
||||
|
||||
| Method | Purpose | Gas Cost |
|
||||
|--------|---------|----------|
|
||||
| `hashDocument(fileUrl)` | Download file + compute SHA-256 | None (off-chain) |
|
||||
| `registerOnChain(hash, fileName)` | Send tx to smart contract | ~50,000 gas |
|
||||
| `verifyOnChain(hash)` | Read-only check | Free |
|
||||
| `hashAndRegister(fileUrl, fileName)` | Combined: hash + register | ~50,000 gas |
|
||||
| `getNetworkStats()` | Get block number, total docs | Free |
|
||||
| `isConfigured()` | Check if env vars are set | None |
|
||||
| Method | Purpose | Gas Cost |
|
||||
| ------------------------------------ | ------------------------------- | ---------------- |
|
||||
| `hashDocument(fileUrl)` | Download file + compute SHA-256 | None (off-chain) |
|
||||
| `registerOnChain(hash, fileName)` | Send tx to smart contract | ~50,000 gas |
|
||||
| `verifyOnChain(hash)` | Read-only check | Free |
|
||||
| `hashAndRegister(fileUrl, fileName)` | Combined: hash + register | ~50,000 gas |
|
||||
| `getNetworkStats()` | Get block number, total docs | Free |
|
||||
| `isConfigured()` | Check if env vars are set | None |
|
||||
|
||||
### Graceful Degradation
|
||||
|
||||
@@ -424,6 +432,7 @@ sequenceDiagram
|
||||
participant SA as Server Action
|
||||
participant AI as AI Service
|
||||
participant BS as BlockchainService
|
||||
participant ES as EmailService
|
||||
participant SC as Smart Contract
|
||||
participant DB as PostgreSQL
|
||||
|
||||
@@ -446,6 +455,8 @@ sequenceDiagram
|
||||
|
||||
SA->>DB: Save txHash, blockNumber, etc.
|
||||
SA->>DB: Create BlockchainTransaction
|
||||
SA->>ES: Send analysis + blockchain proof email
|
||||
ES-->>U: Email received (or Ethereal preview in dev)
|
||||
SA-->>UI: Success!
|
||||
|
||||
Note over U,UI: User visits /blockchain
|
||||
@@ -470,6 +481,7 @@ sequenceDiagram
|
||||
## 10. How to Run Locally
|
||||
|
||||
### Prerequisites
|
||||
|
||||
- Node.js installed
|
||||
- The Next.js app running (`npm run dev`)
|
||||
|
||||
@@ -562,6 +574,7 @@ npx hardhat run scripts/deploy.ts --network sepolia
|
||||
### Step 5: Verify on Etherscan
|
||||
|
||||
After deploying, transactions will have real Etherscan links:
|
||||
|
||||
```
|
||||
https://sepolia.etherscan.io/tx/0x...
|
||||
```
|
||||
@@ -570,19 +583,20 @@ https://sepolia.etherscan.io/tx/0x...
|
||||
|
||||
## 12. Technology Choices & Rationale
|
||||
|
||||
| Technology | Why We Chose It |
|
||||
|-----------|----------------|
|
||||
| **Solidity 0.8.24** | Latest stable version with built-in overflow protection |
|
||||
| **Hardhat** | Industry standard for Solidity development, free local blockchain |
|
||||
| **ethers.js v6** | Modern, lightweight, TypeScript-native Ethereum library |
|
||||
| **SHA-256** | Standard cryptographic hash, deterministic, collision-resistant |
|
||||
| **Server-side wallet** | Users don't need MetaMask; enterprise-grade UX |
|
||||
| **Sepolia testnet** | Official Ethereum testnet, free, has Etherscan explorer |
|
||||
| **Graceful degradation** | Blockchain is optional; app works perfectly without it |
|
||||
| Technology | Why We Chose It |
|
||||
| ------------------------ | ----------------------------------------------------------------- |
|
||||
| **Solidity 0.8.24** | Latest stable version with built-in overflow protection |
|
||||
| **Hardhat** | Industry standard for Solidity development, free local blockchain |
|
||||
| **ethers.js v6** | Modern, lightweight, TypeScript-native Ethereum library |
|
||||
| **SHA-256** | Standard cryptographic hash, deterministic, collision-resistant |
|
||||
| **Server-side wallet** | Users don't need MetaMask; enterprise-grade UX |
|
||||
| **Sepolia testnet** | Official Ethereum testnet, free, has Etherscan explorer |
|
||||
| **Graceful degradation** | Blockchain is optional; app works perfectly without it |
|
||||
|
||||
### Why NOT Web3j / Java?
|
||||
|
||||
The original project spec suggested Web3j (Java library). We chose ethers.js instead because:
|
||||
|
||||
1. Our backend is **Next.js/TypeScript**, not Spring Boot
|
||||
2. ethers.js has **better TypeScript support** and is more actively maintained
|
||||
3. Both libraries do the same job — interact with Ethereum — but ethers.js is native to our stack
|
||||
@@ -592,64 +606,70 @@ The original project spec suggested Web3j (Java library). We chose ethers.js ins
|
||||
## 13. File Reference
|
||||
|
||||
### Smart Contract Layer
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
|
||||
| File | Purpose |
|
||||
| ------------------------------------------- | ----------------------- |
|
||||
| `blockchain/contracts/DocumentRegistry.sol` | Solidity smart contract |
|
||||
| `blockchain/test/DocumentRegistry.test.ts` | 14 comprehensive tests |
|
||||
| `blockchain/scripts/deploy.ts` | Deployment script |
|
||||
| `blockchain/hardhat.config.ts` | Hardhat configuration |
|
||||
| `blockchain/package.json` | Hardhat dependencies |
|
||||
| `blockchain/test/DocumentRegistry.test.ts` | 14 comprehensive tests |
|
||||
| `blockchain/scripts/deploy.ts` | Deployment script |
|
||||
| `blockchain/hardhat.config.ts` | Hardhat configuration |
|
||||
| `blockchain/package.json` | Hardhat dependencies |
|
||||
|
||||
### Service Layer
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
|
||||
| File | Purpose |
|
||||
| ------------------------------------ | ---------------------------- |
|
||||
| `lib/services/blockchain.service.ts` | Core blockchain interactions |
|
||||
| `lib/services/blockchain.types.ts` | TypeScript type definitions |
|
||||
| `lib/services/blockchain.types.ts` | TypeScript type definitions |
|
||||
|
||||
### Server Actions
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `features/blockchain/api/blockchain.action.ts` | Blockchain server actions |
|
||||
| `features/contracts/api/contract.action.ts` | Updated with auto-registration |
|
||||
|
||||
| File | Purpose |
|
||||
| ---------------------------------------------- | ------------------------------ |
|
||||
| `features/blockchain/api/blockchain.action.ts` | Blockchain server actions |
|
||||
| `features/contracts/api/contract.action.ts` | Updated with auto-registration |
|
||||
|
||||
### Frontend
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `app/(dashboard)/blockchain/page.tsx` | Blockchain Explorer page |
|
||||
| `app/(dashboard)/blockchain/layout.tsx` | Page metadata |
|
||||
| `components/layout/navigation.tsx` | Updated with blockchain link |
|
||||
|
||||
| File | Purpose |
|
||||
| --------------------------------------- | ---------------------------- |
|
||||
| `app/(dashboard)/blockchain/page.tsx` | Blockchain Explorer page |
|
||||
| `app/(dashboard)/blockchain/layout.tsx` | Page metadata |
|
||||
| `components/layout/navigation.tsx` | Updated with blockchain link |
|
||||
|
||||
### Database
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
|
||||
| File | Purpose |
|
||||
| ---------------------- | ------------------------------ |
|
||||
| `prisma/schema.prisma` | Updated with blockchain fields |
|
||||
|
||||
### Configuration
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `.env` | Blockchain env vars |
|
||||
| `.env.example` | Template for new developers |
|
||||
| `.gitignore` | Blockchain artifacts excluded |
|
||||
|
||||
| File | Purpose |
|
||||
| -------------- | ----------------------------- |
|
||||
| `.env` | Blockchain env vars |
|
||||
| `.env.example` | Template for new developers |
|
||||
| `.gitignore` | Blockchain artifacts excluded |
|
||||
|
||||
---
|
||||
|
||||
## Glossary
|
||||
|
||||
| Term | Definition |
|
||||
|------|-----------|
|
||||
| **Hash** | A fixed-size fingerprint of data. Same input → same output. |
|
||||
| **SHA-256** | A specific hash algorithm producing 256-bit (32-byte) outputs |
|
||||
| **Smart Contract** | A program stored on the blockchain that executes automatically |
|
||||
| **Gas** | The fee for executing operations on Ethereum (free on testnet) |
|
||||
| **Block** | A batch of transactions grouped together on the blockchain |
|
||||
| **Transaction (Tx)** | A single operation on the blockchain (e.g., registering a hash) |
|
||||
| **Tx Hash** | A unique identifier for a transaction (like a receipt number) |
|
||||
| **Block Number** | The sequential number of the block containing a transaction |
|
||||
| **Block Timestamp** | The time the block was created (proof of when the tx happened) |
|
||||
| **Private Key** | Secret key used to sign transactions (like a password) |
|
||||
| **Address** | Public identifier derived from the private key (like a username) |
|
||||
| **ABI** | Application Binary Interface — the "API spec" of a smart contract |
|
||||
| **Hardhat** | Development tool for writing, testing, and deploying smart contracts |
|
||||
| **Sepolia** | Ethereum test network for free experimentation |
|
||||
| **ethers.js** | JavaScript library for interacting with the Ethereum blockchain |
|
||||
| **Faucet** | A service that gives free test ETH for development |
|
||||
| Term | Definition |
|
||||
| -------------------- | -------------------------------------------------------------------- |
|
||||
| **Hash** | A fixed-size fingerprint of data. Same input → same output. |
|
||||
| **SHA-256** | A specific hash algorithm producing 256-bit (32-byte) outputs |
|
||||
| **Smart Contract** | A program stored on the blockchain that executes automatically |
|
||||
| **Gas** | The fee for executing operations on Ethereum (free on testnet) |
|
||||
| **Block** | A batch of transactions grouped together on the blockchain |
|
||||
| **Transaction (Tx)** | A single operation on the blockchain (e.g., registering a hash) |
|
||||
| **Tx Hash** | A unique identifier for a transaction (like a receipt number) |
|
||||
| **Block Number** | The sequential number of the block containing a transaction |
|
||||
| **Block Timestamp** | The time the block was created (proof of when the tx happened) |
|
||||
| **Private Key** | Secret key used to sign transactions (like a password) |
|
||||
| **Address** | Public identifier derived from the private key (like a username) |
|
||||
| **ABI** | Application Binary Interface — the "API spec" of a smart contract |
|
||||
| **Hardhat** | Development tool for writing, testing, and deploying smart contracts |
|
||||
| **Sepolia** | Ethereum test network for free experimentation |
|
||||
| **ethers.js** | JavaScript library for interacting with the Ethereum blockchain |
|
||||
| **Faucet** | A service that gives free test ETH for development |
|
||||
|
||||
Reference in New Issue
Block a user