should we add a global bool for .storeAccounts which is checked before every write to .store.activeAccount etc etc
i was going to implement this but realized there would be a tone of unintended side effects like computed vars .isConnected and .isActive and .activeWallet checks that being correct.
if (AnyWalletState.storeAccounts == false) {
logger.log('.storeAccounts set to false, not recalling or setting .stored');
return;
}
should we add a global bool for
.storeAccounts
which is checked before every write to .store.activeAccount etc etci was going to implement this but realized there would be a tone of unintended side effects like computed vars .isConnected and .isActive and .activeWallet checks that being correct.