Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
74323c1
Updates Rao to decode using chain
ibraheem-abe Jan 28, 2025
63546d5
Removes redundant methods
ibraheem-abe Jan 28, 2025
8673ff5
Remove async_substrate_interface.py, cleanup started
thewhaleking Jan 29, 2025
9de9edf
Check-in
thewhaleking Jan 29, 2025
9824101
Check-in
thewhaleking Jan 30, 2025
44d5a50
Check-in
thewhaleking Jan 30, 2025
1fa3c4f
Runtime fix, removed unused methods.
thewhaleking Jan 30, 2025
b86cb71
Fix type
thewhaleking Jan 30, 2025
11e76f2
Fix NeuronInfoLite
thewhaleking Jan 30, 2025
eeccfe2
Ensure all _fix_decoded methods use `.get`, as this works on dicts an…
thewhaleking Jan 30, 2025
04c0f0c
Remove PrometheusInfo
thewhaleking Jan 30, 2025
74f4366
Remove substrateinterface entirely.
thewhaleking Jan 30, 2025
65725ad
Clean up
thewhaleking Jan 30, 2025
a4c464c
Async Substrate Bump
thewhaleking Jan 30, 2025
d2c2aa5
bumps async substrate interface
ibraheem-abe Jan 30, 2025
df09d77
Update sn_owner call sudo_get
ibraheem-abe Jan 31, 2025
d282aff
Updates fetching account ids
ibraheem-abe Jan 31, 2025
1d0b33b
Normalise `max_weights_limit` name to coincide with the chain data.
thewhaleking Jan 31, 2025
fa11611
Arg renaming
thewhaleking Jan 31, 2025
f25ca66
Remove trailing slash
thewhaleking Jan 31, 2025
0cc566c
Add in network debug info
thewhaleking Jan 31, 2025
b15203d
Add in network debug info
thewhaleking Jan 31, 2025
5434554
Typing
thewhaleking Feb 3, 2025
c489a9f
Cleaner error-handling with verbose error tracebacks.
thewhaleking Feb 3, 2025
f45b7c4
Docstring standardisation.
thewhaleking Feb 3, 2025
5270457
Added --commands help section.
thewhaleking Feb 3, 2025
77f54d1
Docstring
thewhaleking Feb 3, 2025
d2ac860
Removes bt-decode
ibraheem-abe Feb 1, 2025
1191f7a
Updates e2e for senate
ibraheem-abe Feb 3, 2025
9406187
Add exit_early arg for CLIManager._run_command so as to allow reuse o…
thewhaleking Feb 3, 2025
c3ec3d6
Merge remote-tracking branch 'origin/rao-games/decodes-using-chain' i…
thewhaleking Feb 3, 2025
4902a8f
Don't print error message for typer Exit
thewhaleking Feb 3, 2025
3cf817e
Removed sys.exit
thewhaleking Feb 3, 2025
5f0e22d
staking e2e working
ibraheem-abe Feb 4, 2025
63a3ed5
Updates slippage calculation
ibraheem-abe Feb 4, 2025
6df502e
Bumps version and changelog
ibraheem-abe Feb 4, 2025
696c686
Updates commit_reveal_enabled hyperparam name
ibraheem-abe Feb 4, 2025
49e6350
Use `query_multi` rather than `query_multiple`
thewhaleking Feb 4, 2025
8524287
merges rao changes
ibraheem-abe Feb 4, 2025
c5d0c76
Updates chain data
ibraheem-abe Feb 4, 2025
adf9b88
Adds ss58 option for origin hotkey for stake move
ibraheem-abe Feb 4, 2025
088366c
Merge pull request #290 from opentensor/merge-decodes-rao-branch
ibraheem-abe Feb 4, 2025
222a393
Updates btcli w overview
ibraheem-abe Feb 5, 2025
3c681da
Updates changelog
ibraheem-abe Feb 5, 2025
5cc2a35
Add in childkey completion block for setting childkeys.
thewhaleking Feb 5, 2025
2b22688
Updates requirement.
thewhaleking Feb 5, 2025
32d19f1
Bumps btwallet
ibraheem-abe Feb 5, 2025
e8c718e
Bumps requirements for btwallet (3.0.2)
ibraheem-abe Feb 5, 2025
20db6ce
Updates identity, sn identity, and other chain stuff
ibraheem-abe Feb 5, 2025
596301f
Updates sudo for cr interval setting
ibraheem-abe Feb 5, 2025
5ee9375
Merge pull request #292 from opentensor/rao-games/updates-rpcs
ibraheem-abe Feb 5, 2025
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 9.0.0rc1 /2025-02-04

## What's Changed
* Uses new Async Substrate Interface
* Updates how we use runtime calls
* Updates stake move to accept ss58 origin hotkeys
* Fixes slippage calculation in stake move
* Adds improved error handling through '--verbose' flag
* Improved docstrings

## 8.2.0rc15 /2025-02-03

## What's Changed
Expand Down
4 changes: 2 additions & 2 deletions bittensor_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from .cli import CLIManager


__version__ = "8.2.0rc15"
__version__ = "9.0.0rc1"

__all__ = ["CLIManager", "__version__"]
__all__ = [CLIManager, __version__]
Loading