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) 391 B
import { AccountsValidateService } from '../../services/accounts'; import AbstractController from '../AbstractController'; export default class ValidateAddressController extends AbstractController<AccountsValidateService> { static controllerName: string; static requiredPallets: never[]; constructor(api: string); protected initRoutes(): void; private validateAddress; }