All chains
    Preparing search index...

    Type Alias ElectionProviderMultiPhaseEvent

    ElectionProviderMultiPhaseEvent: Enum<
        {
            ElectionFailed: undefined;
            ElectionFinalized: {
                compute: ElectionProviderMultiPhaseElectionCompute;
                score: {
                    minimal_stake: bigint;
                    sum_stake: bigint;
                    sum_stake_squared: bigint;
                };
            };
            PhaseTransitioned: {
                from: ElectionProviderMultiPhasePhase;
                round: number;
                to: ElectionProviderMultiPhasePhase;
            };
            Rewarded: { account: SS58String; value: bigint };
            Slashed: { account: SS58String; value: bigint };
            SolutionStored: {
                compute: ElectionProviderMultiPhaseElectionCompute;
                origin?: SS58String;
                prev_ejected: boolean;
            };
        },
    >