Closed
Description
ethHandlers.ts should be refactored to adhere with the following principles:
- Handlers should contain no direct assignment of Entity values. State alterations must be performed through appropriate Service methods (such as
PoolService.ts
orLoanService.ts
) - Avoid use of array iterators methods such as
.map()
or.foreach()
in combination withasync
functions, as these can lead to the raising of unhandled exceptions. Usefor ... of ...
instead. - Refactor contract calls to be included in the appropriate Service Method
Metadata
Metadata
Assignees
Labels
No labels