// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. /** * One runtime version, as a row in a list. */ export type RuntimeSummary = { /** * The runtime's `spec_version` — the number that has to change for a * runtime upgrade to take effect, and the key everything here is filed * under. */ spec_version: number, /** * Its `spec_name`, e.g. `quantus-runtime`. */ spec_name: string, /** * The first block this runtime is known to have been in force at. * * The upgrade height when discovery bisected the boundary, and otherwise a * *lower bound* — the earliest block the observer happened to decode * against it. The distinction is worth keeping: one is a fact about the * chain and the other is a fact about this observer. */ first_seen_height: number, /** * When the metadata was fetched and cached. */ fetched_at: string, /** * Size of the metadata blob. */ bytes: number, };