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

modifying the help messages #68

Merged
merged 14 commits into from
Jan 8, 2025
25 changes: 17 additions & 8 deletions Quorum/entry_points/quorum_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ class Command(BaseModel):
cli_args.TEMPLATE_ARGUMENT,
cli_args.OUTPUT_PATH_ARGUMENT
],
func=run_create_report
),
Command(
name="setup",
help="Sets up Quorum environment for quick start.",
arguments=[cli_args.WORKING_DIR_ARGUMENT],
func=run_setup_quorum
),
Command(
name="validate-address",
Expand All @@ -37,13 +35,11 @@ class Command(BaseModel):
cli_args.CHAIN_ARGUMENT,
cli_args.PAYLOAD_ADDRESS_ARGUMENT
],
func=run_single
),
Command(
name="validate-batch",
help="Validate multiple on-chain payloads sequentially using a JSON config file.",
arguments=[cli_args.CONFIG_ARGUMENT],
func=run_config
help="Run a batch check from a JSON config file.",
arguments=[cli_args.CONFIG_ARGUMENT]
),
Command(
name="validate-by-id",
Expand All @@ -53,6 +49,15 @@ class Command(BaseModel):
cli_args.PROPOSAL_ID_ARGUMENT
]
),
Command(
name="create-report",
help="Generate a proposal report.",
arguments=[
cli_args.PROPOSAL_ID_ARGUMENT,
cli_args.TEMPLATE_ARGUMENT,
cli_args.OUTPUT_PATH_ARGUMENT
]
),
yoav-el-certora marked this conversation as resolved.
Show resolved Hide resolved
Command(
name="validate-ipfs",
help="Compare IPFS content with a proposal's payload.",
Expand All @@ -61,8 +66,12 @@ class Command(BaseModel):
cli_args.CHAIN_ARGUMENT,
cli_args.PAYLOAD_ADDRESS_ARGUMENT,
cli_args.PROMPT_TEMPLATES_ARGUMENT
],
func=run_ipfs_validator
]
),
Command(
name="setup",
help="Initial Quorum environment setup.",
arguments=[cli_args.WORKING_DIR_ARGUMENT]
yoav-el-certora marked this conversation as resolved.
Show resolved Hide resolved
)
]

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250107.200733.615539
20250108.022018.555389
You are viewing a condensed version of this merge commit. You can view the full changes here.