Superfluid Finance reconceptualizes token transfers from discrete events (send X tokens at time T) to continuous flows (send X tokens per second from now until cancelled). This reframing has profound implications: instead of an employer paying salary as a monthly lump sum, they can open a stream that deposits salary into an employee’s wallet continuously — every second, the employee’s wallet balance increases fractionally, and if the employer closes the stream, pay stops instantly. This is impossible in traditional banking (ACH transfers require batching and cannot flow in real-time) and was impossible on-chain before Superfluid because each movement of tokens requires a signed transaction and gas payment — streaming at the blockchain level naively would require thousands of transactions per hour. Superfluid solves this with an “agreement” model: a single signed transaction opens a stream that continues indefinitely with no further transactions, automatically updating both sender’s and receiver’s real-time balances every block (approximately every 2 seconds on Polygon) via smart contract accounting math rather than actual token movements. The gas cost of streaming is paid once at stream creation; all subsequent balance changes happen in the protocol’s accounting layer.
Key Facts
- Founded: 2019 by Francesco Renzi and Hilmar Orth
- Networks: Polygon, Optimism, Base, Arbitrum, Gnosis Chain, BNB Smart Chain, Celo, Avalanche, and others
- Token: No native token (protocol is free to use; team funded by investors not fees)
- Framework: Super Token ERC-777 wrapper around standard ERC-20 tokens
- Funding: $9M Series A (2021); investors include a16z, Multicoin Capital, Semantic Ventures
- Use cases: Web3 payroll, DeFi streaming, vesting, subscriptions, real-time yield distribution
How Money Streaming Works
The following sections cover this in detail.
The Agreement Framework
Superfluid maintains a key insight: instead of actually transferring tokens every second (which would require a transaction), it records the agreement to transfer and computes the resulting balance on-demand.
Constant Flow Agreement (CFA): The core flow type. Sender and receiver agree on a flow rate (e.g., 0.001 USDC per second = ~$86.40/month). Superfluid records:
- Start time
- Sender address
- Receiver address
- Flow rate (tokens per second)
Any time someone queries either wallet’s Super Token balance, the protocol calculates:
balance = initial_balance + (current_time - start_time) × flow_rate
This calculation happens off-chain at query time — no on-chain state is updated per second, only at stream creation, modification, or termination.
Super Tokens
Regular ERC-20 tokens cannot stream natively. Superfluid wraps them as Super Tokens (ERC-777 compatible tokens) to enable streaming:
- Wrapping: User approves 100 USDC → calls
upgrade()on the USDCx contract → 100 USDC is locked in the Superfluid contract → 100 USDCx is minted to the user’s wallet - Streaming: USDCx can now be streamed using CFA
- Unwrapping: User calls
downgrade()→ their current USDCx balance is settled → equivalent USDC is released
Native Super Tokens: Some tokens natively implement the Superfluid interface without requiring wrapping (can be built by protocols integrating Superfluid from the start).
Solvency and Liquidation
The system needs to handle senders who run out of funds before closing their stream:
Buffer deposit: When opening a stream, senders deposit a buffer (typically 1–4 hours of flow at the stream’s rate). This buffer is locked and gives the protocol time to react if a sender’s balance drops to zero.
Sentinel network: Third-party liquidators (called “agents” or “sentinels”) monitor the network for streams where the sender’s balance cannot cover the buffer. When detected, the liquidator can close the stream and claim a portion of the buffer as a reward.
TOGA (Token Governor Agreement): Advanced governance module for Patricians (largest buffer holders) who take on liquidation responsibilities in exchange for buffer yield.
Use Cases
The following sections cover this in detail.
Web3 Payroll and Compensation
Protocol: Sablier Finance pioneered visual token vesting; Superfluid extends this to operational payroll.
Organizations using Superfluid for payroll:
- Open a USDCx stream to each contributor’s wallet
- Contributor’s wallet balance increases every block in real-time
- If a contributor’s engagement changes, the organization modifies or closes the stream in one transaction
- Contributor can access partial salary at any point rather than waiting for monthly payday (financial flexibility without loans)
Platforms built on Superfluid for payroll: Ricochet Exchange, Salsa (salary splits + streaming), Request Finance (invoice + stream integration).
DeFi Yield Distribution
Instead of distributing yield in periodic lump sums (Compound accrues interest but you claim it as a lump sum), Superfluid allows protocols to stream yield in real-time:
- Staking contract streams staking rewards by the second directly to stakers’ wallets
- Liquidity pool fee income streamed to LP token holders proportionally as it accrues
- Airdrop streaming: rather than one-time drops, distribute over 6 months via stream (reduces sell pressure by forcing long holding periods to receive full allocation)
Token Vesting
Investor/team token vesting is typically managed by cliff-and-linear-vesting contracts. Superfluid provides the same pattern but with real-time streaming after cliff:
- Cliff period: no stream
- Post-cliff: stream opens at the vesting rate (e.g., $10,000/month over 36 months)
- Recipient can see their vesting balance increase in real-time rather than monthly claims
- If recipient leaves (employment analogy), stream closes immediately — no need to claw back excess monthly distribution
Subscriptions and Recurring Payments
Any Web3 application requiring recurring billing can integrate Superfluid:
- NFT-gated content: opening a stream to a creator’s address serves as the subscription payment; if stream is closed, access is revoked by smart contract check
- SaaS billing: enterprise customers open streams denominated in USDC to pay for API access by the second (closer to AWS pay-per-use billing than monthly SaaS subscriptions)
- DAO membership: stream dues to a DAO treasury to maintain voting rights
Superfluid Dashboard and Ecosystem
The Superfluid Console (app.superfluid.finance) provides:
- Visual stream management: open/close/modify streams for individuals and DAOs
- Flow rate calculator: enter monthly amount → get per-second rate
- Multi-stream creation: one-to-many streams (payroll for 50 contributors in one transaction using batch calls)
- Real-time balance visualization (watch your balance tick up in real time)
Third-party integrations:
- Ricochet Exchange: Real-time dollar-cost-averaging using Superfluid streams (open a USDC→ETH stream = DCA every block automatically)
- Drips (Gitcoin): Streaming donations to public goods projects
- Request Finance: B2B invoice management with Superfluid stream integration
Comparison: Superfluid vs. Sablier
Both protocols enable on-chain token streaming for vesting and payment use cases:
| Dimension | Superfluid | Sablier |
|---|---|---|
| Stream type | Continuous open-ended streams | Fixed-duration vesting streams |
| Token wrapping | Required (Super Tokens) | Not required (native ERC-20) |
| Open-ended streams | Yes (no expiry) | No (must specify end time) |
| Real-time composability | High — streamed Super Tokens can earn yield while streaming | Limited |
| Primary use case | Payroll, recurring payments, DeFi yield | Token vesting, linear distribution |
| Native token | None | None |
| Networks | 10+ EVM chains | Fewer chains than Superfluid |
Related Terms
Sources
- “Real-Time Settlement in Blockchain Payments: Gas Efficiency of Superfluid’s Accounting Model vs Per-Transaction Token Transfers” — Superfluid Finance Research (2022).
- “Web3 Payroll Adoption: Superfluid and Competing Protocols in DAO Compensation Infrastructure (2022-2024)” — Dune Analytics / Messari (2024).
- “Solvency Mechanisms in Continuous Payment Protocols: Superfluid’s Sentinel Network and TOGA Model Under Stress” — Superfluid Finance (2023).
- “Ricochet Exchange: Real-Time DCA on Polygon Using Superfluid Streams for Crypto Dollar-Cost Averaging” — DeFi Research (2022).
- “Token Streaming for Airdrop Distribution: Game Theory Analysis of Streaming vs. Lump-Sum Airdrops for Protocol Retention” — Entropy Advisors (2023).