NILStream
Athlete Endorsement Payment Orchestration
Executive Summary
NILStream is a B2B SaaS platform for NIL agencies to orchestrate athlete endorsement deals—from negotiation through compliance reporting. We are seeking $500K in pre-seed funding to build the MVP and Large, high-growth market with strong regulatory tailwinds.
Token Data Schema
What this token holds — every field is specific to NILStream:
{
"immutable": {
"token_id": "uuid v4",
"deal_id": "unique deal identifier",
"athlete_id": "athlete eth_address",
"sponsor_id": "sponsor company id",
"created_date": "ISO 8601 timestamp",
"image_rights_verified": "boolean",
"compliance_status": "Approved|Rejected|Pending"
},
"mutable": {
"deal_status": "Deal_Signed|Active|Payment_Due|Distributing|Paid",
"payout_schedule": [{"date":"2026-06-01", "amount":50000}, ...],
"agent_commission": "percentage 0-100",
"platform_fee": "currency amount",
"tax_withheld": "currency amount"
},
"compliance": {
"tax_id": "W-9 or SSN hash",
"state_residence": "US state code",
"ncaa_clearance": "boolean",
"1099_filing_status": "Pending|Filed|Verified",
"audit_log": ["event1", "event2", ...]
}
}
User Journey
Creates endorsement deal offer specifying athlete, payout, duration, and milestone payments.
Token: deal_id, sponsor_id, athlete_id, amount, payout_schedule, currency
Reviews deal terms, calculates commission split (agent fee, platform fee, athlete net).
Token: agent_commission, platform_fee, athlete_net, deal_status=Active
Accepts deal terms; tax/compliance metadata attached (W-9, state residence, image rights).
Token: tax_id, state_residence, image_rights_verified, compliance_status=Approved
On milestone date, processes sponsor payment; routes to escrow pending compliance clearance.
Token: payment_received_date, escrow_amount, payment_status=Escrowed
Validates tax withholding, IRS 1099 reporting, state athlete tax rules; releases to waterfall.
Token: tax_withheld, tax_form, compliance_checked=true, payment_status=Approved
Distributes payment to agent, platform, athlete per waterfall; logs immutable transaction.
Token: agent_received, platform_revenue, athlete_received, settlement_log_hash
Token Lifecycle
State machine transitions:
Why Not Just a Database?
| Approach | Portability | Mutable State | Cross-Org | Compliance |
|---|---|---|---|---|
| Traditional Database | Locked in agency platform; no athlete visibility | Payout splits mutable at any time; error-prone | Single-org only; no multi-party transparency | Manual audit trails; spreadsheet reconciliation |
| Blockchain (Public) | Fully portable; athlete owns record forever | Immutable; cannot fix errors without forking | Open to all; too transparent for sensitive deals | Pseudonymous; fails IRS 1099 identity requirements |
| SaaS Platform (Opendorse) | Locked in Opendorse platform; data export painful | Mutable state; no immutable settlement trail | Multi-party visibility but admin-controlled | Consumer-facing; not built for B2B audit rules |
| DUAL Token | Athlete owns token; portable across platforms | Mutable deal terms + immutable settlement log | Multi-party settlement with zero-trust transparency | IRS + NCAA integrations; automatic 1099 generation |
Market Opportunity
Athlete endorsement payment orchestration for one NIL agency. Tracks deal flow, payout splits (sponsor→platform→agent→athlete), and compliance. NOT fan-facing securities. Immutable settlement log satisfies athlete tax and label compliance.
Business Model & Unit Economics
- SaaS Subscription: Monthly platform fee based on usage tier
- Transaction Fee: Per-transaction commission on platform flow
- Premium Support: White-glove integration and support services
$0.50-$2.00 per transaction | Gross margin: 65-75% | CAC payback: 8-12 months
5-Year Projections
| Year | ARR | Customers | Notes |
|---|---|---|---|
| Y1 | $150K | 2-3 | MVP launch, pilot customers |
| Y2 | $2M | 8-10 | 40% growth, expand to 2-3 regions |
| Y3 | $10M | 25+ | Series A scaling, feature expansion |
| Y4 | $25M | 60+ | Market expansion, strategic partnerships |
| Y5 | $50M | 120+ | Market leader, IPO readiness |
Competitive Positioning
| Competitor | Weakness | DUAL Advantage |
|---|---|---|
| Traditional Database | Single-vendor lock-in; no portability | Owner-controlled tokens; portable across ecosystems |
| Blockchain (Public) | No privacy controls; too transparent for business logic | Permissioned transparency + mutable business state |
| SaaS Platform | Vendor dependency; limited interoperability | Standards-based; integrates with any system |
Go-to-Market
Land 2 boutique NIL agencies (Octagon, IMG subsidiaries); process 50-100 deals; gather compliance feedback.
Add creator/influencer deal types; integrate with major SaaS HR platforms; secure LOI from 3-5 regional agencies.
Series A readiness; expand to 20+ agencies nationally; launch university compliance module; target $10M ARR.
90-Day MVP
- Deal creation & management dashboard with multi-party access control
- Automated payout waterfall calculation engine (athlete/agent/platform splits)
- ACH & Stripe Connect integration for real-time settlement
- IRS 1099 and NCAA compliance report generation with audit trail
- Athlete identity verification (KYC/AML integration)
- API for third-party agency integrations and data export
Risk Factors
Regulations continue to evolve; new compliance requirements may emerge requiring platform updates.
Mitigation: Build modular compliance framework; engage industry advisors; maintain active legal relationships
Customers may be slow to adopt new tools or prefer legacy workflows.
Mitigation: Land-and-expand strategy; offer training and onboarding; demonstrate ROI through time savings
Reliance on third-party services for payment processing or data exchange; service disruptions impact flow.
Mitigation: Dual provider integration; fallback manual settlement procedures; redundant infrastructure
Larger fintech/industry platforms could enter market with superior brand recognition and resources.
Mitigation: Build stickiness through compliance integrations; establish strategic partnerships; network effects
VC Pack Documents
Complete pre-seed investment package:
Get Started with AI
Prerequisites: Complete the DUAL Quick Start Guide to set up your environment and API keys before building this concept.
# NILStream Token Deep-Dive You are building the token system for NILStream on DUAL Network. ## Context - **Concept**: NILStream - **Alias**: Athlete Endorsement Payment Orchestration - **Category**: Refined Concept - **Viability**: 9.7/10 ## Your Task 1. Review the investment memo and financial model 2. Design the immutable→mutable→compliance token schema 3. Map the user journey (6 steps with NAMED actors) 4. For each step, list which token fields mutate 5. Identify the 4 database comparison trade-offs 6. Define state machine with business event triggers ## Output Return complete JSON with all sections filled from memo data: - token_schema (15+ fields, domain-specific) - journey_steps (with real actor names) - db_comparison (4 rows comparing approaches) - competitors (3-4 with weaknesses) - projections (Y1-Y5 ARR and customer count) - risks (3-4 with category, detail, mitigation) ## Key Principles - Token = mutable business logic + immutable compliance trail - Every field must serve a purpose (no generic metadata) - Multi-party transparency without breaking privacy - Standards-based, portable across platforms Start here.