Skip to content

Commit

Permalink
fix missing comma issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mendesfabio committed Jun 21, 2023
1 parent 810af15 commit ea3bffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ export const POLYGON_ROOT_GAUGE_V2_FACTORY = Address.fromString(
'0xa98Bce70c92aD2ef3288dbcd659bC0d6b62f8F13',
);
export const AVALANCHE_ROOT_GAUGE_V2_FACTORY = Address.fromString(
'0x10f3e79911A490aa5B5D5CDA6F111029c4Eab5AC'
'0x10f3e79911A490aa5B5D5CDA6F111029c4Eab5AC',
);
export const POLYGON_ZKEVM_ROOT_GAUGE_V2_FACTORY = Address.fromString(
'0x9bF951848288cCD87d06FaC426150262cD3447De'
'0x9bF951848288cCD87d06FaC426150262cD3447De',
);

export function isArbitrumFactory(factory: Address): boolean {
Expand Down

0 comments on commit ea3bffe

Please sign in to comment.