UNPKG

@substrate/api-sidecar

Version:

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

7 lines (6 loc) 342 B
import type { BlockHash } from '@polkadot/types/interfaces'; import type { AccountsProxyInfo } from '../../types/responses'; import { AbstractService } from '../AbstractService'; export declare class AccountsProxyInfoService extends AbstractService { fetchAccountProxyInfo(hash: BlockHash, address: string): Promise<AccountsProxyInfo>; }