1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Messages for the perps market contract.
//!
//! The market contract contains the vast majority of functionality within
//! perps, and handles trading, liquidity providing, history, and more.
pub mod config;
pub mod crank;
pub mod deferred_execution;
pub mod delta_neutrality_fee;
pub mod entry;
pub mod fees;
pub mod history;
pub mod liquidity;
pub mod order;
pub mod position;
pub mod spot_price;