liquid-funding/app/utils/conversions.js
Jonathan Rainville 2b1ffba6a4 update to Embark 4
2019-04-17 15:28:19 -04:00

5 lines
168 B
JavaScript

/*global web3*/
export const toEther = amount => web3.utils.fromWei(amount, 'ether')
export const toWei = (amount, scale = 'ether') => web3.utils.toWei(amount, scale)