UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

11 lines (10 loc) 442 B
import { PalletsNominationPoolService } from '../../services'; import AbstractController from '../AbstractController'; export default class PalletsNominationPoolController extends AbstractController<PalletsNominationPoolService> { static controllerName: string; static requiredPallets: string[][]; constructor(api: string); protected initRoutes(): void; private getNominationPoolById; private getNominationPoolInfo; }