Skip to content

Commit

Permalink
feat: Fix name and symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefMomota committed Oct 17, 2024
1 parent 0505126 commit f1859b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/farms/src/fetchUniversalFarms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ export const fetchUniversalFarms = async (chainId: ChainId, protocol?: Protocol)
p.token0.chainId,
p.token0.address,
p.token0.decimals,
p.token0.name,
p.token0.symbol,
p.token0.name,
p.token0.projectLink,
),
token1: new ERC20Token(
p.token1.chainId,
p.token1.address,
p.token1.decimals,
p.token1.name,
p.token1.symbol,
p.token1.name,
p.token1.projectLink,
),
}))
Expand Down

0 comments on commit f1859b8

Please sign in to comment.