Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsParameters

    Parameters for the platform.getUTXOs method. Get the UTXOs that reference a given set of addresses.

    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 format to use. Can only be hex when a value is provided

    limit?: number

    The maximum number of UTXOs to return

    sourceChain?: string

    The chain to get UTXOs from. If omitted, gets UTXOs from the P-Chain

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

    The index to start from. If omitted, starts from the beginning