
Inspiration
The creator economy is worth over $250 billion globally (Goldman Sachs, 2023), yet creators often struggle with opaque payment systems, unfair revenue sharing, and limited financial tools to grow their businesses. We asked ourselves: what if creators could have complete transparency into their earnings, multiple ways to extract value from their content, and access to financial services traditionally reserved for established businesses?
What it does
Our TikTok Creator Coin Economy transforms the platform into a comprehensive financial ecosystem for creators. The platform features:
- Transparent Dynamic Rewards System
- Multi-Path Value Extraction
- Anti-Fraud Protection
Dynamic Reward Formula
Reward %
- 0, if
Gate = 0(fraud detected) - Otherwise:
clamp(scaler * Base * AIAdjusted * Temporal, 0.10, 0.70)
Where:
- Gate: 0 for proven fraud (escrow), 1 otherwise
- Scaler (s): 0.5833 (chosen so max payoff hits 70% when Base=1.2, AIAdjusted=1.0, Temporal=1.0)
- Clamp(x, lo, hi): = max(lo, min(x, hi)) → keeps results within [10%, 70%]
Base (B in [0.8, 1.2])
Base is the average of market health and category weight, then clipped into the range [0.8–1.2].
Market Health (MH) = 0.8 + 0.4 * s_market, where s_market ∈ [0,1]Category Weight (CW) = 0.8 + 0.4 * s_category, where s_category ∈ [0,1]Base (B) = clamp(0.5 * MH + 0.5 * CW, 0.8, 1.2)
AI-Adjusted (A in [0,1])
AI adjustment is a weighted average of content and interaction quality.
AIAdjusted (A) = 0.5 * ContentQuality + 0.5 * InteractionQuality- ContentQuality ∈ [0,1]
- InteractionQuality ∈ [0,1]
- Weights are adjustable (default 0.5 each)
Temporal (T in [0.5, 1.0])
Temporal measures engagement consistency, blending immediate (today) and weekly (7-day average).
Immediate (I) = min(1, E_today / P95_tier)Weekly (W) = min(1, E_7day_avg / P95_tier)Engagement (E) = views + beta * donations
- beta = fixed conversion, e.g., 40 “view-points” per $ donated
- beta = fixed conversion, e.g., 40 “view-points” per $ donated
Temporal (T) = 0.5 + 0.5 * (0.3 * I + 0.7 * W)
Reward Ranges
- Clean users: 10% – 70%
- Malicious users: 0%
Multi-Path Value Extraction
Creators aren't just limited to withdrawals. They can:
- Withdraw instantly or batch monthly for bonuses (+1% bonus), with monthly batch transactions acting as a program to help promote more financially responsible saving habits
- Purchase promotional services (Promote Video, TikTok Shop Ads, Commercial Music licenses)
- Reinvest in financial products
- Borrow against future earnings
This not only offers creators more options to earn and grow their accounts, but also helps to keep value circulating within the internal TikTok economy, avoiding costly App Store transaction fees.
Anti-Fraud Protection
Our system identifies and penalizes malicious actors while ensuring legitimate creators across all tiers receive appropriate compensation.
How we built it
We developed a full-stack web application using:
- Frontend: React with Next.js for server-side rendering and optimal performance
- Styling: Tailwind CSS for rapid, responsive design implementation
- UI Components: Shadcn UI for consistent, accessible interface elements
- Data Visualization: React Flow for the interactive reward calculation flowchart
- State Management: TanStack Query for efficient data fetching and caching
- Deployment: Vercel for seamless CI/CD and global edge deployment
Challenges we ran into
- Algorithm Complexity: Balancing fairness with fraud prevention required multiple iterations of our reward formula. We needed to ensure small creators weren't disadvantaged while preventing gaming of the system.
- Financial Compliance: Designing features like borrowing and investment products required careful consideration of regulatory requirements and AML compliance, leading us to introduce the idea of KYC verification
- UI/UX Balance: Creating an interface that could display complex financial information while remaining approachable for creators of all technical levels was challenging. We went through several design iterations to achieve the right balance.
Accomplishments that we're proud of
- 3-Tier Creator Support: Successfully balanced rewards across top creators, casual creators, and new entrants
- Financial Innovation: First platform to offer creators borrowing capabilities and investment products within the same ecosystem
What we learned
We learned:
- How the existing system for rewarding TikTok creators worked
- The challenges involved with creating a fair reward distribution system that is transparent and yet not game-able
What's next for TikTok Creator Coin Economy
- Implementing advanced AI technology to predict how well creators will do to help creators optimize their content and investment decisions
- Creating a credit scoring system to enable better loan terms for established creators
- Exploring blockchain integration for transparent, immutable transaction records and cross-platform coin portability
- Launch a creator-to-creator marketplace where coins can be used for collaborations, shoutouts, and skill exchanges
- Partner with traditional financial institutions to offer region-specific investment products and ensure worldwide regulatory compliance
Our vision is to transform TikTok from a content platform into a complete financial ecosystem where every creator, regardless of size, has the tools and transparency needed to build a sustainable business.
References
The creator economy could approach half-a-trillion dollars by 2027. (2023, April 19). Goldman Sachs. https://www.goldmansachs.com/insights/articles/the-creator-economy-could-approach-half-a-trillion-dollars-by-2027
Built With
- react
- react-flow
- typescript
Log in or sign up for Devpost to join the conversation.