From 682fc8b904e68861db3cb549e9ef319810c7c25c Mon Sep 17 00:00:00 2001 From: Victor Navarro Date: Tue, 13 Aug 2024 19:25:24 +0200 Subject: [PATCH] feat: add Crack & Stack project (#11283) --- projects/crackandstack/index.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 projects/crackandstack/index.js diff --git a/projects/crackandstack/index.js b/projects/crackandstack/index.js new file mode 100644 index 000000000000..64377de46ee1 --- /dev/null +++ b/projects/crackandstack/index.js @@ -0,0 +1,16 @@ +const { sumTokensExport } = require("../helper/unwrapLPs"); +const coreAssets = require("../helper/coreAssets.json"); + +const TAIKO_TOKEN = "0xA9d23408b9bA935c230493c40C73824Df71A0975"; + +// Crack & Stack +// https://crackandstack.com/ +module.exports = { + methodology: `Crack & Stack TVL is the backed value of the Lanterns NFT.`, + taiko: { + tvl: sumTokensExport({ + owners: ["0x2c301eBfB0bb42Af519377578099b63E921515B7", "0xD8F7cd7d919c5266777FB83542F956dD30E80187"], + tokens: [coreAssets.null, coreAssets.taiko.USDT, coreAssets.taiko.USDC_e, coreAssets.taiko.USDC, TAIKO_TOKEN] + }), + }, +}