diff --git a/projects/pulsechain-bridge/index.js b/projects/pulsechain-bridge/index.js new file mode 100644 index 00000000000..1fd92d38eb7 --- /dev/null +++ b/projects/pulsechain-bridge/index.js @@ -0,0 +1,13 @@ +const { sumTokens2 } = require("../helper/unwrapLPs"); + +module.exports = { + ethereum: { + tvl: (api) => + sumTokens2({ + api, + owners: ["0x1715a3E4A142d8b698131108995174F37aEBA10D"], // where does the WETH deposit go + fetchCoValentTokens: true, + blacklistedTokens: [], + }), + }, +};