Skip to content

Commit e12f4d5

Browse files
authored
feat: added base and superposition (spn) to vendor-finance-v2 listing (#16092)
1 parent 160b183 commit e12f4d5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

projects/vendor-finance-v2/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function tvl(api) {
1717
})
1818

1919
// lend assets may be stored in AAVE if the lender chooses so we can't
20-
// rely on balanceOf calls to get lend balances. Each pool has a
20+
// rely on balanceOf calls to get lend balances. Each pool has a
2121
// lendBalance and colBalance method that returns the token balances
2222
// that are in the pool and are currently in AAVE that belong to the pool
2323

@@ -38,8 +38,9 @@ async function tvl(api) {
3838
}
3939

4040
const config = {
41-
arbitrum: { factory: '0x0b2B8Fbf3dfd6237921A89355cfc08f107bFbf98', fromBlock: 88774917 }
42-
// ethereum: { factory: '0x928cf648069082D9AEf25ddB2bF10D25bf1C1D73', fromBlock: 16545630, },
41+
arbitrum: { factory: '0x0b2B8Fbf3dfd6237921A89355cfc08f107bFbf98', fromBlock: 88774917 },
42+
base: { factory: '0xAf013ba5cE2e3AC97BF93Ea968031B3D0B4682Cf', fromBlock: 33429629},
43+
spn: { factory: '0xd03b16e994E6D877051878C676cc296eC00f171d', fromBlock: 1816958}
4344
}
4445

4546
module.exports = {
@@ -49,4 +50,4 @@ module.exports = {
4950

5051
Object.keys(config).forEach(chain => {
5152
module.exports[chain] = { tvl }
52-
});
53+
});

0 commit comments

Comments
 (0)