Skip to content

Commit

Permalink
feat: lorenzo new layout
Browse files Browse the repository at this point in the history
  • Loading branch information
0xajing committed Jan 6, 2025
1 parent 807f0c2 commit bd7913a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
File renamed without changes.
8 changes: 8 additions & 0 deletions projects/lorenzo-stbtc/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const { sumTokensExport } = require("../helper/sumTokens");
const bitcoinAddressBook = require('../helper/bitcoin-book/index.js')

module.exports = {
methodology: "Lorenzo, As the Bitcoin Liquidity Finance Layer",
doublecounted:true,
bitcoin: { tvl: sumTokensExport({ owners : bitcoinAddressBook.lorenzo }) }
};
4 changes: 3 additions & 1 deletion projects/lorenzo/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const { sumTokensExport } = require("../helper/sumTokens");
const bitcoinAddressBook = require('../helper/bitcoin-book/index.js')

// Lorenzo Protocol Tota TVL
const allBtcAddressList = [...bitcoinAddressBook.lorenzo, ...bitcoinAddressBook.lorenzo2]
module.exports = {
methodology: "Lorenzo, As the Bitcoin Liquidity Finance Layer",
doublecounted:true,
bitcoin: { tvl: sumTokensExport({ owners : bitcoinAddressBook.lorenzo }) }
bitcoin: { tvl: sumTokensExport({ owners : allBtcAddressList }) }
};

0 comments on commit bd7913a

Please sign in to comment.