From 00d43280e7462d3033d68529e68736f1427bc7cb Mon Sep 17 00:00:00 2001 From: Anshdeep Singh Date: Fri, 9 Aug 2024 00:32:05 +0530 Subject: [PATCH] Ecsd stable algo (#11241) * Add Ethereum Classic Stable Dollar * chore: Update Ethereum Classic Stable Dollar TVL methodology and vault address --- projects/ethereum-classic-stable-dollar/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 projects/ethereum-classic-stable-dollar/index.js diff --git a/projects/ethereum-classic-stable-dollar/index.js b/projects/ethereum-classic-stable-dollar/index.js new file mode 100644 index 000000000000..a7d96f22adfa --- /dev/null +++ b/projects/ethereum-classic-stable-dollar/index.js @@ -0,0 +1,14 @@ +const ADDRESSES = require('../helper/coreAssets.json') +const { nullAddress, } = require('../helper/unwrapLPs') +const { sumTokensExport, } = require('../helper/sumTokens') + +module.exports = { + methodology: "The TVL of ECSD is the amount of ETC in the contract's reserve.", + ethereumclassic: { + tvl: sumTokensExport({ + owner: '0xCc3664d7021FD36B1Fe2b136e2324710c8442cCf', + tokens: [nullAddress], + }) + }, +} +