diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ed8fe430..a64bd1608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 9.8.4 /2025-07-10 + +## What's Changed +* Update docs URL by @HudsonGraeme in https://github.com/opentensor/btcli/pull/536 +* Updates fee unit conversion by @ibraheem-abe in https://github.com/opentensor/btcli/pull/542 + +## New Contributors +* @HudsonGraeme made their first contribution in https://github.com/opentensor/btcli/pull/536 + +**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.8.3...v9.8.4 + ## 9.8.3 /2025-07-10 * Updates stake move table with rate applied correctly. by @thewhaleking in https://github.com/opentensor/btcli/pull/538 * change stake fee calculation by @thewhaleking in https://github.com/opentensor/btcli/pull/539 diff --git a/bittensor_cli/src/bittensor/subtensor_interface.py b/bittensor_cli/src/bittensor/subtensor_interface.py index f5c9768ae..cbe12e9c1 100644 --- a/bittensor_cli/src/bittensor/subtensor_interface.py +++ b/bittensor_cli/src/bittensor/subtensor_interface.py @@ -1533,7 +1533,7 @@ async def get_stake_fee( fee_rate = await self.query("Swap", "FeeRate", [origin_netuid]) fee = amount * (fee_rate / U16_MAX) - result = Balance.from_tao(fee) + result = Balance.from_rao(fee) result.set_unit(origin_netuid) return result diff --git a/bittensor_cli/src/bittensor/utils.py b/bittensor_cli/src/bittensor/utils.py index 6ac75cee0..0b2493db0 100644 --- a/bittensor_cli/src/bittensor/utils.py +++ b/bittensor_cli/src/bittensor/utils.py @@ -32,7 +32,7 @@ from bittensor_cli.src.bittensor.chain_data import SubnetHyperparameters from rich.prompt import PromptBase -BT_DOCS_LINK = "https://docs.bittensor.com" +BT_DOCS_LINK = "https://docs.learnbittensor.org" console = Console() diff --git a/pyproject.toml b/pyproject.toml index 0c011aba9..4e4363456 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "bittensor-cli" -version = "9.8.3" +version = "9.8.4" description = "Bittensor CLI" readme = "README.md" authors = [