@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
16 lines (15 loc) • 556 B
TypeScript
import { BlocksService } from '../../services';
import { ControllerOptions } from '../../types/chains-config';
import AbstractController from '../AbstractController';
export default class BlocksRawExtrinsicsController extends AbstractController<BlocksService> {
static controllerName: string;
static requiredPallets: never[];
constructor(api: string, options: ControllerOptions);
protected initRoutes(): void;
/**
*
* @param _req Express Request
* @param res Express Response
*/
private getBlockRawExtrinsics;
}