• Function to build a Dash transaction.

    Parameters

    • params: TxParams & {
          feeRate: number;
          network: Network;
          sender: string;
          withTxHex?: boolean;
      }

      Transaction parameters including amount, recipient, memo, fee rate, sender, and network.

    Returns Promise<{
        tx: Transaction;
        utxos: UTXO[];
    }>

    Promise that resolves with the built transaction and its UTXOs.

Generated using TypeDoc