Avalanche SDK Client
    Preparing search index...

    Type Alias GetUTXOsReturnType

    The return type for the avm.getUTXOs method.

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

    Properties

    encoding: "hex"

    The encoding of the UTXOs.

    endIndex: { address: string; utxo: string }

    The end index of the UTXOs.

    Type declaration

    • address: string

      The address of the UTXO.

    • utxo: string

      The UTXO.

    numFetched: number

    The number of UTXOs fetched.

    sourceChain?: string

    The source chain of the UTXOs.

    utxos: string[]

    The UTXOs.