Y-Foundry-Dao / yfd-dapp-core

Governance dApp
GNU Affero General Public License v3.0
2 stars 1 forks source link

Feature/amount converter #19

Closed Tgrede closed 2 years ago

Tgrede commented 2 years ago

Added 2 functions: convertToBase and convertFromBase

convertToBase takes a number and multiplies it by 10^6 to (generally) send to the smart contracts convertFromBase takes a number and multiples it by 10^-6 to (generally) convert values coming from queries

replaced anything with Math.pow() with one of these convert functions