mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 21:36:44 +08:00
20 lines
580 B
JavaScript
20 lines
580 B
JavaScript
const ADDRESSES = require('../helper/coreAssets.json')
|
|
const { nullAddress, treasuryExports } = require("../helper/treasury");
|
|
|
|
const treasury = "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae";
|
|
const WETH = ADDRESSES.ethereum.WETH;
|
|
const ETH = ADDRESSES.null;
|
|
|
|
|
|
module.exports = treasuryExports({
|
|
ethereum: {
|
|
tokens: [
|
|
nullAddress,
|
|
ADDRESSES.ethereum.USDC, //USDC
|
|
"0xd26114cd6EE289AccF82350c8d8487fedB8A0C07", //OMG
|
|
ADDRESSES.ethereum.BNB, //BNB
|
|
WETH
|
|
],
|
|
owners: [treasury, '0x9fC3dc011b461664c835F2527fffb1169b3C213e'],
|
|
},
|
|
}) |