IBCEvent<E, T>: {
    blockHeight?: number;
    blockTime?: number;
    event: E;
    target?: string | {
        onlyIfRegistered: string;
    };
    type: T;
} & {
    [K in keyof IBCPacketEvents[E]]: IBCPacketEvents[E][K]
}

Type Parameters

Type declaration

  • OptionalblockHeight?: number

    blockHeight may be missing from synthetic packets.

  • OptionalblockTime?: number

    blockTime may be missing from synthetic packets.

  • event: E
  • Optionaltarget?: string | {
        onlyIfRegistered: string;
    }

    e.g. the chain address of the LocalChainAccount

  • type: T