Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
f62c058
update settings.py
Jan 28, 2025
7ce69cb
update balance.py
Jan 28, 2025
af9e7a9
Updates chain_data
ibraheem-abe Jan 28, 2025
54fdb25
Updates balance class
ibraheem-abe Jan 28, 2025
6734673
update `bittensor.core.chain_data` sub-package
Jan 28, 2025
2f3da87
update async/subtensor modules -> added get_metagraph_info and get_al…
Jan 28, 2025
c6d56ad
fix test
Jan 28, 2025
3f73742
Merge branch 'staging-pre-merge-port-rao' into feat/roman/brigh-chain…
Jan 28, 2025
61f0ec5
update `bittensor/core/chain_data/__init__.py`
Jan 28, 2025
40b1dea
ruff
Jan 28, 2025
f13e97e
Add alias for Subtensor.commit
Jan 28, 2025
7c72b0a
move units from settings.py to balance.py
Jan 28, 2025
f4ad1e0
ruff
Jan 28, 2025
02dcbc0
Merge pull request #2606 from opentensor/feat/add/add-alias-for-subte…
basfroman Jan 28, 2025
ba6f2f9
update requirements
Jan 28, 2025
0837148
update requirements
Jan 28, 2025
a918df1
Merge pull request #2605 from opentensor/feat/roman/brigh-chain-metag…
basfroman Jan 28, 2025
a76d8bb
add `set_commitment` to async_subtensor.Async_subtensor
Jan 28, 2025
105eaba
Updates staking
ibraheem-abe Jan 28, 2025
2cb49cf
Unstaking updated
ibraheem-abe Jan 29, 2025
64ec5a6
Adds subnet, all_subnets calls and move, transfer, swap extrinsics
ibraheem-abe Jan 29, 2025
ef3548a
Add in `tao` and `rao` factory functions.
thewhaleking Jan 29, 2025
b3616e6
Supports async + minor tweaks
ibraheem-abe Jan 29, 2025
f601e7c
ruff + mypy
Jan 29, 2025
f068774
update metagraph.py
Jan 29, 2025
85eaa90
Adds explicit type for balance inputs
ibraheem-abe Jan 29, 2025
763c8af
Merge branch 'refs/heads/staging-pre-merge-port-rao' into feat/roman/…
Jan 29, 2025
001b46c
Merge pull request #2611 from opentensor/feat/roman/update-metagraph-…
basfroman Jan 29, 2025
c2bf3ca
Improves logging statements
ibraheem-abe Jan 30, 2025
ec32d9f
Updates balance conversion unit
ibraheem-abe Jan 30, 2025
45be077
fix for unit test + refactoring
Jan 30, 2025
f475d52
typos fix
Jan 30, 2025
87b96ec
add gather + improve `async subtensor.get_stake_for_coldkey` method
Jan 30, 2025
b861606
add block_hash to subtensor.get_stake_for_coldkey call
Jan 30, 2025
6a7e322
update `subtensor.query_module` return type
Jan 30, 2025
aef096c
async-substrate-interface==`1.0.0rc5` to `1.0.0rc6`
Jan 30, 2025
8385a85
fix types for mypy
Jan 30, 2025
1a4da29
Merge pull request #2612 from opentensor/feat/roman/fix-unit-tests+re…
basfroman Jan 30, 2025
d94c518
fix integration metagraph test
Jan 30, 2025
755fa78
Merge branch 'staging-pre-merge-new-async' into staging-pre-merge-por…
Jan 30, 2025
e50a697
Merge branch 'staging-pre-merge-port-rao' into feat/roman/last-integr…
Jan 30, 2025
fc20eee
fix unit test
Jan 30, 2025
6e76992
replace sync result to async one for test. bring back `async for`
basfroman Jan 30, 2025
6ad8913
remove commented code
basfroman Jan 30, 2025
ab673a3
Merge pull request #2613 from opentensor/feat/roman/last-integration-…
basfroman Jan 30, 2025
f5caea4
Cleanups, fixes, improvements
thewhaleking Jan 30, 2025
1497be4
Flake
thewhaleking Jan 30, 2025
4b291ad
Requirements
thewhaleking Jan 30, 2025
b4c7249
PR comments
thewhaleking Jan 30, 2025
f519384
Merge pull request #2614 from opentensor/async/thewhaleking/pre-merge…
thewhaleking Jan 30, 2025
9bd155b
Adds deprecation notice for balance amounts
ibraheem-abe Jan 30, 2025
9e342ed
Update to use console
ibraheem-abe Jan 30, 2025
7224ae6
Updates method name
ibraheem-abe Jan 30, 2025
c9b7403
Updates deprecation text
ibraheem-abe Jan 30, 2025
5408b68
Updates to use warnings
ibraheem-abe Jan 30, 2025
4159cd9
Merge pull request #2615 from opentensor/staging-pre-merge-deprecatio…
ibraheem-abe Jan 30, 2025
c72d8a4
Removes balance alias
ibraheem-abe Jan 30, 2025
3320cbe
Adds warnings + fixes types
ibraheem-abe Jan 30, 2025
4d7aa10
rename deprecated.py to easy_imports.py
Jan 30, 2025
e48f55d
improve type annotations in axon.py
Jan 30, 2025
9ccf1e1
Merge remote-tracking branch 'origin/staging-pre-merge-port-rao' into…
Jan 30, 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
2 changes: 1 addition & 1 deletion bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .core.settings import __version__, version_split, DEFAULTS, DEFAULT_NETWORK
from .utils.btlogging import logging
from .utils.deprecated import *
from .utils.easy_imports import *


def __getattr__(name):
Expand Down
Loading