Overview of Subxt capabilities
masterSubxt is a Rust library designed for interacting with chains in the Polkadot network. It provides several core capabilities for blockchain interaction:
- Submit Extrinsics: Send transactions to the network.
- Access Chain Information: Retrieve storage values, constants, Runtime APIs, and View Functions at any specific block.
- Subscribe to Blocks: Listen for new blocks to trigger automated logic.
- Flexible Interfaces: Use a safe, statically typed interface (via code generation) or a flexible dynamic interface.
- Trustless Interaction: Use a built-in light client to interact with chains without relying on a full node.
- Multi-runtime Support: Compiles to WASM for browser execution or can be called via FFI in other languages.
- Offline Support: Provides a subset of functionality that can be used entirely offline.