From 411b60caf4ef781aa676eea4c580432491966ed3 Mon Sep 17 00:00:00 2001 From: "L.Y" <141099829+lyfsn@users.noreply.github.com> Date: Sat, 11 May 2024 21:36:04 +0800 Subject: [PATCH] Add the bridge between Endurance and BSC for ACE (#10161) * Add the bridge between Endurance and BSC Signed-off-by: lyfsn * code refactor * update a51 fi * Revert "update a51 fi" This reverts commit 97fa2de2d9735980ae76bce4f11b247d7af84943. --------- Signed-off-by: lyfsn Co-authored-by: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> --- projects/endurance-bridge/index.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 projects/endurance-bridge/index.js diff --git a/projects/endurance-bridge/index.js b/projects/endurance-bridge/index.js new file mode 100644 index 000000000000..c72004d068bb --- /dev/null +++ b/projects/endurance-bridge/index.js @@ -0,0 +1,15 @@ +const { sumTokensExport, nullAddress } = require('../helper/unwrapLPs'); + +const config = { + ace: { + bridges: [ + '0xf3310e3f0D46FF5EE7daB69C73452D0ff3979Bed', + ], + tokens: [nullAddress] + }, +} + +Object.keys(config).forEach(chain => { + const { bridges, tokens } = config[chain] + module.exports[chain] = { tvl: sumTokensExport({ tokens, owners: bridges, }) } +}) \ No newline at end of file