ts-algochat
    Preparing search index...

    Interface DiscoveredKey

    A discovered public key with metadata

    interface DiscoveredKey {
        address?: string;
        discoveredAt?: Date;
        discoveredAtRound?: number;
        discoveredInTx?: string;
        isVerified: boolean;
        publicKey: Uint8Array;
    }
    Index

    Properties

    address?: string

    Algorand address that owns this key (optional - not all discovery methods provide this)

    discoveredAt?: Date

    Timestamp of discovery (optional)

    discoveredAtRound?: number

    Round number where key was discovered (optional)

    discoveredInTx?: string

    Transaction ID where key was discovered (optional)

    isVerified: boolean

    Whether the key was cryptographically verified via Ed25519 signature

    publicKey: Uint8Array

    The X25519 public key