AIO Substrate Interface
This project provides an asynchronous interface for interacting with Substrate-based blockchains. Its API is based on the py-substrate-interface project, but is not fully compatible.
This is the successor to async-substrate-interface, which was archived
Additionally, this project uses cyscale instead of py-scale-codec for faster SCALE decoding. Since v2.0, because cyscale and py-scale-codec share the same namespace, we require that only cyscale is installed to be able to use this. If you run into a runtime error stating that both cannot be installed at the same time, simply remove them both, and reinstall cyscale:
pip uninstall cyscale scalecodec -y
pip install cyscale
Installation
To install the package, use the following command:
pip install aio-substrate-interface
Usage
import asyncio
from async_substrate_interface import AsyncSubstrateInterface
async def main():
substrate = AsyncSubstrateInterface(
url="wss://rpc.polkadot.io"
)
async with substrate:
result = await substrate.query(
module='System',
storage_function='Account',
params=['5CZs3T15Ky4jch1sUpSFwkUbYEnsCfe1WCY51fH3SPV6NFnf']
)
print(result)
asyncio.run(main())
Event loop: uvloop recommended
The library works on the standard asyncio event loop, but we recommend running your application under uvloop when it is available for your platform:
pip install uvloop
import uvloop
uvloop.run(main()) # instead of asyncio.run(main())
In our benchmarks against a local node (benchmarks/BENCHMARKS.md), uvloop made
concurrent multiplexed calls (many asyncio.gather-ed queries over the single
websocket connection) dramatically faster, and was at worst neutral everywhere else.
Caching
Caching is used to improve the overall performance of this library. It is applied only on methods whose results
cannot change — such as the block hash for a given block number (small, 512 default max size), or the runtime for a
given runtime version (large, 16 default max size). These cache sizes are user-configurable using the respective env
vars, SUBSTRATE_CACHE_METHOD_SIZE and SUBSTRATE_RUNTIME_CACHE_SIZE.
Because of the asynchronous nature of the library, rather than something like functools.lru_cache, we developed our
own asyncio-friendly LRU cache, CachedFetcher. The key difference here is that each request is assigned a future
that is returned when the initial request completes. So, if you were to do:
bn = 5000
bh1, bh2 = await asyncio.gather(
asi.get_block_hash(bn),
asi.get_block_hash(bn)
)
it would actually only make one single network call, and return the result to both requests.
ENV VARS
The following environment variables are used within aio-substrate-interface
- SUBSTRATE_CACHE_METHOD_SIZE (default 512): the cache size of the smaller return-size methods (see the Caching section for more info)
- SUBSTRATE_RUNTIME_CACHE_SIZE (default 16): the cache size of the larger return-size methods (see the Caching section for more info)
- SUBSTRATE_EXTRINSIC_RECOVERY_SCAN_DEPTH (default 16): how many blocks are walked back per check when recovering a watched extrinsic whose subscription was severed by a websocket reconnection
- SUBSTRATE_EXTRINSIC_RECOVERY_TIMEOUT (default 120): seconds to wait for inclusion/finalization of an already-submitted extrinsic when its watch subscription is being recovered by polling
- SUBSTRATE_EXTRINSIC_RECOVERY_POLL_INTERVAL (default 1): seconds between chain polls while recovering a watched extrinsic
Contributing
Contributions are welcome! Please open an issue or submit a pull request to the staging branch.
Signed Commits
All commits in pull requests must be signed. We require signed commits to verify the authenticity of contributions and ensure code integrity.
To sign your commits, you must have GPG signing configured in Git:
git commit -S -m "your commit message"
Or configure Git to sign all commits automatically:
git config --global commit.gpgsign true
For instructions on setting up GPG key signing, see GitHub's documentation on signing commits.
Note: Pull requests containing unsigned commits will not be merged.
Cyscale Installation Issue
Because cyscale uses the same namespace as py-scale-codec (scalecodec), there can be some difficulties with upgrades.
pip uninstall scalecodec cyscale -y
pip install -U cyscale --force-reinstall
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contact
For any questions or inquiries, please open an issue in this repo.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aio_substrate_interface-3.1.0.tar.gz.
File metadata
- Download URL: aio_substrate_interface-3.1.0.tar.gz
- Upload date:
- Size: 87.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7ef69fcf5ccaf1e2b6368ef4037bdc9eeb08f95fc4dcff340cfec6f0ec05796
|
|
| MD5 |
77e42269b8e7d715336634794453dd5d
|
|
| BLAKE2b-256 |
dc2f9ccecc8b9a3583531b5608d989371eec8801d9d311fb3dae4342d9a72cea
|
Provenance
The following attestation bundles were made for aio_substrate_interface-3.1.0.tar.gz:
Publisher:
release.yml on latent-to/aio-substrate-interface
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aio_substrate_interface-3.1.0.tar.gz -
Subject digest:
c7ef69fcf5ccaf1e2b6368ef4037bdc9eeb08f95fc4dcff340cfec6f0ec05796 - Sigstore transparency entry: 2407327842
- Sigstore integration time:
-
Permalink:
latent-to/aio-substrate-interface@e91aec402817b41b756bd787925285a5806754d7 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/latent-to
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e91aec402817b41b756bd787925285a5806754d7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file aio_substrate_interface-3.1.0-py3-none-any.whl.
File metadata
- Download URL: aio_substrate_interface-3.1.0-py3-none-any.whl
- Upload date:
- Size: 95.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fb19cce8f6e48c82d057039d4a9fec9aa66fa7481016f5b9fceda307b1bb922
|
|
| MD5 |
7ef23a6443d8c5a152d78c875bc2be89
|
|
| BLAKE2b-256 |
bfd4a5c4f9d10098fa1d6461eadfeac3345ff95ded4ed756cf110481b47f9653
|
Provenance
The following attestation bundles were made for aio_substrate_interface-3.1.0-py3-none-any.whl:
Publisher:
release.yml on latent-to/aio-substrate-interface
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aio_substrate_interface-3.1.0-py3-none-any.whl -
Subject digest:
6fb19cce8f6e48c82d057039d4a9fec9aa66fa7481016f5b9fceda307b1bb922 - Sigstore transparency entry: 2407328587
- Sigstore integration time:
-
Permalink:
latent-to/aio-substrate-interface@e91aec402817b41b756bd787925285a5806754d7 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/latent-to
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e91aec402817b41b756bd787925285a5806754d7 -
Trigger Event:
workflow_dispatch
-
Statement type: