From cea1d6ff5b2fd5c1e04130571aebf057df4d2dce Mon Sep 17 00:00:00 2001 From: Denis Carriere Date: Wed, 14 Jun 2023 19:55:26 -0400 Subject: [PATCH] update cli description --- bin/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.ts b/bin/cli.ts index 45325a7..551d900 100644 --- a/bin/cli.ts +++ b/bin/cli.ts @@ -31,7 +31,7 @@ export interface StartOptions extends DefaultOptions { // Start JSON RPC Server defaultOptions(program.command("start")) - .description("Start JSON RPC Server") + .description("Start EOS EVM JSON-RPC API server") .option('-p --port ', 'JSON RPC listens on port number, listen for incoming Ethereum transactions.', String(DEFAULT_PORT)) .option('--hostname ', `JSON RPC listens on hostname, listen for incoming Ethereum transactions (ex: "${DEFAULT_HOSTNAME})"`) .option('--metrics-listen-port ', 'The process will listen on this port for Prometheus metrics requests', String(DEFAULT_PROMETHEUS_PORT))