Math

Description

This is a library contract that provides math functions on fractional numbers, performing arithmetic with unsigned fixed-point decimals.

Math uses OpenZeppelin's SafeMath library and SafeDecimalMath library for most of its basic arithmetic operations in order to protect from arithmetic overflows and zero divisions.

Source: contracts/Math.sol

Internal Functions

powDecimal

Source

Returns the exponentiation of the base (x) integer by the n^th power to precision of 18 decimals. Function calculates the result using exponentiation by squaring, handling preciison loss by truncation and removes the order of magnitude introduced with integer arithmetics each time the base is squared.

Last updated