flowbatcher
Version:
Save gas by batching multiple ETH and ERC-20 transactions into a single operation, optimizing efficiency and reducing costs.
14 lines (11 loc) • 305 B
JavaScript
/*
description: contains different colors for displaying messages
usage : used to display messages in different colors ( we give this in console lib)
*/
const loggerColorEnum = Object.freeze({
ERR: "red",
WARN: "yellow",
INFO: "green",
DEBUG: "white",
})
module.exports = loggerColorEnum