Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: dynamic year on the chainsafe cli notice #5476

Merged
merged 1 commit into from May 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cli/src/cli.ts
Expand Up @@ -9,7 +9,7 @@ import {getVersionData} from "./util/version.js";
const {version} = getVersionData();
const topBanner = `🌟 Lodestar: TypeScript Implementation of the Ethereum Consensus Beacon Chain.
* Version: ${version}
* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `📖 For more information, check the CLI reference:
* https://chainsafe.github.io/lodestar/reference/cli

Expand Down
2 changes: 1 addition & 1 deletion packages/flare/src/cli.ts
Expand Up @@ -10,7 +10,7 @@ Flare is a sudden brief burst of bright flame or light.
In the wrong hands, can lead people astray.
Use with care.

* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `
✍️ Give feedback and report issues on GitHub:
* https://github.com/ChainSafe/lodestar`;
Expand Down
2 changes: 1 addition & 1 deletion packages/prover/src/cli/cli.ts
Expand Up @@ -9,7 +9,7 @@ import {globalOptions} from "./options.js";
const {version} = getVersionData();
const topBanner = `🌟 Lodestar Prover Proxy: Ethereum RPC proxy for RPC responses, verified against the trusted block hashes.
* Version: ${version}
* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `📖 For more information, check the CLI reference:
* https://chainsafe.github.io/lodestar/reference/cli

Expand Down