ts-algochat
    Preparing search index...

    Interface Message

    A chat message

    interface Message {
        amount?: number;
        confirmedRound: number;
        content: string;
        direction: MessageDirection;
        fee?: number;
        id: string;
        intraRoundOffset?: number;
        recipient: string;
        replyContext?: ReplyContext;
        sender: string;
        timestamp: Date;
    }
    Index

    Properties

    amount?: number

    Amount transferred in microAlgos

    confirmedRound: number
    content: string
    direction: MessageDirection
    fee?: number

    Transaction fee in microAlgos

    id: string
    intraRoundOffset?: number

    Position within the confirmed round (for ordering group transactions)

    recipient: string
    replyContext?: ReplyContext
    sender: string
    timestamp: Date