Solana program have a 200K computing limit as of now (v1.8.12) Solana Runtime support float through software emulation, so it’s heavy on the computing usage, see below :Using Unsigned IntegerSo you’r better off using Unsigned Integers (a.k.a u8,16,…). With Unsigned Integers you have a few options, let’s take u64 for instance :// unsafe u64 maths, which either crash or overflow let a = u64::MAX + 1u64; let b = u64::MAX / u64::ZERO; // checked u64 maths let c = u64::MAX.checked_mul(10u64).unwra...