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 3fdbe21 commit 64ab2b6Copy full SHA for 64ab2b6
projects/usual/index.js
@@ -1,12 +1,18 @@
1
2
const { sumTokensExport } = require('../helper/unwrapLPs')
3
4
-const USYC = '0x136471a34f6ef19fe571effc1ca711fdb8e49f2b'
5
-const treasury = '0xdd82875f0840AAD58a455A70B88eEd9F59ceC7c7'
+const tokens = [
+ '0x136471a34f6ef19fe571effc1ca711fdb8e49f2b', // USYC
6
+ '0x437cc33344a0B27A429f795ff6B469C72698B291' // wM
7
+]
8
+
9
+const owners = [
10
+ '0xdd82875f0840AAD58a455A70B88eEd9F59ceC7c7', // treasury
11
+ '0x4Cbc25559DbBD1272EC5B64c7b5F48a2405e6470' // USUALM
12
13
14
15
module.exports = {
16
methodology: 'TVL represents the value in RWA held by the protocol',
- ethereum: {
- tvl: sumTokensExport({ token: USYC, owner: treasury})
- }
17
+ ethereum: { tvl: sumTokensExport({ tokens, owners })}
18
}
0 commit comments