TVL: ~$15M | Type: Aave V3 Fork | Docs: neverland.finance
Overview
Neverland is an Aave V3 fork deployed on Monad. It supports multi-asset lending and borrowing with variable and stable interest rates. Rampart exposes the lending pool’s rate data and TVL through a set of read-only functions.Functions
getLendingRates()
Returns supply and borrow APYs for all active assets in the Neverland lending pool. ReturnsLendingRate[]
| Field | Type | Description |
|---|---|---|
asset | string | Token address |
symbol | string | Token symbol |
supplyAPY | number | Annual supply yield (e.g. 0.045 = 4.5%) |
borrowAPY | number | Annual borrow cost |
totalSupply | bigint | Total supplied liquidity (raw) |
totalBorrow | bigint | Total borrowed amount (raw) |
utilization | number | Borrow / supply ratio (0-1) |
protocol | 'neverland' | Protocol identifier |
getBestSupplyAsset()
Returns the asset with the highest current supply APY in Neverland. ReturnsLendingRate
getBestBorrowAsset()
Returns the asset with the lowest current borrow APY in Neverland. ReturnsLendingRate
getNeverlandTVL()
Returns total value locked across all Neverland pools in USD. Returnsnumber
compareYields(asset)
Compares Neverland supply APY for a given asset against other lending protocols tracked by Rampart.| Parameter | Type | Description |
|---|---|---|
asset | string | Token address to compare |
YieldComparison[]
| Field | Type | Description |
|---|---|---|
protocol | string | Protocol name |
supplyAPY | number | Supply APY on that protocol |
borrowAPY | number | Borrow APY on that protocol |
Usage Example
Contract Addresses
| Contract | Address |
|---|---|
| LendingPool | 0x7EeCA4205fF31f947EdFd49aa1f09cf9532B8A15 |