@polkadot/types
Version:
Implementation of the Parity codec
10 lines (9 loc) • 350 B
TypeScript
import type { Struct } from '@polkadot/types-codec';
import type { Balance, BlockNumber } from '@polkadot/types/interfaces/runtime';
/** @name VestingInfo */
export interface VestingInfo extends Struct {
readonly locked: Balance;
readonly perBlock: Balance;
readonly startingBlock: BlockNumber;
}
export type PHANTOM_VESTING = 'vesting';