Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ManualTBTC builtin route support #3364

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading

Unchanged files with check annotations Beta

loadConfig(props.config);
}
}
}, [props.config]);

Check warning on line 91 in wormhole-connect/src/AppRouter.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadConfig'. Either include it or remove the dependency array
// END config loading code
const route = useSelector((state: RootState) => state.router.route);
if (isEnteringBridge && prevRoute !== 'history') {
dispatch(clearTransfer());
}
}, [route, prevRoute, dispatch]);

Check warning on line 112 in wormhole-connect/src/AppRouter.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'routeContext'. Either include it or remove the dependency array
useEffect(() => {
if (hasExternalSearch) {
return () => {
document.removeEventListener('keyup', callback);
};
}, []);

Check warning on line 76 in wormhole-connect/src/components/Modal.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onClose'. Either include it or remove the dependency array. If 'onClose' changes too often, find the parent component that defines it and wrap that definition in useCallback
return (
<Dialog
config.tokens.lastUpdate,
);
const [tokenPrices, _setTokenPrices] = useState<TokenMapping<TokenPrice>>(

Check warning on line 59 in wormhole-connect/src/contexts/TokensContext.tsx

GitHub Actions / lint

'_setTokenPrices' is assigned a value but never used
new TokenMapping(),
);
const [tokenPricesToFetch, _setTokenPricesToFetch] = useState<

Check warning on line 62 in wormhole-connect/src/contexts/TokensContext.tsx

GitHub Actions / lint

'_setTokenPricesToFetch' is assigned a value but never used
TokenMapping<boolean>
>(new TokenMapping());
setIsFetchingToken(false);
}
},
[],

Check warning on line 109 in wormhole-connect/src/contexts/TokensContext.tsx

GitHub Actions / lint

React Hook useCallback has a missing dependency: 'lastTokenCacheUpdate'. Either include it or remove the dependency array
);
const updateTokenPrices = useDebouncedCallback(async () => {
return () => {
canceled = true;
};
}, [fromChain, toChain]);

Check warning on line 205 in wormhole-connect/src/utils/wallet/index.ts

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'dispatch'. Either include it or remove the dependency array
};
export const getWalletConnection = (type: TransferWallet) => {
}
}, [hasExternalSearch, txHash, chainName, clear]);
const doSearch = useCallback(() => search(), [state]);

Check warning on line 158 in wormhole-connect/src/views/TxSearch.tsx

GitHub Actions / lint

React Hook useCallback has a missing dependency: 'search'. Either include it or remove the dependency array
// search on load if txHash and chainName are set
useEffect(() => {