@flarenetwork/flare-stake-tool
Version:
Utilities for staking on the Flare network
27 lines • 775 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.log = log;
exports.logInfo = logInfo;
exports.logError = logError;
exports.logSuccess = logSuccess;
exports.logWarning = logWarning;
const chalk_1 = __importDefault(require("chalk"));
function log(msg) {
console.log(msg);
}
function logInfo(msg) {
console.log(chalk_1.default.blue(msg));
}
function logError(msg) {
console.log(chalk_1.default.red(msg));
}
function logSuccess(msg) {
console.log(chalk_1.default.green(msg));
}
function logWarning(msg) {
console.log(chalk_1.default.yellow(msg));
}
//# sourceMappingURL=output.js.map