// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { ChainId } from "./ChainId"; import type { NamedAccount } from "./NamedAccount"; /** * Every account this chain names. */ export type ChainRoles = { /** * Which chain. */ chain: ChainId, /** * The runtime the constants and entries were read from. */ spec_version: number, /** * The named accounts. */ accounts: Array, /** * Whether genesis state could be read at all. An archive node holds block * zero; a pruning one does not, and the endowed accounts would then be * missing rather than absent. */ genesis_readable: boolean, };