sendAda abstract method

Future<Result<ShelleyTransaction, String>> sendAda({
  1. required ShelleyAddress toAddress,
  2. required Coin lovelace,
  3. int ttl = 0,
  4. int fee = 0,
  5. bool logTxHex = false,
  6. bool logTx = false,
})

Send ADA to another address.

Implementation

Future<Result<ShelleyTransaction, String>> sendAda({
  required ShelleyAddress toAddress,
  required Coin lovelace,
  int ttl = 0,
  int fee = 0,
  bool logTxHex = false,
  bool logTx = false,
});