Description
We want the client class and the use-case specific clients to be using inheritance rather than having a single client class that has each use case client. We should be adhering to OOP more strictly and make the code cleaner
Acceptance Criteria
- Have each use-case specific client inherit a client class
- Don't have client use duplicate code
- Use the use-case to determine which client should be used
- We can make this even easier by having preset scripts that just run the clients (ex. defi use case: ./startDefiClient). A better approach could be taken though
Description
We want the client class and the use-case specific clients to be using inheritance rather than having a single client class that has each use case client. We should be adhering to OOP more strictly and make the code cleaner
Acceptance Criteria