MyCrypto/common/libs/units.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

// @flow
import Big from 'bignumber.js';
const UNITS = {
wei: '1',
kwei: '1000',
ada: '1000',
femtoether: '1000',
mwei: '1000000',
babbage: '1000000',
picoether: '1000000',
gwei: '1000000000',
shannon: '1000000000',
nanoether: '1000000000',
nano: '1000000000',
szabo: '1000000000000',
microether: '1000000000000',
micro: '1000000000000',
finney: '1000000000000000',
milliether: '1000000000000000',
milli: '1000000000000000',
ether: '1000000000000000000',
kether: '1000000000000000000000',
grand: '1000000000000000000000',
einstein: '1000000000000000000000',
mether: '1000000000000000000000000',
gether: '1000000000000000000000000000',
tether: '1000000000000000000000000000000'
};
type UNIT = $Keys<typeof UNITS>;
function getValueOfUnit(unit: UNIT) {
return new Big(UNITS[unit]);
}
export function toEther(number: Big, unit: UNIT) {
return toWei(number, unit).div(getValueOfUnit('ether'));
}
export function toWei(number: Big, unit: UNIT): Big {
return number.times(getValueOfUnit(unit));
}