Skip to content

Commit

Permalink
fix network switching
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Aug 10, 2023
1 parent e0ed2af commit a2e0905
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 40 deletions.
38 changes: 0 additions & 38 deletions packages/bridge-ui/src/utils/switchNetwork.ts
Original file line number Diff line number Diff line change
@@ -1,43 +1,5 @@
import { get } from 'svelte/store';
import { switchNetwork as wagmiSwitchNetwork } from 'wagmi/actions';

import { srcChain } from '../store/chain';
import { Deferred } from './Deferred';

export async function switchNetwork(chainId: number) {
const prevChainId = get(srcChain)?.id;

if (prevChainId === chainId) return;

await wagmiSwitchNetwork({ chainId });

// What are we doing here? we have a watcher waiting for network changes.
// When this happens this watcher is called and takes care of setting
// the signer and chains in the store. We are actually waiting here
// for these stores to change due to some race conditions in the UI.
// There will be a better design around this in alpha-4: fewer stores
// and '$:' tags. They're evil.
const deferred = new Deferred<void>();

// This will prevent an unlikely infinite loop
const starting = Date.now();
const timeout = 5000; // TODO: config?

const waitForNetworkChange = () => {
const srcChainId = get(srcChain)?.id;

if (srcChainId && srcChainId !== prevChainId) {
// We have finally set the chain in the store. We're done here.
deferred.resolve();
} else if (Date.now() > starting + timeout) {
// Wait, what???
deferred.reject(new Error('timeout switching network'));
} else {
setTimeout(waitForNetworkChange, 300); // TODO: config those 300?
}
};

waitForNetworkChange();

return deferred.promise;
}
4 changes: 2 additions & 2 deletions packages/bridge-ui/src/wagmi/watcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ const setChain = (chainId: number) => {
srcChain.set(L1Chain);
destChain.set(L2Chain);

log(`Network swtiched to ${L1Chain.name}`);
log(`Network switched to ${L1Chain.name}`);
} else if (chainId === L2Chain.id) {
srcChain.set(L2Chain);
destChain.set(L1Chain);

log(`Network swtiched to ${L2Chain.name}`);
log(`Network switched to ${L2Chain.name}`);
} else {
isSwitchChainModalOpen.set(true);
}
Expand Down

0 comments on commit a2e0905

Please sign in to comment.