ts-algochat
    Preparing search index...

    Interface NoteTransaction

    A note field transaction from the blockchain.

    interface NoteTransaction {
        confirmedRound: number;
        note: Uint8Array;
        receiver: string;
        roundTime: number;
        sender: string;
        txid: string;
    }
    Index

    Properties

    confirmedRound: number

    Round in which the transaction was confirmed.

    note: Uint8Array

    Note field contents.

    receiver: string

    Receiver address.

    roundTime: number

    Timestamp of the block (Unix time in seconds).

    sender: string

    Sender address.

    txid: string

    Transaction ID.