Type Alias OffenceQueue

OffenceQueue: StorageDescriptor<
    [number, SS58String],
    {
        exposure_page: number;
        prior_slash_fraction: number;
        reported_era: number;
        reporter?: SS58String;
        slash_fraction: number;
    },
    true,
    never,
>

Stores reported offences in a queue until they are processed in subsequent blocks.

Each offence is recorded under the corresponding era index and the offending validator's account. If an offence spans multiple pages, only one page is processed at a time. Offences are handled sequentially, with their associated slashes computed and stored in UnappliedSlashes. These slashes are then applied in a future era as determined by SlashDeferDuration.

Any offences tied to an era older than BondingDuration are automatically dropped. Processing always prioritizes the oldest era first.

MMNEPVFCICPMFPCPTTAAATR