You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to use custom RPC during the onboarding phase, a chain-id change warning window will be shown (which probably shouldn't have been shown).
Most likely, this also sends a СlearCache message to the service worker, but the service worker is not initialized yet and this causes a crash
The text was updated successfully, but these errors were encountered:
Good find. I think this slipped through as we've been typically entering in custom RPCs that serve the same chain id.
However, there is an issue when there will be zero rpcs in the list. With fixEmptyGrpcEndpointAfterOnboarding(), there is a hardcoded testnet rpc there that prefills the input. We should delete this. But it also is subject to the bug you found (trying to go from testnet -> another chain... popup err).
Aww, it's not that simple with fixEmptyGrpcEndpointAfterOnboarding. If we want to remove this logic, we need to consider that the user can interrupt onboarding at any time and come back to it later. In this case, if the user has not yet selected RPC, then we should not consider that his onboarding is complete
If you try to use custom RPC during the onboarding phase, a
chain-id
change warning window will be shown (which probably shouldn't have been shown).Most likely, this also sends a
СlearCache
message to the service worker, but the service worker is not initialized yet and this causes a crashThe text was updated successfully, but these errors were encountered: