File tree Expand file tree Collapse file tree
bittensor_cli/src/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -848,12 +848,19 @@ def create_transfer_history_table(transfers: list[dict]) -> Table:
848848
849849
850850async def wallet_history (wallet : Wallet ):
851- """Check the transfer history of the provided wallet."""
852- print_verbose (f"Fetching history for wallet: { wallet .name } " )
853- wallet_address = wallet .get_coldkeypub ().ss58_address
854- transfers = await get_wallet_transfers (wallet_address )
855- table = create_transfer_history_table (transfers )
856- console .print (table )
851+ """Check the transfer history of the provided wallet.
852+
853+ Note: This command is currently disabled due to the Taostats API
854+ requiring an API key which cannot be bundled with btcli.
855+ See: https://github.com/opentensor/btcli/issues/235
856+ """
857+ console .print (
858+ "[yellow]The 'wallet history' command is currently disabled.[/yellow]\n \n "
859+ "The Taostats API that this command relied on has changed and now requires "
860+ "an API key, which cannot be feasibly bundled with btcli.\n \n "
861+ "A chain-native solution is being investigated.\n "
862+ "See: https://github.com/opentensor/btcli/issues/235"
863+ )
857864
858865
859866async def wallet_list (
You can’t perform that action at this time.
0 commit comments