Skip to content

Commit

Permalink
fix(volume-fee): do not add fee for USDC.e on arb (#5119)
Browse files Browse the repository at this point in the history
  • Loading branch information
shoom3301 authored Nov 21, 2024
1 parent 4b7267f commit ba11c02
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libs/common-const/src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,15 @@ const USDE_ARBITRUM_ONE = new TokenWithLogo(
'USDe',
)

const USDCE_ARBITRUM_ONE = new TokenWithLogo(
cowprotocolTokenLogoUrl('0xff970a61a04b1ca14834a43f5de4533ebddb5cc8', SupportedChainId.ARBITRUM_ONE),
SupportedChainId.ARBITRUM_ONE,
'0xff970a61a04b1ca14834a43f5de4533ebddb5cc8',
6,
'USDC',
'USD Coin (Arb1)',
)

const USDM_ARBITRUM_ONE = new TokenWithLogo(
cowprotocolTokenLogoUrl('0x59d9356e565ab3a36dd77763fc0d87feaf85508c', SupportedChainId.ARBITRUM_ONE),
SupportedChainId.ARBITRUM_ONE,
Expand Down Expand Up @@ -352,6 +361,7 @@ const ARBITRUM_ONE_STABLECOINS = [
USDT_ARBITRUM_ONE.address,
USDE_ARBITRUM_ONE.address,
USDM_ARBITRUM_ONE.address,
USDCE_ARBITRUM_ONE.address,
FRAX_ARBITRUM_ONE.address,
MIM_ARBITRUM_ONE.address,
].map((t) => t.toLowerCase())
Expand Down

0 comments on commit ba11c02

Please sign in to comment.