Skip to content

Commit 1f4aee7

Browse files
committed
track velodrome slipstream
1 parent 7bf9a91 commit 1f4aee7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

projects/velodrome-CL/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
const {getUniTVL} = require('../helper/unknownTokens.js')
3+
const config = {
4+
optimism: { factory: '0x548118C7E0B865C2CfA94D15EC86B666468ac758'},
5+
}
6+
7+
Object.keys(config).forEach(chain => {
8+
const { factory } = config[chain]
9+
module.exports[chain] = {
10+
tvl: getUniTVL({ factory, fetchBalances: true, abis: {
11+
allPairsLength: 'uint256:allPoolsLength',
12+
allPairs: "function allPools(uint) view returns (address)",
13+
} })
14+
}
15+
})

0 commit comments

Comments
 (0)