@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
14 lines (13 loc) • 379 B
TypeScript
import { ChainProperties, ChainType } from '@polkadot/types/interfaces';
import { Text, u32 } from '@polkadot/types/primitive';
import { IAt } from '.';
export interface IRuntimeSpec {
at: IAt;
authoringVersion: u32;
transactionVersion: u32;
implVersion: u32;
specName: Text;
specVersion: u32;
chainType: ChainType;
properties: ChainProperties;
}