Type Alias GrandpaEvent

GrandpaEvent: Enum<{
    NewAuthorities: {
        authority_set: [FixedSizeBinary<32>, bigint][];
    };
    Paused: undefined;
    Resumed: undefined;
}>

Type declaration

  • NewAuthorities: {
        authority_set: [FixedSizeBinary<32>, bigint][];
    }

    New authority set has been applied.

    • authority_set: [FixedSizeBinary<32>, bigint][]
  • Paused: undefined

    Current authority set has been paused.

  • Resumed: undefined

    Current authority set has been resumed.