Skip to content

Commit becea16

Browse files
authored
Added YieldBricks adapter (#16715)
1 parent 7ceb0c1 commit becea16

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

projects/yieldbricks/index.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
const { sumTokensExport } = require('../helper/unwrapLPs')
2+
3+
const TOKENS_YBR_ARBITRUM = [
4+
"0x11920f139a3121c2836e01551d43f95b3c31159c"
5+
]
6+
7+
const STAKING_POOLS = [
8+
"0x7436750e80bB956C6488A879D573cA417D6712A2",
9+
"0x80EF7E080EfC299cd6a7Ed8341273d935252c896",
10+
]
11+
12+
module.exports = {
13+
timetravel: false,
14+
misrepresentedTokens: false,
15+
methodology: `
16+
TVL counts YBR tokens staked by users in the YieldBricks staking pools on Arbitrum.
17+
The staking section shows the same value but categorized separately.
18+
USD value is derived from YBR market prices.`,
19+
20+
arbitrum: {
21+
staking: sumTokensExport({
22+
owners: STAKING_POOLS,
23+
tokens: TOKENS_YBR_ARBITRUM,
24+
chain: 'arbitrum'
25+
}),
26+
tvl: () => ({}),
27+
},
28+
}

0 commit comments

Comments
 (0)