Skip to content

autonomy.cli.hash

Override for hash command.

hash_group

@click.group(name="hash")
def hash_group() -> None

Hashing utils.

generate_all

@hash_group.command(name="all")
@click.option(
    "--packages-dir",
    type=click.Path(exists=True, dir_okay=True, file_okay=False),
    default=Path("packages/"),
)
@click.option("--vendor", type=str)
@click.option("--no-wrap", is_flag=True)
def generate_all(packages_dir: Path, vendor: Optional[str],
                 no_wrap: bool) -> None

Generate IPFS hashes.