bittensor-cli 9.0.0rc1__py3-none-any.whl → 9.0.0rc3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bittensor_cli/__init__.py +1 -1
- bittensor_cli/cli.py +440 -157
- bittensor_cli/src/__init__.py +4 -1
- bittensor_cli/src/bittensor/subtensor_interface.py +1 -1
- bittensor_cli/src/bittensor/utils.py +14 -0
- bittensor_cli/src/commands/stake/add.py +625 -0
- bittensor_cli/src/commands/stake/children_hotkeys.py +2 -4
- bittensor_cli/src/commands/stake/list.py +687 -0
- bittensor_cli/src/commands/stake/move.py +1 -1
- bittensor_cli/src/commands/stake/remove.py +1146 -0
- bittensor_cli/src/commands/subnets/subnets.py +20 -8
- bittensor_cli/src/commands/wallets.py +24 -32
- {bittensor_cli-9.0.0rc1.dist-info → bittensor_cli-9.0.0rc3.dist-info}/METADATA +2 -2
- {bittensor_cli-9.0.0rc1.dist-info → bittensor_cli-9.0.0rc3.dist-info}/RECORD +17 -15
- bittensor_cli/src/commands/stake/stake.py +0 -1821
- {bittensor_cli-9.0.0rc1.dist-info → bittensor_cli-9.0.0rc3.dist-info}/WHEEL +0 -0
- {bittensor_cli-9.0.0rc1.dist-info → bittensor_cli-9.0.0rc3.dist-info}/entry_points.txt +0 -0
- {bittensor_cli-9.0.0rc1.dist-info → bittensor_cli-9.0.0rc3.dist-info}/top_level.txt +0 -0
@@ -544,8 +544,7 @@ async def set_children(
|
|
544
544
|
subtensor, netuid
|
545
545
|
)
|
546
546
|
console.print(
|
547
|
-
f"Your childkey request has been submitted. It will be completed around block {completion_block}
|
548
|
-
f"assuming you have the required key swap cost (default: 0.1 Tao) in your coldkey at that time. "
|
547
|
+
f"Your childkey request has been submitted. It will be completed around block {completion_block}. "
|
549
548
|
f"The current block is {current_block}"
|
550
549
|
)
|
551
550
|
console.print(
|
@@ -577,8 +576,7 @@ async def set_children(
|
|
577
576
|
)
|
578
577
|
console.print(
|
579
578
|
f"Your childkey request for netuid {netuid_} has been submitted. It will be completed around "
|
580
|
-
f"block {completion_block}
|
581
|
-
f"coldkey at that time. The current block is {current_block}."
|
579
|
+
f"block {completion_block}. The current block is {current_block}."
|
582
580
|
)
|
583
581
|
console.print(
|
584
582
|
":white_heavy_check_mark: [green]Sent set children request for all subnets.[/green]"
|