Skip to content

Commit

Permalink
Update Shibaswap - Shibarium (DefiLlama#11779)
Browse files Browse the repository at this point in the history
  • Loading branch information
Testingtester2 authored and Adolf998 committed Sep 29, 2024
1 parent 069ea56 commit 68a2a51
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions projects/shibaswap/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
const {getUniTVL} = require('../helper/unknownTokens')
const { getUniTVL } = require('../helper/unknownTokens');

const FACTORY = '0x115934131916c8b277dd010ee02de363c09d037c';
const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c';
const FACTORY_SHIBARIUM = '0xc2b4218F137e3A5A9B98ab3AE804108F0D312CBC';

module.exports = {
misrepresentedTokens: true,
ethereum: {
tvl: getUniTVL({
factory: FACTORY,
factory: FACTORY_ETHEREUM,
useDefaultCoreAssets: true,
blacklist: [
'0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F',
Expand All @@ -17,5 +18,11 @@ module.exports = {
'0xC1bfcCd4c29813eDe019D00D2179Eea838a67703'
],
})
},
shibarium: {
tvl: getUniTVL({
factory: FACTORY_SHIBARIUM,
useDefaultCoreAssets: true,
})
}
};
};

0 comments on commit 68a2a51

Please sign in to comment.