scryptlib
Version:
Javascript SDK for integration of Bitcoin SV Smart Contracts written in sCrypt language.
15 lines (9 loc) • 467 B
JavaScript
const chalk = require('chalk');
function showNoCompilerFound() {
console.info(`${chalk.bgRed.bold('**ERROR**: No sCrypt compiler found.')}`);
}
function showDownloadFailed() {
console.info(`${chalk.bgRed.bold('**ERROR**: Downloading sCrypt compiler failed.')}`);
console.info(`Go to ${chalk.blue.bold('https://github.com/sCrypt-Inc/compiler_dist/releases')} to download sCrypt compiler.\n`);
}
module.exports = { showNoCompilerFound, showDownloadFailed };