What this is
This page is the fastest way to understand lending in Varla. You supply the chain’s collateral token into an ERC4626 pool. Borrowers pay interest, and the pool’s share price increases.Polygon (Polymarket): USDC
BSC (Opinion): USDT
BSC (Opinion): USDT
How it works
Earn yield
Borrowers pay interest. After the reserve fee, the remaining interest accrues to lenders via a rising share price.
Rules that matter
Withdrawals are liquidity-limited
Even if your shares are worth a given amount, you can only withdraw what’s currently available. For UI, prefermaxWithdraw(owner) / maxRedeem(owner) (or SDK views.readLenderSnapshot) as “withdrawable”.
Pool caps can apply
The pool can be configured withdepositCap (TVL limit) and borrowCap (total borrows limit). A value of 0 means uncapped.
Practical tips
- At high utilization, expect withdrawals to be constrained.
- Display both:
- “Your value” (ERC4626
convertToAssets(shares)) - “Available to withdraw now” (
maxWithdraw)
- “Your value” (ERC4626