Skip to content

Commit

Permalink
Add the bridge between Endurance and BSC for ACE (#10161)
Browse files Browse the repository at this point in the history
* Add the bridge between Endurance and BSC

Signed-off-by: lyfsn <[email protected]>

* code refactor

* update a51 fi

* Revert "update a51 fi"

This reverts commit 97fa2de.

---------

Signed-off-by: lyfsn <[email protected]>
Co-authored-by: g1nt0ki <[email protected]>
  • Loading branch information
lyfsn and g1nt0ki authored May 11, 2024
1 parent 3c59ce9 commit 411b60c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions projects/endurance-bridge/index.js
Original file line number Diff line number Diff line change
@@ -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, }) }
})

0 comments on commit 411b60c

Please sign in to comment.