DocumentationOpen App

Glossary

Key terms used throughout the Gearbox Protocol documentation.

TermDefinition
AdapterA thin wrapper contract that translates Credit Account multicalls into calls to an external DeFi protocol (e.g., Uniswap, Aave), enforcing collateral checks before and after execution.
Bytecode Repository (BCR)An on-chain registry of audited contract bytecode. Deployments are verified against the BCR to ensure only approved, audited code runs in production.
Credit AccountAn isolated smart-contract account that holds a user's collateral and borrowed funds. All leveraged operations happen inside a Credit Account.
Credit ConfiguratorThe admin-facing contract that governs a Credit Manager's parameters, such as allowed tokens, adapters, debt limits, and liquidation thresholds.
Credit FacadeThe user-facing entry point for a Credit Manager. It validates multicalls, enforces health-factor checks, and emits events for account operations.
Credit ManagerThe core contract that manages Credit Accounts for a given market. It tracks collateral, debt, and permissions, and delegates user interactions to the Credit Facade.
Credit SuiteThe combination of a Credit Manager, its Credit Facade, and its Credit Configurator, together forming the complete management layer for leveraged accounts in a market.
Cross-Chain Multisig (CCM)A governance mechanism that coordinates administrative actions across multiple chains, ensuring consistent parameter changes for Gearbox deployments on different networks.
Debt CeilingThe maximum total amount that can be borrowed from a pool by all Credit Managers combined, limiting the pool's overall leverage exposure.
Diesel TokenThe ERC-20 LP share token received when depositing into a Gearbox pool. Its value appreciates over time as interest accrues to the pool.
Health FactorThe ratio of a Credit Account's total weighted collateral value to its total debt. A health factor below 1.0 means the account is eligible for liquidation.
InstanceA single deployment of the Gearbox Protocol on a specific chain, consisting of an AddressProvider and all contracts registered through it.
Instance OwnerThe governance address (typically a multisig or DAO) that controls an Instance's AddressProvider and can register or update protocol contracts.
Liquidation Threshold (LT)A per-token coefficient (in basis points) that discounts a collateral token's value when computing the weighted collateral for health-factor calculations. A lower LT means the protocol treats the token more conservatively.
Market CuratorAn entity or role responsible for configuring and managing a specific market's parameters, including allowed collaterals, debt limits, and risk settings.
MulticallA batched sequence of operations executed atomically on a Credit Account within a single transaction. All health-factor checks are deferred until the end of the batch.
Omni-EVMGearbox's cross-chain execution model that allows Credit Accounts to interact with protocols on multiple EVM-compatible chains from a single position.
PoolA lending pool that accepts deposits from liquidity providers and lends to Credit Managers. Each pool is denominated in a single underlying token.
Protocol DAOThe decentralized governance body that oversees the Gearbox Protocol, controlling upgrades, risk parameters, and treasury operations.
QuotaA per-token borrowing allocation within a pool that limits how much of a specific collateral type can be used across all Credit Accounts.
Quota RateThe additional interest rate (RAY-scaled, per-second) charged on a Credit Account for holding a non-underlying collateral token that requires a quota.
Total Weighted Value (TWV)The sum of each collateral token's balance multiplied by its price and its liquidation threshold. TWV divided by total debt gives the health factor.