We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e40e9 commit f5ef323Copy full SHA for f5ef323
projects/solv-btc-lst/index.js
@@ -6,7 +6,7 @@ const bitcoinOwnersUrl = 'https://raw.githubusercontent.com/solv-finance-dev/slo
6
async function tvl() {
7
let bitcoinOwners = (await getConfig('solv-protocol/solv-btc-lst', bitcoinOwnersUrl));
8
9
- const owners = [].concat(bitcoinOwners.core, bitcoinOwners.bbn);
+ const owners = Object.values(bitcoinOwners).flat();
10
11
return sumTokens({ owners })
12
}
0 commit comments