-
Notifications
You must be signed in to change notification settings - Fork 444
Use async-substrate-interface for runtime decoding #2618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
thewhaleking
merged 20 commits into
staging-pre-merge-new-async
from
feat/zyzniewski/use_bt_decode
Feb 3, 2025
Merged
Changes from 7 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
cc950a7
feat: use bt_decode
zyzniewski-reef 47489bd
fix: query_runtime_api params
zyzniewski-reef ec453cb
deps: async-substrate-interface
zyzniewski-reef 04955f6
feat: migrate to async_substrate_interface using btdecode
zyzniewski-reef 8c317a6
remove bittensor-cli
zyzniewski-reef 56f804c
ruff formatting
zyzniewski-reef 7342fec
remove bt-decode - it's part of async-substrate-interface now
zyzniewski-reef 32acf67
mypy fixes
zyzniewski-reef 6951533
Merge branch 'staging-pre-merge-new-async' into feat/zyzniewski/use_b…
basfroman 82854d8
fix self usage in metagraph
351423f
add root fields to metagraph class
19f167a
improve MetagraphInfo
731e5a7
fix bug in subtensor
c53fcbb
fix integration metagraph test
70036f9
fix tests + ruff
82c4b2b
Cleanup
thewhaleking 41fe909
Fix test I broke.
thewhaleking 973b5c1
raise SubstrateRequestException on KeyError within InfoBase _from_dic…
zyzniewski-reef 188ef12
Review changes implemented
ibraheem-abe 72cf915
Ruff
ibraheem-abe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| from dataclasses import dataclass | ||
| from typing import Any, TypeVar | ||
|
|
||
| T = TypeVar("T", bound="InfoBase") | ||
|
|
||
|
|
||
| @dataclass | ||
| class InfoBase: | ||
| """Base dataclass for info objects.""" | ||
|
|
||
| @classmethod | ||
| def from_dict(cls, decoded: dict) -> T: | ||
| return cls(**decoded) | ||
|
|
||
| @classmethod | ||
| def list_from_dicts(cls, any_list: list[Any]) -> list[T]: | ||
| return [cls.from_dict(any_) for any_ in any_list] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,13 @@ | ||
| from dataclasses import dataclass | ||
| from typing import List | ||
|
|
||
| from bittensor.core.chain_data.utils import from_scale_encoding, ChainDataType | ||
| from bittensor.utils import Certificate | ||
|
|
||
|
|
||
| # Dataclasses for chain data. | ||
| @dataclass | ||
| class NeuronCertificate: | ||
| class NeuronCertificate: # TODO Info? | ||
| """ | ||
| Dataclass for neuron certificate. | ||
| """ | ||
|
|
||
| certificate: Certificate | ||
|
|
||
| @classmethod | ||
| def from_vec_u8(cls, vec_u8: List[int]) -> "NeuronCertificate": | ||
| """Returns a NeuronCertificate object from a ``vec_u8``.""" | ||
| return from_scale_encoding(vec_u8, ChainDataType.NeuronCertificate) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.