We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf9a91 commit 1f4aee7Copy full SHA for 1f4aee7
projects/velodrome-CL/index.js
@@ -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