Documentation
    Preparing search index...

    Interface DecodableEvent

    The slice of an executed/simulated transaction result the decoders need.

    interface DecodableEvent {
        bcs?: string | Uint8Array<ArrayBufferLike>;
        eventType?: string;
        module?: string;
        name?: string;
        packageId?: string;
        type?: string;
    }
    Index
    bcs?: string | Uint8Array<ArrayBufferLike>

    Canonical BCS payload; some transports deliver it base64-encoded.

    eventType?: string

    Full type tag 0xpkg::module::Name (gRPC eventType, legacy type).

    module?: string
    name?: string

    Struct name, when the transport supplies it separately from a full type tag.

    packageId?: string
    type?: string