ts-algochat
    Preparing search index...

    Interface ChatAccount

    interface ChatAccount {
        account: Account;
        address: string;
        ed25519PublicKey: Uint8Array;
        encryptionKeys: X25519KeyPair;
    }
    Index

    Properties

    account: Account
    address: string
    ed25519PublicKey: Uint8Array

    The Ed25519 public key for this account (32 bytes), derived from the account's seed/private key (and equivalent to the key encoded in the Algorand address). Used for signature verification.

    encryptionKeys: X25519KeyPair