Skip to content

Commit 24fdc45

Browse files
authored
Merge pull request #543 from opentensor/release/9.8.4
Release/9.8.4
2 parents ef41ec2 + d2cd4fc commit 24fdc45

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 9.8.4 /2025-07-10
4+
5+
## What's Changed
6+
* Update docs URL by @HudsonGraeme in https://github.com/opentensor/btcli/pull/536
7+
* Updates fee unit conversion by @ibraheem-abe in https://github.com/opentensor/btcli/pull/542
8+
9+
## New Contributors
10+
* @HudsonGraeme made their first contribution in https://github.com/opentensor/btcli/pull/536
11+
12+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.8.3...v9.8.4
13+
314
## 9.8.3 /2025-07-10
415
* Updates stake move table with rate applied correctly. by @thewhaleking in https://github.com/opentensor/btcli/pull/538
516
* change stake fee calculation by @thewhaleking in https://github.com/opentensor/btcli/pull/539

bittensor_cli/src/bittensor/subtensor_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ async def get_stake_fee(
15331533
fee_rate = await self.query("Swap", "FeeRate", [origin_netuid])
15341534
fee = amount * (fee_rate / U16_MAX)
15351535

1536-
result = Balance.from_tao(fee)
1536+
result = Balance.from_rao(fee)
15371537
result.set_unit(origin_netuid)
15381538

15391539
return result

bittensor_cli/src/bittensor/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from bittensor_cli.src.bittensor.chain_data import SubnetHyperparameters
3333
from rich.prompt import PromptBase
3434

35-
BT_DOCS_LINK = "https://docs.bittensor.com"
35+
BT_DOCS_LINK = "https://docs.learnbittensor.org"
3636

3737

3838
console = Console()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bittensor-cli"
7-
version = "9.8.3"
7+
version = "9.8.4"
88
description = "Bittensor CLI"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)