@factorial-finance/blueprint-node
Version:
blueprint-node-plugin
23 lines (22 loc) • 564 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LOG_COLORS = void 0;
// Color constants for logging
exports.LOG_COLORS = {
// Contract display
CONTRACT_UNKNOWN: 'white',
CONTRACT_KNOWN: 'yellow',
// Address alias
ADDRESS_ALIAS: 'cyan',
// Operations
OPERATION_ARROW: 'yellow',
OPERATION_NAME: 'yellowBright',
OPERATION_CODE: 'gray',
// Errors
ERROR_ICON: 'red',
ERROR_MESSAGE: 'redBright',
// Special states
DEPLOY_MESSAGE: 'magenta',
// General
GRAY: 'gray',
};