UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

7 lines (6 loc) 285 B
import { BlockHash } from '@polkadot/types/interfaces'; import { IRuntimeSpec } from 'src/types/responses'; import { AbstractService } from '../AbstractService'; export declare class RuntimeSpecService extends AbstractService { fetchSpec(hash: BlockHash): Promise<IRuntimeSpec>; }