Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions v3-sdk/quoting/src/libs/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file stores web3 related constants such as addresses, token definitions, ETH currency references and ABI's

import { SupportedChainId, Token } from '@uniswap/sdk-core'
import { ChainId, Token } from '@uniswap/sdk-core'

// Addresses

Expand All @@ -12,15 +12,15 @@ export const QUOTER_CONTRACT_ADDRESS =
// Currencies and Tokens

export const WETH_TOKEN = new Token(
SupportedChainId.MAINNET,
ChainId.MAINNET,
'0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
18,
'WETH',
'Wrapped Ether'
)

export const USDC_TOKEN = new Token(
SupportedChainId.MAINNET,
ChainId.MAINNET,
'0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
6,
'USDC',
Expand Down
6 changes: 3 additions & 3 deletions v3-sdk/trading/src/libs/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file stores web3 related constants such as addresses, token definitions, ETH currency references and ABI's

import { SupportedChainId, Token } from '@uniswap/sdk-core'
import { ChainId, Token } from '@uniswap/sdk-core'

// Addresses

Expand All @@ -15,15 +15,15 @@ export const WETH_CONTRACT_ADDRESS =
// Currencies and Tokens

export const WETH_TOKEN = new Token(
SupportedChainId.MAINNET,
ChainId.MAINNET,
'0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
18,
'WETH',
'Wrapped Ether'
)

export const USDC_TOKEN = new Token(
SupportedChainId.MAINNET,
ChainId.MAINNET,
'0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
6,
'USDC',
Expand Down