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

add content policy warning #110

Merged
merged 2 commits into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading