Notifies other modules to pull a fresh account list.
Notifies the platform that account data should be refetched. Use this after making changes that affect account information to ensure other features display up-to-date data.
If you mutate accounts, you should call notifyRefetchAccounts, which will bust the cache and then notify subscribers (through refetchRequired) to refetch accounts.
tecton.actions.notifyRefetchAccounts(): void;After submitting a transfer, notify to refetch accounts.
await submitTransfer(transferData);
tecton.actions.notifyRefetchAccounts();