Skip to content

Commit

Permalink
add content policy warning (#110)
Browse files Browse the repository at this point in the history
* content policy warning

* update to explicitly ask not to use our lgoo
  • Loading branch information
shrimalmadhur authored Apr 22, 2024
1 parent f1ad851 commit 2fa5937
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions pkg/operator/config/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,28 @@ func CreateCmd(p utils.Prompter) *cli.Command {
return err
}

fmt.Println(
"Created operator.yaml and metadata.json files. Please make sure configuration details(el_delegation_manager_address) is correct based on network by checking our docs.",
fmt.Printf(
"|| %s Created operator.yaml and metadata.json files. Please make sure configuration details(el_delegation_manager_address) is correct based on network by checking our docs.\n",
utils.EmojiCheckMark,
)
fmt.Println()
fmt.Println(
"Please fill in the metadata.json file and upload it to a public url. Then update the operator.yaml file with the url (metadata_url).",
"|| Please fill in the metadata.json file and upload it to a public url. Then update the operator.yaml file with the url (metadata_url).",
)
fmt.Printf(
"|| %s Make sure to read and adhere to our webapp content policy here %s before registering your operator. Any violation will be taken seriously and could lead to removal of your operator from our UI %s\n",
utils.EmojiWarning,
"https://docs.eigenlayer.xyz/eigenlayer/operator-guides/operator-content-guidelines",
utils.EmojiWarning,
)
fmt.Printf(
"|| %s Do Not use any EigenLayer brand and logo for your operator. This will result into violation of our content policy %s\n",
utils.EmojiWarning,
utils.EmojiWarning,
)
fmt.Println()
fmt.Println(
"Once you have filled in the operator.yaml file, you can register your operator using the configuration file.",
"|| Once you have filled in the operator.yaml file, you can register your operator using the configuration file.",
)
return nil
},
Expand Down

0 comments on commit 2fa5937

Please sign in to comment.