Function subxt_codegen::generate_runtime_api_from_path
source · pub fn generate_runtime_api_from_path<P>(
item_mod: ItemMod,
path: P,
derives: DerivesRegistry,
crate_path: CratePath
) -> TokenStream2where
P: AsRef<Path>,Expand description
Generates the API for interacting with a Substrate runtime.
Arguments
item_mod- The module declaration for which the API is implemented.path- The path to the scale encoded metadata of the runtime node.derives- Provide custom derives for the generated types.crate_path- Path to thesubxtcrate.
Note: This is a wrapper over RuntimeGenerator for static metadata use-cases.