Pular para o conteúdo principal
Superteam Brasil
Voltar
+40 XP
12/12

Liquidation Engine

Build a liquidation engine for a lending protocol.

Lending platforms like Solend and MarginFi allow users to borrow against collateral. If the collateral value drops too much, the position becomes unhealthy and must be liquidated to protect the protocol.

Health Factor: (collateral_value * collateral_factor) / debt_value

  • Health > 1.0: Position is safe
  • Health < 1.0: Position is liquidatable

Liquidation: A liquidator repays the debt and receives the collateral plus a bonus (typically 5-10%).

Your challenge: implement health factor calculation, identify liquidatable positions, and execute liquidations with proper accounting.

Casos de Teste

Should return object with isLiquidatable flag
Entrada: 100, 50, 1.5Esperado: typeof result === 'object' && 'isLiquidatable' in result
Should flag undercollateralized position as liquidatable
Entrada: 100, 80, 1.5Esperado: result.isLiquidatable === true

Discussão