Skip to content

Commit

Permalink
use lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Feb 15, 2024
1 parent aa18289 commit 1ec5e36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/sources/transformers/pool-transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ export const poolTransformer = (
chain: Chain,
): PrismaPool => {
return {
id: subgraphPool.id,
id: subgraphPool.id.toLowerCase(),
chain: chain,
vaultVersion: 3,
address: subgraphPool.id,
address: subgraphPool.id.toLowerCase(),
decimals: 18,
symbol: contractData.symbol || '',
name: contractData.name || '',
owner: '',
factory: subgraphPool.factory,
factory: subgraphPool.factory.toLowerCase(),
type: PrismaPoolType.WEIGHTED,
typeData: {},
version: 1,
Expand Down

0 comments on commit 1ec5e36

Please sign in to comment.