ts-algochat
    Preparing search index...

    Interface ChatAccount

    interface ChatAccount {
        account?: Account;
        address: string;
        ed25519PublicKey: Uint8Array;
        encryptionKeys: X25519KeyPair;
        scheme: SigningScheme;
        txnSigner: TransactionSigner;
    }
    Index
    account?: Account

    Ed25519 algosdk account. Present only when scheme is ed25519. Falcon accounts sign through txnSigner and do not expose a 64-byte sk.

    address: string
    ed25519PublicKey: Uint8Array

    Ed25519 public key derived from mnemonic entropy (32 bytes). Equal to the address public key only when scheme is ed25519.

    encryptionKeys: X25519KeyPair

    Authorizing signature scheme for payments that carry envelopes.

    txnSigner: TransactionSigner

    Signs payments for this account (Ed25519 sig or Falcon-1024 pqsig).