sendSignedTransaction method

Future<TransactionSignature> sendSignedTransaction(
  1. String signedTransaction, {
  2. SendTransactionConfig? config,
})

Sends a signed Transaction to the cluster for processing.

Implementation

Future<TransactionSignature> sendSignedTransaction(
  final String signedTransaction, {
  final SendTransactionConfig? config,
}) async => (await sendSignedTransactionRaw(
  signedTransaction,
  config: config,
)).result!;