<!--
Sitemap:
- [Welcome to River](/index)
- [Asset-Backed Finance Primer](/concepts/finance-primer)
- [River for Lenders](/lenders/introduction)
- [Depositing](/lenders/depositing)
- [Earning: the Coupon](/lenders/earning)
- [The Accumulating Wrapper](/lenders/wrapper)
- [Withdrawals & Exits](/lenders/withdrawals)
- [Losses & Impairments](/lenders/losses)
- [FAQ](/lenders/faq)
- [Integrate with River](/integrate/get-started)
- [Wrapper Integration](/integrate/wrapper)
- [Class Token Integration](/integrate/class-token)
- [Contract Addresses](/integrate/addresses)
- [Protocol Architecture](/architecture)
- [Actors: Roles & Permissions](/technical/actors)
- [Proxies & Upgradeability](/technical/proxies)
- [Strategies & Reporters](/technical/strategies)
- [Glossary](/concepts/glossary)
- [Dual NAV & Exchange Rates](/accounting/dual-nav)
- [Settlement & Conservation](/accounting/settlement)
- [The Coupon Ledger](/accounting/coupon-ledger)
- [Wrapper Accounting](/accounting/wrapper)
- [Accounting Examples](/accounting/examples)
- [The Tiered Waterfall](/waterfall/)
- [Waterfall Scenarios](/waterfall/scenarios)
- [Security Model](/security)
- [Protocol Invariants](/technical/invariants)
- [List of Assumptions](/technical/assumptions)
- [External Entry Points](/technical/entry-points)
- [Governance](/governance)
- [Contract Reference](/reference/contracts)
- [River Engineering Standards](/reference/engineering-standards)
-->

# FAQ

<div className="tw">
  <Accordion multiple className="w-full">
    <AccordionItem value="assets">
      <AccordionTrigger>What am I lending against?</AccordionTrigger>

      <AccordionContent>
        River deals finance portfolios of receivables originated by fintech platforms, such as
        consumer loans, small-business receivables, invoice finance, merchant cash advances, BNPL
        balances, and similar credit assets.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="who-can-lend">
      <AccordionTrigger>Who can lend?</AccordionTrigger>

      <AccordionContent>
        River deals are permissioned. Eligibility can depend on KYC, KYB, accreditation,
        jurisdiction, deal-specific rules, and transfer restrictions.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="senior-vs-junior">
      <AccordionTrigger>How do I choose between senior and junior?</AccordionTrigger>

      <AccordionContent>
        Senior classes are paid first and take losses last, so they usually target steadier yield.
        Junior classes take losses first and are compensated with higher expected yield.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="async-deposits">
      <AccordionTrigger>Why is deposit acceptance asynchronous?</AccordionTrigger>

      <AccordionContent>
        Deposits are accepted when the deal can admit capital. Until then, your funds sit in
        pending deposit holding, outside the deal, and can be cancelled.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="when-earning">
      <AccordionTrigger>When do I start earning?</AccordionTrigger>

      <AccordionContent>
        After your deposit is accepted and class tokens are minted to you.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="interest-separate">
      <AccordionTrigger>Why is interest paid separately from class token price?</AccordionTrigger>

      <AccordionContent>
        Because the class token separates principal and coupon. Interest is paid as cash.
        Principal moves when the class NAV changes through settlement.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="wrapper">
      <AccordionTrigger>What is the accumulating wrapper?</AccordionTrigger>

      <AccordionContent>
        It is the compounding version of the position. The wrapper holds the class token, claims
        coupon, and retains it in a single ERC-4626 share price.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="switching">
      <AccordionTrigger>Can I switch between the class token and the wrapper?</AccordionTrigger>

      <AccordionContent>
        Yes, subject to the relevant eligibility and flow rules. You can wrap class tokens into
        the accumulating wrapper and unwrap back out.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="claim-coupon">
      <AccordionTrigger>When can I claim coupon?</AccordionTrigger>

      <AccordionContent>
        When coupon cash has been funded. Accrued coupon is visible before then, but only funded
        coupon is claimable.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="loss-clawback">
      <AccordionTrigger>
        Can a later loss take back coupon I already claimed or could claim?
      </AccordionTrigger>

      <AccordionContent>
        Delivered coupon sits outside NAV and remains claimable. A later principal loss affects
        future NAV and future exits while funded coupon remains claimable.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="withdrawals">
      <AccordionTrigger>How do withdrawals work?</AccordionTrigger>

      <AccordionContent>
        You request an exit. The position keeps earning until paid. The servicer processes exits
        as cash is available, and paid proceeds remain claimable.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="exit-timing">
      <AccordionTrigger>Is exit timing guaranteed?</AccordionTrigger>

      <AccordionContent>
        No. Liquidity depends on the deal and the underlying receivables. River's protection is
        that queued positions keep earning and exit prices reflect current marks.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="servicer-risk">
      <AccordionTrigger>Can the servicer take my funds?</AccordionTrigger>

      <AccordionContent>
        The servicer operates the deal within contract checks. Those checks block self-minting,
        redirection of claimable proceeds, artificial value creation, and waterfall bypasses.
        Operational delay or bad timing remains possible.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="eligibility-changes">
      <AccordionTrigger>What happens if my eligibility changes?</AccordionTrigger>

      <AccordionContent>
        Eligibility can block new deposits, transfer receipt, wrapping, or new exit initiation.
        Already owed claims and cancellation of pending requests remain available.
      </AccordionContent>
    </AccordionItem>

    <AccordionItem value="technical-details">
      <AccordionTrigger>Where are the technical details?</AccordionTrigger>

      <AccordionContent>
        Start with <a href="/architecture">Protocol Architecture</a>,{" "}
        <a href="/accounting/dual-nav">Dual NAV & Exchange Rates</a>, and{" "}
        <a href="/security">Security Model</a>.
      </AccordionContent>
    </AccordionItem>
  </Accordion>
</div>
