FinFluence
Inspiration
Here's the thing: Gen-Z spends over 3 hours every single day scrolling through TikTok, Instagram Reels, and YouTube Shorts. Yet somehow, less than 20% feel confident making basic financial decisions.
Financial advice is everywhere online, but it's a mess. It's fragmented, inconsistent, and honestly? Most of it is designed for clicks, not education.
We asked ourselves: What if the platform itself could validate quality? What if learning about finance could be as addictive as scrolling through reels, and what if it could actually pay you to do it?
That's why we built FinFluence.
What It Does
FinFluence is an AI-powered financial literacy platform that turns short-form video education into a tokenized economy where both creating and consuming knowledge gets you paid.
Here's how it works:
π€ AI-Validated Content - Our custom sentence transformer models automatically verify that every single reel is genuinely about finance, no spam and off-topic sentences. Just quality educational content that's creative and engaging.
π° Tokenized Rewards - We created FINF, a custom Solana SPL token. Watch educational content? Get paid. Create quality videos? Get paid more. Real crypto in your wallet based on genuine engagement.
π± Smart Feed - Familiar short-form swipeable interface optimized for financial education. We track real engagement and use heuristic bot detection to keep rewards fair.
π Secure Storage - Everything lives in MongoDB with GridFS, user profiles, videos, engagement data, all persistent and scalable.
How We Built It
Architecture Overview
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Frontend (React + TypeScript) β
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β βReact β βVite β βTypeScriptβ βTailwind β β
β βComponentsβ βBuild β β β βCSS β β
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β ββββββββββββ ββββββββββββ ββββββββββββ β
β βSolana β βThree.js β βFramer β β
β βWallet β β3D Models β βMotion β β
β ββββββββββββ ββββββββββββ ββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Backend API (Python FastAPI) β
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β βFastAPI β βPydantic β βUvicorn β βRouter β β
β βREST β βModels β βASGI β βModules β β
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β ββββββββββββ ββββββββββββ ββββββββββββ β
β βGridFS β βJWT Auth β βCORS β β
β βStreaming β β β βMiddlewareβ β
β ββββββββββββ ββββββββββββ ββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β AI & Blockchain Layer β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β βSentence β βSolana SPL β βMongoDB β β
β βTransformers β βToken System β β+ GridFS β β
β β- Finance β β- FINF Token β β- User Data β β
β β Detection β β- Treasury β β- Reels β β
β β- Transcript β β- Wallet Ops β β- Engagement β β
β β Analysis β β- Rewards β β- Metrics β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Technical Stack
Frontend - We built UI with React + TypeScript and Vite. Tailwind CSS handles the styling, Solana Wallet Adapter connects users to Web3, and Three.js brings the token visualization to life with slick 3D graphics.
Backend - Our API runs on Python FastAPI with async processing for speed. Clean modular routers keep code organized, Pydantic makes sure everything is validated, and Docker for deployment.
AI Pipeline - sentence transformers compute semantic similarity between uploaded content and actual financial topics. We extract transcripts automatically, validate in real-time during upload, and score content across multiple dimensions for relevance and quality.
Blockchain - We deployed a custom Solana SPL token with a smart treasury system that tracks engagement, calculates fair reward splits, and executes on-chain transfers. It's non-custodial, so the users always control their own assets.
Data Layer - MongoDB with GridFS handles everything: efficient video storage, indexed queries, and schemas for users, reels, and all engagement metrics.
Challenges We Ran Into
Balancing Education and Engagement - How do you make learning about compound interest and retirement accounts as addictive as watching cat videos? It took countless iterations to tune our AI validation, strict enough to filter garbage, but flexible enough to reward engaging educational content.
Tokenomics Design - Building an economy that rewards quality over spam was harder than we thought. Too generous? You get bot farms. Too stingy? Nobody participates. Our solution: a dynamic reward system that considers retention rate, engagement depth, creator reputation, and network effects.
Real-Time Blockchain Integration - Wallet connections would drop. Transactions would timeout. Database connections would fail. We kept rebuilding our transaction layer, eventually landing on queued processing with retry logic.
AI Model Latency - Sentence transformers are powerful but computationally expensive. Running them during upload created 10-15 second delays, totally unacceptable. We built an async processing queue: uploads accepted instantly, validated in the background, creators notified within 30 seconds. Much better UX.
Video Storage - Storing videos in MongoDB is trickier than it sounds. We hit the 16MB document limit hard (oops). Switched to GridFS which chunks files efficiently, then had to implement proper byte-range request handling for smooth streaming. Worth it.
Accomplishments That We're Proud Of
Making Financial Literacy Actually Fun - Our alpha testers (fellow hackers) found themselves scrolling on the site so much that they forgot to work on their project.
AI as Quality Gatekeeper - We built an autonomous validation pipeline that achieves high accuracy at filtering financial content. This proves that semantic analysis for domain-specific education can actually work at scaleβno manual moderation bottleneck.
A Real, Functioning Token Economy - FINF tokens are tradeable on Solana DEXs right now, with transparent on-chain reward mechanics, sustainable tokenomics designed to avoid inflation spirals, and non-custodial security so users always own their assets.
Production-Ready in 36 Hours - We went from zero to a fully deployed, multi-service platform in a hackathon weekend. AI-powered content validation, blockchain integration, video streamingβthe whole thing spins up with
docker compose up. That's pretty cool :)
What We Learned
Technical Insights
- AI validation needs domain expertise-You need to understand financial topics to tune transformers effectively.
- Blockchain UX is make-or-breakβevery wallet interaction, every transaction confirmation, every error message is a potential user drop-off point. Web3's problem isn't the tech, it's the experience.
- Async processing is non-negotiableβfor content platforms, synchronous processing kills UX. Background jobs and queues aren't optional.
- Docker complexity pays offβsetup is painful, but testing the full stack on different machines without "works on my laptop" issues?.
Product Insights
- Incentives change everythingβthe moment you introduce real money, user behavior shifts dramatically. Design for the behaviors you'll actually get, not the ones you hope for.
- AI moderation doesn't scale manuallyβfor user-generated content platforms, automation isn't a nice-to-have, it's survival.
- Short-form video is the perfect mediumβit contextualizes financial info for different audiences in ways that textbooks never could.
What's Next for FinFluence
Immediate Roadmap
Enhanced AI - Topic tagging, difficulty classification, and misinformation detection to improve discovery and safety.
Refined Tokenomics - Reputation scoring for sustained creators, tiered rewards for under-represented topics, and staking mechanisms for premium features.
Social Features - Following, communities, comments, and collaborative learning with pooled rewards.
Advanced Anti-Abuse - ML-based bot detection, behavioral analysis, and reputation stakes to prevent spam.
Long-Term Vision
Personalized Learning - AI-driven curriculum generation, progress tracking, and adaptive content recommendations.
Creator Economy - Sponsored content, premium tiers, and educational institution partnerships for verified content.
Real-World Integration - Banking and investment platform APIs to act on lessons immediately, watch a reel about savings accounts, open one instantly.
Global Expansion - Multi-language support and localized content for international financial literacy.
Our Mission: Make financial literacy universal. We're building a world where understanding money is as common as using social media, where quality education is more profitable than clickbait, and where learning actually pays.
We're building the future of financial literacy, one reel at a time. π
Built With
- docker
- fastapi
- mongodb
- python
- sentence-transformers
- sklearn
- solana
- typescript
- vite
Log in or sign up for Devpost to join the conversation.