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) 278 B
import { Option } from '@polkadot/types/codec'; import { VestingInfo } from '@polkadot/types/interfaces'; import { IAt } from '.'; export interface IAccountVestingInfo { at: IAt; vesting: Option<VestingInfo> | {}; rcBlockNumber?: string; ahTimestamp?: string; }