Skip to content

Commit

Permalink
Merge pull request #105 from mangrovedao/fix/usd_display_decimals
Browse files Browse the repository at this point in the history
fix: Change the decimals displayed for the Usd currencies
  • Loading branch information
eborrallo authored Jun 27, 2024
2 parents f1a3844 + 9c61618 commit 72de0ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/breezy-carpets-smoke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mangrovedao/mgv": patch
---

Change the decimals displayed for the Usd currencies
4 changes: 2 additions & 2 deletions src/addresses/tokens/base-sepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const baseSepoliaUSDC = buildToken({
address: '0x036CbD53842c5426634e7929541eC2318f3dCF7e',
symbol: 'USDC',
displayDecimals: 2,
priceDisplayDecimals: 2,
priceDisplayDecimals: 4,
decimals: 6,
})

Expand All @@ -26,7 +26,7 @@ export const baseSepoliaDAI = buildToken({
address: '0x9508B3459Bc95A39CA66c385f1Ae12f03f72f8af',
symbol: 'DAI',
displayDecimals: 2,
priceDisplayDecimals: 2,
priceDisplayDecimals: 4,
mgvTestToken: true,
})

Expand Down
4 changes: 2 additions & 2 deletions src/addresses/tokens/blast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ export const blastUSDB = buildToken({
address: '0x4300000000000000000000000000000000000003',
symbol: 'USDB',
displayDecimals: 2,
priceDisplayDecimals: 2,
priceDisplayDecimals: 4,
})

export const blastUSDe = buildToken({
address: '0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34',
symbol: 'USDe',
displayDecimals: 2,
priceDisplayDecimals: 2,
priceDisplayDecimals: 4,
})

export const blastMetaStreetWETHPUNKS20 = buildToken({
Expand Down

0 comments on commit 72de0ff

Please sign in to comment.