diff --git a/projects/echo-mBTC/index.js b/projects/echo-mBTC/index.js new file mode 100644 index 0000000000..cd5d7a558b --- /dev/null +++ b/projects/echo-mBTC/index.js @@ -0,0 +1,7 @@ +const bitcoinAddressBook = require('../helper/bitcoin-book/index.js') +const { sumTokensExport } = require("../helper/sumTokens"); + +module.exports = { + methodology: "Echo is a Bitcoin liquidity aggregation and yield infrastructure layer", + bitcoin: { tvl: sumTokensExport({ owners: bitcoinAddressBook.echoMBTC }) } +}; \ No newline at end of file diff --git a/projects/helper/bitcoin-book/echo-mBTC.js b/projects/helper/bitcoin-book/echo-mBTC.js new file mode 100644 index 0000000000..9599c381fb --- /dev/null +++ b/projects/helper/bitcoin-book/echo-mBTC.js @@ -0,0 +1,3 @@ +module.exports = [ + 'bc1pc5regkaavr8nwk3tt72snnnyj56shc4ss4xn7y60u6mh88vcp03qmg2p2q', +] \ No newline at end of file diff --git a/projects/helper/bitcoin-book/index.js b/projects/helper/bitcoin-book/index.js index 583d23f2be..0a2f974165 100644 --- a/projects/helper/bitcoin-book/index.js +++ b/projects/helper/bitcoin-book/index.js @@ -108,6 +108,7 @@ const tzbtc = require('./tezos-btc.js') const tothemoon = require('./tothemoon.js') const indodax = require('./indodax.js') const river = require('./river.js') +const echoMBTC = require('./echo-mBTC.js') const p2pb2b = ['39BFtTzZjj6o2s7eewefFQxqM4617VmhEK'] const teleswap = [ @@ -260,4 +261,5 @@ module.exports = { tothemoon, indodax, river, + echoMBTC, }