pai
    Preparing search index...

    Type Alias ReceiptCheck

    The result of checking a receipt with checkReceipt.

    type ReceiptCheck = {
        reason?: string;
        receipt: Receipt | null;
        valid: boolean;
    }
    Index
    reason?: string

    Why the check failed. Absent when it passed.

    receipt: Receipt | null

    The decoded receipt, or null when it could not be read.

    valid: boolean

    True when the signature matches Phantom AI's published key.