Skip to main content
Rampart provides a unified interface to 14 lending protocols on Monad, covering Aave forks, Euler vaults, Morpho, CDP systems, cross-chain spokes, RWA vaults, and more.

Overview

Monad hosts a rich lending ecosystem spanning multiple protocol architectures. Rampart normalizes access to all of them through consistent TypeScript functions and AI-ready tools.

Protocol Directory

ProtocolTVLTypeKey Function
Neverland~$15MAave V3 ForkgetLendingRates()
Euler~$20MEuler V2 (108 vaults)getEulerVaults()
Morpho~$5MMorpho Blue / MetaMorphogetMorphoVaults()
Curvance~$58.9MMulti-Collateral LendinggetCurvanceMarkets()
Sherpa~$3MDelta-Neutral USDC VaultgetSherpaVaults()
Accountable~$2MUndercollateralized LendinggetAccountableVaults()
Folks Finance~$8MCross-Chain Lending (spokes)getFolksMarkets()
Sumer Money~$4MCompound V2 ForkgetSumerMarkets()
TownSquare~$2MCross-Chain Spoke/HubgetTownSquareMarkets()
Timeswap~$500KFixed-Maturity OptionsgetTimeswapStats()
Nabla~$3MSingle-Sided AMMgetNablaPools()
Covenant~$500KCDP / Structured ProductsgetCovenantStats()
Multipli~$1MRWA Yield VaultsgetMultipliVault()
LeverUp~$500KLeveraged Perps + LVUSDgetLeverUpStats()

Aggregated Access

You can pull supply rates from all protocols in a single call using the market intelligence aggregator:
import { Rampart } from 'rampart-monad'

const sdk = new Rampart()

// Best supply rate across all lending protocols
const best = await sdk.getBestSupplyAsset()
// → { protocol: 'euler', asset: '0x...', apr: 0.087 }

// All Euler vaults sorted by APR
const vaults = await sdk.getEulerVaults()
// → [{ address, asset, apr, totalSupply, utilization, protocol: 'euler' }, ...]

// Neverland supply/borrow rates
const rates = await sdk.getLendingRates()
// → [{ asset, supplyAPY, borrowAPY, protocol: 'neverland' }, ...]

Architecture Notes

All lending functions are available both as standalone imports and as methods on the Rampart class. The RampartAgent exposes them as AI tools for use with the Vercel AI SDK.
  • Euler V2 - 108 vaults discovered by iterating factory events; APR computed as interestRate() / 1e27 * 31_536_000
  • Morpho - MetaMorpho vaults on top of Morpho Blue core; curated by third parties
  • Curvance - Largest TVL lender on Monad at ~$58.9M; supports multi-collateral positions
  • Cross-chain protocols (Folks, TownSquare) - use spoke/hub architecture; Monad is a spoke chain