Skip to content

Commit cfeed27

Browse files
committed
Updates wording on origin/destination hotkey in st move
1 parent 3e56841 commit cfeed27

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

bittensor_cli/cli.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4321,15 +4321,32 @@ def stake_move(
43214321
network: Optional[list[str]] = Options.network,
43224322
wallet_name: Optional[str] = Options.wallet_name,
43234323
wallet_path: Optional[str] = Options.wallet_path,
4324-
wallet_hotkey: Optional[str] = Options.wallet_hotkey_ss58,
4324+
wallet_hotkey: Optional[str] = typer.Option(
4325+
None,
4326+
"--from",
4327+
"--hotkey",
4328+
"--hotkey-ss58",
4329+
"-H",
4330+
"--wallet_hotkey",
4331+
"--wallet_hotkey_ss58",
4332+
"--wallet-hotkey",
4333+
"--wallet-hotkey-ss58",
4334+
"--wallet.hotkey",
4335+
help="Validator hotkey or SS58 where the stake is currently located.",
4336+
),
43254337
origin_netuid: Optional[int] = typer.Option(
43264338
None, "--origin-netuid", help="Origin netuid"
43274339
),
43284340
destination_netuid: Optional[int] = typer.Option(
43294341
None, "--dest-netuid", help="Destination netuid"
43304342
),
43314343
destination_hotkey: Optional[str] = typer.Option(
4332-
None, "--dest-ss58", "--dest", help="Destination hotkey", prompt=False
4344+
None,
4345+
"--to",
4346+
"--dest-ss58",
4347+
"--dest",
4348+
help="Destination validator hotkey SS58",
4349+
prompt=False,
43334350
),
43344351
amount: float = typer.Option(
43354352
None,

0 commit comments

Comments
 (0)