We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6add6e commit fdce791Copy full SHA for fdce791
ui/pages/bridge/prepare/prepare-bridge-page.tsx
@@ -288,10 +288,8 @@ const PrepareBridgePage = () => {
288
// balance is less than the tenderly balance
289
insufficientBal: Boolean(providerConfig?.rpcUrl?.includes('tenderly')),
290
slippage,
291
- walletAddress:
292
- fromChain?.chainId && isCaipChainId(fromChain.chainId)
293
- ? selectedAccount?.address
294
- : selectedEvmAccount?.address,
+ walletAddress: selectedAccount?.address,
+ // TODO: Remove this once we have a way to get the dest wallet address
295
destWalletAddress:
296
toChain?.chainId && isCaipChainId(toChain.chainId)
297
? selectedAccount?.address
0 commit comments