Skip to content

Commit

Permalink
feat: Add USDe token and corresponding market pair on Blast exchange. (
Browse files Browse the repository at this point in the history
…#92)

* feat: Add USDe token and corresponding market pair on Blast exchange.

* chore: format

---------

Co-authored-by: maxencerb <[email protected]>
  • Loading branch information
maxencerb and maxencerb authored Jun 18, 2024
1 parent 75db7e1 commit adcb4b6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/perfect-points-protect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mangrovedao/mgv": patch
---

Add USDe token on blast
1 change: 1 addition & 0 deletions src/addresses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export {
buildToken,
blastWETH,
blastUSDB,
blastUSDe,
blastMetaStreetWETHPUNKS20,
blastMetaStreetWETHPUNKS40,
baseSepoliaUSDC,
Expand Down
6 changes: 6 additions & 0 deletions src/addresses/markets/blast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
blastMetaStreetWETHPUNKS20,
blastMetaStreetWETHPUNKS40,
blastUSDB,
blastUSDe,
blastWETH,
} from '../tokens/blast.js'

Expand All @@ -12,6 +13,11 @@ export const blastMarkets = [
quote: blastUSDB,
tickSpacing: 1n,
},
{
base: blastUSDe,
quote: blastUSDB,
tickSpacing: 1n,
},
{
base: blastMetaStreetWETHPUNKS20,
quote: blastWETH,
Expand Down
8 changes: 8 additions & 0 deletions src/addresses/tokens/blast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ export const blastUSDB = buildToken({
priceDisplayDecimals: 2,
})

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

export const blastMetaStreetWETHPUNKS20 = buildToken({
address: '0x9a50953716ba58e3d6719ea5c437452ac578705f',
symbol: 'mwstETH-WPUNKS:20',
Expand All @@ -25,6 +32,7 @@ export const blastMetaStreetWETHPUNKS40 = buildToken({
export const blastTokens = [
blastWETH,
blastUSDB,
blastUSDe,
blastMetaStreetWETHPUNKS20,
blastMetaStreetWETHPUNKS40,
] as const
1 change: 1 addition & 0 deletions src/addresses/tokens/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export {
blastWETH,
blastUSDB,
blastUSDe,
blastMetaStreetWETHPUNKS20,
blastMetaStreetWETHPUNKS40,
blastTokens,
Expand Down

0 comments on commit adcb4b6

Please sign in to comment.