File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
bittensor_cli/src/bittensor Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
14
## 9.8.3 /2025-07-10
4
15
* Updates stake move table with rate applied correctly. by @thewhaleking in https://github.com/opentensor/btcli/pull/538
5
16
* change stake fee calculation by @thewhaleking in https://github.com/opentensor/btcli/pull/539
Original file line number Diff line number Diff line change @@ -1533,7 +1533,7 @@ async def get_stake_fee(
1533
1533
fee_rate = await self .query ("Swap" , "FeeRate" , [origin_netuid ])
1534
1534
fee = amount * (fee_rate / U16_MAX )
1535
1535
1536
- result = Balance .from_tao (fee )
1536
+ result = Balance .from_rao (fee )
1537
1537
result .set_unit (origin_netuid )
1538
1538
1539
1539
return result
Original file line number Diff line number Diff line change 32
32
from bittensor_cli .src .bittensor .chain_data import SubnetHyperparameters
33
33
from rich .prompt import PromptBase
34
34
35
- BT_DOCS_LINK = "https://docs.bittensor.com "
35
+ BT_DOCS_LINK = "https://docs.learnbittensor.org "
36
36
37
37
38
38
console = Console ()
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " bittensor-cli"
7
- version = " 9.8.3 "
7
+ version = " 9.8.4 "
8
8
description = " Bittensor CLI"
9
9
readme = " README.md"
10
10
authors = [
You can’t perform that action at this time.
0 commit comments