Add kredits-formatter and additionally format balance

This adds a `balanceInt` value to the contributor data that has the
token balance formatted as full Kredits. (similar to Ether)
This commit is contained in:
2019-04-19 11:57:35 +02:00
parent 5820d71b2c
commit 3cb94fb660
2 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
const ethersUtils = require('ethers').utils;
module.exports = function (value, options = {}) {
let etherValue = ethersUtils.formatEther(value);
if (options.asFloat) {
return parseFloat(etherValue);
} else {
return parseInt(etherValue);
}
}