erc20-wizard
Version:
CLI for creating and deploying ERC20 tokens on Ethereum network.
31 lines (30 loc) • 883 B
TypeScript
import { errorMessageTemplate } from '../helpers';
declare const cliPromptOptions: ({
description: string;
name: string;
required: boolean;
hidden: boolean;
pattern?: undefined;
} | {
description: string;
name: string;
pattern: RegExp;
required: boolean;
hidden?: undefined;
})[];
declare const cliOptions: {
boolean: string[];
string: string[];
};
declare const cliMessages: {
welcome: string;
help: string;
configureSuccess: string;
invalidProjectId: string;
notConfigured: string;
deploying: string;
configDisplay: (projecId: string) => string;
deploymentError: (tokenName: string, account: string, error: string) => string;
deploymentSuccess: (tokenName: string, account: string, contractAddress: string) => string;
};
export { cliPromptOptions, cliOptions, cliMessages, errorMessageTemplate };