Skip to main content

jiminy_lending/
lib.rs

1#![no_std]
2//! # jiminy-lending
3//!
4//! Collateralization, liquidation, interest, utilization.
5//!
6//! Every lending protocol does the same math: collateral ratios, health
7//! checks, liquidation thresholds, interest rate curves, utilization rates.
8//! This crate gives you the building blocks so you write the logic once
9//! and get it right. All basis-point denominated, all overflow-checked.
10
11mod lending;
12pub use lending::*;
13pub use pinocchio;