interface IEventRecord<E, H> {
    event: E;
    phase: {
        type: "ApplyExtrinsic";
        value: number;
    } | {
        type: "Finalization";
    } | {
        type: "Initialization";
    };
    topics: H[];
}

Type Parameters

Properties

Properties

event: E
phase: {
    type: "ApplyExtrinsic";
    value: number;
} | {
    type: "Finalization";
} | {
    type: "Initialization";
}
topics: H[]