Aave V3 lending protocol reference for DeFi Saver plugin. Use when a skill needs Aave V3 protocol details, health factor rules, position data, or market information. Internal reference only.
Internal reference skill for Aave V3 protocol details. Used by other skills that need position data, health factor rules, or market information.
| Version | Networks |
|---|---|
| v3default | All networks |
Use v3default for all networks.
| Value | Status | Skill Action |
|---|---|---|
| Above 2.0 | ✅ Safe | Proceed normally |
| 1.5 to 2.0 | ⚠️ Moderate risk | Warn user |
| 1.3 to 1.5 | 🔴 High risk | Strong warning, confirm before proceeding |
| Below 1.3 | ☠️ Critical | ABORT — never proceed |
Use these endpoints to read position data via DeFi Saver API instead of direct RPC calls.
Returns current position: healthRatio, LTV, collateral, debt. Use before any write action to check current state.
Returns { account, market } combined. Use for full position overview.
| Network | Chain ID | version |
|---|---|---|
| Ethereum | 1 | v3default |
| Optimism | 10 | v3default |
| Base | 8453 | v3default |
| Arbitrum | 42161 | v3default |
| Linea | 59144 | v3default |
| Field | Type | Description |
|---|---|---|
| healthRatio | string | Parse as float, check > 1.3 |
| borrowedUsd | string | Parse as float, > 0 means active position |
| suppliedUsd | string | Total collateral value in USD |
| leftToBorrowUsd | string | Remaining borrow capacity |
| collRatio | string | Collateralization ratio % |
| liqPercent | string | Liquidation risk % |
| netApy | string | Net APY (can be negative) |