Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsParameters

    The parameters for the avm.getUTXOs method.

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

    Properties

    addresses: string[]

    The addresses to get UTXOs for.

    encoding?: "hex"

    The encoding of the UTXOs to return.

    limit?: number

    The maximum number of UTXOs to return.

    sourceChain?: string

    The source chain of the UTXOs to return.

    startIndex?: { address: string; utxo: string }

    The starting index of the UTXOs to return.