0.0.1-b • Published 9 years ago

ethereum-units v0.0.1-b

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

ethereum-units

A simple unit converter for Ethereum, because finney, szabo, and wei are less intuitive than SI units for people like me.

CLI

$ npm install -g ethereum-units
$ ethunits 1 babbage wei
1000000 wei
$ ethunits 1 wei
0.000000000000000001 ether
$ ethunits -e 1 wei
1E-18 ether

Node

ethunits = require('ethereum-units');
ethunits.convert(1, 'babbage', 'wei');

Returns BigDecimal objects.