UNPKG

token-price-oracles

Version:

tools for creating token price data feeds and oracles that integrate with on-chain dex's

9 lines (8 loc) 248 B
module.exports = function bytes32ToNum(bytes32str) { bytes32str = bytes32str.replace(/^0x/, ''); while (bytes32str[0] == 0) { bytes32str = bytes32str.substr(1) } var bn = web3.toDecimal('0x' + bytes32str, 16); return bn }