createSimpleTransactionFromParams abstract method

Future<Either<SimpleTransactionAlgebraError, IoTransaction>> createSimpleTransactionFromParams({
  1. required String keyfile,
  2. required String password,
  3. required String fromFellowship,
  4. required String fromContract,
  5. int? someFromState,
  6. String? someChangeFellowship,
  7. String? someChangeContract,
  8. int? someChangeState,
  9. LockAddress? someToAddress,
  10. String? someToFellowship,
  11. String? someToContract,
  12. required int amount,
  13. required int fee,
  14. required ValueTypeIdentifier tokenType,
})

Implementation

Future<Either<SimpleTransactionAlgebraError, IoTransaction>>
    createSimpleTransactionFromParams({
  required String keyfile,
  required String password,
  required String fromFellowship,
  required String fromContract,
  int? someFromState,
  String? someChangeFellowship,
  String? someChangeContract,
  int? someChangeState,
  LockAddress? someToAddress,
  String? someToFellowship,
  String? someToContract,
  required int amount,
  required int fee,
  required ValueTypeIdentifier tokenType,
});