Result of resolving a single record on Solana

interface SolanaRecordResult {
    error?: string;
    found: boolean;
    key: string;
    value: string;
}

Properties

Properties

error?: string

Error message if resolution failed

found: boolean

Whether the record was successfully found

key: string

The record key that was queried

value: string

The resolved value, or null if not found