From 13e42a27a21bd1b1663516225a66ccbcfeb41e42 Mon Sep 17 00:00:00 2001 From: fextr <34183870+fextr@users.noreply.github.com> Date: Mon, 8 Apr 2024 16:32:31 +0400 Subject: [PATCH] add zunETH & zunETHAps contracts to zunami (#9737) --- projects/zunami/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/zunami/index.js b/projects/zunami/index.js index c961c6bd981a..4c2293a0efcc 100644 --- a/projects/zunami/index.js +++ b/projects/zunami/index.js @@ -3,10 +3,14 @@ const abi = require("./abi.json"); const zunUSD = "0x8C0D76C9B18779665475F3E212D9Ca1Ed6A1A0e6"; const zunUSDAps = "0x28e487bbF6b64867C29e61DccbCD17aB64082889"; +const zunETH = "0xc2e660C62F72c2ad35AcE6DB78a616215E2F2222"; +const zunETHAps = "0x5Ab3aa11a40eB34f1d2733f08596532871bd28e2"; async function ethTvl(api) { api.add(ADDRESSES.ethereum.DAI, await api.call({ abi: abi.totalHoldings, target: zunUSD, })) api.add(ADDRESSES.ethereum.DAI, await api.call({ abi: abi.totalHoldings, target: zunUSDAps, })) + api.add(ADDRESSES.ethereum.WETH, await api.call({ abi: abi.totalHoldings, target: zunETH, })) + api.add(ADDRESSES.ethereum.WETH, await api.call({ abi: abi.totalHoldings, target: zunETHAps, })) } module.exports = {