Insured Yield Strategies
RebelFi offers insurance-covered yield strategies that wrap your allocations with smart contract coverage. When you supply to an insured strategy, your funds earn yield through the underlying protocol while being automatically protected against smart contract risk.Insurance coverage is powered by OpenCover and underwritten by Nexus Mutual, the largest decentralized insurance protocol in DeFi.
How It Works
You supply to an insured strategy
Select a strategy with the INSURED category when listing venues. The SDK handles the rest — your USDC is deposited into the underlying yield protocol and then wrapped with insurance coverage in a single operation.
Coverage activates automatically
The insurance premium is deducted from your accrued yield — there is no upfront cost and no separate fee transaction. The APY shown for insured strategies is already net of the premium.
You earn yield with protection
Your position earns yield from the underlying protocol (e.g., Morpho) while being covered against smart contract exploits, oracle failures, and other covered events defined in the policy terms.
Discovering Insured Strategies
Insured strategies appear in the standard venue listing with theINSURED category. Use the SDK to filter for them:
Insured strategies are currently available on Base for USDC.
Supplying to an Insured Strategy
The SDK interface is the same as a standard supply — no special code needed. The system automatically handles the multi-step flow:What Happens Behind the Scenes
An insured supply involves multiple on-chain transactions that the SDK orchestrates:- Approve USDC for the yield protocol
- Deposit USDC into the yield protocol (e.g., Morpho vault)
- Approve receipt tokens for the insurance vault
- Request insured deposit on the coverage vault
Unwinding an Insured Position
Withdrawals follow the same SDK pattern. The system handles the multi-step reversal automatically:Coverage Details
What’s Covered
Insurance coverage protects against losses from:- Smart contract exploits — vulnerabilities in the underlying yield protocol
- Oracle manipulation — price feed attacks that lead to loss of funds
- Governance attacks — malicious governance actions affecting depositors
| Detail | Value |
|---|---|
| Coverage provider | OpenCover |
| Underwriter | Nexus Mutual |
| Premium model | Streamed from yield (no upfront cost) |
| Claims process | Via Nexus Mutual governance |
Each insured strategy includes a link to its cover wording and proof of coverage in the strategy metadata. Contact us for details on specific coverage terms.
What’s Not Covered
Insurance does not cover:- Stablecoin depegging events (e.g., USDC losing its peg)
- Losses from user error (sending to wrong address, compromised keys)
- Network-level failures (blockchain halts, consensus failures)
- Regulatory actions or sanctions
Premium and APY
The insurance premium is automatically deducted from your yield. The APY displayed for insured strategies is the net rate after the premium. For example, if the underlying yield protocol generates 5.9% APY and the annual insurance premium is 1.3%:| Rate | |
|---|---|
| Underlying protocol APY | 5.9% |
| Insurance premium | -1.3% |
| Net APY (what you earn) | ~4.6% |
Enabling Insured Strategies
Yield Policy
Insured strategies use theINSURED yield category. To make them available to your wallets, include INSURED in your organization’s yield policy allowed categories via the dashboard or by contacting your account manager.
Organizations can choose to:
- Allow both insured and uninsured strategies — give end users the choice
- Require insured strategies only — restrict to
INSUREDcategory for maximum protection - Exclude insured strategies — omit
INSUREDfrom allowed categories
Availability
| Blockchain | Underlying Protocol | Status |
|---|---|---|
| Base | Morpho (Steakhouse High Yield) | Live |
Integration Considerations
Settlement Timing
Insured operations include an asynchronous settlement step handled by the coverage vault’s keeper. In practice:- Supply settlement: ~30 seconds typical
- Unwind settlement: ~30 seconds typical, 24-hour maximum guaranteed
operations.get() with appropriate timeouts.
Multiple Transactions
Insured supply operations involve more on-chain transactions than standard supplies (4-5 vs 2). Each transaction is returned incrementally as previous steps confirm. Your signing flow should:- Sign and submit all initially-returned transactions
- Continue polling the operation
- Sign and submit any new transactions that appear
- Repeat until status is
CONFIRMED
Allocations and Reporting
Insured allocations appear in the standard allocations API with the insured strategy ID. Yield accounting, earnings tracking, and reporting work identically to non-insured strategies.Next Steps
SDK Integration
Full SDK integration tutorial
EVM Integration
EVM-specific signing and submission guide