mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-02-20 23:28:19 +00:00
5 lines
168 B
JavaScript
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)
|