@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
15 lines (14 loc) • 384 B
TypeScript
import { ActionGroup, Operation, TraceEvent, TraceSpan } from '../../services/blocks/trace';
import { IAt } from './At';
export interface BlocksTrace {
at: IAt;
storageKeys: string;
tracingTargets: string;
events: TraceEvent[];
spans: TraceSpan[];
}
export interface BlocksTraceOperations {
at: IAt;
operations: Operation[];
actions?: ActionGroup[];
}