ts-algochat
    Preparing search index...

    Interface SendOptions

    Options for sending messages

    interface SendOptions {
        amount?: number;
        indexerTimeout?: number;
        replyContext?: SendReplyContext;
        timeout?: number;
        waitForConfirmation?: boolean;
        waitForIndexer?: boolean;
    }
    Index

    Properties

    amount?: number

    Amount to send in microAlgos (default: 1000 = 0.001 ALGO)

    indexerTimeout?: number

    Indexer timeout in milliseconds (default: 30000)

    replyContext?: SendReplyContext

    Reply context for threaded messages

    timeout?: number

    Confirmation timeout in rounds (default: 10)

    waitForConfirmation?: boolean

    Wait for transaction confirmation (default: false)

    waitForIndexer?: boolean

    Wait for indexer to index the transaction (default: false)