From 2025480b534fe2d24c812d252169d0e6e0ca0ea3 Mon Sep 17 00:00:00 2001 From: William Poulin Date: Mon, 11 Dec 2023 22:21:24 -0500 Subject: [PATCH] fix(mux): Fix lp staking token definitions (#3133) --- .../arbitrum/mux.mux-lp-staking.contract-position-fetcher.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/mux/arbitrum/mux.mux-lp-staking.contract-position-fetcher.ts b/src/apps/mux/arbitrum/mux.mux-lp-staking.contract-position-fetcher.ts index 9825ae0dc..2ae235142 100644 --- a/src/apps/mux/arbitrum/mux.mux-lp-staking.contract-position-fetcher.ts +++ b/src/apps/mux/arbitrum/mux.mux-lp-staking.contract-position-fetcher.ts @@ -44,12 +44,12 @@ export class ArbitrumMuxMuxLpStakingContractPositionFetcher extends ContractPosi }, { metaType: MetaType.CLAIMABLE, - address: await contract.read.mux(), + address: await contract.read.weth(), network: this.network, }, { metaType: MetaType.CLAIMABLE, - address: await contract.read.weth(), + address: await contract.read.mux(), network: this.network, }, ];