// Auto-generated via `yarn polkadot-types-from-defs`, do not edit /* eslint-disable */ import type { Struct, Vec } from '@polkadot/types'; import type { CandidateReceipt, ParaId } from '@polkadot/types/interfaces/parachains'; import type { AccountId, BlockNumber, H256, Hash } from '@polkadot/types/interfaces/runtime'; import type { SessionIndex } from '@polkadot/types/interfaces/session'; /** @name BlockAttestations */ export interface BlockAttestations extends Struct { readonly receipt: CandidateReceipt; readonly valid: Vec; readonly invalid: Vec; } /** @name IncludedBlocks */ export interface IncludedBlocks extends Struct { readonly actualNumber: BlockNumber; readonly session: SessionIndex; readonly randomSeed: H256; readonly activeParachains: Vec; readonly paraBlocks: Vec; } /** @name MoreAttestations */ export interface MoreAttestations extends Struct {} export type PHANTOM_ATTESTATIONS = 'attestations';