UNPKG

@substrate/api-sidecar

Version:

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

12 lines (11 loc) 366 B
import type { u128, Vec } from '@polkadot/types'; import type { PalletProxyProxyDefinition } from '@polkadot/types/lookup'; import type { IAt } from './'; export interface AccountsProxyInfo { at: IAt; delegatedAccounts: Vec<PalletProxyProxyDefinition>; depositHeld: u128; rcBlockHash?: string; rcBlockNumber?: string; ahTimestamp?: string; }