simple-sushiswap-sdk
Version:
Simple easy to understand SDK for sushiswap
14 lines (13 loc) • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.hexlify = void 0;
const ethers_1 = require("ethers");
const utils_1 = require("ethers/lib/utils");
/**
* Convert to hex
* @param value The value
*/
function hexlify(value) {
return utils_1.hexlify(ethers_1.BigNumber.from(value.toFixed()));
}
exports.hexlify = hexlify;