From e9028a428a21bfa573c663741cc4078f31e05fa3 Mon Sep 17 00:00:00 2001 From: waynebruce0x Date: Thu, 17 Oct 2024 14:30:20 +0100 Subject: [PATCH] fuel bridge --- projects/fuel/index.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 projects/fuel/index.js diff --git a/projects/fuel/index.js b/projects/fuel/index.js new file mode 100644 index 00000000000..617fa74d2db --- /dev/null +++ b/projects/fuel/index.js @@ -0,0 +1,15 @@ +const { sumTokens2 } = require("../helper/unwrapLPs"); + +module.exports = { + ethereum: { + tvl: (api) => + sumTokens2({ + api, + owners: [ + "0xAEB0c00D0125A8a788956ade4f4F12Ead9f65DDf", + "0xa4cA04d02bfdC3A2DF56B9b6994520E69dF43F67", + ], + fetchCoValentTokens: true, + }), + }, +};