Avalanche SDK Client
    Preparing search index...

    Type Alias CommonTxParams

    type CommonTxParams = {
        changeAddresses?: string[];
        fromAddresses?: string[];
        memo?: string;
        minIssuanceTime?: bigint;
        utxos?: Utxo[];
    }
    Index

    Properties

    changeAddresses?: string[]

    Optional. Addresses to send remaining change to. If not provided, fromAddresses will be used. Preference would be given to changeAddresses array.

    fromAddresses?: string[]

    Optional. Addresses to send funds from. If not provided, utxos can be used. Preference would be given to utxos array.

    memo?: string

    Optional. Memo to include in the transaction.

    minIssuanceTime?: bigint

    Optional. Earliest time this transaction can be issued. Useful for building transactions using UTXOs that are currently locked but will unlock after this time. If not provided, the current time will be used.

    utxos?: Utxo[]

    Optional. UTXOs to use as inputs for the transaction. If not provided, utxos will be fetched from the fromAddresses. Preference would be given to utxos array.