Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Dec 14, 2021
1 parent 1edbcc3 commit 309e6f6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/routers/alpha-router/config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { ChainId } from '../../util/chains';
import { AlphaRouterConfig } from './alpha-router';


export const DEFAULT_ROUTING_CONFIG_BY_CHAIN = (chainId: ChainId): AlphaRouterConfig => {
export const DEFAULT_ROUTING_CONFIG_BY_CHAIN = (
chainId: ChainId
): AlphaRouterConfig => {
switch (chainId) {
// Optimism
case ChainId.OPTIMISM:
Expand Down Expand Up @@ -84,4 +85,5 @@ export const DEFAULT_ROUTING_CONFIG_BY_CHAIN = (chainId: ChainId): AlphaRouterCo
};
}
};
export const ETH_GAS_STATION_API_URL = 'https://ethgasstation.info/api/ethgasAPI.json';
export const ETH_GAS_STATION_API_URL =
'https://ethgasstation.info/api/ethgasAPI.json';

0 comments on commit 309e6f6

Please sign in to comment.