@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
11 lines (10 loc) • 340 B
TypeScript
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;
rcBlockNumber?: string;
ahTimestamp?: string;
}