-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29878aa
commit 53ce572
Showing
2 changed files
with
13 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,17 @@ ______ _ _ ______ _ | |
| // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | | ||
| |\ \ (_) | (__| < __/ |_ | | | (_) | (_) | | | ||
\_| \_\___/ \___|_|\_\___|\__| \_| \___/ \___/|_| | ||
+---------------------------------------------------+ | ||
| DECENTRALISED STAKING PROTOCOL FOR ETHEREUM | | ||
+---------------------------------------------------+ | ||
Rocket Pool is a first-of-its-kind Ethereum staking pool protocol, designed to | ||
be community-owned, decentralised, permissionless, & trustless. | ||
For more information about Rocket Pool, visit https://rocketpool.net | ||
Authored by the Rocket Pool Core Team | ||
A special thanks to the Rocket Pool community for all their contributions. | ||
%s`, cli.AppHelpTemplate) | ||
|
||
|
@@ -42,25 +53,7 @@ ______ _ _ ______ _ | |
app.Name = "rocketpool" | ||
app.Usage = "Rocket Pool CLI" | ||
app.Version = shared.RocketPoolVersion | ||
app.Authors = []cli.Author{ | ||
{ | ||
Name: "David Rugendyke", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Jake Pospischil", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Joe Clapis", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Kane Wallmann", | ||
Email: "[email protected]", | ||
}, | ||
} | ||
app.Copyright = "(c) 2023 Rocket Pool Pty Ltd" | ||
app.Copyright = "(c) 2024 Rocket Pool Pty Ltd" | ||
|
||
// Initialize app metadata | ||
app.Metadata = make(map[string]interface{}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,25 +23,7 @@ func main() { | |
app.Name = "rocketpool" | ||
app.Usage = "Rocket Pool service" | ||
app.Version = shared.RocketPoolVersion | ||
app.Authors = []cli.Author{ | ||
{ | ||
Name: "David Rugendyke", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Jake Pospischil", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Joe Clapis", | ||
Email: "[email protected]", | ||
}, | ||
{ | ||
Name: "Kane Wallmann", | ||
Email: "[email protected]", | ||
}, | ||
} | ||
app.Copyright = "(c) 2022 Rocket Pool Pty Ltd" | ||
app.Copyright = "(c) 2024 Rocket Pool Pty Ltd" | ||
|
||
// Set application flags | ||
app.Flags = []cli.Flag{ | ||
|