Fix no markets

This commit is contained in:
2025-06-10 13:22:09 +07:00
parent 38656d705c
commit 9629297e77
2 changed files with 12 additions and 2 deletions

View File

@@ -239,6 +239,18 @@ export async function getClientForAddress(
"0x9e79146b3A022Af44E0708c6794F03Ef798381A5": { "0x9e79146b3A022Af44E0708c6794F03Ef798381A5": {
isListed: false, isListed: false,
}, },
"0x2523B89298908FEf4c5e5bd6F55F20926e22058f": {
isListed: false,
},
"0x7c54D547FAD72f8AFbf6E5b04403A0168b654C6f": {
isListed: false,
},
"0x39AC3C494950A4363D739201BA5A0861265C9ae5": {
isListed: false,
},
"0x0e46941F9bfF8d0784BFfa3d0D7883CDb82D7aE7": {
isListed: false,
},
} }
}; };

View File

@@ -10,8 +10,6 @@ test('GMX Get Claimable UI Fees', async (t) => {
const sdk = await getClientForAddress(testAccount); const sdk = await getClientForAddress(testAccount);
const result = await getClaimableUiFeesImpl(sdk); const result = await getClaimableUiFeesImpl(sdk);
console.log('Claimable UI fees result:', JSON.stringify(result, null, 2));
// Log total claimable amounts // Log total claimable amounts
let totalFees = 0; let totalFees = 0;
let marketsWithFees = 0; let marketsWithFees = 0;