@hiero-ledger/sdk
    Preparing search index...

    Class ContractLogInfo

    The log information for an event returned by a smart contract function call. One function call may return several such events.

    Index

    Constructors

    Properties

    Constructors

    • Parameters

      • props: {
            bloom: Uint8Array<ArrayBufferLike>;
            contractId: ContractId;
            data: Uint8Array<ArrayBufferLike>;
            topics: Uint8Array<ArrayBufferLike>[];
        }

      Returns ContractLogInfo

    Properties

    bloom: Uint8Array<ArrayBufferLike>

    Bloom filter for a particular log.

    contractId: ContractId

    Address of a contract that emitted the event.

    data: Uint8Array<ArrayBufferLike>

    Event data.

    topics: Uint8Array<ArrayBufferLike>[]

    Topics of a particular event.