UNPKG

@substrate/api-sidecar

Version:

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

8 lines (7 loc) 212 B
import { IFrameMethod, ISanitizedArgs } from '.'; export interface ISanitizedCall { [key: string]: unknown; method: string | IFrameMethod; callIndex?: Uint8Array | string; args: ISanitizedArgs; }