Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Testingtester2 authored Sep 26, 2024
1 parent 5b98bf3 commit 32d9523
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions projects/shibaswap/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const {getUniTVL} = require('../helper/unknownTokens')

const FACTORY = '0x115934131916c8b277dd010ee02de363c09d037c';
const { getUniTVL, uniTvlExport } = require('../helper/unknownTokens');

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

0 comments on commit 32d9523

Please sign in to comment.