Update Shibaswap +ShibariumShibaswap #11758
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
const { getUniTVL } = require('../helper/unknownTokens');
const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c';
const FACTORY_SHIBARIUM = '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8';
module.exports = {
misrepresentedTokens: true,
ethereum: {
tvl: getUniTVL({
factory: FACTORY_ETHEREUM,
useDefaultCoreAssets: true,
blacklist: [
'0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F',
'0xab167E816E4d76089119900e941BEfdfA37d6b32',
'0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c',
'0x84FA8f52E437Ac04107EC1768764B2b39287CB3e',
'0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8',
'0xC1bfcCd4c29813eDe019D00D2179Eea838a67703'
],
})
},
shibarium: {
tvl: getUniTVL({
factory: FACTORY_SHIBARIUM,
useDefaultCoreAssets: true,
})
}
};