Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 9.8.5 /2025-07-16
* Updates `user_liquidity_enabled` to not root sudo only. by @thewhaleking in https://github.com/opentensor/btcli/pull/546
* Patches broken Brahmi characters with normal characters. by @thewhaleking in https://github.com/opentensor/btcli/pull/547

**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.8.4...v9.8.5

## 9.8.4 /2025-07-10

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ class WalletValidationTypes(Enum):
),
"yuma3_enabled": ("sudo_set_yuma3_enabled", False),
"alpha_sigmoid_steepness": ("sudo_set_alpha_sigmoid_steepness", True),
"user_liquidity_enabled": ("toggle_user_liquidity", True),
"user_liquidity_enabled": ("toggle_user_liquidity", False),
}

HYPERPARAMS_MODULE = {
Expand Down
11 changes: 11 additions & 0 deletions bittensor_cli/src/commands/subnets/subnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,17 @@ def _create_table(subnets_, block_number_):

for subnet in subnets_:
netuid = subnet.netuid
# The default symbols for 123 and 124 are visually identical:
# 123: 𑀀
# 124: 𑀁
# and the symbol for 125 is basically a colon
# 125: 𑀂
# however, because they're in Brahmi, which very few fonts support, they don't render properly
# This patches them.
replacements = {69632: "˙", 69633: "˙", 69634: ":"}
if (sso := ord(subnet.symbol)) in replacements.keys():
subnet.symbol = replacements[sso]

symbol = f"{subnet.symbol}\u200e"

if netuid == 0:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bittensor-cli"
version = "9.8.4"
version = "9.8.5"
description = "Bittensor CLI"
readme = "README.md"
authors = [
Expand Down
Loading