From f2b7ad7fa02c9134673ae9a81807aab1885b06d7 Mon Sep 17 00:00:00 2001 From: Maxence Raballand Date: Mon, 22 Jul 2024 17:10:19 +0200 Subject: [PATCH] feat: Reorder markets in BlastMarkets array. (#109) --- .changeset/sour-toes-buy.md | 5 +++++ src/addresses/markets/blast.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/sour-toes-buy.md diff --git a/.changeset/sour-toes-buy.md b/.changeset/sour-toes-buy.md new file mode 100644 index 0000000..c49448d --- /dev/null +++ b/.changeset/sour-toes-buy.md @@ -0,0 +1,5 @@ +--- +"@mangrovedao/mgv": patch +--- + +Reorder markets diff --git a/src/addresses/markets/blast.ts b/src/addresses/markets/blast.ts index 24a8ad8..d67fa75 100644 --- a/src/addresses/markets/blast.ts +++ b/src/addresses/markets/blast.ts @@ -46,9 +46,9 @@ export const blastBLASTWETH = { export const blastMarkets = [ blastWETHUSDB, - blastBLASTUSDB, - blastUSDeUSDB, blastBLASTWETH, + blastUSDeUSDB, + blastBLASTUSDB, blastmwstETHWPUNKS20WETH, blastmwstETHWPUNKS40WETH, ] as const satisfies MarketParams[]