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 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
3838console = Console ()
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " bittensor-cli"
7- version = " 9.8.3 "
7+ version = " 9.8.4 "
88description = " Bittensor CLI"
99readme = " README.md"
1010authors = [
You can’t perform that action at this time.
0 commit comments