Skip to content

Commit 7a0f9e5

Browse files
authored
Fix: Orderly-perps (DefiLlama#14305)
1 parent 8f6f755 commit 7a0f9e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/orderly-network/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const tokenAddress = {
2323
}
2424

2525
async function tvl() {
26-
let ftTokens = (await call(ASSET_MANAGER_CONTRACT, GET_LISTED_TOKENS_METHOD, {}));
26+
let ftTokens = (await call(ASSET_MANAGER_CONTRACT, GET_LISTED_TOKENS_METHOD, {})).filter(address => address.includes('.'));
2727

2828
// NOTE: balances for FT tokens
2929
let balances = await addTokenBalances(ftTokens, ASSET_MANAGER_CONTRACT);
@@ -37,7 +37,7 @@ async function tvl() {
3737

3838
module.exports = {
3939
timetravel: false,
40-
near: { tvl, },
40+
near: { tvl },
4141
solana: { tvl: () => sumTokens2({ tokenAccounts: ['77puyQ4K4ov82qzBuda4q9iMh2Ux49YnnBNWqxQkcrXE']})},
4242
methodology: 'All the tokens deposited into Orderly Network by chain'
4343
};

0 commit comments

Comments
 (0)