opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
10 lines • 407 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseEther = void 0;
const unit_js_1 = require("../../constants/unit.js");
const parseUnits_js_1 = require("./parseUnits.js");
function parseEther(ether, unit = 'wei') {
return (0, parseUnits_js_1.parseUnits)(ether, unit_js_1.etherUnits[unit]);
}
exports.parseEther = parseEther;
//# sourceMappingURL=parseEther.js.map
;