Skip to content
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
7 changes: 7 additions & 0 deletions anchor/client/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ pub struct Node {
#[clap(
long,
value_name = "NETWORK_ADDRESSES",
value_delimiter = ',',
help = "Comma-separated addresses to one or more beacon node HTTP APIs. \
Default is http://localhost:5052.",
display_order = 0
Expand All @@ -109,6 +110,7 @@ pub struct Node {
#[clap(
long,
value_name = "NETWORK_ADDRESSES",
value_delimiter = ',',
help = "Comma-separated addresses to one or more execution node JSON-RPC APIs. \
Default is http://localhost:8545.",
display_order = 0
Expand All @@ -118,6 +120,7 @@ pub struct Node {
#[clap(
long,
value_name = "NETWORK_ADDRESSES",
value_delimiter = ',',
help = "Address of execution node WS API. \
Default is ws://localhost:8546.",
display_order = 0
Expand All @@ -127,6 +130,7 @@ pub struct Node {
#[clap(
long,
value_name = "CERTIFICATE-FILES",
value_delimiter = ',',
help = "Comma-separated paths to custom TLS certificates to use when connecting \
to a beacon node (and/or proposer node). These certificates must be in PEM format and are used \
in addition to the OS trust store. Commas must only be used as a \
Expand All @@ -138,6 +142,7 @@ pub struct Node {
#[clap(
long,
value_name = "CERTIFICATE-FILES",
value_delimiter = ',',
help = "Comma-separated paths to custom TLS certificates to use when connecting \
to an exection node. These certificates must be in PEM format and are used \
in addition to the OS trust store. Commas must only be used as a \
Expand Down Expand Up @@ -211,6 +216,7 @@ pub struct Node {
#[clap(
long,
value_name = "ADDRESS",
value_delimiter = ',',
help = "The address anchor will listen for UDP and TCP connections. To listen \
over IpV4 and IpV6 set this flag twice with the different values.\n\
Examples:\n\
Expand Down Expand Up @@ -468,6 +474,7 @@ pub struct Node {

#[clap(
long,
value_delimiter = ',',
help = "Override size for a specific queue. Needs to be of the format \"queue_name=42\".",
hide = true,
display_order = 0
Expand Down