Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/elyx/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const DHEDGE_V2_VAULT_SUMMARY_ABI =
"function getFundSummary() view returns (tuple(string name, uint256 totalSupply, uint256 totalFundValue))";

const tvl = async (api) => {
const target = "0xcE5324108106a6d64EB954706875cd59696188C3";
const target = "0x39F39D48cF4C89D591Fc890f0fF531B0B67c31BC";
const summary = await api.call({ abi: DHEDGE_V2_VAULT_SUMMARY_ABI, target, })
const totalValueLocked = summary?.totalFundValue ?? 0;
return {
Expand Down
Loading