1 2 3 4 5 6 7 8 9 10
/// Number of satoshis (sats) in a Bitcoin: 100_000_000 pub const SATS_PER_BTC: f64 = 100_000_000.; pub(crate) mod error; pub(crate) mod leverage; pub(crate) mod margin; pub(crate) mod price; pub(crate) mod quantity; pub(crate) mod serde_util; pub(crate) mod trade;