mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 05:15:28 +08:00
19 lines
496 B
JavaScript
19 lines
496 B
JavaScript
const ADDRESSES = require('../helper/coreAssets.json')
|
|
const { nullAddress, treasuryExports } = require("../helper/treasury");
|
|
|
|
const treasury = "0x167D87A906dA361A10061fe42bbe89451c2EE584";
|
|
|
|
|
|
module.exports = treasuryExports({
|
|
ethereum: {
|
|
tokens: [
|
|
nullAddress,
|
|
ADDRESSES.ethereum.USDC,
|
|
'0x777172D858dC1599914a1C4c6c9fC48c99a60990',//solid
|
|
ADDRESSES.ethereum.WETH,
|
|
ADDRESSES.ethereum.FRAX,
|
|
],
|
|
owners: [treasury],
|
|
ownTokens: [],
|
|
},
|
|
}) |