diff --git a/bittensor/commands/wallets.py b/bittensor/commands/wallets.py index e40f2cb8dc..ea19155b6e 100644 --- a/bittensor/commands/wallets.py +++ b/bittensor/commands/wallets.py @@ -962,7 +962,16 @@ def create_transfer_history_table(transfers): table = Table(show_footer=False) # Define the column names - column_names = ["Id", "From", "To", "Amount (Tao)", "Extrinsic Id", "Block Number"] + column_names = [ + "Id", + "From", + "To", + "Amount (Tao)", + "Extrinsic Id", + "Block Number", + "URL (taostats)", + ] + taostats_url_base = "https://x.taostats.io/extrinsic" # Create a table table = Table(show_footer=False) @@ -998,6 +1007,7 @@ def create_transfer_history_table(transfers): f"{tao_amount:.3f}", str(item["extrinsicId"]), item["blockNumber"], + f"{taostats_url_base}/{item['blockNumber']}-{item['extrinsicId']}", ) table.add_row() table.show_footer = True