Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsReturnType

    Return type for the platform.getUTXOs method.

    type GetUTXOsReturnType = {
        encoding: "hex";
        endIndex: { address: string; utxo: string };
        numFetched: number;
        sourceChain?: string;
        utxos: string[];
    }
    Index

    Properties

    encoding: "hex"

    The encoding format used

    endIndex: { address: string; utxo: string }

    The index of the last UTXO returned

    numFetched: number

    The number of UTXOs returned

    sourceChain?: string

    The chain the UTXOs are from

    utxos: string[]

    The UTXOs that reference the given addresses