|
11 | 11 | import traceback
|
12 | 12 | import warnings
|
13 | 13 | from pathlib import Path
|
14 |
| -from typing import Coroutine, Optional, Union |
| 14 | +from typing import Coroutine, Optional |
15 | 15 | from dataclasses import fields
|
16 | 16 |
|
17 | 17 | import rich
|
@@ -929,11 +929,13 @@ def __init__(self):
|
929 | 929 | )(self.view_dashboard)
|
930 | 930 |
|
931 | 931 | # Sub command aliases
|
932 |
| - # Weights |
| 932 | + # Wallet |
933 | 933 | self.wallet_app.command(
|
934 | 934 | "swap_hotkey",
|
935 | 935 | hidden=True,
|
936 | 936 | )(self.wallet_swap_hotkey)
|
| 937 | + self.wallet_app.command("swap_coldkey", hidden=True)(self.wallet_swap_coldkey) |
| 938 | + self.wallet_app.command("swap_check", hidden=True)(self.wallet_check_ck_swap) |
937 | 939 | self.wallet_app.command(
|
938 | 940 | "regen_coldkey",
|
939 | 941 | hidden=True,
|
@@ -962,10 +964,14 @@ def __init__(self):
|
962 | 964 | "get_identity",
|
963 | 965 | hidden=True,
|
964 | 966 | )(self.wallet_get_id)
|
| 967 | + self.wallet_app.command("associate_hotkey")(self.wallet_associate_hotkey) |
965 | 968 |
|
966 | 969 | # Subnets
|
967 | 970 | self.subnets_app.command("burn_cost", hidden=True)(self.subnets_burn_cost)
|
968 | 971 | self.subnets_app.command("pow_register", hidden=True)(self.subnets_pow_register)
|
| 972 | + self.subnets_app.command("set_identity", hidden=True)(self.subnets_set_identity) |
| 973 | + self.subnets_app.command("get_identity", hidden=True)(self.subnets_get_identity) |
| 974 | + self.subnets_app.command("check_start", hidden=True)(self.subnets_check_start) |
969 | 975 |
|
970 | 976 | # Sudo
|
971 | 977 | self.sudo_app.command("senate_vote", hidden=True)(self.sudo_senate_vote)
|
@@ -5090,7 +5096,7 @@ def subnets_check_start(
|
5090 | 5096 | This command verifies if a subnet's emission schedule can be started based on the subnet's registration block.
|
5091 | 5097 |
|
5092 | 5098 | Example:
|
5093 |
| - [green]$[/green] btcli subnets check_start --netuid 1 |
| 5099 | + [green]$[/green] btcli subnets check-start --netuid 1 |
5094 | 5100 | """
|
5095 | 5101 | self.verbosity_handler(quiet, verbose)
|
5096 | 5102 | return self._run_command(
|
|
0 commit comments