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