Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ef56750
create the copy of `bittensor/core/subtensor.py` with async suffix.
Oct 17, 2024
8886cc8
add async_substrate_interface.py
Oct 28, 2024
f24481d
update `bittensor.utils.format_error_message` to be compatible with a…
Oct 29, 2024
873e239
update `bittensor.core.chain_data`
Oct 29, 2024
c4e7d20
update `bittensor.core.async_subtensor.py` from btcli
Oct 29, 2024
3be23e5
add DelegatesDetails for async_subtensor
Oct 29, 2024
fdc9a83
add validate_chain_endpoint for async_subtensor
Oct 29, 2024
e6fe7b9
update async_substrate_interface.py by Optional where acceptable and …
Oct 29, 2024
a4fe55e
improve settings for async_subtensor.py
Oct 29, 2024
b303526
fix format errors
Oct 29, 2024
809cbf1
fix annotations
Oct 29, 2024
c8a4559
add async_subtensor.py with adaptation to SDK (all methods checked a…
Oct 29, 2024
fa6d48b
update settings.py to be compatible with async_extrinsics
Oct 29, 2024
affb858
add async_transfer extrinsic
Oct 29, 2024
3a28617
add async_registration extrinsic
Oct 29, 2024
0d2dea7
add async_root extrinsics
Oct 29, 2024
0f34613
Merge branch 'staging' into feat/roman/async-subtensor-stage-one
Oct 29, 2024
a03209e
ruff
Oct 29, 2024
d1e182d
Update bittensor/core/extrinsics/async_transfer.py
basfroman Oct 29, 2024
2063b21
fix comments review
Nov 1, 2024
43fc02d
avoid non-direct import within inner code (fix circular import)
Nov 1, 2024
d4d1e9c
del unused code
Nov 1, 2024
5e53743
Merge branch 'staging' into feat/roman/async-subtensor-stage-one
basfroman Nov 1, 2024
7176510
Merge remote-tracking branch 'origin/staging' into feat/roman/async-s…
Nov 4, 2024
d4c8eb4
del prometheus.py
Nov 4, 2024
feefe4f
Merge remote-tracking branch 'origin/staging' into feat/roman/async-s…
Nov 4, 2024
6e58f80
solving conflict
Nov 4, 2024
2e565d5
ruff
Nov 4, 2024
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
1,222 changes: 1,222 additions & 0 deletions bittensor/core/async_subtensor.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bittensor/core/chain_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
from .stake_info import StakeInfo
from .subnet_hyperparameters import SubnetHyperparameters
from .subnet_info import SubnetInfo
from .utils import custom_rpc_type_registry
from .utils import custom_rpc_type_registry, decode_account_id, process_stake_data

ProposalCallData = GenericCall
Loading