substrate-api-client
substrate-api-client copied to clipboard
Library for connecting to substrate API over WebSockets
`polkadot-sdk` change to a different naming schema for their releases: https://github.com/paritytech/polkadot-sdk/releases/tag/polkadot-stable2407 We should look into what this means for us. Should we also change the naming of our releases and...
FIXME: Parity uses Mode, but this is only available in frame (no no-std compatible as far as I remember). Question to be answered: Use bool or use self defined Mode?
We have a systematic problem that feature flags we have configured in our tests-projects (testing/async, testing/sync, examples/sync, examples/async) "leak" into the workspace builds. This is due to the fact that...
Run and build the complete workspace. Also update the toolchain such that I get the newest clippy warnings
As the root toml is both, a package toml and a workspace toml, the default behaviour for a command like `cargo check --no-default-features` is to execute it only for the...
Would be kinda nice to have that soon. ;)
Hi maintainers, I try to extract the metadata of a Substrate WASM binary using `ac-node-api::Metadata::try_from`. The result looks great but seems like there are no hooks included in the returned...
For offline Extrinsic composition, we currently offer the "bare" version (previously unsigned) and the "Signed" one. With V5 there's now a third option called "General": https://github.com/paritytech/polkadot-sdk/blob/350a6c4ccc4c2f376b9f5ed259daf3a56d5fed56/substrate/primitives/runtime/src/generic/unchecked_extrinsic.rs#L73-L91 We should match this...
Blocked by #817 After the deprecation of the wsclient lib has been released, in the next api-client release we can do the following: - [ ] Remove ws-client completely -...
PR https://github.com/scs/substrate-api-client/pull/828 shows quite well which structs are needed for a self defined ExtrinsicParams feature. In the `extrinsic_params` file however, this is not visible as Traits and implementations are quite...