Interface AssetQueryResult

Interface for asset query result. Represents the complete result of querying asset data from the blockchain.

interface AssetQueryResult {
    assetId: number;
    error?: string;
    exists: boolean;
    parameters: AssetParameterData;
    success: boolean;
}

Properties

assetId: number

Asset ID that was queried

error?: string

Error message if query failed

exists: boolean

Whether the asset exists on the blockchain

parameters: AssetParameterData

Asset parameter data that was retrieved

success: boolean

Overall query success status