nifty-wallet/ui/app/util.js

217 lines
6.4 KiB
JavaScript
Raw Normal View History

const ethUtil = require('ethereumjs-util')
var valueTable = {
2016-06-21 13:18:32 -07:00
wei: '1000000000000000000',
kwei: '1000000000000000',
mwei: '1000000000000',
gwei: '1000000000',
szabo: '1000000',
2016-06-21 13:18:32 -07:00
finney: '1000',
ether: '1',
2016-06-21 13:18:32 -07:00
kether: '0.001',
mether: '0.000001',
gether: '0.000000001',
tether: '0.000000000001',
}
var bnTable = {}
for (var currency in valueTable) {
bnTable[currency] = new ethUtil.BN(valueTable[currency], 10)
}
module.exports = {
valuesFor: valuesFor,
addressSummary: addressSummary,
2016-07-06 17:58:46 -07:00
miniAddressSummary: miniAddressSummary,
isAllOneCase: isAllOneCase,
isValidAddress: isValidAddress,
numericBalance: numericBalance,
2016-05-18 13:41:08 -07:00
parseBalance: parseBalance,
formatBalance: formatBalance,
generateBalanceObject: generateBalanceObject,
dataSize: dataSize,
readableDate: readableDate,
normalizeToWei: normalizeToWei,
normalizeEthStringToWei: normalizeEthStringToWei,
normalizeNumberToWei: normalizeNumberToWei,
valueTable: valueTable,
bnTable: bnTable,
2016-10-19 14:33:30 -07:00
isHex: isHex,
}
2016-06-21 13:18:32 -07:00
function valuesFor (obj) {
if (!obj) return []
return Object.keys(obj)
2016-06-21 13:18:32 -07:00
.map(function (key) { return obj[key] })
}
2016-07-06 17:58:46 -07:00
function addressSummary (address, firstSegLength = 10, lastSegLength = 4, includeHex = true) {
if (!address) return ''
let checked = ethUtil.toChecksumAddress(address)
if (!includeHex) {
checked = ethUtil.stripHexPrefix(checked)
}
return checked ? checked.slice(0, firstSegLength) + '...' + checked.slice(checked.length - lastSegLength) : '...'
}
function miniAddressSummary (address) {
2016-05-19 16:14:16 -07:00
if (!address) return ''
var checked = ethUtil.toChecksumAddress(address)
2016-07-06 17:58:46 -07:00
return checked ? checked.slice(0, 4) + '...' + checked.slice(-4) : '...'
}
2016-06-21 13:18:32 -07:00
function isValidAddress (address) {
var prefixed = ethUtil.addHexPrefix(address)
2016-06-02 18:42:09 -07:00
return (isAllOneCase(prefixed) && ethUtil.isValidAddress(prefixed)) || ethUtil.isValidChecksumAddress(prefixed)
}
2016-06-21 13:18:32 -07:00
function isAllOneCase (address) {
2016-05-19 16:14:16 -07:00
if (!address) return true
var lower = address.toLowerCase()
var upper = address.toUpperCase()
return address === lower || address === upper
}
// Takes wei Hex, returns wei BN, even if input is null
2016-06-21 13:18:32 -07:00
function numericBalance (balance) {
if (!balance) return new ethUtil.BN(0, 16)
var stripped = ethUtil.stripHexPrefix(balance)
return new ethUtil.BN(stripped, 16)
}
2016-05-18 13:41:08 -07:00
// Takes hex, returns [beforeDecimal, afterDecimal]
2016-06-21 13:18:32 -07:00
function parseBalance (balance) {
2016-06-21 13:56:04 -07:00
var beforeDecimal, afterDecimal
const wei = numericBalance(balance)
var weiString = wei.toString()
2016-06-21 13:56:04 -07:00
const trailingZeros = /0+$/
beforeDecimal = weiString.length > 18 ? weiString.slice(0, weiString.length - 18) : '0'
2016-06-21 13:56:04 -07:00
afterDecimal = ('000000000000000000' + wei).slice(-18).replace(trailingZeros, '')
if (afterDecimal === '') { afterDecimal = '0' }
2016-05-18 13:41:08 -07:00
return [beforeDecimal, afterDecimal]
}
2016-07-06 21:32:36 -07:00
// Takes wei hex, returns an object with three properties.
// Its "formatted" property is what we generally use to render values.
function formatBalance (balance, decimalsToKeep, needsParse = true) {
var parsed = needsParse ? parseBalance(balance) : balance.split('.')
2016-05-18 13:41:08 -07:00
var beforeDecimal = parsed[0]
var afterDecimal = parsed[1]
var formatted = 'None'
2016-07-07 11:20:02 -07:00
if (decimalsToKeep === undefined) {
if (beforeDecimal === '0') {
if (afterDecimal !== '0') {
var sigFigs = afterDecimal.match(/^0*(.{2})/) // default: grabs 2 most significant digits
if (sigFigs) { afterDecimal = sigFigs[0] }
formatted = '0.' + afterDecimal + ' ETH'
}
} else {
formatted = beforeDecimal + '.' + afterDecimal.slice(0, 3) + ' ETH'
}
2016-06-21 13:18:32 -07:00
} else {
2016-07-07 11:20:02 -07:00
afterDecimal += Array(decimalsToKeep).join('0')
formatted = beforeDecimal + '.' + afterDecimal.slice(0, decimalsToKeep) + ' ETH'
}
2016-07-07 11:20:02 -07:00
return formatted
}
function generateBalanceObject (formattedBalance, decimalsToKeep = 1) {
var balance = formattedBalance.split(' ')[0]
var label = formattedBalance.split(' ')[1]
var beforeDecimal = balance.split('.')[0]
var afterDecimal = balance.split('.')[1]
var shortBalance = shortenBalance(balance, decimalsToKeep)
if (beforeDecimal === '0' && afterDecimal.substr(0, 5) === '00000') {
2016-07-18 09:38:27 -07:00
// eslint-disable-next-line eqeqeq
if (afterDecimal == 0) {
balance = '0'
} else {
balance = '<1.0e-5'
}
} else if (beforeDecimal !== '0') {
balance = `${beforeDecimal}.${afterDecimal.slice(0, decimalsToKeep)}`
}
return { balance, label, shortBalance }
}
function shortenBalance (balance, decimalsToKeep = 1) {
var truncatedValue
var convertedBalance = parseFloat(balance)
if (convertedBalance > 1000000) {
truncatedValue = (balance / 1000000).toFixed(decimalsToKeep)
2016-08-18 15:59:37 -07:00
return `${truncatedValue}m`
} else if (convertedBalance > 1000) {
truncatedValue = (balance / 1000).toFixed(decimalsToKeep)
2016-08-18 15:59:37 -07:00
return `${truncatedValue}k`
2016-08-16 10:48:31 -07:00
} else if (convertedBalance === 0) {
2016-08-07 17:23:35 -07:00
return '0'
2016-08-18 15:59:37 -07:00
} else if (convertedBalance < 0.001) {
return '<0.001'
2016-08-18 16:01:40 -07:00
} else if (convertedBalance < 1) {
2016-08-18 15:59:37 -07:00
var stringBalance = convertedBalance.toString()
if (stringBalance.split('.')[1].length > 3) {
2016-08-18 16:01:40 -07:00
return convertedBalance.toFixed(3)
2016-08-18 15:59:37 -07:00
} else {
return stringBalance
}
} else {
return convertedBalance.toFixed(decimalsToKeep)
}
}
2016-06-21 13:18:32 -07:00
function dataSize (data) {
var size = data ? ethUtil.stripHexPrefix(data).length : 0
2016-06-21 13:18:32 -07:00
return size + ' bytes'
}
// Takes a BN and an ethereum currency name,
// returns a BN in wei
2016-06-21 13:18:32 -07:00
function normalizeToWei (amount, currency) {
try {
return amount.mul(bnTable.wei).div(bnTable[currency])
} catch (e) {}
return amount
}
2016-06-21 13:18:32 -07:00
function normalizeEthStringToWei (str) {
const parts = str.split('.')
let eth = new ethUtil.BN(parts[0], 10).mul(bnTable.wei)
if (parts[1]) {
var decimal = parts[1]
2016-06-21 13:18:32 -07:00
while (decimal.length < 18) {
decimal += '0'
}
const decimalBN = new ethUtil.BN(decimal, 10)
eth = eth.add(decimalBN)
}
return eth
}
2016-05-19 14:21:35 -07:00
var multiple = new ethUtil.BN('10000', 10)
2016-06-21 13:18:32 -07:00
function normalizeNumberToWei (n, currency) {
2016-05-19 14:21:35 -07:00
var enlarged = n * 10000
var amount = new ethUtil.BN(String(enlarged), 10)
return normalizeToWei(amount, currency).div(multiple)
}
2016-06-21 13:18:32 -07:00
function readableDate (ms) {
var date = new Date(ms)
var month = date.getMonth()
var day = date.getDate()
var year = date.getFullYear()
var hours = date.getHours()
2016-06-21 13:18:32 -07:00
var minutes = '0' + date.getMinutes()
var seconds = '0' + date.getSeconds()
2016-06-21 13:56:04 -07:00
var dateStr = `${month}/${day}/${year}`
var time = `${hours}:${minutes.substr(-2)}:${seconds.substr(-2)}`
2016-06-21 13:56:04 -07:00
return `${dateStr} ${time}`
}
2016-10-19 14:33:30 -07:00
function isHex (str) {
2016-10-21 16:39:14 -07:00
return Boolean(str.match(/^(0x)?[0-9a-fA-F]+$/))
2016-10-19 14:33:30 -07:00
}