2026-07-02 17:30:19 -03:00

19 lines
481 B
Rust

//! The Stablecoin Program implementation.
pub use stablecoin_core as core;
/// Deposit additional collateral into an existing position.
pub mod deposit_collateral;
/// Open a new collateral-only position for a calling owner.
pub mod open_position;
/// Repay outstanding stablecoin debt against an existing position.
pub mod repay_debt;
/// Withdraw collateral from an existing position back to a user-controlled holding.
pub mod withdraw_collateral;
#[cfg(test)]
mod tests;