pfc_steak/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
pub mod hub;
pub mod hub_tf;
// this was copied from eris-staking's branch of STEAK.
//
mod decimal_checked_ops {
use std::{convert::TryInto, str::FromStr};
use cosmwasm_std::{Decimal, Decimal256, Fraction, OverflowError, StdError, Uint128, Uint256};
// pub trait Decimal256CheckedOps {
// fn to_decimal(self) -> Result<Decimal, StdError>;
// }
// impl Decimal256CheckedOps for Decimal256 {
// fn to_decimal(self) -> Result<Decimal, StdError> {
// let U256(ref arr) = self.0;
// if arr[2] == 0u64 || arr[3] == 0u64 {
// return Err(StdError::generic_err(
// "overflow error by casting decimal256 to decimal",
// ));
// }
// Decimal::from_str(&self.to_string())
// }
// }
pub trait DecimalCheckedOps {
fn checked_add(self, other: Decimal) -> Result<Decimal, StdError>;
fn checked_mul_uint(self, other: Uint128) -> Result<Uint128, StdError>;
fn to_decimal256(self) -> Decimal256;
}
impl DecimalCheckedOps for Decimal {
fn checked_add(self, other: Decimal) -> Result<Decimal, StdError> {
self.numerator()
.checked_add(other.numerator())
.map(|_| self + other)
.map_err(StdError::overflow)
}
fn checked_mul_uint(self, other: Uint128) -> Result<Uint128, StdError> {
if self.is_zero() || other.is_zero() {
return Ok(Uint128::zero());
}
let multiply_ratio =
other.full_mul(self.numerator()) / Uint256::from(self.denominator());
if multiply_ratio > Uint256::from(Uint128::MAX) {
Err(StdError::overflow(OverflowError::new(
cosmwasm_std::OverflowOperation::Mul,
self,
other,
)))
} else {
Ok(multiply_ratio.try_into().unwrap())
}
}
fn to_decimal256(self) -> Decimal256 {
Decimal256::from_str(&self.to_string()).unwrap()
}
}
}
pub use decimal_checked_ops::DecimalCheckedOps;