Skip to main content

Glossary

Reference definitions for terms used throughout Bitpulse documentation.

Lending terminology

TermDefinition
VaultStandard term used across Bitpulse documentation for any lending position container. In Maple Finance, a vault (PoolV2) holds lender deposits and allocates capital to borrowers. In Morpho, a MetaMorpho vault allocates deposits across multiple Morpho markets according to a curator's strategy. For AAVE V3, the Ozone UI uses "Market" to match AAVE's terminology, but the underlying concept is the same.
MarketContext-dependent term. In Morpho, a market is a single collateral-asset/loan-asset pair with fixed parameters (LLTV, oracle, interest rate model). In AAVE V3, a market refers to a lending pool where multiple assets share a common collateral and borrowing environment — this is the label Ozone uses for AAVE in the UI.
ReserveAAVE's term for a single asset within a market. Each reserve tracks the supply, borrow, and interest rate state for one token (e.g., USDC, WETH) inside the broader multi-asset lending pool.
PoolInternal system term equivalent to "vault". You may encounter this in API responses and data schemas — it refers to the same construct.

Risk metrics

TermDefinition
Ozone ScoreComposite risk score (0–10) combining market, oracle, and protocol risk. Lower = higher risk.
Extreme Event ResilienceExpected lender loss under a 10x volatility shock at the 99.99th percentile, simulated via Monte Carlo (GBM, 10,000 iterations, 365-day horizon).
Liquidation BufferPosition-weighted average gap between borrowers' current LTV and their liquidation LTV. Measures headroom before forced liquidation.
Utilization RateFraction of supplied liquidity that is currently borrowed. High utilization increases withdrawal risk.
Nakamoto CoefficientMinimum number of entities (borrowers or LPs) that collectively control more than 50% of a resource. Lower = more concentrated = higher risk.
Max Power RatioShare of a resource (principal or liquidity) controlled by the single largest entity.
LTV (Loan-to-Value)Ratio of loan value to collateral value. Higher LTV = less collateral backing each unit of debt.
Collateral RatioInverse of LTV — collateral value divided by loan value. Higher = more collateral per unit of debt.
Expected Shortfall (ES)Mean loss in the tail of a loss distribution beyond a given quantile (e.g., worst 0.01% of outcomes). Also known as Conditional Value at Risk (CVaR).
Volatility ShockMultiplier applied to historical volatility in stress-test simulations. A shock of 9.0 means 10x current volatility.

Protocol-specific terms

TermDefinition
MetaMorpho VaultMorpho's vault layer. A curator allocates deposited assets across multiple Morpho markets.
Morpho MarketA single collateral/loan pair on Morpho with fixed LLTV, oracle, and interest rate model.
CuratorEntity managing allocation strategy for a MetaMorpho vault.
LLTV (Liquidation LTV)The LTV threshold at which a position becomes eligible for liquidation. Protocol-specific parameter.

Oracle terms

TermDefinition
Oracle contract scoreA score from 0.0–1.0 assigned to a single price feed address based on its architecture, governance surface, and dependency risk. The foundation of all market and vault oracle scores.
Market oracle scoreAggregate oracle reliability score for a single lending market. Computed as the geometric mean of all individual feed scores in the market's price path. A weak feed anywhere in the chain lowers the score for the whole market.
Vault oracle scoreOracle reliability score for a vault that allocates across multiple markets. Computed as the allocation-weighted average of market oracle scores. Displayed directly in the Ozone dashboard.
Geometric mean (oracle aggregation)Aggregation method used at the market level. Unlike arithmetic mean, geometric mean penalizes weak links: a single low-scoring feed significantly lowers the market oracle score even if other feeds are strong. A score of 0.0 for any feed produces a market score of 0.0 (zero-out property).
Oracle conversion chainThe sequence of price feeds a lending protocol uses to derive collateral and loan asset prices. In Morpho's ChainlinkOracleV2, the final price is: (base_feed_one × base_feed_two) / (quote_feed_one × quote_feed_two). Each slot in this chain is scored independently; the chain score is their geometric mean.
ERC-4626 vault rateA price derivation method where an oracle returns totalAssets / totalSupply from a yield-bearing vault contract. Scores 0.3–0.4 (High risk tier) because it reflects accounting state rather than a market-discovered price.
Upgradeable proxy oracleAn oracle contract that uses a proxy pattern (ERC1967/UUPS), meaning the underlying logic can be changed by a privileged actor without changing the oracle's address. Scored 0.1–0.2 (Very high risk) — upgradeability caps the maximum achievable score regardless of other properties.

Simulation terms

TermDefinition
GBM (Geometric Brownian Motion)Stochastic process used to model asset price paths. Bitpulse's implementation uses time-varying volatility data and supports volatility shock multipliers to simulate extreme market regimes. Standard model for the Ozone stress test.
Monte Carlo SimulationMethod that runs thousands of randomized price path scenarios to estimate probability distributions of outcomes.
Model LookbackNumber of historical days used to calibrate simulation parameters (volatility, drift, correlation).
PrLiquidationProbability that a position reaches the liquidation threshold during the simulation horizon.
PrMarginCallProbability that a position triggers a margin call during the simulation horizon.
WorstCaseCCRWorst-case collateral coverage ratio observed across simulation paths.