Skip to content

Commit f02b535

Browse files
committed
exclude usda/sUSDA pair tvl
1 parent 58b56f1 commit f02b535

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

projects/bulbaswap-v2/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
const { uniTvlExports } = require('../helper/unknownTokens')
22
module.exports = uniTvlExports({
33
'morph': '0x8D2A8b8F7d200d75Bf5F9E84e01F9272f90EFB8b'
4+
}, {
5+
blacklistedTokens: [
6+
'0x2840F9d9f96321435Ab0f977E7FDBf32EA8b304f',
7+
'0xff12470a969Dd362EB6595FFB44C82c959Fe9ACc',
8+
],
49
})

projects/bulbaswap-v3/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
const { uniV3Export } = require('../helper/uniswapV3')
22

3-
module.exports = uniV3Export({ morph: { factory: '0xFf8578C2949148A6F19b7958aE86CAAb2779CDDD', fromBlock: 25159, } })
3+
module.exports = uniV3Export({ morph: { factory: '0xFf8578C2949148A6F19b7958aE86CAAb2779CDDD', fromBlock: 25159, blacklistedTokens: [
4+
'0x6A9A65B84843F5fD4aC9a0471C4fc11AFfFBce4a',
5+
'0xe3C0FF176eF92FC225096C6d1788cCB818808b35',
6+
'0x950e7FB62398C3CcaBaBc0e3e0de3137fb0daCd2',
7+
] } })

projects/unagiswap/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
const { getLogs } = require('../helper/cache/getLogs')
22
const ADDRESSES = require('../helper/coreAssets.json')
33

4+
45
const config = {
5-
taiko: { dvmFactory: '0x6694eebf40924e04c952EA8F1626d19E7a656Bb7', fromBlock: 452910, dspFactory: '0xd0de7cA3298fff085E2cb82F8a861a0254256BA0', gspFactory: '0x2235bB894b7600F1a370fc595Ee5477999A30441', dppFactory: '0x297A4885a7da4AaeF340FABEd119e7a6E3f2BCe8' },
6+
taiko: { dvmFactory: '0x6694eebf40924e04c952EA8F1626d19E7a656Bb7', fromBlock: 452910, dspFactory: '0xd0de7cA3298fff085E2cb82F8a861a0254256BA0', gspFactory: '0x2235bB894b7600F1a370fc595Ee5477999A30441', dppFactory: '0x297A4885a7da4AaeF340FABEd119e7a6E3f2BCe8', blacklistedTokens: [
7+
'0x5d5c8Aec46661f029A5136a4411C73647a5714a7',
8+
'0xff12470a969Dd362EB6595FFB44C82c959Fe9ACc',
9+
10+
] },
611
}
712

813
Object.keys(config).forEach(chain => {

0 commit comments

Comments
 (0)