1 2 3 4 5 6
use crate::Decimal; pub type Uint64_9 = Decimal<u64, 9>; pub type Uint128_18 = Decimal<u128, 18>; pub type Int64_9 = Decimal<i64, 9>; pub type Int128_18 = Decimal<i128, 18>;