wanchainjs-units
v0.2.0
Published
Wanchain unit conversion.
Downloads
1
Readme
wanchainjs-units
Unit conversion utility.
There are two methods:
convert(value, unitFrom, unitTo)
- convert a value between two unitslazyConvert(value, unitTo)
- include unit type in the input and the output
The value
and the output in all cases is a string.
Examples
Units.convert('1', 'wan', 'wei') // '1000000000000000000'
Units.convert('1', 'wei', 'wan') // '0.000000000000000001'
Units.convert('1', 'finney', 'wan') // '0.001'
Units.lazyConvert('1 wan', 'wei') // '1000000000000000000 wei'
Units.lazyConvert('1 wei', 'wan') // '0.000000000000000001 wan'
Units.lazyConvert('1 finney', 'wan') // '0.001 wan'
Units
Units are defined in units.json
. It is compatible with web3.js and additionally includes WAN
.