@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) • 439 B
TypeScript
import { CoretimeService } from '../../services';
import AbstractController from '../AbstractController';
export default class CoretimeChainController extends AbstractController<CoretimeService> {
static controllerName: string;
static requiredPallets: string[][];
constructor(api: string);
protected initRoutes(): void;
private getLeases;
private getRegions;
private getReservations;
private getRenewals;
}