@arkade-os/sdk Documentation - v0.4.54
    Preparing search index...

    Interface EmulatorEntry

    EmulatorEntry represents a single entry in the Emulator Packet, mapping a transaction input to its arkade script and witness data.

    interface EmulatorEntry {
        script: Uint8Array;
        vin: number;
        witness?: Uint8Array<ArrayBufferLike>;
    }
    Index

    Properties

    Properties

    script: Uint8Array

    Arkade Script bytecode

    vin: number

    Transaction input index (u16 LE)

    witness?: Uint8Array<ArrayBufferLike>

    Script witness data (serialized)