Problem:
The current code for retrieving block explorer URLs to navigate to Account and Transaction screens is becoming increasingly complex. This is because many special network-specific cases need to be handled individually. Every time a new network with special behavior is added, the code must be updated again, which is time-consuming and not scalable.
Solution:
Move all data related to these navigation URLs into static content. The codebase will then simply fetch and consume this data for handling navigation, reducing complexity and improving maintainability.
Problem:
The current code for retrieving block explorer URLs to navigate to Account and Transaction screens is becoming increasingly complex. This is because many special network-specific cases need to be handled individually. Every time a new network with special behavior is added, the code must be updated again, which is time-consuming and not scalable.
Solution:
Move all data related to these navigation URLs into static content. The codebase will then simply fetch and consume this data for handling navigation, reducing complexity and improving maintainability.