ts-algochat
    Preparing search index...

    Interface ChatEnvelope

    Parsed message envelope from transaction note

    interface ChatEnvelope {
        ciphertext: Uint8Array;
        encryptedSenderKey: Uint8Array;
        ephemeralPublicKey: Uint8Array;
        nonce: Uint8Array;
        protocolId: number;
        senderPublicKey: Uint8Array;
        version: number;
    }
    Index

    Properties

    ciphertext: Uint8Array
    encryptedSenderKey: Uint8Array
    ephemeralPublicKey: Uint8Array
    nonce: Uint8Array
    protocolId: number
    senderPublicKey: Uint8Array
    version: number