Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def __init__(self):
name="root",
short_help="Root commands, alias: `r`",
)
self.app.add_typer(self.root_app, name="d", hidden=True)
self.app.add_typer(self.root_app, name="r", hidden=True)

# stake aliases
self.app.add_typer(
Expand Down Expand Up @@ -2868,7 +2868,7 @@ def stake_set_children(

# Example usage:

[green]$[/green] btcli stake set_children - <child_hotkey> -c <child_hotkey> --hotkey <parent_hotkey> --netuid 1
[green]$[/green] btcli stake child set - <child_hotkey> -c <child_hotkey> --hotkey <parent_hotkey> --netuid 1
-p 0.3 -p 0.3

[italic]]Note[/italic]: This command is critical for users who wish to delegate children hotkeys among different
Expand Down Expand Up @@ -2925,7 +2925,7 @@ def stake_revoke_children(

# Example usage:

[green]$[/green] btcli stake revoke_children --hotkey <parent_hotkey> --netuid 1
[green]$[/green] btcli stake child revoke --hotkey <parent_hotkey> --netuid 1

[italic]Note[/italic]:This command is critical for users who wish to remove children hotkeys on the network.
It allows for a complete removal of delegated authority to enhance network participation and influence.
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/src/commands/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ async def get_senate(subtensor: SubtensorInterface):
style="bright_magenta",
no_wrap=True,
),
title="[dark_orange]Senate",
title="[underline dark_orange]Senate",
show_footer=True,
show_edge=False,
expand=False,
Expand Down
4 changes: 2 additions & 2 deletions bittensor_cli/src/commands/stake.py
Original file line number Diff line number Diff line change
Expand Up @@ -1719,8 +1719,8 @@ async def _render_table(
)
if prompt:
command = (
f"`btcli stake set_children --children <child_hotkey> --hotkey <parent_hotkey> "
f"--netuid {netuid} --proportion <float>`"
f"`btcli stake child set --children <child_hotkey> --hotkey <parent_hotkey> "
f"--netuid {netuid} --proportions <float>`"
)
console.print(
f"[bold cyan]To add a child hotkey you can run the command: [white]{command}[/white][/bold cyan]"
Expand Down