@polkadot/types
Version:
Implementation of the Parity codec
33 lines (32 loc) • 1.15 kB
TypeScript
import type { Enum, Option, Struct, u32 } from '@polkadot/types-codec';
import type { LeasePeriod } from '@polkadot/types/interfaces/parachains';
import type { AccountId, Balance, BlockNumber, MultiSigner } from '@polkadot/types/interfaces/runtime';
/** @name FundIndex */
export interface FundIndex extends u32 {
}
/** @name FundInfo */
export interface FundInfo extends Struct {
readonly depositor: AccountId;
readonly verifier: Option<MultiSigner>;
readonly deposit: Balance;
readonly raised: Balance;
readonly end: BlockNumber;
readonly cap: Balance;
readonly lastContribution: LastContribution;
readonly firstPeriod: LeasePeriod;
readonly lastPeriod: LeasePeriod;
readonly trieIndex: TrieIndex;
}
/** @name LastContribution */
export interface LastContribution extends Enum {
readonly isNever: boolean;
readonly isPreEnding: boolean;
readonly asPreEnding: u32;
readonly isEnding: boolean;
readonly asEnding: BlockNumber;
readonly type: 'Never' | 'PreEnding' | 'Ending';
}
/** @name TrieIndex */
export interface TrieIndex extends u32 {
}
export type PHANTOM_CROWDLOAN = 'crowdloan';