Interface CoreRuntimeInfoQueryResponse

Response to the RuntimeInfo query.

interface CoreRuntimeInfoQueryResponse {
    modules: {
        [key: string]: CoreModuleInfo;
    };
    runtime_version: Version;
    state_version: number;
}

Properties

modules: {
    [key: string]: CoreModuleInfo;
}
runtime_version: Version
state_version: number