@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
13 lines (12 loc) • 480 B
TypeScript
import { BlocksTraceService } from '../../../services';
import AbstractController from '../../AbstractController';
export default class RcBlocksTraceController extends AbstractController<BlocksTraceService> {
static controllerName: string;
static requiredPallets: never[];
constructor(_api: string);
protected initRoutes(): void;
private getLatestBlockTraces;
private getBlockTraces;
private getLatestBlockOperations;
private getBlockOperations;
}