Skip to content

Commit

Permalink
Merge pull request #1141 from oraidex/feat/support-bridge-defai
Browse files Browse the repository at this point in the history
update fee cho meme token
  • Loading branch information
haunv3 authored Feb 6, 2025
2 parents 278afd3 + 1672463 commit 6e4615f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Balance/hooks/useGetFeeSol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ const useGetFeeSol = ({
let baseURL = `https://solana-relayer.orai.io`;

if (isMemeBridge) {
supportedToken = originalFromToken?.contractAddress || originalFromToken.denom;
const splitDenomInOraichain = originalFromToken.denom.split('/');
supportedToken =
originalFromToken?.contractAddress || splitDenomInOraichain[splitDenomInOraichain.length - 1];
baseURL = 'https://sol-meme-bridge.agents.land';
}

Expand Down

0 comments on commit 6e4615f

Please sign in to comment.