Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsParameters

    The parameters for the avax.getUTXOs method.

    The addresses to get the UTXOs for. Each returned UTXO will reference at least one address in this list.

    The maximum number of UTXOs to return. If omitted or greater than 1024, it is set to 1024.

    The starting index for pagination. If omitted, will fetch all UTXOs up to limit. When using pagination: - UTXOs are not guaranteed to be unique across multiple calls - Consistency is not guaranteed across multiple calls as the UTXO set may change between calls

    The source chain of the UTXOs to return.

    The encoding format for the returned UTXOs. Can only be "hex" when a value is provided.

    type GetUTXOsParameters = {
        addresses: string[];
        encoding?: "hex";
        limit?: number;
        sourceChain?: string;
        startIndex?: { address: string; utxo: string };
    }
    Index

    Properties

    addresses: string[]
    encoding?: "hex"
    limit?: number
    sourceChain?: string
    startIndex?: { address: string; utxo: string }