@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) • 570 B
TypeScript
import { AccountsProxyInfoService } from '../../../services';
import AbstractController from '../../AbstractController';
export default class RcAccountsProxyInfoController extends AbstractController<AccountsProxyInfoService> {
static controllerName: string;
static requiredPallets: string[][];
constructor(_api: string);
protected initRoutes(): void;
/**
* Get the latest account proxy info of `address` from the relay chain.
*
* @param req Express Request
* @param res Express Response
*/
private getAccountProxyInfo;
}