Skip to main content

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

aio_substrate_interface-3.2.1.tar.gz (88.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aio_substrate_interface-3.2.1-py3-none-any.whl (96.1 kB view details)

Uploaded Python 3

File details

Details for the file aio_substrate_interface-3.2.1.tar.gz.

File metadata

  • Download URL: aio_substrate_interface-3.2.1.tar.gz
  • Upload date:
  • Size: 88.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aio_substrate_interface-3.2.1.tar.gz
Algorithm Hash digest
SHA256 3b462eef1ef4b3e126962829e4910fc33808a709627786a284cd96d473b42601
MD5 933b605262945e05778149bf54a60b6e
BLAKE2b-256 884868e07857960c87f702766226c0b3c59c7156b722d6e6e7656d9983056795

See more details on using hashes here.

Provenance

The following attestation bundles were made for aio_substrate_interface-3.2.1.tar.gz:

Publisher: release.yml on latent-to/aio-substrate-interface

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aio_substrate_interface-3.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for aio_substrate_interface-3.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 60b77cc047831508224005d7df9fcd27b8b76f687a1808f7f473cb4350955f79
MD5 688bfc6988161eae940305fea3710b2e
BLAKE2b-256 f32975e7f59d10127f723204bc87c251c61fbe9537212fe5f9582459521a9cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for aio_substrate_interface-3.2.1-py3-none-any.whl:

Publisher: release.yml on latent-to/aio-substrate-interface

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

3.2.1 This release

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

2 files

2.2.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page