UNPKG

flowbatcher

Version:

Save gas by batching multiple ETH and ERC-20 transactions into a single operation, optimizing efficiency and reducing costs.

15 lines (12 loc) 251 B
/* description: contains different types of log types usage : (used in logger lib to give the type) */ const logEnum = Object.freeze({ INFO: "INFO", ERR: "ERR", WARN: "WARN", DEBUG: "DEBUG", WTF: "WTF", }) module.exports = logEnum