UNPKG

@substrate/api-sidecar

Version:

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

9 lines (8 loc) 366 B
import { ISanitizedCall } from '.'; import { ISanitizedParachainInherentData } from './SanitizedParachainInherentData'; import { ISanitizedParentInherentData } from './SanitizedParentInherentData'; export interface ISanitizedArgs { call?: ISanitizedCall; calls?: ISanitizedCall[]; data?: ISanitizedParentInherentData | ISanitizedParachainInherentData; }