Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobJar committed Jan 12, 2024
1 parent ef2863d commit e3080cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Token} from "@uniswap/sdk-core";
export const parseToken = (rawToken: any, chainId: number): Token => {
return new Token(chainId,
rawToken.address,
rawToken.decimals,
Number(rawToken.decimals),
rawToken.symbol,
rawToken.name
);
Expand Down

0 comments on commit e3080cb

Please sign in to comment.