createTx method

Future<Map<Tx, SignerOptions>> createTx(
  1. Fee fee, {
  2. String optionalNote = "",
})

Implementation

Future<Map<Core.Tx, SignerOptions>> createTx(Fee fee,
    {String optionalNote = ""}) async {
  var walletOptions = await getWalletOptions();

  return {await broadcastTx.createTx(fee, memo: optionalNote): walletOptions};
}