ts-algochat
    Preparing search index...

    Interface PendingMessage

    A message waiting in the send queue

    interface PendingMessage {
        content: string;
        createdAt: Date;
        id: string;
        lastAttemptAt?: Date;
        lastError?: string;
        maxRetries: number;
        recipient: string;
        recipientPublicKey: Uint8Array;
        replyContext?: SendReplyContext;
        retryCount: number;
        status: PendingMessageStatus;
        txid?: string;
    }
    Index

    Properties

    content: string

    Message content

    createdAt: Date

    When the message was queued

    id: string

    Unique local identifier

    lastAttemptAt?: Date

    Last send attempt time

    lastError?: string

    Error message if failed

    maxRetries: number

    Maximum retries before expiring

    recipient: string

    Recipient Algorand address

    recipientPublicKey: Uint8Array

    Recipient's encryption public key

    replyContext?: SendReplyContext

    Optional reply context

    retryCount: number

    Number of send attempts

    Current status

    txid?: string

    Transaction ID if sent