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) 262 B
import { IEventData } from '@polkadot/types/types'; import { Codec } from '@polkadot/types-codec/types'; import { IFrameMethod } from '.'; export interface ISanitizedEvent { method: string | IFrameMethod; data: Codec[] & IEventData; docs?: string; }