mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
13 lines
474 B
JavaScript
13 lines
474 B
JavaScript
const ADDRESSES = require('./helper/coreAssets.json')
|
|
const { ohmTvl } = require('./helper/ohm')
|
|
|
|
const treasury = "0x873ad91fA4F2aA0d557C0919eC3F6c9D240cDd05"
|
|
module.exports = ohmTvl(treasury, [
|
|
//curve
|
|
[ADDRESSES.ethereum.CRV, false],
|
|
//frax
|
|
[ADDRESSES.ethereum.FXS, false],
|
|
//Sushi LP
|
|
["0x2734f4a846d1127f4b5d3bab261facfe51df1d9a", true],
|
|
], "ethereum", "0x3818eff63418e0a0ba3980aba5ff388b029b6d90", "0xdec41db0c33f3f6f3cb615449c311ba22d418a8d")
|