Skip to content

Commit

Permalink
support sol bridge native
Browse files Browse the repository at this point in the history
  • Loading branch information
haunv3 committed Jan 17, 2025
1 parent 97a14be commit 0575245
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Balance/hooks/useGetFeeSol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export enum Direction {
export enum SUPPORT_TOKEN {
ORAI = 'orai',
MAX = 'max',
RACKS = 'racks',
RACKS = 'rack',
GNRT = 'gnrt',
LEE = 'lee',
MOOBS = 'moobs',
Expand Down Expand Up @@ -44,6 +44,7 @@ const useGetFeeSol = ({
const [solFee, setSolFee] = useState(defaultSolFee);

const getSupportToken = (denom) => {
if (denom === 'RACKS') return SUPPORT_TOKEN.RACKS;
return denom?.toLowerCase();
};

Expand Down

0 comments on commit 0575245

Please sign in to comment.