Skip to content

Commit

Permalink
fix: token decimals (#120)
Browse files Browse the repository at this point in the history
* fix: token decimals

* chore: changeset
  • Loading branch information
maxencerb authored Aug 5, 2024
1 parent c73ec33 commit 5c63a0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/six-masks-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mangrovedao/mgv": patch
---

Fixed USDC and USDT decimals on arbitrum
2 changes: 2 additions & 0 deletions src/addresses/tokens/arbitrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ export const arbitrumWETH = buildToken({
export const arbitrumUSDC = buildToken({
address: '0xaf88d065e77c8cC2239327C5EDb3A432268e5831',
symbol: 'USDC',
decimals: 6,
displayDecimals: 2,
priceDisplayDecimals: 4,
})

export const arbitrumUSDT = buildToken({
address: '0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9',
symbol: 'USDT',
decimals: 6,
displayDecimals: 2,
priceDisplayDecimals: 4,
})
Expand Down

0 comments on commit 5c63a0c

Please sign in to comment.