use primitive_types::U256;
pub const KIB: u64 = 1024; pub const MIB: u64 = 1024 * KIB; pub const GIB: u64 = 1024 * MIB;
pub const NANO_AVAX: u64 = 1;
pub const MICRO_AVAX: u64 = 1000 * NANO_AVAX;
pub const MILLI_AVAX: u64 = 1000 * MICRO_AVAX;
pub const AVAX: u64 = 1000 * MILLI_AVAX;
pub const KILO_AVAX: u64 = 1000 * AVAX;
pub const MEGA_AVAX: u64 = 1000 * KILO_AVAX;
pub const AVAX_EVM_CHAIN: u64 = 1000 * MEGA_AVAX;
pub fn cast_xp_navax_to_avax(navax: U256) -> u64 {
let avax_unit = U256::from(10).checked_pow(U256::from(9)).unwrap();
let avaxs = navax.checked_div(avax_unit).unwrap();
if avaxs >= U256::from(u64::MAX) {
u64::MAX
} else {
avaxs.as_u64()
}
}
#[test]
fn test_cast_xp_navax_to_avax() {
assert_eq!(cast_xp_navax_to_avax(U256::max_value()), u64::MAX);
assert_eq!(cast_xp_navax_to_avax(U256::from(u64::MAX)), 18446744073);
assert_eq!(cast_xp_navax_to_avax(U256::from(100)), 0);
}
pub fn cast_avax_to_xp_navax(avax: U256) -> U256 {
let avax_unit = U256::from(10).checked_pow(U256::from(9)).unwrap();
if let Some(navaxs) = avax.checked_mul(avax_unit) {
navaxs
} else {
U256::max_value()
}
}
#[test]
fn test_cast_avax_to_xp_navax() {
assert_eq!(cast_avax_to_xp_navax(U256::max_value()), U256::max_value());
assert_eq!(
cast_avax_to_xp_navax(U256::from(1)),
U256::from_dec_str("1000000000").unwrap()
);
assert_eq!(
cast_avax_to_xp_navax(U256::from(10)),
U256::from_dec_str("10000000000").unwrap()
);
assert_eq!(
cast_avax_to_xp_navax(U256::from(500)),
U256::from_dec_str("500000000000").unwrap()
);
}
pub fn cast_evm_navax_to_avax_i64(navax: U256) -> i64 {
let avax_unit = U256::from(10).checked_pow(U256::from(18)).unwrap();
let avaxs = navax.checked_div(avax_unit).unwrap();
if avaxs >= U256::from(u64::MAX) {
i64::MAX
} else {
let converted = avaxs.as_u64();
if converted >= i64::MAX as u64 {
i64::MAX
} else {
converted as i64
}
}
}
#[test]
fn test_cast_evm_navax_to_avax_i64() {
assert_eq!(cast_evm_navax_to_avax_i64(U256::max_value()), i64::MAX);
assert_eq!(cast_evm_navax_to_avax_i64(U256::from(i64::MAX)), 9);
assert_eq!(cast_evm_navax_to_avax_i64(U256::from(100)), 0);
}
pub fn cast_avax_to_evm_navax(avax: U256) -> U256 {
let avax_unit = U256::from(10).checked_pow(U256::from(18)).unwrap();
if let Some(navaxs) = avax.checked_mul(avax_unit) {
navaxs
} else {
U256::max_value()
}
}
#[test]
fn test_cast_avax_to_evm_navax() {
assert_eq!(cast_avax_to_evm_navax(U256::max_value()), U256::max_value());
assert_eq!(
cast_avax_to_evm_navax(U256::from(1)),
U256::from_dec_str("1000000000000000000").unwrap()
);
assert_eq!(
cast_avax_to_evm_navax(U256::from(10)),
U256::from_dec_str("10000000000000000000").unwrap()
);
assert_eq!(
cast_avax_to_evm_navax(U256::from(500)),
U256::from_dec_str("500000000000000000000").unwrap()
);
}