Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsReturnType

    The return type for the avax.getUTXOs method.

    The number of UTXOs fetched in this response.

    The list of UTXOs fetched, where each UTXO references at least one address from the input addresses.

    The end index of the UTXOs fetched. Used for pagination - to get the next set of UTXOs, use this value as startIndex in the next call.

    type GetUTXOsReturnType = {
        endIndex: { address: string; utxo: string };
        numFetched: number;
        utxos: string[];
    }
    Index

    Properties

    endIndex: { address: string; utxo: string }
    numFetched: number
    utxos: string[]