From 78ca077dd0f8ed62cbed939e4c7be30c1c86c29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9?= Date: Thu, 22 Jan 2026 08:49:12 +0100 Subject: [PATCH] fix: disable wallet history command due to external API deprecation This command is disabled as it used external APIs which are no longer feasible; meanwhile a chain native data fetching solution is being investigated. Fixes #235 Related to #302 --- bittensor_cli/cli.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 72faeb5e9..f431c2617 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -3841,8 +3841,10 @@ def wallet_history( # if self.config.get("network") != "finney": # console.print(no_use_config_str) - # For Rao games - print_error("This command is disabled on the 'rao' network.") + print_error( + "This command is currently disabled as it used external APIs which are no longer " + "feasible; meanwhile a chain native data fetching solution is being investigated." + ) raise typer.Exit() self.verbosity_handler(quiet, verbose, False, False)