UNPKG

@substrate/api-sidecar

Version:

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

10 lines (9 loc) 388 B
import { AccountsCompareService } from '../../services/accounts'; import AbstractController from '../AbstractController'; export default class AccountsCompareController extends AbstractController<AccountsCompareService> { static controllerName: string; static requiredPallets: never[]; constructor(api: string); protected initRoutes(): void; private accountCompare; }