From 8c4b92c6379f0c8b2dcedeef2dd04d88e35f0591 Mon Sep 17 00:00:00 2001 From: flapguy <178278174+flapguy@users.noreply.github.com> Date: Wed, 14 Aug 2024 01:45:12 +0800 Subject: [PATCH] feat: add adaptor for flapdotsh (#11272) --- projects/flapdotsh/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 projects/flapdotsh/index.js diff --git a/projects/flapdotsh/index.js b/projects/flapdotsh/index.js new file mode 100644 index 000000000000..289eb41a3c42 --- /dev/null +++ b/projects/flapdotsh/index.js @@ -0,0 +1,14 @@ +const { sumTokensExport } = require("../helper/unwrapLPs"); +const coreAssets = require("../helper/coreAssets.json"); + +const portal = [ + "0xe2ce6ab80874fa9fa2aae65d277dd6b8e65c9de0", +]; + +const tokens = [coreAssets.null]; + +module.exports = { + bsc: { + tvl: sumTokensExport({ owners: portal, tokens }) + }, +}; \ No newline at end of file