81d365834
1 2 3 4 5 6 7
const ethUtil = require('ethereumjs-util') const BN = ethUtil.BN module.exports = function hexToBn (hex) { return new BN(ethUtil.stripHexPrefix(hex), 16) }