Rengo-Labs / uniswap-casper-interface

Interface Website for Casperswap
https://casperswap.com
Other
0 stars 0 forks source link

Ensure mathematics are done exclusively using BigNumber #32

Open tmesser opened 1 year ago

tmesser commented 1 year ago

BACKGROUND:

Doing the calculations we require in this project requires a high level of precision. Such precision is only possible with the BigNumber structure. If it is not used, it creates roundoff errors that are completely unacceptable. Therefore, BigNumber must be used for all mathematical processes in the project.

TO-DO:

davidtai commented 1 year ago

fixed