Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
feat: add hardfork to cli output (#4343)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch authored Apr 21, 2023
1 parent 1281876 commit 9bdd38c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/packages/cli/src/initialize/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,10 @@ export default function (provider: EthereumProvider, cliSettings: CliSettings) {
}

logs.push("");
logs.push("Chain Id");
logs.push("Chain");
logs.push("==================");
logs.push(color(liveOptions.chain.chainId.toString()));
logs.push(`Hardfork: ${color(liveOptions.chain.hardfork)}`);
logs.push(`Id: ${color(liveOptions.chain.chainId.toString())}`);

logs.push("");
logs.push("RPC Listening on " + cliSettings.host + ":" + cliSettings.port);
Expand Down

0 comments on commit 9bdd38c

Please sign in to comment.