sendTransaction method

Future<String> sendTransaction(
  1. Envelope envelope
)

Implementation

Future<String> sendTransaction(Envelope envelope) async {
  final signed = await signTransaction(envelope);
  return sendRawTransaction(signed);
}