#solana #blockchain #math #safe #primitive #type #numeric

solana-safe-math

Safe Math wrapper for the primitive numberic types used in a Solana program

1 unstable release

0.1.0 Jan 31, 2022

#221 in #numeric

Download history 10/week @ 2024-11-20 13/week @ 2024-11-27 24/week @ 2024-12-04 69/week @ 2024-12-11 18/week @ 2024-12-18 15/week @ 2025-01-01 22/week @ 2025-01-08 48/week @ 2025-01-15 25/week @ 2025-01-22 23/week @ 2025-01-29 43/week @ 2025-02-05 41/week @ 2025-02-12 22/week @ 2025-02-19 52/week @ 2025-02-26 13/week @ 2025-03-05

130 downloads per month

Custom license

6KB
69 lines

Solana Safe Math

 use solana_safe_math::{SafeMath};
 
 fn process_init_escrow(
   accounts: &[AccountInfo],
   amount: u64,
   program_id: &Pubkey
 ) -> ProgramResult {
   let val = 10_u64;
  
   val.safe_add(amount)?;
   val.safe_sub(amount)?;
   val.safe_mul(amount)?;
   val.safe_div(amount)?;
   val.safe_pow(8_u32)?;
 }

Works with u128, u64, u32, u16 and u8


lib.rs:

Anchor Safe Math

anchor_safe_math is a collection of helper numeric operation functions that removes the verbosity of checking for overflow, underflow and division by zero errors.

Examples

use solana_safe_math::{SafeMath};
use solana_program::{entrypoint::ProgramResult};

fn process_init_escrow(
  accounts: &[AccountInfo],
  amount: u64,
  program_id: &Pubkey
) -> ProgramResult {
  let val = 10_u64;
 
  val.safe_add(amount)?;
  val.safe_sub(amount)?;
  val.safe_mul(amount)?;
  val.safe_div(amount)?;
  val.safe_pow(8_u32)?;
}

Dependencies

~17–25MB
~439K SLoC