UNPKG

@gateway.fm/gtw-dvf-client-js

Version:

DVF client js lib with gateway.fm rpc endpoints

8 lines (6 loc) 255 B
const BN = require('bignumber.js') module.exports = (dvf, token) => { const tokenInfo = dvf.token.getTokenInfo(token) const quantizedUnit = new BN(10).pow(tokenInfo.decimals).div(tokenInfo.quantization).toString() return (quantizedUnit.length-1) }